summaryrefslogtreecommitdiff
path: root/XMPCore/ImplHeaders/ArrayNodeImpl.h
blob: 9c9945941b29d2d5a2c888db0dbc224c796c1265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef ArrayNodeImpl_h__
#define ArrayNodeImpl_h__ 1

// =================================================================================================
// Copyright Adobe
// Copyright 2014 Adobe
// All Rights Reserved
//
// NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it. 
// =================================================================================================

#if !(IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED)
	#error "Not adhering to design constraints"
	// this file should only be included from its own cpp file
#endif

#include "XMPCore/Interfaces/IArrayNode_I.h"
#include "XMPCore/ImplHeaders/CompositeNodeImpl.h"
#include "XMPCommon/Utilities/TAllocator.h"

#include <vector>

#if XMP_WinBuild
	#pragma warning( push )
	#pragma warning( disable : 4250 )
#endif

namespace AdobeXMPCore_Int {

	class ArrayNodeImpl
		: public virtual IArrayNode_I
		, public virtual CompositeNodeImpl
	{
	public:
		typedef std::vector< spINode, TAllocator< spINode > > NodeVector;

		ArrayNodeImpl( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, eArrayForm arrarForm );

		virtual eArrayForm APICALL GetArrayForm() const;
		virtual eNodeType APICALL GetChildNodeType() const;
		virtual spINode APICALL GetNodeAtIndex( sizet index );
		virtual void APICALL InsertNodeAtIndex( const spINode & node, sizet index );
		virtual spINode APICALL RemoveNodeAtIndex( sizet index );
		virtual spINode APICALL ReplaceNodeAtIndex( const spINode & node, sizet index );
		virtual void APICALL AppendNode( const spINode & node );
		virtual spINodeIterator APICALL Iterator();
		virtual sizet APICALL ChildCount() const __NOTHROW__;
		virtual spIArrayNode APICALL ConvertToArrayNode();
		virtual eNodeType APICALL GetNodeType() const;
		virtual bool APICALL HasContent() const;
		virtual void APICALL ClearContents();
		virtual spINode APICALL CloneContents( bool ignoreEmptyNodes, bool ignoreNodesWithOnlyQualifiers, sizet qualifiersCount ) const;
		virtual bool CheckSuitabilityToBeUsedAsChildNode( const spcINode & node ) const;

	protected:
		virtual ~ArrayNodeImpl() __NOTHROW__ {}
		virtual void resetChangesForChildren() const;


		eArrayForm						mArrayForm;
		NodeVector						mChildren;

	#ifdef FRIEND_CLASS_DECLARATION
		FRIEND_CLASS_DECLARATION();
	#endif
		REQ_FRIEND_CLASS_DECLARATION();
	};
}

#endif // ArrayNodeImpl_h__