[Gcblue-commits] gcb_wx/src/common tinystr.cpp,NONE,1.1 tinyxml.cpp,NONE,1.1 tinyxmlerror.cpp,NONE,1
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-03-24 21:20:10
|
Update of /cvsroot/gcblue/gcb_wx/src/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30331/src/common Added Files: tinystr.cpp tinyxml.cpp tinyxmlerror.cpp tinyxmlparser.cpp Removed Files: tcXMLFile.cpp Log Message: Replaced libxml2 with TinyXml to make Xml easier to use --- NEW FILE: tinyxmlparser.cpp --- /* www.sourceforge.net/projects/tinyxml Original code (2.0 and earlier )copyright (c) 2000-2002 Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. [...1120 lines suppressed...] standalone = attrib.Value(); } else { // Read over whatever it is. while( p && *p && *p != '>' && !isspace( *p ) ) ++p; } } return 0; } bool TiXmlText::Blank() const { for ( unsigned i=0; i<value.length(); i++ ) if ( !isspace( value[i] ) ) return false; return true; } --- NEW FILE: tinyxmlerror.cpp --- /* www.sourceforge.net/projects/tinyxml Original code (2.0 and earlier )copyright (c) 2000-2002 Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "tinyxml.h" // The goal of the seperate error file is to make the first // step towards localization. tinyxml (currently) only supports // latin-1, but at least the error messages could now be translated. // // It also cleans up the code a bit. // const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] = { "No error", "Error", "Failed to open file", "Memory allocation failed.", "Error parsing Element.", "Failed to read Element name", "Error reading Element value.", "Error reading Attributes.", "Error: empty tag.", "Error reading end tag.", "Error parsing Unknown.", "Error parsing Comment.", "Error parsing Declaration.", "Error document empty." }; --- tcXMLFile.cpp DELETED --- --- NEW FILE: tinystr.cpp --- /* www.sourceforge.net/projects/tinyxml Original file by Yves Berquin. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "tinyxml.h" #ifndef TIXML_USE_STL #include <stdlib.h> #include <string.h> #include <ctype.h> #include "tinystr.h" #pragma warning (disable : 4267) // ALTERED, added this line for vc7.1 // TiXmlString constructor, based on a C string TiXmlString::TiXmlString (const char* instring) { unsigned newlen; char * newstring; if (!instring) { allocated = 0; cstring = NULL; current_length = 0; return; } newlen = strlen (instring) + 1; newstring = new char [newlen]; memcpy (newstring, instring, newlen); // strcpy (newstring, instring); allocated = newlen; cstring = newstring; current_length = newlen - 1; } // TiXmlString copy constructor TiXmlString::TiXmlString (const TiXmlString& copy) { unsigned newlen; char * newstring; // Prevent copy to self! if ( © == this ) return; if (! copy . allocated) { allocated = 0; cstring = NULL; current_length = 0; return; } newlen = copy . length () + 1; newstring = new char [newlen]; // strcpy (newstring, copy . cstring); memcpy (newstring, copy . cstring, newlen); allocated = newlen; cstring = newstring; current_length = newlen - 1; } // TiXmlString = operator. Safe when assign own content void TiXmlString ::operator = (const char * content) { unsigned newlen; char * newstring; if (! content) { empty_it (); return; } newlen = strlen (content) + 1; newstring = new char [newlen]; // strcpy (newstring, content); memcpy (newstring, content, newlen); empty_it (); allocated = newlen; cstring = newstring; current_length = newlen - 1; } // = operator. Safe when assign own content void TiXmlString ::operator = (const TiXmlString & copy) { unsigned newlen; char * newstring; if (! copy . length ()) { empty_it (); return; } newlen = copy . length () + 1; newstring = new char [newlen]; // strcpy (newstring, copy . c_str ()); memcpy (newstring, copy . c_str (), newlen); empty_it (); allocated = newlen; cstring = newstring; current_length = newlen - 1; } //// Checks if a TiXmlString contains only whitespace (same rules as isspace) //bool TiXmlString::isblank () const //{ // char * lookup; // for (lookup = cstring; * lookup; lookup++) // if (! isspace (* lookup)) // return false; // return true; //} // append a const char * to an existing TiXmlString void TiXmlString::append( const char* str, int len ) { char * new_string; unsigned new_alloc, new_size, size_suffix; size_suffix = strlen (str); if (len < (int) size_suffix) size_suffix = len; if (! size_suffix) return; new_size = length () + size_suffix + 1; // check if we need to expand if (new_size > allocated) { // compute new size new_alloc = assign_new_size (new_size); // allocate new buffer new_string = new char [new_alloc]; new_string [0] = 0; // copy the previous allocated buffer into this one if (allocated && cstring) // strcpy (new_string, cstring); memcpy (new_string, cstring, length ()); // append the suffix. It does exist, otherwize we wouldn't be expanding // strncat (new_string, str, len); memcpy (new_string + length (), str, size_suffix); // return previsously allocated buffer if any if (allocated && cstring) delete [] cstring; // update member variables cstring = new_string; allocated = new_alloc; } else { // we know we can safely append the new string // strncat (cstring, str, len); memcpy (cstring + length (), str, size_suffix); } current_length = new_size - 1; cstring [current_length] = 0; } // append a const char * to an existing TiXmlString void TiXmlString::append( const char * suffix ) { char * new_string; unsigned new_alloc, new_size; new_size = length () + strlen (suffix) + 1; // check if we need to expand if (new_size > allocated) { // compute new size new_alloc = assign_new_size (new_size); // allocate new buffer new_string = new char [new_alloc]; new_string [0] = 0; // copy the previous allocated buffer into this one if (allocated && cstring) memcpy (new_string, cstring, 1 + length ()); // strcpy (new_string, cstring); // append the suffix. It does exist, otherwize we wouldn't be expanding // strcat (new_string, suffix); memcpy (new_string + length (), suffix, strlen (suffix) + 1); // return previsously allocated buffer if any if (allocated && cstring) delete [] cstring; // update member variables cstring = new_string; allocated = new_alloc; } else { // we know we can safely append the new string // strcat (cstring, suffix); memcpy (cstring + length (), suffix, strlen (suffix) + 1); } current_length = new_size - 1; } // Check for TiXmlString equuivalence //bool TiXmlString::operator == (const TiXmlString & compare) const //{ // return (! strcmp (c_str (), compare . c_str ())); //} //unsigned TiXmlString::length () const //{ // if (allocated) // // return strlen (cstring); // return current_length; // return 0; //} unsigned TiXmlString::find (char tofind, unsigned offset) const { char * lookup; if (offset >= length ()) return (unsigned) notfound; for (lookup = cstring + offset; * lookup; lookup++) if (* lookup == tofind) return lookup - cstring; return (unsigned) notfound; } bool TiXmlString::operator == (const TiXmlString & compare) const { if ( allocated && compare.allocated ) { assert( cstring ); assert( compare.cstring ); return ( strcmp( cstring, compare.cstring ) == 0 ); } return false; } bool TiXmlString::operator < (const TiXmlString & compare) const { if ( allocated && compare.allocated ) { assert( cstring ); assert( compare.cstring ); return ( strcmp( cstring, compare.cstring ) > 0 ); } return false; } bool TiXmlString::operator > (const TiXmlString & compare) const { if ( allocated && compare.allocated ) { assert( cstring ); assert( compare.cstring ); return ( strcmp( cstring, compare.cstring ) < 0 ); } return false; } #endif // TIXML_USE_STL --- NEW FILE: tinyxml.cpp --- /* www.sourceforge.net/projects/tinyxml Original code (2.0 and earlier )copyright (c) 2000-2002 Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. [...1221 lines suppressed...] } TiXmlHandle TiXmlHandle::ChildElement( const char* value, int count ) const { if ( node ) { int i; TiXmlElement* child = node->FirstChildElement( value ); for ( i=0; child && i<count; child = child->NextSiblingElement( value ), ++i ) { // nothing } if ( child ) return TiXmlHandle( child ); } return TiXmlHandle( 0 ); } |