/*==LICENSE==* CyanWorlds.com Engine - MMOG client, server and tools Copyright (C) 2011 Cyan Worlds, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Additional permissions under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK, NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK (or a modified version of those libraries), containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA, PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL and IJG JPEG Library used as well as that of the covered work. You can contact Cyan Worlds, Inc. by email legal@cyan.com or by snail mail at: Cyan Worlds, Inc. 14617 N Newport Hwy Mead, WA 99021 *==LICENSE==*/ #ifndef hsStlUtils_h_inc #define hsStlUtils_h_inc #include "hsUtils.h" #include #include #include #include #include #include #include #include /***************************************************************************** * * derived stl classes that use our heap manager * ***/ // TEMPLATE CLASS cyallocator template class cyallocator : public std::_Allocator_base<_Ty> { // generic cyallocator for objects of class _Ty public: typedef std::_Allocator_base<_Ty> _Mybase; typedef typename _Mybase::value_type value_type; typedef value_type _FARQ *pointer; typedef value_type _FARQ& reference; typedef const value_type _FARQ *const_pointer; typedef const value_type _FARQ& const_reference; typedef _SIZT size_type; typedef _PDFT difference_type; template struct rebind { // convert an cyallocator<_Ty> to an cyallocator <_Other> typedef cyallocator<_Other> other; }; pointer address(reference _Val) const { // return address of mutable _Val return (&_Val); } const_pointer address(const_reference _Val) const { // return address of nonmutable _Val return (&_Val); } cyallocator() { // construct default cyallocator (do nothing) } cyallocator(const cyallocator<_Ty>&) { // construct by copying (do nothing) } template cyallocator(const cyallocator<_Other>&) { // construct from a related cyallocator (do nothing) } template cyallocator<_Ty>& operator=(const cyallocator<_Other>&) { // assign from a related cyallocator (do nothing) return (*this); } void deallocate(pointer _Ptr, size_type) { // deallocate object at _Ptr, ignore size FREE(_Ptr); } pointer allocate(size_type _Count) { // allocate array of _Count elements return (pointer)ALLOC(_Count * sizeof(_Ty)); } pointer allocate(size_type _Count, const void _FARQ *) { // allocate array of _Count elements, ignore hint return (allocate(_Count)); } void construct(pointer _Ptr, const _Ty& _Val) { // construct object at _Ptr with value _Val std::_Construct(_Ptr, _Val); } void destroy(pointer _Ptr) { // destroy object at _Ptr std::_Destroy(_Ptr); } _SIZT max_size() const { // estimate maximum array size _SIZT _Count = (_SIZT)(-1) / sizeof (_Ty); return (0 < _Count ? _Count : 1); } }; // cyallocator TEMPLATE OPERATORS template inline bool operator==(const cyallocator<_Ty>&, const cyallocator<_Other>&) { // test for cyallocator equality (always true) return (true); } template inline bool operator!=(const cyallocator<_Ty>&, const cyallocator<_Other>&) { // test for cyallocator inequality (always false) return (false); } // CLASS cyallocator template<> class _CRTIMP2 cyallocator { // generic cyallocator for type void public: typedef void _Ty; typedef _Ty _FARQ *pointer; typedef const _Ty _FARQ *const_pointer; typedef _Ty value_type; template struct rebind { // convert an cyallocator to an cyallocator <_Other> typedef cyallocator<_Other> other; }; cyallocator() { // construct default cyallocator (do nothing) } cyallocator(const cyallocator<_Ty>&) { // construct by copying (do nothing) } template cyallocator(const cyallocator<_Other>&) { // construct from related cyallocator (do nothing) } template cyallocator<_Ty>& operator=(const cyallocator<_Other>&) { // assign from a related cyallocator (do nothing) return (*this); } }; /***************************************************************************** * * Drop-in replacements for stl classes. Uses our allocator instead of the default one. * ***/ typedef std::basic_string, cyallocator > cystring; typedef std::basic_string, cyallocator > cywstring; // cyistring and cyiwstring declared later in this file // TEMPLATE CLASS cyvector template class cyvector : public std::vector<_Ty, cyallocator<_Ty> > { }; // TEMPLATE CLASS cymap template > class cymap : public std::map<_Kty, _Ty, _Pr, cyallocator > > { }; // TEMPLATE CLASS cylist template class cylist : public std::list<_Ty, cyallocator<_Ty> > { }; // TEMPLATE CLASS cyset template > class cyset : public std::set<_Kty, _Pr, cyallocator< _Kty > > { }; /***************************************************************************** * * stl extensions * ***/ namespace xtl { // Why oh why doesn't stl have copy_if? // See Effective STL [Meyers 2001] Item 36. template< typename InIt, typename OutIt, typename Pred > OutIt copy_if( InIt srcBegin, InIt srcEnd, OutIt dstBegin, Pred pred ) { while ( srcBegin!=srcEnd ) { if ( pred( *srcBegin ) ) *dstBegin++ = *srcBegin; ++srcBegin; } return dstBegin; } // useful when clearing a vector/list/set of pointers that need to be deleted. // use like: // std::vector vec; // std::for_each(vec.begin(),vec.end(),xtl::delete_ptr()); // vec.clear(); struct delete_ptr { template< class T > void operator()( T * p ) const { delete p;} }; // useful when clearing a map of pointers that need to be deleted. // use like: // typedef std::map foomap; // foomap m; // std::for_each(m.begin(),m.end(),xtl::delete_map_ptr_T()); // m.clear(); template< class A > struct delete_map_ptr_T { void operator()( typename A::value_type & pair ) const { delete pair.second;} }; // case insensitive string comparer // useful in maps that use strings struct stricmp_less : public std::binary_function { bool operator()(const std::string & _X, const std::string & _Y) const {return ( _stricmp(_X.c_str(),_Y.c_str()) < 0); } }; struct wstricmp_less : public std::binary_function { bool operator()(const std::wstring & _X, const std::wstring & _Y) const {return ( _wcsicmp(_X.c_str(),_Y.c_str()) < 0); } }; // struct stricmp_char_traits // case insensitive char_traits. used in creating istring class below #ifdef __SGI_STL_PORT struct stricmp_char_traits : public __std_alias::char_traits< char > #else struct stricmp_char_traits : public std::char_traits< char > #endif { static int compare(const char * A, const char * B, size_t N) { for (size_t I=0; I #else struct wstricmp_char_traits : public std::char_traits< wchar_t > #endif { static int compare(const wchar_t * A, const wchar_t * B, size_t N) { for (size_t I=0; I istring; typedef std::basic_string iwstring; // cyallocator version of istring typedef std::basic_string > cyistring; typedef std::basic_string > cyiwstring; // std::string trim std::string & trimleft(std::string & s, const char * charset=" \t\n\r"); std::wstring & trimleft(std::wstring & s, const wchar_t * charset=L" \t\n\r"); std::string & trimright(std::string & s, const char * charset=" \t\n\r"); std::wstring & trimright(std::wstring & s, const wchar_t * charset=L" \t\n\r"); std::string & trim(std::string & s, const char * charset=" \t\n\r"); std::wstring & trim(std::wstring & s, const wchar_t * charset=L" \t\n\r"); // xtl::istring trim xtl::istring & trimleft(xtl::istring & s, const char * charset=" \t\n\r"); xtl::iwstring & trimleft(xtl::iwstring & s, const wchar_t * charset=L" \t\n\r"); xtl::istring & trimright(xtl::istring & s, const char * charset=" \t\n\r"); xtl::iwstring & trimright(xtl::iwstring & s, const wchar_t * charset=L" \t\n\r"); xtl::istring & trim(xtl::istring & s, const char * charset=" \t\n\r"); xtl::iwstring & trim(xtl::iwstring & s, const wchar_t * charset=L" \t\n\r"); // c-string trim std::string trim(const char * s, const char * charset=" \t\n\r"); std::wstring trim(const wchar_t * s, const wchar_t * charset=L" \t\n\r"); // format std::string format(const char * fmt, ...); std::wstring format(const wchar_t * fmt, ...); std::string formatv(const char * fmt, va_list args); std::wstring formatv(const wchar_t * fmt, va_list args); bool format(std::string & out, const char * fmt, ...); bool format(std::wstring & out, const wchar_t * fmt, ...); bool formatv(std::string & out, const char * fmt, va_list args); bool formatv(std::wstring & out, const wchar_t * fmt, va_list args); template bool GetStringGroup(const std::string& s, T& group, char sep = ','); template bool GetStringGroup(const std::wstring& s, T& group, wchar_t sep = L','); template bool GetStringGroupAsString(const T& group, std::string& s, char sep = ','); template bool GetStringGroupAsString(const T& group, std::wstring& s, wchar_t sep = L','); } // namespace xtd #endif // hsStlUtils_h_inc