summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/mrml_elements.h
blob: 6fe6767dd2cb7ce16cbe45d80d22602613071a0f (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/* This file is part of the KDE project
   Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation, version 2.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#ifndef MRML_ELEMENTS_H
#define MRML_ELEMENTS_H

#include <tqdom.h>
#include <tqmap.h>
#include <tqstringlist.h>
#include <tqvaluelist.h>

#include "mrml_shared.h"
#include "propertysheet.h"

#include <assert.h>

namespace KMrml
{
    class PropertySheet;

    class QueryParadigm
    {
    public:
        QueryParadigm() {}
        QueryParadigm( const TQDomElement& elem );
        bool matches( const QueryParadigm& other ) const;
        TQString type() const { return m_type; }

//         bool operator== ( const QueryParadigm& p1, const QueryParadigm& p2 )

    private:
        TQString m_type;
        TQMap<TQString,TQString> m_attributes;

        static bool equalMaps( const TQMap<TQString,TQString>,
                               const TQMap<TQString,TQString> );
    };

    class QueryParadigmList : protected TQValueList<QueryParadigm>
    {
    public:
        typedef TQValueListIterator<QueryParadigm> Iterator;
        typedef TQValueListConstIterator<QueryParadigm> ConstIterator;

        void initFromDOM( const TQDomElement& elem );
        bool matches( const QueryParadigmList& other ) const;
    };

    class MrmlElement
    {
    public:
        MrmlElement() {}
        MrmlElement( const TQDomElement& elem );
        virtual ~MrmlElement() {}

        TQString id() const      { return m_id;   }
        TQString name() const    { return m_name; }
        TQString attribute( const TQString& name ) const { return m_attributes[ name ]; }
        QueryParadigmList paradigms() const { return m_paradigms; }


        TQMapConstIterator<TQString,TQString> attributeIterator() const {
            return m_attributes.begin();
        }
        TQMapConstIterator<TQString,TQString> end() const { return m_attributes.end(); }

        bool isValid() const { return !m_name.isNull() && !m_id.isNull(); }

    protected:
        TQString m_id;
        TQString m_name;
        QueryParadigmList m_paradigms;
        TQMap<TQString,TQString> m_attributes;

        void setOtherAttributes( TQDomElement& elem ) const;
    };

    class Algorithm : public MrmlElement
    {
    public:
        Algorithm() { m_collectionId = "adefault"; }
        Algorithm( const TQDomElement& elem );
        TQString type() const { return m_type; }

        TQString collectionId() const
        {
            return m_collectionId;
        }
        void setCollectionId( const TQString& id )
        {
            m_collectionId = id;
        }

        TQDomElement toElement( TQDomElement& parent ) const;
        const PropertySheet& propertySheet() const;

        static Algorithm defaultAlgorithm();

    private:
        TQString m_type;
        PropertySheet m_propertySheet;

        TQString m_collectionId;
    };

    class Collection : public MrmlElement
    {
    public:
        Collection() {}
        Collection( const TQDomElement& elem );
    };

    template <class t> class MrmlElementList : public TQValueList<t>
    {
    public:
        typedef TQValueListIterator<t> Iterator;
        typedef TQValueListConstIterator<t> ConstIterator;

        /**
         * Creates an invalid element.
         */
        MrmlElementList( const TQString& tagName ) :
            TQValueList<t>(),
            m_tagName( tagName ) {}
        MrmlElementList( const TQDomElement& elem, const TQString& tagName ) :
            TQValueList<t>(),
            m_tagName( tagName )
        {
            initFromDOM( elem );
        }
        virtual ~MrmlElementList() {};

        void initFromDOM( const TQDomElement& elem )
        {
            assert( !m_tagName.isEmpty() );

            TQValueList<t>::clear();

            TQDomNodeList list = elem.elementsByTagName( m_tagName );
            for ( uint i = 0; i < list.length(); i++ )
            {
                TQDomElement elem = list.item( i ).toElement();
                t item( elem );
                if ( item.isValid() )
                    append( item );
            }
        }

        t findByName( const TQString& name ) const
        {
            TQValueListConstIterator<t> it = TQValueList<t>::begin();
            for ( ; it != TQValueList<t>::end(); ++it )
            {
                if ( (*it).name() == name )
                    return *it;
            }

            return t();
        }

        t findById( const TQString& id ) const
        {
            TQValueListConstIterator<t> it = TQValueList<t>::begin();
            for ( ; it != TQValueList<t>::end(); ++it )
            {
                if ( (*it).id() == id )
                    return *it;
            }

            return MrmlElement();
        }

        TQStringList itemNames() const {
            TQStringList list;
            TQValueListConstIterator<t> it = TQValueList<t>::begin();
            for ( ; it != TQValueList<t>::end(); ++it )
                list.append( (*it).name() );

            return list;
        }

        void setItemName( const TQString& tagName ) { m_tagName = tagName; }
        TQString tagName() const { return m_tagName; }

    private:
        TQString m_tagName;
        MrmlElementList();
    };

    class AlgorithmList : public MrmlElementList<Algorithm>
    {
    public:
        AlgorithmList() :
            MrmlElementList<Algorithm>( MrmlShared::algorithm() )
        {}

        AlgorithmList algorithmsForCollection( const Collection& coll ) const;
    };

    class CollectionList : public MrmlElementList<Collection>
    {
    public:
        CollectionList() :
            MrmlElementList<Collection>( MrmlShared::collection() )
        {}
    };


    TQValueList<TQDomElement> directChildElements( const TQDomElement& parent,
                                                 const TQString& tagName);
    TQDomElement firstChildElement( const TQDomElement& parent,
                                   const TQString& tagName );


    TQDataStream& operator<<( TQDataStream& stream, const QueryParadigm& );
    TQDataStream& operator>>( TQDataStream& stream, QueryParadigm& );

    TQDataStream& operator<<( TQDataStream& stream, const QueryParadigmList& );
    TQDataStream& operator>>( TQDataStream& stream, QueryParadigmList& );

    TQDataStream& operator<<( TQDataStream& stream, const MrmlElement& );
    TQDataStream& operator>>( TQDataStream& stream, MrmlElement& );

    TQDataStream& operator<<( TQDataStream& stream, const Algorithm& );
    TQDataStream& operator>>( TQDataStream& stream, Algorithm& );

    TQDataStream& operator<<( TQDataStream& stream, const Collection& );
    TQDataStream& operator>>( TQDataStream& stream, Collection& );

    template <class t> TQDataStream& operator<<( TQDataStream&,
                                                const MrmlElementList<t>& );
    template <class t> TQDataStream& operator>>( TQDataStream&,
                                                MrmlElementList<t>& );

    TQDataStream& operator<<( TQDataStream&, const AlgorithmList& );
    TQDataStream& operator>>( TQDataStream&, AlgorithmList& );

}

#endif // MRML_ELEMENTS_H