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
|
--- .upstream/generator.cpp 2024-11-29 10:11:30.591492464 +0100
+++ generator.cpp 2024-11-29 15:09:02.730259362 +0100
@@ -4,7 +4,9 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "generator.h"
+#if 0 // -- QtScxml
#include "cbordevice.h"
+#endif // -- QtScxml
#include "outputrevision.h"
#include "utils.h"
#include <QtCore/qmetatype.h>
@@ -26,6 +28,29 @@
using namespace QtMiscUtils;
+// -- QtScxml
+void fprintf(QIODevice &out, const char *fmt, ...)
+{
+ va_list argp;
+ va_start(argp, fmt);
+ const int bufSize = 4096;
+ char buf[bufSize];
+ vsnprintf(buf, bufSize, fmt, argp);
+ va_end(argp);
+ out.write(buf);
+}
+
+void fputc(char c, QIODevice &out)
+{
+ out.write(&c, 1);
+}
+
+void fputs(const char *s, QIODevice &out)
+{
+ out.write(s);
+}
+// -- QtScxml
+
uint nameToBuiltinType(const QByteArray &name)
{
if (name.isEmpty())
@@ -72,21 +97,23 @@
return nullptr;
}
- Generator::Generator(Moc *moc, ClassDef *classDef, const QList<QByteArray> &metaTypes,
- const QHash<QByteArray, QByteArray> &knownQObjectClasses,
- const QHash<QByteArray, QByteArray> &knownGadgets, FILE *outfile,
- bool requireCompleteTypes)
- : parser(moc),
- out(outfile),
- cdef(classDef),
- metaTypes(metaTypes),
- knownQObjectClasses(knownQObjectClasses),
- knownGadgets(knownGadgets),
- requireCompleteTypes(requireCompleteTypes)
- {
- if (cdef->superclassList.size())
- purestSuperClass = cdef->superclassList.constFirst().classname;
+// -- QtScxml
+Generator::Generator(ClassDef *classDef, const QList<QByteArray> &metaTypes,
+ const QHash<QByteArray, QByteArray> &knownQObjectClasses,
+ const QHash<QByteArray, QByteArray> &knownGadgets,
+ QIODevice &outfile,
+ bool requireCompleteTypes)
+ : out(outfile),
+ cdef(classDef),
+ metaTypes(metaTypes),
+ knownQObjectClasses(knownQObjectClasses),
+ knownGadgets(knownGadgets),
+ requireCompleteTypes(requireCompleteTypes)
+{
+ if (cdef->superclassList.size())
+ purestSuperClass = cdef->superclassList.constFirst().classname;
}
+// -- QtScxml
static inline qsizetype lengthOfEscapeSequence(const QByteArray &s, qsizetype i)
{
@@ -113,7 +140,7 @@
// Prints \a s to \a out, breaking it into lines of at most ColumnWidth. The
// opening and closing quotes are NOT included (it's up to the caller).
-static void printStringWithIndentation(FILE *out, const QByteArray &s)
+static void printStringWithIndentation(QIODevice &out, const QByteArray &s) // -- QtScxml
{
static constexpr int ColumnWidth = 68;
const qsizetype len = s.size();
@@ -256,8 +283,10 @@
bool hasStaticMetaCall =
(cdef->hasQObject || !cdef->methodList.isEmpty()
|| !cdef->propertyList.isEmpty() || !cdef->constructorList.isEmpty());
+#if 0 // -- QtScxml
if (parser->activeQtMode)
hasStaticMetaCall = false;
+#endif // -- QtScxml
const QByteArray qualifiedClassNameIdentifier = generateQualifiedClassNameIdentifier(cdef->qualified);
@@ -518,8 +547,10 @@
}
fprintf(out, "}\n");
+#if 0 // -- QtScxml
if (parser->activeQtMode)
return;
+#endif // -- QtScxml
//
// Generate internal qt_metacall() function
@@ -535,7 +566,9 @@
//
// Generate plugin meta data
//
+#if 0 // -- QtScxml
generatePluginMetaData();
+#endif // -- QtScxml
//
// Generate function to make sure the non-class signals exist in the parent classes
@@ -1004,6 +1037,13 @@
const FunctionDef &f = methodList.at(methodindex);
Q_ASSERT(!f.normalizedType.isEmpty());
fprintf(out, " case %d: ", methodindex);
+ // -- QtScxml
+ if (f.implementation) {
+ fprintf(out, f.implementation, "_o", methodindex);
+ fprintf(out, " break;\n");
+ continue;
+ }
+ // -- QtScxml
if (f.normalizedType != "void")
fprintf(out, "{ %s _r = ", noRef(f.normalizedType).constData());
fprintf(out, "_t->");
@@ -1080,6 +1120,10 @@
const FunctionDef &f = cdef->signalList.at(methodindex);
if (f.wasCloned || !f.inPrivateClass.isEmpty() || f.isStatic)
continue;
+ // -- QtScxml
+ if (f.mangledName.isEmpty())
+ continue;
+ // -- QtScxml
fprintf(out, " if (QtMocHelpers::indexOfMethod<%s (%s::*)(",
f.type.rawName.constData() , cdef->classname.constData());
@@ -1098,7 +1142,7 @@
}
fprintf(out, ")%s>(_a, &%s::%s, %d))\n",
f.isConst ? " const" : "",
- cdef->classname.constData(), f.name.constData(), methodindex);
+ cdef->classname.constData(), f.mangledName.constData(), methodindex); // -- QtScxml
fprintf(out, " return;\n");
}
fprintf(out, " }\n");
@@ -1175,9 +1219,12 @@
propindex, cxxTypeTag(p.typeTag), p.type.constData(),
prefix.constData(), p.bind.constData());
else if (!p.read.isEmpty())
- fprintf(out, " case %d: *reinterpret_cast<%s%s*>(_v) = %s%s(); break;\n",
- propindex, cxxTypeTag(p.typeTag), p.type.constData(),
- prefix.constData(), p.read.constData());
+ // -- QtScxml
+ fprintf(out, " case %d: *reinterpret_cast<%s%s*>(_v) = %s%s%s; break;\n",
+ propindex, cxxTypeTag(p.typeTag), p.type.constData(),
+ prefix.constData(), p.read.constData(),
+ p.read.endsWith(')') ? "" : "()");
+ // -- QtScxml
else
fprintf(out, " case %d: *reinterpret_cast<%s%s*>(_v) = %s%s; break;\n",
propindex, cxxTypeTag(p.typeTag), p.type.constData(),
@@ -1293,6 +1340,10 @@
{
if (def->wasCloned || def->isAbstract)
return;
+// -- QtScxml
+ if (def->implementation)
+ return;
+// -- QtScxml
fprintf(out, "\n// SIGNAL %d\n%s %s::%s(",
index, def->type.name.constData(), cdef->qualified.constData(), def->name.constData());
@@ -1354,6 +1405,36 @@
fprintf(out, "}\n");
}
+// -- QtScxml
+void Generator::generateAccessorDefs()
+{
+ for (int propindex = 0; propindex < cdef->propertyList.size(); ++propindex) {
+ const PropertyDef &p = cdef->propertyList.at(propindex);
+ if (p.read.isEmpty() || p.mangledName.isEmpty())
+ continue;
+
+ fprintf(out, "bool %s::%s() const\n{\n return %s;\n}\n\n", cdef->classname.constData(),
+ p.mangledName.constData(), p.read.constData());
+ }
+}
+
+void Generator::generateSignalDefs()
+{
+ for (int methodindex = 0; methodindex < cdef->signalList.size(); ++methodindex) {
+ const FunctionDef &f = cdef->signalList.at(methodindex);
+ if (!f.implementation || f.mangledName.isEmpty())
+ continue;
+
+ fprintf(out, "void %s::%s(bool _t1)\n{\n", cdef->classname.constData(),
+ f.mangledName.constData());
+ fprintf(out, " void *_a[] = { nullptr, "
+ "const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };\n ");
+ fprintf(out, f.implementation, "this", methodindex);
+ fprintf(out, "\n}\n\n");
+ }
+}
+
+#if 0
static CborError jsonValueToCbor(CborEncoder *parent, const QJsonValue &v);
static CborError jsonObjectToCbor(CborEncoder *parent, const QJsonObject &o)
{
@@ -1489,7 +1570,11 @@
#define CBOR_ENCODER_WRITER_CONTROL 1
#define CBOR_ENCODER_WRITE_FUNCTION CborDevice::callback
+#endif
+// -- QtScxml
QT_END_NAMESPACE
+#if 0 // -- QtScxml
#include "cborencoder.c"
+#endif // -- QtScxml
|