Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-25 | SL-11216: Convert LLVersionInfo to an LLSingleton. | Nat Goodspeed | |
This changeset is meant to exemplify how to convert a "namespace" class whose methods are static -- and whose data are module-static -- to an LLSingleton. LLVersionInfo has no initClass() or cleanupClass() methods, but the general idea is the same. * Derive the class from LLSingleton<T>: class LLSomeSingleton: public LLSingleton<LLSomeSingleton> { ... }; * Add LLSINGLETON(LLSomeSingleton); in the private section of the class. This usage implies a separate LLSomeSingleton::LLSomeSingleton() definition, as described in indra/llcommon/llsingleton.h. * Move module-scope data in the .cpp file to non-static class members. Change any sVariableName to mVariableName to avoid being outright misleading. * Make static class methods non-static. Remove '//static' comments from method definitions as needed. * For LLVersionInfo specifically, the 'const std::string&' return type was replaced with 'std::string'. Returning a reference to a static or a member, const or otherwise, is an anti-pattern: the interface constrains the implementation, prohibiting possibly later returning a temporary (an expression). * For LLVersionInfo specifically, 'const S32' return type was replaced with simple 'S32'. 'const' is just noise in that usage. * Simple member initialization (e.g. the original initializer expressions for static variables) can be done with member{ value } initializers (no examples here though). * Delete initClass() method. * LLSingleton's forté is of course lazy initialization. It might work to simply delete any calls to initClass(). But if there are side effects that must happen at that moment, replace LLSomeSingleton::initClass() with (void)LLSomeSingleton::instance(); * Most initClass() initialization can be done in the constructor, as would normally be the case. * Initialization that might cause a circular LLSingleton reference should be moved to initSingleton(). Override 'void initSingleton();' should be private. * For LLVersionInfo specifically, certain initialization that used to be lazily performed was made unconditional, due to its low cost. * For LLVersionInfo specifically, certain initialization involved calling methods that have become non-static. This was moved to initSingleton() because, in a constructor body, 'this' does not yet point to the enclosing class. * Delete cleanupClass() method. * There is already a generic LLSingletonBase::deleteAll() call in LLAppViewer::cleanup(). It might work to let this new LLSingleton be cleaned up with all the rest. But if there are side effects that must happen at that moment, replace LLSomeSingleton::cleanupClass() with LLSomeSingleton::deleteSingleton(). That said, much of the benefit of converting to LLSingleton is deleteAll()'s guarantee that cross-LLSingleton dependencies will be properly honored: we're trying to migrate the code base away from the present fragile manual cleanup sequence. * Most cleanupClass() cleanup can be done in the destructor, as would normally be the case. * Cleanup that might throw an exception should be moved to cleanupSingleton(). Override 'void cleanupSingleton();' should be private. * Within LLSomeSingleton methods, remove any existing LLSomeSingleton::methodName() qualification: simple methodName() is better. * In the rest of the code base, convert most LLSomeSingleton::methodName() references to LLSomeSingleton::instance().methodName(). (Prefer instance() to getInstance() because a reference does not admit the possibility of NULL.) * Of course, LLSomeSingleton::ENUM_VALUE can remain unchanged. In general, for many successive references to an LLSingleton instance, it can be useful to capture the instance() as in: auto& versionInfo{LLVersionInfo::instance()}; // ... versionInfo.getVersion() ... We did not do that here only to simplify the code review. The STRINGIZE(expression) macro encapsulates: std::ostringstream out; out << expression; return out.str(); We used that in a couple places. For LLVersionInfo specifically, lllogininstance_test.cpp used to dummy out a couple specific static methods. It's harder to dummy out LLSingleton::instance() references, so we add the real class to that test. | |||
2019-11-12 | Downstream merge from lindenlab/viewer-serval | AndreyL ProductEngine | |
2019-11-12 | Post-merge fixes | AndreyL ProductEngine | |
2019-11-12 | Downstream merge from 494-maint-wassail | AndreyL ProductEngine | |
2019-11-12 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2019-10-15 | Merge from viewer-release | andreykproductengine | |
2019-09-10 | Merged in lindenlab/viewer-release | andreykproductengine | |
2019-09-10 | SL-11910 [Win] Horizontal scroll | andreykproductengine | |
2019-09-04 | SL-12104 Fixed: Oversized snapshots being broken. | NiranV | |
2019-08-14 | Merged in lindenlab/viewer-release | andreykproductengine | |
2019-08-13 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-08-13 | Merged in lindenlab/viewer-lynx | AndreyL ProductEngine | |
2019-08-13 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2019-08-13 | DRTVWR-493 Reworked a number of inits | andreykproductengine | |
2019-08-10 | DRTVWR-493 LLUI to LLParamSingleton | andreykproductengine | |
2019-07-26 | SL-8380 Ability to disable 2D UI tooltips | andreykproductengine | |
2019-07-11 | SL-11435 When ALM is enabled, Depth mode shots are broken when snapshot size ↵ | ruslantproductengine | |
is set to anything above current window size - fixed bug described in the ticket - fixed bug with UI (when user change the layer type (color/depth)) | |||
2019-07-18 | SL-11592 [Mac] Ability to bind extra mouse buttons for push to talk | andreykproductengine | |
2019-07-18 | SL-11592 [Win] Ability to bind extra mouse buttons for push to talk | andreykproductengine | |
2019-06-12 | SL-11402 Last session image should be saved as png | andreykproductengine | |
2019-04-17 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2019-04-11 | SL-10891 Reset UI scale factor on first run if OS's display scaling is not 100% | AndreyL ProductEngine | |
2019-04-08 | SL-10907 getWidthF32 crash in fonts | andreykproductengine | |
2019-03-01 | mac build fix (add up to: ↵ | ruslantproductengine | |
https://bitbucket.org/lindenlab/viewer-cougar/pull-requests/46/clean-up-ui-scaling/diff) | |||
2019-03-01 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2019-04-06 | SL-10891 residues | AndreyL ProductEngine | |
2019-04-06 | SL-10891 Reset UI scale factor on first run if OS's display scaling is not 100% | AndreyL ProductEngine | |
2019-04-06 | Backed out changeset: a2983d6277f2 | AndreyL ProductEngine | |
2019-04-05 | SL-10891 Removed scaling to system UI size on Windows | AndreyL ProductEngine | |
2019-02-08 | Clean up UI scaling | Ansariel | |
2019-01-15 | - fix scale problem on Windows | ruslantproductengine | |
2019-01-14 | - remove getDeviceScaleFactor() and replace it to getSystemUISize() ↵ | ruslantproductengine | |
according Ansariel note | |||
2018-11-27 | Merged lindenlab/viewer-cougar into default | Ruslan Teliuk | |
2018-11-26 | SL-9766 [Render] [Mac] Alt + left mouse click has severely impaired functions | ruslantproductengine | |
SL-10019 - [Mac] [Render] Right-click context menu immediately disappears when clicking any place in the ‘Inventory’ floater SL-9984 - [Retina] Camera frustum, do not display correctly on "WORLD MAP" window. SL-10027 - [Mac] [Render] Add toggle for Retina support to mitigate FPS loss Re-FIX for Retina support. | |||
2018-11-14 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2018-11-14 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2018-11-02 | SL-9766 [Render] [Mac] Alt + left mouse click has severely impaired functions | ruslantproductengine | |
FIX #2 | |||
2018-10-23 | SL-9774 [Render] dragging active Second Life session to second monitor zooms ↵ | ruslantproductengine | |
in making viewer unusable | |||
2018-10-19 | SL-9766 [Render] [Mac] Alt + left mouse click has severely impaired functions | ruslantproductengine | |
2018-10-11 | Modify logging so that the in-viewer console and stderr do not escape line ↵ | Oz Linden | |
breaks Improve the implementation so that escaping is computed only once | |||
2018-09-27 | merge | Brad Payne (Vir Linden) | |
2018-09-27 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2018-09-03 | MAINT-9076 Improved support for Retina Displays | ruslantproductengine | |
2019-04-22 | SL-10828 [Dev tools] Scroll for fast timer | andreykproductengine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-02 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-03-01 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-02-25 | SL-10326 Restore ability to select own avatar and move it via manipulation ↵ | maxim_productengine | |
arrows |