aboutsummaryrefslogtreecommitdiff
path: root/src/tafnode.h
blob: 585ba73859e8669fc5939bd1289d74f855db340a (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#ifndef BU_TAF_NODE_H
#define BU_TAF_NODE_H

#include <stdint.h>
#include "bu/fstring.h"
#include "bu/hash.h"
#include "bu/list.h"

namespace Bu
{
	/**
	 *
	 *@ingroup Taf
	 */
	class TafNode
	{
	public:
		enum NodeType
		{
			typeGroup,
			typeProperty,
			typeComment
		};

	public:
		TafNode( NodeType eType );
		virtual ~TafNode();

		const NodeType getType() const;

	private:
		NodeType eType;
	};

	class TafProperty;
	class TafComment;
	/**
	 *
	 *@ingroup Taf
	 */
	class TafGroup : public TafNode
	{
	public:
		typedef Bu::List<Bu::FString> PropList;
		typedef Bu::Hash<Bu::FString, PropList> PropHash;
		typedef Bu::List<class Bu::TafGroup *> GroupList;
		typedef Bu::Hash<Bu::FString, GroupList> GroupHash;
		typedef Bu::List<class Bu::TafNode *> NodeList;

		TafGroup( const Bu::FString &sName );
		virtual ~TafGroup();

		const Bu::FString &getName() const;
		void setName( const Bu::FString &sName );

		const Bu::FString &getProperty( const Bu::FString &sName ) const;
		const PropList &getProperties( const Bu::FString &sName ) const;
		const TafGroup *getChild( const Bu::FString &sName ) const;
		const GroupList &getChildren( const Bu::FString &sName ) const;
		TafNode *addChild( TafNode *pNode );
		TafGroup *addChild( TafGroup *pNode );
		TafProperty *addChild( TafProperty *pNode );
		TafComment *addChild( TafComment *pNode );
		TafGroup *addGroup( const Bu::FString &sName );
		TafProperty *addProperty(
			const Bu::FString &sName, const Bu::FString &sValue );
		const NodeList &getChildren() const;

	private:
		Bu::FString sName;
		PropHash hProp;
		GroupHash hChildren;
		NodeList lChildren;
	};

	/**
	 *
	 *@ingroup Taf
	 */
	class TafProperty : public TafNode
	{
	public:
		TafProperty( const Bu::FString &sName, const Bu::FString &sValue );
		virtual ~TafProperty();

		const Bu::FString &getName() const;
		const Bu::FString &getValue() const;

	private:
		Bu::FString sName;
		Bu::FString sValue;
	};

	/**
	 *
	 *@ingroup Taf
	 */
	class TafComment : public TafNode
	{
	public:
		TafComment( const Bu::FString &sText );
		virtual ~TafComment();

		const Bu::FString &getText() const;

	private:
		Bu::FString sText;
	};
}

#endif