aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafgroup.h
blob: 16eb6258136ca10df1a95e21f7571821fe4f1302 (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
/*
 * Copyright (C) 2007-2023 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#ifndef BU_TAF_GROUP_H
#define BU_TAF_GROUP_H

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

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

        TafGroup( const TafGroup &rSrc );
        TafGroup( const Bu::String &sName );
        virtual ~TafGroup();

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

        bool hasProperty( const Bu::String &sName ) const;
        const Bu::String &getProperty( const Bu::String &sName ) const;
        const Bu::String &getProperty( const Bu::String &sName,
            const Bu::String &sDef ) const;
        const PropList &getProperties( const Bu::String &sName ) const;
        bool hasChild( const Bu::String &sName ) const;
        const TafGroup *getChild( const Bu::String &sName ) const;
        const GroupList &getChildren( const Bu::String &sName ) const;
        TafNode *addChild( TafNode *pNode );
        TafGroup *addChild( TafGroup *pNode );
        TafProperty *addChild( TafProperty *pNode );
        TafComment *addChild( TafComment *pNode );
        TafGroup *addGroup( const Bu::String &sName );
        TafProperty *addProperty(
            const Bu::String &sName, const Bu::String &sValue );
        const NodeList &getChildren() const;
        const TafGroup *getChildByPath( const Bu::String &sPath ) const;
        const TafGroup *getChildByPath( StrList lPath ) const;
        const Bu::String &getByPath( const Bu::String &sPath ) const;
        const Bu::String &getByPath( StrList lPath ) const;

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

#endif