Add QFastMetaBuilder
[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 QT_BEGIN_NAMESPACE
60
61 class QFastMetaBuilder
62 {
63 public:
64     QFastMetaBuilder();
65     ~QFastMetaBuilder();
66
67     struct StringRef {
68     public:
69         inline StringRef();
70         inline StringRef(const StringRef &);
71         inline StringRef &operator=(const StringRef &);
72
73         inline void load(const QByteArray &);
74         inline void load(const char *);
75
76         inline bool isEmpty() const;
77         inline QFastMetaBuilder *builder() const;
78         inline int offset() const;
79         inline char *data();
80         inline int length() const;
81     private:
82         friend class QFastMetaBuilder;
83
84         QFastMetaBuilder *_b;
85         int _o;
86         int _l;
87     };
88     StringRef newString(int length);
89
90     // Returns class name
91     StringRef init(int classNameLength,
92                    int propertyCount, int methodCount, 
93                    int signalCount, int classInfoCount);
94
95     void setClassInfo(int index, const StringRef &key, const StringRef &value);
96
97     enum PropertyFlag {
98         None = 0x00000000,
99         Writable = 0x00000002,
100         Resettable = 0x00000004,
101         Constant = 0x00000400,
102         Final = 0x00000800
103     };
104     // void setProperty(int index, const StringRef &name, QMetaType::Type type, int notifySignal = -1);
105     void setProperty(int index, const StringRef &name, const StringRef &type, 
106                      QMetaType::Type mtype, PropertyFlag flags, int notifySignal = -1);
107     void setProperty(int index, const StringRef &name, const StringRef &type, 
108                      PropertyFlag flags, int notifySignal = -1);
109     void setMethod(int index, const StringRef &signature,
110                    const StringRef &parameterNames = StringRef(), 
111                    const StringRef &type = StringRef());
112     void setSignal(int index, const StringRef &signature, 
113                    const StringRef &parameterNames = StringRef(), 
114                    const StringRef &type = StringRef());
115
116     int metaObjectIndexForSignal(int) const;
117     int metaObjectIndexForMethod(int) const;
118
119     QByteArray toData() const { return m_data; }
120     static void fromData(QMetaObject *, const QMetaObject *parent, const QByteArray &);
121 private:
122     friend class StringRef;
123
124     QByteArray m_data;
125     int m_zeroPtr;
126
127     void allocateStringData();
128     char *m_stringData;
129     int m_stringDataLength;
130     int m_stringDataAllocated;
131 };
132
133 QFastMetaBuilder::StringRef::StringRef()
134 : _b(0), _o(0), _l(0)
135 {
136 }
137
138 QFastMetaBuilder::StringRef::StringRef(const StringRef &o)
139 : _b(o._b), _o(o._o), _l(o._l)
140 {
141 }
142
143 QFastMetaBuilder::StringRef &QFastMetaBuilder::StringRef::operator=(const StringRef &o)
144 {
145     _b = o._b;
146     _o = o._o;
147     _l = o._l;
148     return *this;
149 }
150
151 bool QFastMetaBuilder::StringRef::isEmpty() const
152 {
153     return _l == 0;
154 }
155
156 QFastMetaBuilder *QFastMetaBuilder::StringRef::builder() const
157 {
158     return _b;
159 }
160
161 int QFastMetaBuilder::StringRef::offset() const
162 {
163     return _o;
164 }
165
166 char *QFastMetaBuilder::StringRef::data()
167 {
168     Q_ASSERT(_b);
169     if (_b->m_stringDataLength != _b->m_stringDataAllocated)
170         _b->allocateStringData();
171     return _b->m_stringData + _o;
172 }
173
174 int QFastMetaBuilder::StringRef::length() const
175 {
176     return _l;
177 }
178
179 void QFastMetaBuilder::StringRef::load(const QByteArray &str)
180 {
181     Q_ASSERT(str.length() == _l);
182     strcpy(data(), str.constData());
183 }
184
185 void QFastMetaBuilder::StringRef::load(const char *str)
186 {
187     Q_ASSERT(strlen(str) == _l);
188     strcpy(data(), str);
189 }
190
191 QT_END_NAMESPACE
192
193 #endif // QFASTMETABUILDER_P_H
194