Make compile and pass CI tests.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / ftw / qfastmetabuilder_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QFASTMETABUILDER_P_H
43 #define QFASTMETABUILDER_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 for the convenience
50 // of moc.  This header file may change from version to version without notice,
51 // or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include <QtCore/qglobal.h>
57 #include <QtCore/qmetatype.h>
58
59 #include <private/qhashedstring_p.h>
60
61 QT_BEGIN_NAMESPACE
62
63 class QMetaObject;
64 class QFastMetaBuilder
65 {
66 public:
67     QFastMetaBuilder();
68     ~QFastMetaBuilder();
69
70     struct StringRef {
71     public:
72         inline StringRef();
73         inline StringRef(const StringRef &);
74         inline StringRef &operator=(const StringRef &);
75
76         inline void load(const QHashedStringRef &);
77         inline void load(const QByteArray &);
78         inline void load(const char *);
79
80         inline bool isEmpty() const;
81         inline QFastMetaBuilder *builder() const;
82         inline int offset() const;
83         inline char *data();
84         inline int length() const;
85     private:
86         friend class QFastMetaBuilder;
87
88         QFastMetaBuilder *_b;
89         int _o;
90         int _l;
91     };
92     StringRef newString(int length);
93
94     // Returns class name
95     StringRef init(int classNameLength,
96                    int propertyCount, int methodCount, 
97                    int signalCount, int classInfoCount);
98
99     void setClassInfo(int index, const StringRef &key, const StringRef &value);
100
101     enum PropertyFlag {
102         None = 0x00000000,
103         Writable = 0x00000002,
104         Resettable = 0x00000004,
105         Constant = 0x00000400,
106         Final = 0x00000800
107     };
108     // void setProperty(int index, const StringRef &name, QMetaType::Type type, int notifySignal = -1);
109     void setProperty(int index, const StringRef &name, const StringRef &type, 
110                      QMetaType::Type mtype, PropertyFlag flags, int notifySignal = -1);
111     void setProperty(int index, const StringRef &name, const StringRef &type, 
112                      PropertyFlag flags, int notifySignal = -1);
113     void setMethod(int index, const StringRef &signature,
114                    const StringRef &parameterNames = StringRef(), 
115                    const StringRef &type = StringRef());
116     void setSignal(int index, const StringRef &signature, 
117                    const StringRef &parameterNames = StringRef(), 
118                    const StringRef &type = StringRef());
119
120     int metaObjectIndexForSignal(int) const;
121     int metaObjectIndexForMethod(int) const;
122
123     QByteArray toData() const { return m_data; }
124     static void fromData(QMetaObject *, const QMetaObject *parent, const QByteArray &);
125 private:
126     friend struct StringRef;
127
128     QByteArray m_data;
129     int m_zeroPtr;
130
131     void allocateStringData();
132     char *m_stringData;
133     int m_stringDataLength;
134     int m_stringDataAllocated;
135 };
136
137 QFastMetaBuilder::StringRef::StringRef()
138 : _b(0), _o(0), _l(0)
139 {
140 }
141
142 QFastMetaBuilder::StringRef::StringRef(const StringRef &o)
143 : _b(o._b), _o(o._o), _l(o._l)
144 {
145 }
146
147 QFastMetaBuilder::StringRef &QFastMetaBuilder::StringRef::operator=(const StringRef &o)
148 {
149     _b = o._b;
150     _o = o._o;
151     _l = o._l;
152     return *this;
153 }
154
155 bool QFastMetaBuilder::StringRef::isEmpty() const
156 {
157     return _l == 0;
158 }
159
160 QFastMetaBuilder *QFastMetaBuilder::StringRef::builder() const
161 {
162     return _b;
163 }
164
165 int QFastMetaBuilder::StringRef::offset() const
166 {
167     return _o;
168 }
169
170 char *QFastMetaBuilder::StringRef::data()
171 {
172     Q_ASSERT(_b);
173     if (_b->m_stringDataLength != _b->m_stringDataAllocated)
174         _b->allocateStringData();
175     return _b->m_stringData + _o;
176 }
177
178 int QFastMetaBuilder::StringRef::length() const
179 {
180     return _l;
181 }
182
183 void QFastMetaBuilder::StringRef::load(const QHashedStringRef &str)
184 {
185     Q_ASSERT(str.utf8length() == _l);
186     str.writeUtf8(data());
187     *(data() + _l) = 0;
188 }
189
190 void QFastMetaBuilder::StringRef::load(const QByteArray &str)
191 {
192     Q_ASSERT(str.length() == _l);
193     strcpy(data(), str.constData());
194 }
195
196 void QFastMetaBuilder::StringRef::load(const char *str)
197 {
198     Q_ASSERT(strlen(str) == (uint)_l);
199     strcpy(data(), str);
200 }
201
202 QT_END_NAMESPACE
203
204 #endif // QFASTMETABUILDER_P_H
205