//========= Copyright Valve Corporation, All rights reserved. ============// // // Purpose: // //============================================================================= #ifndef UTLSTRING_H #define UTLSTRING_H #ifdef _WIN32 #pragma once #endif #include "tier1/utlmemory.h" #include "tier1/strtools.h" #include "limits.h" #if defined( OSX ) #define wcsdup wcsdup_osx inline wchar_t *wcsdup_osx(const wchar_t *pString) { wchar_t *pMemory; if (!pString) return NULL; size_t len = (wcslen(pString) + 1); if ((pMemory = (wchar_t *)malloc(len * sizeof(wchar_t))) != NULL) { return wcscpy( pMemory, pString ); } return NULL; } #endif //----------------------------------------------------------------------------- // Base class, containing simple memory management //----------------------------------------------------------------------------- class CUtlBinaryBlock { public: CUtlBinaryBlock( int growSize = 0, int initSize = 0 ); // NOTE: nInitialLength indicates how much of the buffer starts full CUtlBinaryBlock( void* pMemory, int nSizeInBytes, int nInitialLength ); CUtlBinaryBlock( const void* pMemory, int nSizeInBytes ); CUtlBinaryBlock( const CUtlBinaryBlock& src ); void Get( void *pValue, int nMaxLen ) const; void Set( const void *pValue, int nLen ); const void *Get( ) const; void *Get( ); unsigned char& operator[]( int i ); const unsigned char& operator[]( int i ) const; int Length() const; void SetLength( int nLength ); // Undefined memory will result bool IsEmpty() const; void Clear(); void Purge(); bool IsReadOnly() const; CUtlBinaryBlock &operator=( const CUtlBinaryBlock &src ); // Test for equality bool operator==( const CUtlBinaryBlock &src ) const; private: CUtlMemory m_Memory; int m_nActualLength; }; //----------------------------------------------------------------------------- // class inlines //----------------------------------------------------------------------------- inline const void *CUtlBinaryBlock::Get( ) const { return m_Memory.Base(); } inline void *CUtlBinaryBlock::Get( ) { return m_Memory.Base(); } inline int CUtlBinaryBlock::Length() const { return m_nActualLength; } inline unsigned char& CUtlBinaryBlock::operator[]( int i ) { return m_Memory[i]; } inline const unsigned char& CUtlBinaryBlock::operator[]( int i ) const { return m_Memory[i]; } inline bool CUtlBinaryBlock::IsReadOnly() const { return m_Memory.IsReadOnly(); } inline bool CUtlBinaryBlock::IsEmpty() const { return Length() == 0; } inline void CUtlBinaryBlock::Clear() { SetLength( 0 ); } inline void CUtlBinaryBlock::Purge() { SetLength( 0 ); m_Memory.Purge(); } //----------------------------------------------------------------------------- // Simple string class. // NOTE: This is *not* optimal! Use in tools, but not runtime code //----------------------------------------------------------------------------- class CUtlString { public: typedef enum { PATTERN_NONE = 0x00000000, PATTERN_DIRECTORY = 0x00000001 } TUtlStringPattern; public: CUtlString(); CUtlString( const char *pString ); CUtlString( const CUtlString& string ); // Attaches the string to external memory. Useful for avoiding a copy CUtlString( void* pMemory, int nSizeInBytes, int nInitialLength ); CUtlString( const void* pMemory, int nSizeInBytes ); const char *Get( ) const; void Set( const char *pValue ); void Clear() { Set( NULL ); } // Converts to c-strings operator const char*() const; // for compatibility switching items from UtlSymbol const char *String() const { return Get(); } // Returns strlen int Length() const; bool IsEmpty() const; // Sets the length (used to serialize into the buffer ) // Note: If nLen != 0, then this adds an extra byte for a null-terminator. void SetLength( int nLen ); char *Get(); void Purge(); // Case Change void ToLower(); void ToUpper(); void Append( const char *pchAddition ); // Strips the trailing slash void StripTrailingSlash(); CUtlString &operator=( const CUtlString &src ); CUtlString &operator=( const char *src ); // Test for equality bool operator==( const CUtlString &src ) const; bool operator==( const char *src ) const; bool operator!=( const CUtlString &src ) const { return !operator==( src ); } bool operator!=( const char *src ) const { return !operator==( src ); } // If these are not defined, CUtlString as rhs will auto-convert // to const char* and do logical operations on the raw pointers. Ugh. inline friend bool operator==( const char *lhs, const CUtlString &rhs ) { return rhs.operator==( lhs ); } inline friend bool operator!=( const char *lhs, const CUtlString &rhs ) { return rhs.operator!=( lhs ); } CUtlString &operator+=( const CUtlString &rhs ); CUtlString &operator+=( const char *rhs ); CUtlString &operator+=( char c ); CUtlString &operator+=( int rhs ); CUtlString &operator+=( double rhs ); // is valid? bool IsValid() const; bool MatchesPattern( const CUtlString &Pattern, int nFlags = 0 ); // case SENSITIVE, use * for wildcard in pattern string int Format( PRINTF_FORMAT_STRING const char *pFormat, ... ); void SetDirect( const char *pValue, int nChars ); // Defining AltArgumentType_t hints that associative container classes should // also implement Find/Insert/Remove functions that take const char* params. typedef const char *AltArgumentType_t; // Take a piece out of the string. // If you only specify nStart, it'll go from nStart to the end. // You can use negative numbers and it'll wrap around to the start. CUtlString Slice( int32 nStart=0, int32 nEnd=INT_MAX ); // Grab a substring starting from the left or the right side. CUtlString Left( int32 nChars ); CUtlString Right( int32 nChars ); // Replace all instances of one character with another. CUtlString Replace( char cFrom, char cTo ); // Calls right through to V_MakeAbsolutePath. CUtlString AbsPath( const char *pStartingDir=NULL ); // Gets the filename (everything except the path.. c:\a\b\c\somefile.txt -> somefile.txt). CUtlString UnqualifiedFilename(); // Strips off one directory. Uses V_StripLastDir but strips the last slash also! CUtlString DirName(); // Works like V_ComposeFileName. static CUtlString PathJoin( const char *pStr1, const char *pStr2 ); // These can be used for utlvector sorts. static int __cdecl SortCaseInsensitive( const CUtlString *pString1, const CUtlString *pString2 ); static int __cdecl SortCaseSensitive( const CUtlString *pString1, const CUtlString *pString2 ); private: CUtlBinaryBlock m_Storage; }; //----------------------------------------------------------------------------- // Inline methods //----------------------------------------------------------------------------- inline bool CUtlString::IsEmpty() const { return Length() == 0; } inline bool CUtlString::IsValid() const { return ( String() != NULL ); } inline int __cdecl CUtlString::SortCaseInsensitive( const CUtlString *pString1, const CUtlString *pString2 ) { return V_stricmp( pString1->String(), pString2->String() ); } inline int __cdecl CUtlString::SortCaseSensitive( const CUtlString *pString1, const CUtlString *pString2 ) { return V_strcmp( pString1->String(), pString2->String() ); } //----------------------------------------------------------------------------- // Purpose: Implementation of low-level string functionality for character types. //----------------------------------------------------------------------------- template < typename T > class StringFuncs { public: static T *Duplicate( const T *pValue ); // Note that this function takes a character count, and does not guarantee null-termination. static void Copy( T *out_pOut, const T *pIn, int iLengthInChars ); static int Compare( const T *pLhs, const T *pRhs ); static int CaselessCompare( const T *pLhs, const T *pRhs ); static int Length( const T *pValue ); static const T *FindChar( const T *pStr, const T cSearch ); static const T *EmptyString(); static const T *NullDebugString(); }; template < > class StringFuncs { public: static char *Duplicate( const char *pValue ) { return strdup( pValue ); } // Note that this function takes a character count, and does not guarantee null-termination. static void Copy( OUT_CAP(iLengthInChars) char *out_pOut, const char *pIn, int iLengthInChars ) { strncpy( out_pOut, pIn, iLengthInChars ); } static int Compare( const char *pLhs, const char *pRhs ) { return strcmp( pLhs, pRhs ); } static int CaselessCompare( const char *pLhs, const char *pRhs ) { return Q_strcasecmp( pLhs, pRhs ); } static int Length( const char *pValue ) { return (int)strlen( pValue ); } static const char *FindChar( const char *pStr, const char cSearch ) { return strchr( pStr, cSearch ); } static const char *EmptyString() { return ""; } static const char *NullDebugString() { return "(null)"; } }; template < > class StringFuncs { public: static wchar_t *Duplicate( const wchar_t *pValue ) { return wcsdup( pValue ); } // Note that this function takes a character count, and does not guarantee null-termination. static void Copy( OUT_CAP(iLengthInChars) wchar_t *out_pOut, const wchar_t *pIn, int iLengthInChars ) { wcsncpy( out_pOut, pIn, iLengthInChars ); } static int Compare( const wchar_t *pLhs, const wchar_t *pRhs ) { return wcscmp( pLhs, pRhs ); } static int CaselessCompare( const wchar_t *pLhs, const wchar_t *pRhs ); // no implementation? static int Length( const wchar_t *pValue ) { return (int)wcslen( pValue ); } static const wchar_t *FindChar( const wchar_t *pStr, const wchar_t cSearch ) { return wcschr( pStr, cSearch ); } static const wchar_t *EmptyString() { return L""; } static const wchar_t *NullDebugString() { return L"(null)"; } }; //----------------------------------------------------------------------------- // Dirt-basic auto-release string class. Not intended for manipulation, // can be stored in a container or forwarded as a functor parameter. // Note the benefit over CUtlString: sizeof(CUtlConstString) == sizeof(char*). // Also note: null char* pointers are treated identically to empty strings. //----------------------------------------------------------------------------- template < typename T = char > class CUtlConstStringBase { public: CUtlConstStringBase() : m_pString( NULL ) {} explicit CUtlConstStringBase( const T *pString ) : m_pString( NULL ) { Set( pString ); } CUtlConstStringBase( const CUtlConstStringBase& src ) : m_pString( NULL ) { Set( src.m_pString ); } ~CUtlConstStringBase() { Set( NULL ); } void Set( const T *pValue ); void Clear() { Set( NULL ); } const T *Get() const { return m_pString ? m_pString : StringFuncs::EmptyString(); } bool IsEmpty() const { return m_pString == NULL; } // Note: empty strings are never stored by Set int Compare( const T *rhs ) const; // Logical ops bool operator<( const T *rhs ) const { return Compare( rhs ) < 0; } bool operator==( const T *rhs ) const { return Compare( rhs ) == 0; } bool operator!=( const T *rhs ) const { return Compare( rhs ) != 0; } bool operator<( const CUtlConstStringBase &rhs ) const { return Compare( rhs.m_pString ) < 0; } bool operator==( const CUtlConstStringBase &rhs ) const { return Compare( rhs.m_pString ) == 0; } bool operator!=( const CUtlConstStringBase &rhs ) const { return Compare( rhs.m_pString ) != 0; } // If these are not defined, CUtlConstString as rhs will auto-convert // to const char* and do logical operations on the raw pointers. Ugh. inline friend bool operator<( const T *lhs, const CUtlConstStringBase &rhs ) { return rhs.Compare( lhs ) > 0; } inline friend bool operator==( const T *lhs, const CUtlConstStringBase &rhs ) { return rhs.Compare( lhs ) == 0; } inline friend bool operator!=( const T *lhs, const CUtlConstStringBase &rhs ) { return rhs.Compare( lhs ) != 0; } CUtlConstStringBase &operator=( const T *src ) { Set( src ); return *this; } CUtlConstStringBase &operator=( const CUtlConstStringBase &src ) { Set( src.m_pString ); return *this; } // Defining AltArgumentType_t is a hint to containers that they should // implement Find/Insert/Remove functions that take const char* params. typedef const T *AltArgumentType_t; protected: const T *m_pString; }; template < typename T > void CUtlConstStringBase::Set( const T *pValue ) { if ( pValue != m_pString ) { free( ( void* ) m_pString ); m_pString = pValue && pValue[0] ? StringFuncs::Duplicate( pValue ) : NULL; } } template < typename T > int CUtlConstStringBase::Compare( const T *rhs ) const { // Empty or null RHS? if ( !rhs || !rhs[0] ) return m_pString ? 1 : 0; // Empty *this, non-empty RHS? if ( !m_pString ) return -1; // Neither empty return StringFuncs::Compare( m_pString, rhs ); } typedef CUtlConstStringBase CUtlConstString; typedef CUtlConstStringBase CUtlConstWideString; //----------------------------------------------------------------------------- // Helper functor objects. //----------------------------------------------------------------------------- template < typename T > struct UTLConstStringCaselessStringLessFunctor { bool operator()( const CUtlConstStringBase& a, const char *b ) const { return StringFuncs::CaselessCompare( a.Get(), b ) < 0; } }; template < typename T > struct UTLConstStringCaselessStringEqualFunctor { bool operator()( const CUtlConstStringBase& a, const char *b ) const { return StringFuncs::CaselessCompare( a.Get(), b ) == 0; } }; #endif // UTLSTRING_H