summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.cpp
AgeCommit message (Collapse)Author
2011-01-12Merge with viewer-developmentDon Kjer
2011-01-12STORM-477 : pull in viewer-developmentMerov Linden
2011-01-11STORM-477 FIXED Re-implemented LLDir::getNextFileInDir() as an iterator object.Seth ProductEngine
- Replaced all existing usages of LLDir::getNextFileInDir() with the new directory iterator object. - Removed platform specific LLDir::getNextFileInDir() implementation.
2011-01-07Merge from viewer-developmentDon Kjer
2010-12-30STORM-797 FIXED Added parcel SLURL rendering with human readable parcel names.Seth ProductEngine
- Added parcel info observer to LLUrlEntryParcel. - Added notifying LLUrlEntryParcel by LLRemoteParcelInfoProcessor when parcel data arrives. - Added notifying LLUrlEntryParcel about user login, changing host and viewer connection state to use this data in remote parcel requests.
2010-12-22Merge with viewer-developmentDon Kjer
2010-12-21Merge from trunkAndrew A. de Laix
2010-12-17Merge from viewer-development post 2.4 releaseMonty Brandenberg
2010-12-16Vary install failed message depending on whether it was required or not.Andrew A. de Laix
2010-12-15don't ask before quitting when login or download progress is being shown.Andrew A. de Laix
2010-12-14SWAT-352: when loading lleventhost, call apr_dso_error() function.Nat Goodspeed
In addition to its usual apr_sterror() function, APR defines a special function specifically for errors relating to the apr_dso_*() functions. Introduce ll_apr_warn_status() and ll_apr_assert_status() overloads accepting apr_dso_handle_t* to call apr_dso_error() as well as apr_strerror() and log its output. Use new ll_apr_warn_status() in LLAppViewer::loadEventHostModule() for apr_dso_load() and apr_dso_sym() calls. Instead of shorthand ll_apr_assert_status(), use with llassert_always() so check is still performed even in Release build. Add more lleventhost-related debugging output, e.g. full pathname of the DLL. On Mac and Linux, call 'file' command to report nature of the DLL too.
2010-12-13Merge from viewer-developmentDon Kjer
2010-12-13Expanded viewer stats recorder to include cache miss type, cache miss ↵Don Kjer
requests, and update failures
2010-12-11ESC-211 ESC-212 Use arrays in payload to grid and compact payloadMonty Brandenberg
First, introduced a compact payload format that allows blocks of metrics to be dropped from the viewer->collector payload compressing 1200 bytes of LLSD into about 300, give-or-take. Then converted to using LLSD arrays in the payload to enumerate the regions encountered. This simplifies much data handling from the viewer all the way into the final formatter of the metrics on the grid.
2010-12-10CHOP-260 implementation. Update Ready notification gets real UI.brad kittenbrink
reviewed by Mani.
2010-12-10Decided to refactor a bit. Was using LLSD as an internal dataMonty Brandenberg
representation transferring ownership, doing data aggregation in a very pedantic way. That's just adding unneeded cost and complication. Used the same objects to transport data as are collecting it and everything got simpler, faster, easier to read with fewer gotchas. Bit myself *again* doing the min/max/mean merges but the unittests where there to pick me up again. Added a per-region FPS metric while I was at it. This is much asked for and there was a convenient place to sample the value.
2010-12-10MergeMark Palange (Mani)
2010-12-10ESC-228 ESC-227 Corrections for metrics counters and send-on-quit delivery.Monty Brandenberg
Wanted to avoid computing metrics for duplicate requests as much as possible, they artificially depress averages but missed an opportunity and was including them in the counts. The non-texture case is solid. Textures are.... confounding still. Do a better job of trying to send one last packet to the grid when quitting. It is succeeding now, at least sometimes. Put a comment in base llassetstorage.cpp pointing to cut-n-paste derivation in llviewerassetstorage.cpp so that changes can be replicated. Hate doing this but current design forces it.
2010-12-10ui improvements to more closely match UX design.Andrew A. de Laix
2010-12-09CHOP-265 Fixed up LL_SEND_CRASH_REPORTS usage. Reviewed by Brad.Mark Palange (Mani)
2010-12-09change updater settings from check box to drop down menu; add choice of ↵Andrew A. de Laix
whether to install automatically as well as download automatically (not actually implemented yet).
2010-12-09merge from http://hg.secondlife.com/viewer-developmentMonty Brandenberg
2010-12-08EXP-465 FIX Viewer window does not fill screen on Mac and Linux using ↵Richard Linden
--fullscreen disabled fullscreen mode for merge to viewer-development
2010-12-08merge with viewer-devRichard Linden
2010-12-08Fix for CHOP-262 (update notifications prior to login) and first attempt at ↵brad kittenbrink
CHOP-261 (add handlers for update ready notification buttons) reviewed by mani.
2010-12-07lamo programmer ui for setting downloader bandwidth limit.Andrew A. de Laix
2010-12-07limit dowload bandwidth to 'Maximum bandwidth' settingAndrew A. de Laix
2010-12-07Automated merge with https://bitbucket.org/mani_linden/viewer-development/Andrew A. de Laix
2010-12-07login instance coordinates with updater serviceAndrew A. de Laix
2010-12-06CHOP-257 - programmer XUI for update ready to install. One tip, one alert. ↵Mark Palange (Mani)
Rev. by Brad
2010-12-03mergeAndrew A. de Laix
2010-12-02mergeMonroe Linden
2010-12-01CHOP-238 Fix to bug introduced by ↵Mark Palange (Mani)
http://hg.secondlife.com/viewer-beta/changeset/4072bd5389b2 Reviewed by Brad
2010-12-01download progress events.Andrew A. de Laix
2010-11-29ESC-154 ESC-156 Now using region hash rather than region uuid as identifier.Monty Brandenberg
In the viewer, the region's UUID is acquired very late and isn't generally used as the canonical region identifier. The U64 region hash is a better and more consistently used identifier so I'm moving over to using that as the region key. Don't have a proper reserved invalid region hash which is unfortunate, but then, so much is.
2010-11-24ESC-154 ESC-156 Metrics integration across threadsMonty Brandenberg
Using unpause() method in derived class rather than wake() in furthest base class solved the stalling problem. I still think too many levels of the LLTextureFetch hierarchy are keeping thread state, however. The LLViewerRegion instance an agent enters doesn't necessarily have its region_id yet, that only comes after the handshake, if any. So add a few more metrics insertion points to propagate region into metrics. Finally, try to launch a final metrics report when a quit is initiated.
2010-11-23ESC-154 ESC-156 Viewer metricsMonty Brandenberg
Get the metrics message generation working in QAModeMetrics mode. Sample interval and data aren't correct yet but getting there.
2010-11-23ESC-154 ESC-156 Integrating metrics collector into viewer.Monty Brandenberg
After discussions, renamed 'QAModeMetricsSubmetrics' to 'QAModeMetrics' and confirmed that LLCachedControl<> is the way to go. Moved the resulting flag out of LLViewerAssetStats (where it didn't belong) and it lives in both LLAppViewer and LLTextureFetch where it does belong.
2010-11-23ESC-154 ESC-156 Data collection and control for viewer metricsMonty Brandenberg
Detect QAMode (and new QAModeMetricsSubmode) settings which enable logging of metrics report locally and a faster cycle time to reduce test waiting. Do this only in the main thread and propagate the result via collector constructors (will likely move that out and put it in llappviewer/lltexturefetch which is more correct scope). Managed to deadlock myself with a recursive mutex (sheesh).
2010-11-19ESC-155 Multi-threaded umbrella collector for stats aggregationMonty Brandenberg
Code complete with the intelligence to merge counts, mins, maxes and means with reasonable defences. Added QAMode controls to the viewer so that we can QA this more quickly by reducing the timing interval and sending the metrics body to local logging as well as to the caps service.
2010-11-18CHOP-135 Bug fixes.Mark Palange (Mani)
2010-11-18mergeMark Palange (Mani)
2010-11-18Automated merge with https://bitbucket.org/mani_linden/viewer-development/Andrew A. de Laix
2010-11-18Merge with viewer-developmentMark Palange (Mani)
2010-11-18Fix for mac build error.brad kittenbrink
2010-11-18inform user on failed install--needs proper user dialog ;-)Andrew A. de Laix
2010-11-18First draft of CHOP-106 downloaded update ready notification.brad kittenbrink
Reviewed by mani.
2010-11-18ESC-154 ESC-155 ESC-156Monty Brandenberg
Asset fetch requests wrapped to allow for measurements. Asset fetch enqueues, dequeues and completion times recorded to asset stats collector. Texture fetch operations (http and udp) recorded to asset stats collector. Stats collector time vallue switched from F32 to U64 which is the more common type in the viewer. Cross-thread mechanism introduced to communicate region changes and generate global statistics messages. Facility to deliver metrics via Capabilities sketched in but needs additional work. Documentation and diagrams added.
2010-11-15mergeRichard Linden
2010-11-11STORM-102: Merge from viewer-developmentWolfpup Lowenhar