Fix binary incompatibility between openssl versions
[profile/ivi/qtbase.git] / src / testlib / qtestcoreelement_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtTest module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QTESTCOREELEMENT_P_H
43 #define QTESTCOREELEMENT_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists purely as an
50 // implementation detail.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include <QtTest/private/qtestcorelist_p.h>
57 #include <QtTest/private/qtestelementattribute_p.h>
58
59 QT_BEGIN_HEADER
60
61 QT_BEGIN_NAMESPACE
62
63
64 template <class ElementType>
65 class QTestCoreElement: public QTestCoreList<ElementType>
66 {
67     public:
68         QTestCoreElement( int type = -1 );
69         virtual ~QTestCoreElement();
70
71         void addAttribute(const QTest::AttributeIndex index, const char *value);
72         QTestElementAttribute *attributes() const;
73         const char *attributeValue(QTest::AttributeIndex index) const;
74         const char *attributeName(QTest::AttributeIndex index) const;
75         const QTestElementAttribute *attribute(QTest::AttributeIndex index) const;
76
77         const char *elementName() const;
78         QTest::LogElementType elementType() const;
79
80     private:
81         QTestElementAttribute *listOfAttributes;
82         QTest::LogElementType type;
83 };
84
85 template<class ElementType>
86 QTestCoreElement<ElementType>::QTestCoreElement(int t)
87     :listOfAttributes(0), type(QTest::LogElementType(t))
88 {
89 }
90
91 template<class ElementType>
92 QTestCoreElement<ElementType>::~QTestCoreElement()
93 {
94     delete listOfAttributes;
95 }
96
97 template <class ElementType>
98 void QTestCoreElement<ElementType>::addAttribute(const QTest::AttributeIndex attributeIndex, const char *value)
99 {
100     if (attributeIndex == -1 || attribute(attributeIndex))
101         return;
102
103     QTestElementAttribute *testAttribute = new QTestElementAttribute;
104     testAttribute->setPair(attributeIndex, value);
105     testAttribute->addToList(&listOfAttributes);
106 }
107
108 template <class ElementType>
109 QTestElementAttribute *QTestCoreElement<ElementType>::attributes() const
110 {
111     return listOfAttributes;
112 }
113
114 template <class ElementType>
115 const char *QTestCoreElement<ElementType>::attributeValue(QTest::AttributeIndex index) const
116 {
117     const QTestElementAttribute *attrb = attribute(index);
118     if (attrb)
119         return attrb->value();
120
121     return 0;
122 }
123
124 template <class ElementType>
125 const char *QTestCoreElement<ElementType>::attributeName(QTest::AttributeIndex index) const
126 {
127     const QTestElementAttribute *attrb = attribute(index);
128     if (attrb)
129         return attrb->name();
130
131     return 0;
132 }
133
134 template <class ElementType>
135 const char *QTestCoreElement<ElementType>::elementName() const
136 {
137     const char *xmlElementNames[] =
138     {
139         "property",
140         "properties",
141         "failure",
142         "error",
143         "testcase",
144         "testsuite",
145         "benchmark",
146         "system-err"
147     };
148
149     if (type != QTest::LET_Undefined)
150         return xmlElementNames[type];
151
152     return 0;
153 }
154
155 template <class ElementType>
156 QTest::LogElementType QTestCoreElement<ElementType>::elementType() const
157 {
158     return type;
159 }
160
161 template <class ElementType>
162 const QTestElementAttribute *QTestCoreElement<ElementType>::attribute(QTest::AttributeIndex index) const
163 {
164     QTestElementAttribute *iterator = listOfAttributes;
165     while (iterator) {
166         if (iterator->index() == index)
167             return iterator;
168
169         iterator = iterator->nextElement();
170     }
171
172     return 0;
173 }
174
175 QT_END_NAMESPACE
176
177 QT_END_HEADER
178
179 #endif