| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /*-----------------------------------------------------------------------------------------------
- The MIT License (MIT)
- Copyright (c) 2014-2015 Kim Kulling
- 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 <openddlparser/OpenDDLCommon.h>
- #include <openddlparser/DDLNode.h>
- BEGIN_ODDLPARSER_NS
- Text::Text( const char *buffer, size_t numChars )
- : m_capacity( 0 )
- , m_len( 0 )
- , m_buffer( ddl_nullptr ) {
- set( buffer, numChars );
- }
- Text::~Text() {
- clear();
- }
- void Text::clear() {
- delete[] m_buffer;
- m_buffer = ddl_nullptr;
- m_capacity = 0;
- m_len = 0;
- }
- void Text::set( const char *buffer, size_t numChars ) {
- clear();
- if( numChars > 0 ) {
- m_len = numChars;
- m_capacity = m_len + 1;
- m_buffer = new char[ m_capacity ];
- strncpy( m_buffer, buffer, numChars );
- m_buffer[ numChars ] = '\0';
- }
- }
- bool Text::operator == ( const std::string &name ) const {
- if( m_len != name.size() ) {
- return false;
- }
- const int res( strncmp( m_buffer, name.c_str(), name.size() ) );
- return ( 0 == res );
- }
- bool Text::operator == ( const Text &rhs ) const {
- if( m_len != rhs.m_len ) {
- return false;
- }
- const int res( strncmp( m_buffer, rhs.m_buffer, m_len ) );
- return ( 0 == res );
- }
- Identifier::Identifier( const char buffer[], size_t len )
- : m_text( buffer, len ) {
- // empty
- }
- Identifier::Identifier( const char buffer[] )
- : m_text( buffer, strlen( buffer ) ) {
- // empty
- }
- Identifier::~Identifier() {
- // empty
- }
- bool Identifier::operator == ( const Identifier &rhs ) const {
- return m_text == rhs.m_text;
- }
- Name::Name( NameType type, Identifier *id )
- : m_type( type )
- , m_id( id ) {
- // empty
- }
- Name::~Name() {
- m_id = ddl_nullptr;
- }
- Reference::Reference()
- : m_numRefs( 0 )
- , m_referencedName( ddl_nullptr ) {
- // empty
- }
- Reference::Reference( size_t numrefs, Name **names )
- : m_numRefs( numrefs )
- , m_referencedName( ddl_nullptr ) {
- m_referencedName = new Name *[ numrefs ];
- for( size_t i = 0; i < numrefs; i++ ) {
- Name *name = new Name( names[ i ]->m_type, names[ i ]->m_id );
- m_referencedName[ i ] = name;
- }
- }
- Reference::~Reference() {
- for( size_t i = 0; i < m_numRefs; i++ ) {
- delete m_referencedName[ i ];
- }
- m_numRefs = 0;
- m_referencedName = ddl_nullptr;
- }
- Property::Property( Identifier *id )
- : m_key( id )
- , m_value( ddl_nullptr )
- , m_ref( ddl_nullptr )
- , m_next( ddl_nullptr ) {
- // empty
- }
- Property::~Property() {
- m_key = ddl_nullptr;
- m_value = ddl_nullptr;
- m_ref = ddl_nullptr;;
- m_next = ddl_nullptr;;
- }
- DataArrayList::DataArrayList()
- : m_numItems( 0 )
- , m_dataList( ddl_nullptr )
- , m_next( ddl_nullptr ) {
- // empty
- }
- DataArrayList::~DataArrayList() {
- // empty
- }
- Context::Context()
- : m_root( ddl_nullptr ) {
- // empty
- }
- Context::~Context() {
- m_root = ddl_nullptr;
- }
- void Context::clear() {
- delete m_root;
- m_root = ddl_nullptr;
- }
- END_ODDLPARSER_NS
|