123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /*-----------------------------------------------------------------------------------------------
- The MIT License (MIT)
- Copyright (c) 2014 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/DDLNode.h>
- #include <openddlparser/OpenDDLParser.h>
- #include <algorithm>
- BEGIN_ODDLPARSER_NS
- DDLNode::DllNodeList DDLNode::s_allocatedNodes;
- template<class T>
- inline
- static void releaseDataType( T *ptr ) {
- if( ddl_nullptr == ptr ) {
- return;
- }
- T *current( ddl_nullptr );
- while( ptr ) {
- current = ptr;
- ptr = ptr->m_next;
- delete current;
- }
- }
- DDLNode::DDLNode( const std::string &type, const std::string &name, size_t idx, DDLNode *parent )
- : m_type( type )
- , m_name( name )
- , m_parent( parent )
- , m_children()
- , m_properties( ddl_nullptr )
- , m_value( ddl_nullptr )
- , m_idx( idx )
- , m_dtArrayList( ddl_nullptr ) {
- if( m_parent ) {
- m_parent->m_children.push_back( this );
- }
- }
- DDLNode::~DDLNode() {
- releaseDataType<Property>( m_properties );
- releaseDataType<Value>( m_value );
- delete m_dtArrayList;
- m_dtArrayList = ddl_nullptr;
- if( s_allocatedNodes[ m_idx ] == this ) {
- s_allocatedNodes[ m_idx ] = ddl_nullptr;
- }
- }
- void DDLNode::attachParent( DDLNode *parent ) {
- if( m_parent == parent ) {
- return;
- }
- m_parent = parent;
- if( ddl_nullptr != m_parent ) {
- m_parent->m_children.push_back( this );
- }
- }
- void DDLNode::detachParent() {
- if( m_parent ) {
- std::vector<DDLNode*>::iterator it;
- it = std::find( m_parent->m_children.begin(), m_parent->m_children.end(), this );
- if( m_parent->m_children.end() != it ) {
- m_parent->m_children.erase( it );
- }
- m_parent = ddl_nullptr;
- }
- }
- DDLNode *DDLNode::getParent() const {
- return m_parent;
- }
- const DDLNode::DllNodeList &DDLNode::getChildNodeList() const {
- return m_children;
- }
- void DDLNode::setType( const std::string &type ) {
- m_type = type;
- }
- const std::string &DDLNode::getType() const {
- return m_type;
- }
- void DDLNode::setName( const std::string &name ) {
- m_name = name;
- }
- const std::string &DDLNode::getName() const {
- return m_name;
- }
- void DDLNode::setProperties( Property *prop ) {
- m_properties = prop;
- }
- Property *DDLNode::getProperties() const {
- return m_properties;
- }
- void DDLNode::setValue( Value *val ) {
- m_value = val;
- }
- Value *DDLNode::getValue() const {
- return m_value;
- }
- void DDLNode::setDataArrayList( DataArrayList *dtArrayList ) {
- m_dtArrayList = dtArrayList;
- }
- DataArrayList *DDLNode::getDataArrayList() const {
- return m_dtArrayList;
- }
- DDLNode *DDLNode::create( const std::string &type, const std::string &name, DDLNode *parent ) {
- const size_t idx( s_allocatedNodes.size() );
- DDLNode *node = new DDLNode( type, name, idx, parent );
- s_allocatedNodes.push_back( node );
-
- return node;
- }
- void DDLNode::releaseNodes() {
- if( s_allocatedNodes.size() > 0 ) {
- for( DllNodeList::iterator it = s_allocatedNodes.begin(); it != s_allocatedNodes.end(); it++ ) {
- if( *it ) {
- delete *it;
- }
- }
- s_allocatedNodes.clear();
- }
- }
- END_ODDLPARSER_NS
|