/** * @file llstringtable.h * @brief The LLStringTable class provides a _fast_ method for finding * unique copies of strings. * * $LicenseInfo:firstyear=2001&license=viewergpl$ * * Copyright (c) 2001-2009, Linden Research, Inc. * * Second Life Viewer Source Code * The source code in this file ("Source Code") is provided by Linden Lab * to you under the terms of the GNU General Public License, version 2.0 * ("GPL"), unless you have obtained a separate licensing agreement * ("Other License"), formally executed by you and Linden Lab. Terms of * the GPL can be found in doc/GPL-license.txt in this distribution, or * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 * * There are special exceptions to the terms and conditions of the GPL as * it is applied to this Source Code. View the full text of the exception * in the file doc/FLOSS-exception.txt in this software distribution, or * online at * http://secondlifegrid.net/programs/open_source/licensing/flossexception * * By copying, modifying or distributing this software, you acknowledge * that you have read and understood your obligations described above, * and agree to abide by those obligations. * * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, * COMPLETENESS OR PERFORMANCE. * $/LicenseInfo$ */ #ifndef LL_STRING_TABLE_H #define LL_STRING_TABLE_H #include "lldefs.h" #include "llformat.h" #include "llstl.h" #include #include #if LL_WINDOWS # if (_MSC_VER >= 1300 && _MSC_VER < 1400) # define STRING_TABLE_HASH_MAP 1 # endif #else //# define STRING_TABLE_HASH_MAP 1 #endif #if STRING_TABLE_HASH_MAP # if LL_WINDOWS # include # else # include # endif #endif const U32 MAX_STRINGS_LENGTH = 256; class LL_COMMON_API LLStringTableEntry { public: LLStringTableEntry(const char *str); ~LLStringTableEntry(); void incCount() { mCount++; } BOOL decCount() { return --mCount; } char *mString; S32 mCount; }; class LL_COMMON_API LLStringTable { public: LLStringTable(int tablesize); ~LLStringTable(); char *checkString(const char *str); char *checkString(const std::string& str); LLStringTableEntry *checkStringEntry(const char *str); LLStringTableEntry *checkStringEntry(const std::string& str); char *addString(const char *str); char *addString(const std::string& str); LLStringTableEntry *addStringEntry(const char *str); LLStringTableEntry *addStringEntry(const std::string& str); void removeString(const char *str); S32 mMaxEntries; S32 mUniqueEntries; #if STRING_TABLE_HASH_MAP #if LL_WINDOWS typedef std::hash_multimap string_hash_t; #else typedef __gnu_cxx::hash_multimap string_hash_t; #endif string_hash_t mStringHash; #else typedef std::list string_list_t; typedef string_list_t * string_list_ptr_t; string_list_ptr_t *mStringList; #endif }; extern LL_COMMON_API LLStringTable gStringTable; //============================================================================ // This class is designed to be used locally, // e.g. as a member of an LLXmlTree // Strings can be inserted only, then quickly looked up typedef const std::string* LLStdStringHandle; class LL_COMMON_API LLStdStringTable { public: LLStdStringTable(S32 tablesize = 0) { if (tablesize == 0) { tablesize = 256; // default } // Make sure tablesize is power of 2 for (S32 i = 31; i>0; i--) { if (tablesize & (1<= (3<<(i-1))) tablesize = (1<<(i+1)); else tablesize = (1< > string_set_t; string_set_t* mStringList; // [mTableSize] }; #endif