Commit Graph

15 Commits (1d4d4fec00aacb1e1e00a4f60a6af4d8ed3b8bde)

Author SHA1 Message Date
Rick Pasetto d78520f6b7 Compress logging of media data (but still have it) 2009-10-19 17:08:45 -07:00
Steve Bennetts 65bf35cfed merge 2009-10-19 10:49:48 -07:00
Rick Pasetto 4598a4a621 Another attempt at fixing unit test, this one is weirder.
Don't schedule the queue timer in the tick() of the retry timer.
Instead, schedule it in the RetryTimer's destructor.
This is an artifact of how the LLEventTimer's loop is handled.
2009-10-13 20:52:04 -07:00
Rick Pasetto 780719c14c Add some more logging to help triage media client problems 2009-10-12 17:52:33 -07:00
palange dbe7135cc4 merge of login-api 2009-10-12 19:03:52 -04:00
Rick Pasetto d4b2897700 Unit tests for LLMediaDataClient
This required a bit of refactoring of LLMediaDataClient:
- Created LLMediaDataClientObject ABC, which now has a
  concrete impl in LLVOVolume
- Created unit test with 6 tests (for now), testing
  - LLObjectMediaDataClient::fetchMedia()
  - LLObjectMediaDataClient::updateMedia()
  - LLObjectMediaNavigateClient::navigate()
  - queue ordering
  - retries
  - nav bounce back
- Also ensures that ref counting works properly (this is important, because
  ownership is tricky with smart pointers put into queues, peeled off
  into timers that fire and auto destruct, and HTTP responders that also
  auto-destruct)
- Had to fix LLCurl::Responder's stub, which was not initializing
  the ref count to 0, causing the ref counting tests to fail
  (boy, that was hard to find!).

Reviewed by Callum
2009-10-09 18:56:36 -07:00
brad kittenbrink 902d6676c6 Post-merge cleanup to get things building again. 2009-10-07 19:26:04 -07:00
Rick Pasetto df48e66f7c DEV-39168 - bounce back to the current URL (or, the home URL if current URL is "") if the server denies navigation
This refactors some of the bounceBack code into LLVOVolume.
It also changes an important rule:  the edit panel now *will* send the
current URL to the server when you hit "OK".  This change was done so
that if autoplay is on, we make sure the server gets the right data.
2009-10-07 12:26:42 -07:00
Rick Pasetto d2464757c6 DEV-40896: Don't iteratively pop() the request queue on destroy(). This just logs now and deletes the queue. 2009-10-06 13:20:30 -07:00
Rick Pasetto f0dd8c4603 Back out changes accidentally checked in with last commit 2009-10-05 18:15:43 -07:00
Rick Pasetto aba67da38b FIX DEV-40877: ignore changes from "bad" objects which have an invalid media URL 2009-10-05 18:14:27 -07:00
Rick Pasetto 1658d77b86 DEV-40853: don't bring up a dialog on HTTP errors in the media service 2009-10-05 17:56:33 -07:00
Mark Palange (Mani) 81a63ac088 merge with latest from lindenlab/svn-imports-viewer-20 2009-10-05 13:39:53 -07:00
Rick Pasetto c6a3df44d8 Disable "bounceBack" if nav permissions are refused 2009-10-05 17:44:42 +00:00
Rick Pasetto 349eb393bc DEV-40650: Refactor llmediadataresponder and llmediadatafetcher into a single reusable class
CC Review #7 (monroe)

LLMediaDataResponder and LLMediaDataFetcher were helpful classes that interacted with each other, but they were not general enough to cleanly be used for all media service interaction. This change refactors these classes into one (in fact, it is closer to a complete rewrite): LLMediaDataClient. This class has the following design points:

- You subclass from it when you want to specialize the responder, and then subclass from LLMediaDataClient::Responder if desired
- It has a few inner classes:
- LLMediaDataClient::Request, which now holds all of the data pertaining to a request, including retry counts
- LLMediaDataClient::Responder, which is now the LLHTTPClient::Responder
- LLMediaDataClient::PriorityQueue, which is now a STL priority_queue of Request objects.
- LLMediaDataClient::QueueTimer, which is the timer that fires to peel off queue items
- LLMediaDataClient::Responder::RetryTimer, which is the timer that is used when 503 errors are received.

The encapsulation of these inner classes is a lot cleaner and better reflects the scope of their responsibilities.

By and large, the logic hasn't really changed much. However, now there are two subclasses of LLMediaDataClient: one for the ObjectMedia cap and the other for the ObjectMediaNavigate cap. (I decided it was overkill to make three subclasses, one each for GET, UPDATE, and NAVIGATE, but we could still do that). LLVOVolume now instantiates both of these classes as statics (and destroys them on shutdown). They now have very simple API:

- LLObjectMediaDataClient::fetchMedia(LLVOVolume*) fetches the media for the given object
- LLObjectMediaDataClient::updateMedia(LLVOVolume*) sends an UPDATE of the media from the given object
- LLObjectMediaNavigateClient::navigate(LLVOVolume*, U8 texture_index, const std::string &url) navigates the given face (texture_index) on the given object to the given url.
2009-10-05 17:21:08 +00:00