From 1206a9dd1900ef9c526ca4d5672cbda4c2f1348b Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sat, 4 Jan 2020 21:59:54 -0500 Subject: [PATCH] Reduce string copies --- indra/llcommon/llcurrencywrapper.h | 4 ++-- indra/llui/llbutton.h | 4 ++-- indra/llui/llflatlistview.h | 2 +- indra/llui/lltabcontainer.cpp | 2 +- indra/llui/lltabcontainer.h | 2 +- indra/llui/llview.cpp | 2 +- indra/newview/llaoengine.cpp | 2 +- indra/newview/llaoengine.h | 2 +- indra/newview/llavatarlist.h | 2 +- indra/newview/llfloaterbuyland.cpp | 2 +- indra/newview/llinventorypanel.cpp | 2 +- indra/newview/llinventorypanel.h | 2 +- indra/newview/llpanelmaininventory.cpp | 2 +- indra/newview/llpanelmaininventory.h | 2 +- indra/newview/llpanelplaceprofile.cpp | 2 +- indra/newview/llviewerregion.cpp | 33 ++++++++++++++++---------- indra/newview/llviewerregion.h | 12 +++++----- indra/newview/llworldmap.h | 8 +++---- 18 files changed, 48 insertions(+), 39 deletions(-) diff --git a/indra/llcommon/llcurrencywrapper.h b/indra/llcommon/llcurrencywrapper.h index d9f34cf0ed..b2b38a5af1 100644 --- a/indra/llcommon/llcurrencywrapper.h +++ b/indra/llcommon/llcurrencywrapper.h @@ -45,8 +45,8 @@ class LLCurrencyWrapper final : public LLSingleton<LLCurrencyWrapper> public: void setCurrency(const std::string& currency); void setHomeCurrency(const std::string& currency); - std::string getCurrency() const { return mCurrency; } - std::string getHomeCurrency() const { return mHomeCurrency; } + const std::string& getCurrency() const { return mCurrency; } + const std::string& getHomeCurrency() const { return mHomeCurrency; } std::string wrapCurrency(const std::string& to_substitute) const; void wrapCurrency(std::string& to_substitute) const; diff --git a/indra/llui/llbutton.h b/indra/llui/llbutton.h index 7902a357aa..fcf4aaa58c 100644 --- a/indra/llui/llbutton.h +++ b/indra/llui/llbutton.h @@ -216,8 +216,8 @@ public: void setImageOverlayBottomPad( S32 pad ) { mImageOverlayBottomPad = pad; } S32 getImageOverlayBottomPad() const { return mImageOverlayBottomPad; } - const std::string getLabelUnselected() const { return wstring_to_utf8str(mUnselectedLabel); } - const std::string getLabelSelected() const { return wstring_to_utf8str(mSelectedLabel); } + const std::string& getLabelUnselected() const { return mUnselectedLabel.getString(); } + const std::string& getLabelSelected() const { return mSelectedLabel.getString(); } void setImageColor(const LLColor4& c); /*virtual*/ void setColor(const LLColor4& c) override; diff --git a/indra/llui/llflatlistview.h b/indra/llui/llflatlistview.h index d51686f825..46616657dd 100644 --- a/indra/llui/llflatlistview.h +++ b/indra/llui/llflatlistview.h @@ -492,7 +492,7 @@ public: * Sets up new filter string and filters the list. */ void setFilterSubString(const std::string& filter_str); - std::string getFilterSubString() const { return mFilterSubString; } + const std::string& getFilterSubString() const { return mFilterSubString; } /** * Filters the list, rearranges and notifies parent about shape changes. diff --git a/indra/llui/lltabcontainer.cpp b/indra/llui/lltabcontainer.cpp index 8a100d3353..f454654a43 100644 --- a/indra/llui/lltabcontainer.cpp +++ b/indra/llui/lltabcontainer.cpp @@ -1713,7 +1713,7 @@ void LLTabContainer::setTitle(const std::string& title) } } -const std::string LLTabContainer::getPanelTitle(S32 index) +const std::string& LLTabContainer::getPanelTitle(S32 index) { if (index >= 0 && index < (S32)mTabList.size()) { diff --git a/indra/llui/lltabcontainer.h b/indra/llui/lltabcontainer.h index 8f6263b01a..e1ed6e83fe 100644 --- a/indra/llui/lltabcontainer.h +++ b/indra/llui/lltabcontainer.h @@ -202,7 +202,7 @@ public: void setTabImage(LLPanel* child, const LLUUID& img_id, const LLColor4& color = LLColor4::white); void setTabImage(LLPanel* child, LLIconCtrl* icon); void setTitle( const std::string& title ); - const std::string getPanelTitle(S32 index); + const std::string& getPanelTitle(S32 index); void setTopBorderHeight(S32 height); S32 getTopBorderHeight() const; diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index 9b2442cb52..6b75cb17ac 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -248,7 +248,7 @@ void LLView::setToolTipArgs( const LLStringUtil::format_map_t& args ) const std::string LLView::getToolTip() const { if (!mToolTipMsg || !mToolTipMsg[0]) - return ""; + return std::string(); if (mTooltipArgs) { diff --git a/indra/newview/llaoengine.cpp b/indra/newview/llaoengine.cpp index 3695102649..3a5fcc9a86 100644 --- a/indra/newview/llaoengine.cpp +++ b/indra/newview/llaoengine.cpp @@ -1264,7 +1264,7 @@ LLAOSet* LLAOEngine::getSetByName(const std::string& name) const return found; } -const std::string LLAOEngine::getCurrentSetName() const +const std::string& LLAOEngine::getCurrentSetName() const { if(mCurrentSet) { diff --git a/indra/newview/llaoengine.h b/indra/newview/llaoengine.h index da9b04f6ce..260279d72d 100644 --- a/indra/newview/llaoengine.h +++ b/indra/newview/llaoengine.h @@ -129,7 +129,7 @@ public: static void onLoginComplete(); const std::vector<LLAOSet*> getSetList() const; - const std::string getCurrentSetName() const; + const std::string& getCurrentSetName() const; const LLAOSet* getDefaultSet() const; bool renameSet(LLAOSet* set, const std::string& name); diff --git a/indra/newview/llavatarlist.h b/indra/newview/llavatarlist.h index f083ec7c8c..9710f8680e 100644 --- a/indra/newview/llavatarlist.h +++ b/indra/newview/llavatarlist.h @@ -83,7 +83,7 @@ public: void sortByName(); void setShowIcons(std::string param_name); bool getIconsVisible() const { return mShowIcons; } - const std::string getIconParamName() const {return mIconParamName;} + const std::string& getIconParamName() const {return mIconParamName;} std::string getAvatarName(const LLAvatarName& av_name); BOOL handleRightMouseDown(S32 x, S32 y, MASK mask) override; BOOL handleMouseDown( S32 x, S32 y, MASK mask ) override; diff --git a/indra/newview/llfloaterbuyland.cpp b/indra/newview/llfloaterbuyland.cpp index 071220a58b..c2dbb89944 100644 --- a/indra/newview/llfloaterbuyland.cpp +++ b/indra/newview/llfloaterbuyland.cpp @@ -493,7 +493,7 @@ void LLFloaterBuyLandUI::updateCovenantInfo() if(!region) return; U8 sim_access = region->getSimAccess(); - std::string rating = LLViewerRegion::accessToString(sim_access); + const std::string& rating = LLViewerRegion::accessToString(sim_access); LLTextBox* region_name = getChild<LLTextBox>("region_name_text"); if (region_name) diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 5c9b12e14a..88a5058934 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -387,7 +387,7 @@ void LLInventoryPanel::setFilterSubString(const std::string& string) getFilter().setFilterSubString(string); } -const std::string LLInventoryPanel::getFilterSubString() +const std::string& LLInventoryPanel::getFilterSubString() { return getFilter().getFilterSubString(); } diff --git a/indra/newview/llinventorypanel.h b/indra/newview/llinventorypanel.h index 7d05bbd02d..a61e8b3f3f 100644 --- a/indra/newview/llinventorypanel.h +++ b/indra/newview/llinventorypanel.h @@ -179,7 +179,7 @@ public: U32 getFilterPermMask() const; void setFilterWearableTypes(U64 filter); void setFilterSubString(const std::string& string); - const std::string getFilterSubString(); + const std::string& getFilterSubString(); void setSinceLogoff(BOOL sl); void setHoursAgo(U32 hours); void setDateSearchDirection(U32 direction); diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 531d684b27..61ff6ed05c 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -655,7 +655,7 @@ void LLPanelMainInventory::onFilterSelected() setFilterTextFromFilter(); } -const std::string LLPanelMainInventory::getFilterSubString() +const std::string& LLPanelMainInventory::getFilterSubString() { return mActivePanel->getFilterSubString(); } diff --git a/indra/newview/llpanelmaininventory.h b/indra/newview/llpanelmaininventory.h index 7aa0498e91..08caf68baf 100644 --- a/indra/newview/llpanelmaininventory.h +++ b/indra/newview/llpanelmaininventory.h @@ -110,7 +110,7 @@ protected: static BOOL incrementalFind(LLFolderViewItem* first_item, const char *find_text, BOOL backward); void onFilterSelected(); - const std::string getFilterSubString(); + const std::string& getFilterSubString(); void setFilterSubString(const std::string& string); // menu callbacks diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index afe27e954f..78a34273c1 100644 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -390,7 +390,7 @@ void LLPanelPlaceProfile::displaySelectedParcelInfo(LLParcel* parcel, mEstateRatingIcon->setValue(icon_pg); } - std::string rating = LLViewerRegion::accessToString(sim_access); + const std::string& rating = LLViewerRegion::accessToString(sim_access); mParcelRatingText->setText(rating); mRegionRatingText->setText(rating); diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index bb5dcef685..cb8aef11d9 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -841,7 +841,7 @@ BOOL LLViewerRegion::canManageEstate() const || gAgent.getID() == getOwner(); } -const std::string LLViewerRegion::getSimAccessString() const +const std::string& LLViewerRegion::getSimAccessString() const { return accessToString(mSimAccess); } @@ -871,7 +871,7 @@ std::string LLViewerRegion::regionFlagsToString(U64 flags) } // static -std::string LLViewerRegion::accessToString(U8 sim_access) +const std::string& LLViewerRegion::accessToString(U8 sim_access) { switch (sim_access) { @@ -907,42 +907,51 @@ std::string LLViewerRegion::accessToString(U8 sim_access) } // static -std::string LLViewerRegion::getAccessIcon(U8 sim_access) +const std::string& LLViewerRegion::getAccessIcon(U8 sim_access) { + static const std::string parcel_m_dark("Parcel_M_Dark"); + static const std::string parcel_r_light("Parcel_R_Light"); + static const std::string parcel_pg_light("Parcel_PG_Light"); + switch(sim_access) { case SIM_ACCESS_MATURE: - return "Parcel_M_Dark"; + return parcel_m_dark; case SIM_ACCESS_ADULT: - return "Parcel_R_Light"; + return parcel_r_light; case SIM_ACCESS_PG: - return "Parcel_PG_Light"; + return parcel_pg_light; case SIM_ACCESS_MIN: default: - return ""; + return LLStringUtil::null; } } // static -std::string LLViewerRegion::accessToShortString(U8 sim_access) +const std::string& LLViewerRegion::accessToShortString(U8 sim_access) { + static const std::string ACCESS_PG_SHORT_STR("PG"); + static const std::string ACCESS_MATURE_SHORT_STR("M"); + static const std::string ACCESS_ADULT_SHORT_STR("A"); + static const std::string ACCESS_MIN_SHORT_STR("U"); + switch(sim_access) /* Flawfinder: ignore */ { case SIM_ACCESS_PG: - return "PG"; + return ACCESS_PG_SHORT_STR; case SIM_ACCESS_MATURE: - return "M"; + return ACCESS_MATURE_SHORT_STR; case SIM_ACCESS_ADULT: - return "A"; + return ACCESS_ADULT_SHORT_STR; case SIM_ACCESS_MIN: default: - return "U"; + return ACCESS_MIN_SHORT_STR; } } diff --git a/indra/newview/llviewerregion.h b/indra/newview/llviewerregion.h index 2f64370fe0..8ac4b00821 100644 --- a/indra/newview/llviewerregion.h +++ b/indra/newview/llviewerregion.h @@ -192,7 +192,7 @@ public: void setSimAccess(U8 sim_access) { mSimAccess = sim_access; } U8 getSimAccess() const { return mSimAccess; } - const std::string getSimAccessString() const; + const std::string& getSimAccessString() const; // Homestead-related getters; there are no setters as nobody should be // setting them other than the individual message handler which is a member @@ -206,14 +206,14 @@ public: static std::string regionFlagsToString(U64 flags); // Returns translated version of "Mature", "PG", "Adult", etc. - static std::string accessToString(U8 sim_access); + static const std::string& accessToString(U8 sim_access); // Returns "M", "PG", "A" etc. - static std::string accessToShortString(U8 sim_access); + static const std::string& accessToShortString(U8 sim_access); static U8 shortStringToAccess(const std::string &sim_access); // Return access icon name - static std::string getAccessIcon(U8 sim_access); + static const std::string& getAccessIcon(U8 sim_access); // helper function which just makes sure all interested parties // can process the message. @@ -361,8 +361,8 @@ public: friend std::ostream& operator<<(std::ostream &s, const LLViewerRegion ®ion); /// implements LLCapabilityProvider virtual std::string getDescription() const override; - std::string getLegacyHttpUrl() const { return mLegacyHttpUrl; } - std::string getViewerAssetUrl() const { return mViewerAssetUrl; } + const std::string& getLegacyHttpUrl() const { return mLegacyHttpUrl; } + const std::string& getViewerAssetUrl() const { return mViewerAssetUrl; } U32 getNumOfVisibleGroups() const; U32 getNumOfActiveCachedObjects() const; diff --git a/indra/newview/llworldmap.h b/indra/newview/llworldmap.h index fb8ca6cf71..e1cfc588df 100644 --- a/indra/newview/llworldmap.h +++ b/indra/newview/llworldmap.h @@ -122,11 +122,11 @@ public: // void setWaterHeight (F32 water_height) { mWaterHeight = water_height; } // Accessors - std::string getName() const { return mName; } + const std::string& getName() const { return mName; } const std::string getFlagsString() const { return LLViewerRegion::regionFlagsToString(mRegionFlags); } - const std::string getAccessString() const { return LLViewerRegion::accessToString((U8)mAccess); } - const std::string getShortAccessString() const { return LLViewerRegion::accessToShortString(static_cast<U8>(mAccess)); } // <alchemy/> - const std::string getAccessIcon() const { return LLViewerRegion::getAccessIcon(static_cast<U8>(mAccess)); } + const std::string& getAccessString() const { return LLViewerRegion::accessToString((U8)mAccess); } + const std::string& getShortAccessString() const { return LLViewerRegion::accessToShortString(static_cast<U8>(mAccess)); } // <alchemy/> + const std::string& getAccessIcon() const { return LLViewerRegion::getAccessIcon(static_cast<U8>(mAccess)); } const S32 getAgentCount() const; // Compute the total agents count LLPointer<LLViewerFetchedTexture> getLandForSaleImage(); // Get the overlay image, fetch it if necessary -- GitLab