//----------------------------------------------------------------------------- // Copyright (c) 2012 GarageGames, LLC // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. //----------------------------------------------------------------------------- #include #include #include "platform/platform.h" // Sigh... guess what compiler needs this... namespace DictHash { U32 hash( String::StringData* ); } namespace KeyCmp { template< typename Key > bool equals( const Key&, const Key& ); template<> bool equals<>( String::StringData* const&, String::StringData* const& ); } #include "core/util/str.h" #include "core/util/tDictionary.h" #include "core/strings/stringFunctions.h" #include "core/strings/unicode.h" #include "core/util/hashFunction.h" #include "core/util/autoPtr.h" #include "core/util/tVector.h" #include "core/dataChunker.h" #include "console/console.h" #include "console/engineAPI.h" #include "math/mMathFn.h" #include "platform/platform.h" #include "platform/profiler.h" #include "platform/platformIntrinsics.h" #include "platform/threads/mutex.h" #ifndef TORQUE_DISABLE_MEMORY_MANAGER # undef new #else # define _new new #endif const String::SizeType String::NPos = U32(~0); const String String::EmptyString; /// A delete policy for the AutoPtr class struct DeleteString { template static void destroy(T *ptr) { dFree(ptr); } }; //----------------------------------------------------------------------------- /// Search for a character. /// Search for the position of the needle in the haystack. /// Default mode is StrCase | StrLeft, mode also accepts StrNoCase and StrRight. /// If pos is non-zero, then in mode StrLeft the search starts at (hay + pos) and /// in mode StrRight the search starts at (hay + pos - 1) /// @return Returns a pointer to the location of the character in the haystack or 0 static const char* StrFind(const char* hay, char needle, S32 pos, U32 mode) { if (mode & String::Right) { // Go to the end first, then search backwards const char *he = hay; if (pos) { he += pos - 1; } else { while (*he) he++; } if (mode & String::NoCase) { needle = dTolower(needle); for (; he >= hay; he--) { if (dTolower(*he) == needle) return he; } } else { for (; he >= hay; he--) { if (*he == needle) return he; } } return 0; } else { if (mode & String::NoCase) { needle = dTolower(needle); for (hay += pos; *hay && dTolower(*hay) != needle;) hay++; } else { for (hay += pos; *hay && *hay != needle;) hay++; } return *hay ? hay : 0; } } /// Search for a StringData. /// Search for the position of the needle in the haystack. /// Default mode is StrCase | StrLeft, mode also accepts StrNoCase and StrRight. /// If pos is non-zero, then in mode StrLeft the search starts at (hay + pos) and /// in mode StrRight the search starts at (hay + pos - 1) /// @return Returns a pointer to the StringData in the haystack or 0 static const char* StrFind(const char* hay, const char* needle, S32 pos, U32 mode) { if (mode & String::Right) { const char *he = hay; if (pos) { he += pos - 1; } else { while (*he) he++; } if (mode & String::NoCase) { AutoPtr ln(dStrlwr(dStrdup(needle))); for (; he >= hay; he--) { if (dTolower(*he) == *ln) { U32 i = 0; while (ln[i] && ln[i] == dTolower(he[i])) i++; if (!ln[i]) return he; if (!hay[i]) return 0; } } } else { for (; he >= hay; he--) { if (*he == *needle) { U32 i = 0; while (needle[i] && needle[i] == he[i]) i++; if (!needle[i]) return he; if (!hay[i]) return 0; } } } return 0; } else { if (mode & String::NoCase) { AutoPtr ln(dStrlwr(dStrdup(needle))); for (hay += pos; *hay; hay++) { if (dTolower(*hay) == *ln) { U32 i = 0; while (ln[i] && ln[i] == dTolower(hay[i])) i++; if (!ln[i]) return hay; if (!hay[i]) return 0; } } } else { for (hay += pos; *hay; hay++) { if (*hay == *needle) { U32 i = 0; while (needle[i] && needle[i] == hay[i]) i++; if (!needle[i]) return hay; if (!hay[i]) return 0; } } } } return 0; } //----------------------------------------------------------------------------- /// Struct with String::StringData's field so we can initialize /// this without a constructor. struct StringDataImpl { #ifdef TORQUE_DEBUG StringChar* mString; ///< so we can inspect data in a debugger #endif U32 mRefCount; ///< String reference count; string is not refcounted if this is U32_MAX (necessary for thread-safety of interned strings and the empty string). U32 mLength; ///< String length in bytes excluding null. mutable U32 mNumChars; ///< Character count; varies from byte count for strings with multi-bytes characters. mutable U32 mHashCase; ///< case-sensitive hash mutable U32 mHashNoCase; ///< case-insensitive hash mutable UTF16* mUTF16; bool mIsInterned; ///< If true, this string is interned in the string table. StringChar mData[1]; ///< Start of string data }; /// class String::StringData : protected StringDataImpl { public: /// StringData( const StringChar* data, U32 length, bool interned = false ) { mRefCount = 1; mNumChars = U32_MAX; mHashCase = U32_MAX; mHashNoCase = U32_MAX; mUTF16 = NULL; mLength = length; mIsInterned = interned; if( data ) { dMemcpy( mData, data, sizeof( StringChar ) * mLength ); mData[ mLength ] = '\0'; } #ifdef TORQUE_DEBUG mString = &mData[0]; #endif if( mIsInterned ) mRefCount = U32_MAX; } ~StringData() { AssertFatal( mRefCount == 0, "StringData::~StringData invalid refcount" ); if( mUTF16 ) delete [] mUTF16; } static StringData* Create(const StringChar* data, U32 len, bool interned = false) { void* memory = dMalloc(sizeof(StringData) + sizeof(StringChar) * len); StringData* result = new(memory) StringData(data, len, interned); return result; } static StringData* Create(const StringChar* data, U32 len, DataChunker& chunker, bool interned = false) { void* memory = chunker.alloc( sizeof(StringData) + len * sizeof(StringChar)); StringData* result = new(memory) StringData(data, len, interned); return result; } bool isShared() const { return ( mRefCount > 1 ); } void addRef() { if( mRefCount != U32_MAX ) mRefCount ++; } void release() { if( mRefCount != U32_MAX ) { -- mRefCount; if( !mRefCount ) delete this; } } U32 getLength() const { return mLength; } U32 getDataSize() const { return ( mLength + 1 ); } U32 getDataSizeUTF16() const { return ( mLength * sizeof( UTF16 ) ); } UTF8 operator []( U32 index ) const { AssertFatal( index < mLength, "String::StringData::operator []() - index out of range" ); return mData[ index ]; } UTF8* utf8() { return mData; } const UTF8* utf8() const { return mData; } UTF16* utf16() const { if( !mUTF16 ) { // Do this atomically to protect interned strings. UTF16* utf16 = createUTF16string( mData ); if( !dCompareAndSwap( mUTF16,( UTF16* ) NULL, utf16 ) ) delete [] utf16; } return mUTF16; } U32 getHashCase() const { return mHashCase; } U32 getOrCreateHashCase() const { if( mHashCase == U32_MAX ) { PROFILE_SCOPE(StringData_getOrCreateHashCase); mHashCase = Torque::hash((const U8 *)(mData), mLength, 0); } return mHashCase; } U32 getHashNoCase() const { return mHashNoCase; } U32 getOrCreateHashNoCase() const { if( mHashNoCase == U32_MAX) { PROFILE_SCOPE(StringData_getOrCreateHashNoCase); UTF8 *lower = new UTF8[ mLength + 1 ]; dStrncpy( lower, utf8(), mLength ); lower[ mLength ] = 0; dStrlwr( lower ); mHashNoCase = Torque::hash( (const U8*)lower, mLength, 0 ); delete [] lower; } return mHashNoCase; } U32 getNumChars() const { if( mNumChars == U32_MAX ) mNumChars = dStrlen( utf16() ); return mNumChars; } bool isInterned() const { return mIsInterned; } static StringData* Empty() { static UTF16 emptyUTF16[ 1 ] = { 0 }; static StringDataImpl empty = { #ifdef TORQUE_DEBUG "", // mString #endif U32_MAX, // mRefCount 0, // mLength 0, // mNumChars 0, // mHashCase 0, // mHashNoCase emptyUTF16, // mUTF16 true, // mIsInterned { 0 } // mData }; return ( StringData* ) ∅ } }; //----------------------------------------------------------------------------- namespace DictHash { inline U32 hash( String::StringData* data ) { return data->getOrCreateHashCase(); } } namespace KeyCmp { template<> inline bool equals<>( String::StringData* const& d1, String::StringData* const& d2 ) { return ( String::compare( d1->utf8(), d2->utf8() ) == 0 ); } } /// Type for the intern string table. We don't want String instances directly /// on the table so that destructors don't run when the table is destroyed. This /// is because we really shouldn't depend on dtor ordering within this file and thus /// we can't tell whether the intern string memory is freed before or after the /// table is destroyed. struct StringInternTable : public HashTable< String::StringData*, String::StringData* > { Mutex mMutex; DataChunker mChunker; }; static StringInternTable* sInternTable; struct KillInternTable { ~KillInternTable() { if( sInternTable ) delete sInternTable; } }; static KillInternTable sKillInternTable; //----------------------------------------------------------------------------- #ifdef TORQUE_DEBUG /// Tracks the number of bytes allocated for strings. /// @bug This currently does not include UTF16 allocations. static U32 sgStringMemBytes; /// Tracks the number of Strings which are currently instantiated. static U32 sgStringInstances; #endif DefineEngineFunction( dumpStringMemStats, void, (), , "()" "@brief Dumps information about String memory usage\n\n" "@ingroup Debugging\n" "@ingroup Strings\n") { #ifdef TORQUE_DEBUG Con::printf( "String Data: %i instances, %i bytes", sgStringInstances, sgStringMemBytes ); #endif } //----------------------------------------------------------------------------- String::String() { PROFILE_SCOPE(String_default_constructor); _string = StringData::Empty(); } String::String(const String &str) { PROFILE_SCOPE(String_String_constructor); _string = str._string; _string->addRef(); } String::String(const StringChar *str) { PROFILE_SCOPE(String_char_constructor); if( str && *str ) { U32 len = dStrlen(str); _string = StringData::Create(str, len); } else _string = StringData::Empty(); } String::String(const StringChar *str, SizeType len) { PROFILE_SCOPE(String_char_len_constructor); if (str && *str && len!=0) { _string = StringData::Create(str, len); } else _string = StringData::Empty(); } String::String(const UTF16 *str) { PROFILE_SCOPE(String_UTF16_constructor); if( str && str[ 0 ] ) { UTF8* utf8 = createUTF8string( str ); U32 len = dStrlen( utf8 ); _string = StringData::Create(utf8, len); delete [] utf8; } else _string = StringData::Empty(); } String::~String() { if (_string && _string != StringData::Empty()) _string->release(); } //----------------------------------------------------------------------------- String String::intern() const { if( isInterned() ) return *this; // Create the intern table, if we haven't already. if( !sInternTable ) sInternTable = new StringInternTable; // Lock the string table. MutexHandle mutex; mutex.lock( &sInternTable->mMutex ); // Lookup. StringInternTable::Iterator iter = sInternTable->find( _string ); if( iter != sInternTable->end() ) return ( *iter ).value; // Create new. StringData* data = StringData::Create(c_str(), length(), sInternTable->mChunker, true); iter = sInternTable->insertUnique( data, data ); return ( *iter ).value; } //----------------------------------------------------------------------------- const StringChar* String::c_str() const { return _string->utf8(); } const UTF16 *String::utf16() const { return _string->utf16(); } String::SizeType String::length() const { return _string->getLength(); } String::SizeType String::size() const { return _string->getDataSize(); } String::SizeType String::numChars() const { return _string->getNumChars(); } bool String::isEmpty() const { return ( _string == StringData::Empty() ); } bool String::isEmpty(const char* str) { return str == 0 || str[0] == '\0'; } bool String::isShared() const { return _string->isShared(); } bool String::isSame( const String& str ) const { return ( _string == str._string ); } bool String::isInterned() const { return ( _string->isInterned() ); } U32 String::getHashCaseSensitive() const { return _string->getOrCreateHashCase(); } U32 String::getHashCaseInsensitive() const { return _string->getOrCreateHashNoCase(); } //----------------------------------------------------------------------------- String::SizeType String::find(const String &str, SizeType pos, U32 mode) const { return find(str._string->utf8(), pos, mode); } String& String::insert(SizeType pos, const String &str) { return insert(pos, str._string->utf8()); } String& String::replace(SizeType pos, SizeType len, const String &str) { return replace(pos, len, str._string->utf8()); } //----------------------------------------------------------------------------- String& String::operator=(StringChar c) { _string->release(); _string = StringData::Create(NULL, 2); _string->utf8()[ 0 ] = c; _string->utf8()[ 1 ] = '\0'; return *this; } String& String::operator+=(StringChar c) { // Append the given string into a new string U32 len = _string->getLength(); StringData* sub = StringData::Create(NULL, len + 1); copy( sub->utf8(), _string->utf8(), len ); sub->utf8()[len] = c; sub->utf8()[len+1] = 0; _string->release(); _string = sub; return *this; } //----------------------------------------------------------------------------- String& String::operator=(const StringChar *str) { // Protect against self assignment which is not only a // waste of time, but can also lead to the string being // freed before it can be reassigned. if ( _string->utf8() == str ) return *this; _string->release(); if (str && *str) { U32 len = dStrlen(str); _string = StringData::Create(str, len); } else _string = StringData::Empty(); return *this; } String& String::operator=(const String &src) { // Inc src first to avoid assignment to self problems. src._string->addRef(); _string->release(); _string = src._string; return *this; } String& String::operator+=(const StringChar *src) { if( src == NULL || !*src ) return *this; // Append the given string into a new string U32 lena = _string->getLength(); U32 lenb = dStrlen(src); U32 newlen = lena + lenb; StringData* sub; if( !newlen ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newlen); copy(sub->utf8(),_string->utf8(),lena); copy(sub->utf8() + lena,src,lenb + 1); } _string->release(); _string = sub; return *this; } String& String::operator+=(const String &src) { if( src.isEmpty() ) return *this; // Append the given string into a new string U32 lena = _string->getLength(); U32 lenb = src._string->getLength(); U32 newlen = lena + lenb; StringData* sub; if( !newlen ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newlen); copy(sub->utf8(),_string->utf8(),lena); copy(sub->utf8() + lena,src._string->utf8(),lenb + 1); } _string->release(); _string = sub; return *this; } //----------------------------------------------------------------------------- String operator+(const String &a, const String &b) { PROFILE_SCOPE( String_String_plus_String ); if( a.isEmpty() ) return b; else if( b.isEmpty() ) return a; U32 lena = a.length(); U32 lenb = b.length(); String::StringData* sub = String::StringData::Create(NULL, lena + lenb); String::copy(sub->utf8(),a._string->utf8(),lena); String::copy(sub->utf8() + lena,b._string->utf8(),lenb + 1); return String(sub); } String operator+(const String &a, StringChar c) { //PROFILE_SCOPE( String_String_plus_Char ); U32 lena = a.length(); String::StringData* sub = String::StringData::Create(NULL, lena + 1); String::copy(sub->utf8(),a._string->utf8(),lena); sub->utf8()[lena] = c; sub->utf8()[lena+1] = 0; return String(sub); } String operator+(StringChar c, const String &a) { //PROFILE_SCOPE( String_Char_plus_String ); U32 lena = a.length(); String::StringData* sub = String::StringData::Create(NULL, lena + 1); String::copy(sub->utf8() + 1,a._string->utf8(),lena + 1); sub->utf8()[0] = c; return String(sub); } String operator+(const String &a, const StringChar *b) { //PROFILE_SCOPE( String_String_plus_CString ); AssertFatal(b,"String:: Invalid null ptr argument"); if( a.isEmpty() ) return String( b ); U32 lena = a.length(); U32 lenb = dStrlen(b); if( !lenb ) return a; String::StringData* sub = String::StringData::Create(NULL, lena + lenb); String::copy(sub->utf8(),a._string->utf8(),lena); String::copy(sub->utf8() + lena,b,lenb + 1); return String(sub); } String operator+(const StringChar *a, const String &b) { //PROFILE_SCOPE( String_CString_plus_String ); AssertFatal(a,"String:: Invalid null ptr argument"); if( b.isEmpty() ) return String( a ); U32 lena = dStrlen(a); if( !lena ) return b; U32 lenb = b.length(); String::StringData* sub = String::StringData::Create(NULL, lena + lenb); String::copy(sub->utf8(),a,lena); String::copy(sub->utf8() + lena,b._string->utf8(),lenb + 1); return String(sub); } bool String::operator==(const String &str) const { //PROFILE_SCOPE( String_op_equal ); if( str._string == _string ) return true; else if( str._string->isInterned() && _string->isInterned() ) return false; else if( str.length() != length() ) return false; else if( str._string->getHashCase() != U32_MAX && _string->getHashCase() != U32_MAX && str._string->getHashCase() != _string->getHashCase() ) return false; else return ( dMemcmp( str._string->utf8(), _string->utf8(), _string->getLength() ) == 0 ); } bool String::operator==( StringChar c ) const { if( !_string || _string->getLength() != 1 ) return false; else return ( _string->utf8()[ 0 ] == c ); } bool String::operator<(const String &str) const { return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) < 0 ); } bool String::operator>(const String &str) const { return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) > 0 ); } bool String::operator<=(const String &str) const { return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) <= 0 ); } bool String::operator>=(const String &str) const { return ( dStrnatcmp( _string->utf8(), str._string->utf8() ) >= 0 ); } //----------------------------------------------------------------------------- // Base functions for string comparison S32 String::compare(const StringChar *str, SizeType len, U32 mode) const { PROFILE_SCOPE( String_compare ); AssertFatal(str,"String:: Invalid null ptr argument"); const StringChar *p1 = _string->utf8(); const StringChar *p2 = str; if (p1 == p2) return 0; if( mode & String::Right ) { U32 n = len; if( n > length() ) n = length(); p1 += length() - n; p2 += dStrlen( str ) - n; } if (mode & String::NoCase) { if (len) { for (;--len; p1++,p2++) { if (dTolower(*p1) != dTolower(*p2) || !*p1) break; } } else { while (dTolower(*p1) == dTolower(*p2) && *p1) { p1++; p2++; } } return dTolower(*p1) - dTolower(*p2); } if (len) return dMemcmp(p1,p2,len); while (*p1 == *p2 && *p1) { p1++; p2++; } return *p1 - *p2; } S32 String::compare(const String &str, SizeType len, U32 mode) const { if ( str._string == _string ) return 0; return compare( str.c_str(), len, mode ); } S32 String::compare(const char *str1, const char *str2) { return strcmp(str1, str2); } S32 String::compare(const UTF16 *str1, const UTF16 *str2) { #if defined(TORQUE_OS_WIN) || defined(TORQUE_OS_XBOX) || defined(TORQUE_OS_XENON) return wcscmp(reinterpret_cast(str1), reinterpret_cast(str2)); #else S32 ret; const UTF16 *a, *b; a = str1; b = str2; while (((ret = *a - *b) == 0) && *a && *b) a++, b++; return ret; #endif } bool String::equal(const String &str, U32 mode) const { if( !mode ) return ( *this == str ); else { if( _string == str._string ) return true; else if( _string->isInterned() && str._string->isInterned() ) return false; else if( length() != str.length() ) return false; else if( _string->getHashNoCase() != U32_MAX && str._string->getHashNoCase() != U32_MAX && _string->getHashNoCase() != str._string->getHashNoCase() ) return false; else return ( compare( str.c_str(), length(), mode ) == 0 ); } } //----------------------------------------------------------------------------- String::SizeType String::find(StringChar c, SizeType pos, U32 mode) const { const StringChar* ptr = StrFind(_string->utf8(),c,pos,mode); return ptr? SizeType(ptr - _string->utf8()): NPos; } String::SizeType String::find(const StringChar *str, SizeType pos, U32 mode) const { AssertFatal(str,"String:: Invalid null ptr argument"); const StringChar* ptr = StrFind(_string->utf8(),str,pos,mode); return ptr? SizeType(ptr - _string->utf8()): NPos; } //----------------------------------------------------------------------------- String& String::insert(SizeType pos, const StringChar *str) { AssertFatal(str,"String:: Invalid null ptr argument"); return insert(pos,str,dStrlen(str)); } ///@todo review for error checking String& String::insert(SizeType pos, const StringChar *str, SizeType len) { if( !len ) return *this; AssertFatal( str, "String:: Invalid null ptr argument" ); SizeType lena = length(); AssertFatal((pos <= lena),"Calling String::insert with position greater than length"); U32 newlen = lena + len; StringData *sub; if( !newlen ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newlen); String::copy(sub->utf8(),_string->utf8(),pos); String::copy(sub->utf8() + pos,str,len); String::copy(sub->utf8() + pos + len,_string->utf8() + pos,lena - pos + 1); } _string->release(); _string = sub; return *this; } String& String::erase(SizeType pos, SizeType len) { AssertFatal( len != 0, "String::erase() - Calling String::erase with 0 length" ); AssertFatal( ( pos + len ) <= length(), "String::erase() - Invalid string region" ); if( !len ) return *this; SizeType slen = length(); U32 newlen = slen - len; StringData *sub; if( !newlen ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newlen); if (pos > 0) String::copy(sub->utf8(),_string->utf8(),pos); String::copy(sub->utf8() + pos, _string->utf8() + pos + len, slen - (pos + len) + 1); } _string->release(); _string = sub; return *this; } ///@todo review for error checking String& String::replace(SizeType pos, SizeType len, const StringChar *str) { AssertFatal( str, "String::replace() - Invalid null ptr argument" ); AssertFatal( len != 0, "String::replace() - Zero length" ); AssertFatal( ( pos + len ) <= length(), "String::replace() - Invalid string region" ); SizeType slen = length(); SizeType rlen = dStrlen(str); U32 newlen = slen - len + rlen; StringData *sub; if( !newlen ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newlen); String::copy(sub->utf8(),_string->utf8(), pos); String::copy(sub->utf8() + pos,str,rlen); String::copy(sub->utf8() + pos + rlen,_string->utf8() + pos + len,slen - pos - len + 1); } _string->release(); _string = sub; return *this; } String& String::replace( StringChar c1, StringChar c2 ) { if( isEmpty() ) return *this; // Create the new string lazily so that we don't needlessly // dup strings when there is nothing to replace. StringData* sub = NULL; bool foundReplacement = false; StringChar* c = _string->utf8(); while( *c ) { if( *c == c1 ) { if( !foundReplacement ) { sub = StringData::Create(_string->utf8(), length()); c = &sub->utf8()[ c - _string->utf8() ]; foundReplacement = true; } *c = c2; } c++; } if( foundReplacement ) { _string->release(); _string = sub; } return *this; } String &String::replace(const String &s1, const String &s2) { // Find number of occurrences of s1 and // Calculate length of the new string... const U32 &s1len = s1.length(); const U32 &s2len = s2.length(); U32 pos = 0; Vector indices; StringChar *walk = _string->utf8(); while ( walk ) { // Casting away the const... was there a better way? walk = (StringChar*)StrFind( _string->utf8(), s1.c_str(), pos, Case|Left ); if ( walk ) { pos = SizeType(walk - _string->utf8()); indices.push_back( pos ); pos += s1len; } } // Early-out, no StringDatas found. if ( indices.size() == 0 ) return *this; U32 newSize = size() - ( indices.size() * s1len ) + ( indices.size() * s2len ); StringData *sub; if( newSize == 1 ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, newSize - 1); // Now assemble the new string from the pieces of the old... // Index into the old string pos = 0; // Index into the new string U32 newPos = 0; // Used to store a character count to be memcpy'd U32 copyCharCount = 0; for ( U32 i = 0; i < indices.size(); i++ ) { const U32 &index = indices[i]; // Number of chars (if any) before the next indexed StringData copyCharCount = index - pos; // Copy chars before the StringData if we have any. if ( copyCharCount > 0 ) { dMemcpy( sub->utf8() + newPos, _string->utf8() + pos, copyCharCount * sizeof(StringChar) ); newPos += copyCharCount; } // Copy over the replacement string. if ( s2len > 0 ) dMemcpy( sub->utf8() + newPos, s2._string->utf8(), s2len * sizeof(StringChar) ); newPos += s2len; pos = index + s1len; } // There could be characters left in the original string after the last // StringData occurrence, which we need to copy now - outside the loop. copyCharCount = length() - indices.last() - s1len; if ( copyCharCount != 0 ) dMemcpy( sub->utf8() + newPos, _string->utf8() + pos, copyCharCount * sizeof(StringChar) ); // Null terminate it! sub->utf8()[newSize-1] = 0; } _string->release(); _string = sub; return *this; } //----------------------------------------------------------------------------- String String::substr(SizeType pos, SizeType len) const { //PROFILE_SCOPE( String_substr ); AssertFatal( pos <= length(), "String::substr - Invalid position!" ); if ( len == -1 ) len = length() - pos; AssertFatal( len + pos <= length(), "String::substr - Invalid length!" ); StringData* sub; if( !len ) sub = StringData::Empty(); else sub = StringData::Create(_string->utf8() + pos, len); return sub; } //----------------------------------------------------------------------------- String String::trim() const { if( isEmpty() ) return *this; const StringChar* start = _string->utf8(); while( *start && dIsspace( *start ) ) start ++; const StringChar* end = _string->utf8() + length() - 1; while( end > start && dIsspace( *end ) ) end --; end ++; const U32 len = end - start; if( len == length() ) return *this; StringData* sub; if( !len ) sub = StringData::Empty(); else sub = StringData::Create(start, len); return sub; } //----------------------------------------------------------------------------- String String::expandEscapes() const { char* tmp = ( char* ) dMalloc( length() * 2 + 1 ); // worst-case situation. expandEscape( tmp, c_str() ); String str( tmp ); dFree( tmp ); return str; } //----------------------------------------------------------------------------- String String::collapseEscapes() const { char* tmp = dStrdup( c_str() ); collapseEscape( tmp ); String str( tmp ); dFree( tmp ); return str; } //----------------------------------------------------------------------------- void String::split( const char* delimiter, Vector< String >& outElements ) const { const char* ptr = _string->utf8(); const char* start = ptr; while( *ptr ) { // Search for start of delimiter. if( *ptr != delimiter[ 0 ] ) ptr ++; else { // Skip delimiter. const char* end = ptr; const char* del = delimiter; while( *del && *del == *ptr ) { ptr ++; del ++; } // If we didn't match all of delimiter, // continue with search. if( *del != '\0' ) continue; // Extract component. outElements.push_back( String( start, end - start ) ); start = ptr; } } // Add rest of string if there is any. if( start != ptr ) outElements.push_back( start ); } //----------------------------------------------------------------------------- bool String::startsWith( const char* text ) const { return dStrStartsWith( _string->utf8(), text ); } //----------------------------------------------------------------------------- bool String::endsWith( const char* text ) const { return dStrEndsWith( _string->utf8(), text ); } //----------------------------------------------------------------------------- void String::copy(StringChar* dst, const StringChar *src, U32 len) { dMemcpy(dst, src, len * sizeof(StringChar)); } //----------------------------------------------------------------------------- #if defined(TORQUE_OS_WIN) // This standard function is not defined when compiling with VC7... #define vsnprintf _vsnprintf #endif String::StrFormat::~StrFormat() { if( _dynamicBuffer ) dFree( _dynamicBuffer ); } S32 String::StrFormat::format( const char *format, va_list args ) { _len=0; return formatAppend(format,args); } S32 String::StrFormat::formatAppend( const char *format, va_list args ) { // Format into the fixed buffer first. S32 startLen = _len; if (_dynamicBuffer == NULL) { _len += vsnprintf(_fixedBuffer + _len, sizeof(_fixedBuffer) - _len, format, args); if (_len >= 0 && _len < sizeof(_fixedBuffer)) return _len; // Start off the dynamic buffer at twice fixed buffer size _len = startLen; _dynamicSize = sizeof(_fixedBuffer) * 2; _dynamicBuffer = (char*)dMalloc(_dynamicSize); dMemcpy(_dynamicBuffer, _fixedBuffer, _len + 1); } // Format into the dynamic buffer, if the buffer is not large enough, then // keep doubling it's size until it is. The buffer is not reallocated // using reallocate() to avoid unnecessary buffer copying. _len += vsnprintf(_dynamicBuffer + _len, _dynamicSize - _len, format, *(va_list*)args); while (_len < 0 || _len >= _dynamicSize) { _len = startLen; _dynamicBuffer = (char*)dRealloc(_dynamicBuffer, _dynamicSize *= 2); _len += vsnprintf(_dynamicBuffer + _len, _dynamicSize - _len, format, *(va_list*)args); } return _len; } S32 String::StrFormat::append(const char * str, S32 len) { if (_dynamicBuffer == NULL) { if (_len+len >= 0 && _len+len < sizeof(_fixedBuffer)) { dMemcpy(_fixedBuffer + _len, str, len); _len += len; _fixedBuffer[_len] = '\0'; return _len; } _dynamicSize = sizeof(_fixedBuffer) * 2; _dynamicBuffer = (char*)dMalloc(_dynamicSize); dMemcpy(_dynamicBuffer, _fixedBuffer, _len + 1); } S32 newSize = _dynamicSize; while (newSize < _len+len) newSize *= 2; if (newSize != _dynamicSize) _dynamicBuffer = (char*) dRealloc(_dynamicBuffer, newSize); _dynamicSize = newSize; dMemcpy(_dynamicBuffer + _len, str, len); _len += len; _dynamicBuffer[_len] = '\0'; return _len; } S32 String::StrFormat::append(const char * str) { return append(str, dStrlen(str)); } char* String::StrFormat::copy( char *buffer ) const { dMemcpy(buffer, _dynamicBuffer? _dynamicBuffer: _fixedBuffer, _len+1); return buffer; } //----------------------------------------------------------------------------- String String::ToString( bool value ) { static String sTrue = "true"; static String sFalse = "false"; if( value ) return sTrue; return sFalse; } String String::ToString(const char *str, ...) { AssertFatal(str,"String:: Invalid null ptr argument"); // Use the format object va_list args; va_start(args, str); String ret = VToString(str, args); va_end(args); return ret; } String String::VToString(const char* str, va_list args) { StrFormat format(str,args); // Copy it into a string U32 len = format.length(); StringData* sub; if( !len ) sub = StringData::Empty(); else { sub = StringData::Create(NULL, len); format.copy( sub->utf8() ); sub->utf8()[ len ] = 0; } return sub; } String String::SpanToString(const char *start, const char *end) { if ( end == start ) return String(); AssertFatal( end > start, "Invalid arguments to String::SpanToString - end is before start" ); U32 len = U32(end - start); String::StringData* sub = StringData::Create(start, len); return sub; } String String::ToLower(const String &string) { if ( string.isEmpty() ) return String(); String::StringData* sub = StringData::Create(string, string.length()); dStrlwr( sub->utf8() ); return sub; } String String::ToUpper(const String &string) { if ( string.isEmpty() ) return String(); String::StringData* sub = StringData::Create(string, string.length()); dStrupr( sub->utf8() ); return sub; } String String::GetTrailingNumber(const char* str, S32& number) { // Check for trivial strings if (!str || !str[0]) return String::EmptyString; // Find the number at the end of the string String base(str); const char* p = base.c_str() + base.length() - 1; // Ignore trailing whitespace while ((p != base.c_str()) && dIsspace(*p)) p--; // Need at least one digit! if (!isdigit(*p)) return base; // Back up to the first non-digit character while ((p != base.c_str()) && isdigit(*p)) p--; // Convert number => allow negative numbers, treat '_' as '-' for Maya if ((*p == '-') || (*p == '_')) number = -dAtoi(p + 1); else number = (isdigit(*p) ? dAtoi(p) : dAtoi(++p)); // Remove space between the name and the number while ((p > base.c_str()) && dIsspace(*(p-1))) p--; return base.substr(0, p - base.c_str()); } String String::GetFirstNumber(const char* str, U32& startPos, U32& endPos) { // Check for trivial strings if (!str || !str[0]) return String::EmptyString; // Find the number at the end of the string String base(str); const char* p = base.c_str(); const char* end = base.c_str() + base.length() - 1; bool dec = false; startPos = 0; //Check if we are just a digit if(p == end && isdigit(*p)) return base; //Look for the first digit while ((p != end) && (dIsspace(*p) || !isdigit(*p))) { p++; startPos++; } //Handle if we are at the end and found nothing if(p == end && !isdigit(*p)) return ""; //update our end position at least to the start of our number endPos = startPos; //Backup our ptr const char* backup = p; //Check for any negative or decimal values if(startPos > 0) { p--; startPos--; if(*p == '.') { dec = true; //ignore any duplicate periods while ((p != base.c_str()) && (*p == '.')) { p--; startPos--; } //Found a decimal lets still check for negative sign if(startPos > 0) { p--; startPos--; if((*p != '-') && (*p != '_')) { startPos++; p++; } } } else if((*p != '-') && (*p != '_')) { //go back to where we where cause no decimal or negative sign found startPos++; p++; } } //Restore where we were p = backup; //look for the end of the digits bool justFoundDec = false; while (p != end) { if(*p == '.') { if(dec && !justFoundDec) break; else { dec = true; justFoundDec = true; } } else if(!isdigit(*p)) break; else if(justFoundDec) justFoundDec = false; p++; endPos++; } U32 len = (!isdigit(*p)) ? endPos - startPos : (endPos + 1) - startPos; return base.substr(startPos, len); }