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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qv4variantassociationobject_p.h"
#include <private/qqmlengine_p.h>
QT_BEGIN_NAMESPACE
template<typename Return, typename MapCallable, typename HashCallable>
Return visitVariantAssociation(
const QV4::Heap::VariantAssociationObject* association,
MapCallable&& mapCallable,
HashCallable&& hashCallable
) {
switch (association->m_type) {
case QV4::Heap::VariantAssociationObject::AssociationType::VariantMap:
return std::invoke(
std::forward<MapCallable>(mapCallable),
reinterpret_cast<const QVariantMap *>(&association->m_variantAssociation));
case QV4::Heap::VariantAssociationObject::AssociationType::VariantHash:
return std::invoke(
std::forward<HashCallable>(hashCallable),
reinterpret_cast<const QVariantHash *>(&association->m_variantAssociation));
default: Q_UNREACHABLE();
};
}
template<typename Return, typename MapCallable, typename HashCallable>
Return visitVariantAssociation(
QV4::Heap::VariantAssociationObject* association,
MapCallable&& mapCallable,
HashCallable&& hashCallable
) {
switch (association->m_type) {
case QV4::Heap::VariantAssociationObject::AssociationType::VariantMap:
return std::invoke(
std::forward<MapCallable>(mapCallable),
reinterpret_cast<QVariantMap *>(&association->m_variantAssociation));
case QV4::Heap::VariantAssociationObject::AssociationType::VariantHash:
return std::invoke(
std::forward<HashCallable>(hashCallable),
reinterpret_cast<QVariantHash *>(&association->m_variantAssociation));
default: Q_UNREACHABLE();
};
}
template<typename Return, typename Callable>
Return visitVariantAssociation(
const QV4::Heap::VariantAssociationObject* association,
Callable&& callable
) {
return visitVariantAssociation<Return>(association, callable, callable);
}
template<typename Return, typename Callable>
Return visitVariantAssociation(
QV4::Heap::VariantAssociationObject* association,
Callable&& callable
) {
return visitVariantAssociation<Return>(association, callable, callable);
}
static void mapPropertyKey(QV4::ArrayObject* mapping, QV4::Value* key) {
QString qKey = key->toQString();
QV4::Scope scope(mapping->engine());
for (uint i = 0; i < mapping->arrayData()->length(); ++i) {
QV4::ScopedValue value(scope, mapping->arrayData()->get(i));
if (value->toQString() == qKey)
return;
}
mapping->push_back(*key);
}
static int keyToIndex(const QV4::ArrayObject* mapping, const QV4::Value* key) {
QString qKey = key->toQString();
QV4::Scope scope(mapping->engine());
for (uint i = 0; i < mapping->arrayData()->length(); ++i) {
QV4::ScopedValue value(scope, mapping->get(i));
if (value->toQString() == qKey)
return i;
}
return -1;
}
static QV4::ReturnedValue indexToKey(QV4::ArrayObject* mapping, uint index) {
Q_ASSERT(index < mapping->arrayData()->length());
return mapping->arrayData()->get(index);
}
namespace QV4 {
DEFINE_OBJECT_VTABLE(VariantAssociationObject);
ReturnedValue VariantAssociationPrototype::fromQVariantMap(
ExecutionEngine *engine,
const QVariantMap& variantMap,
QV4::Heap::Object* container,
int property, Heap::ReferenceObject::Flags flags)
{
return engine->memoryManager->allocate<VariantAssociationObject>(
variantMap, container, property, flags)->asReturnedValue();
}
ReturnedValue VariantAssociationPrototype::fromQVariantHash(
ExecutionEngine *engine,
const QVariantHash& variantHash,
QV4::Heap::Object* container,
int property, Heap::ReferenceObject::Flags flags)
{
return engine->memoryManager->allocate<VariantAssociationObject>(
variantHash, container, property, flags)->asReturnedValue();
}
namespace Heap {
void VariantAssociationObject::init(
const QVariantMap& variantMap,
QV4::Heap::Object* container,
int property, Heap::ReferenceObject::Flags flags)
{
ReferenceObject::init(container, property, flags);
new(m_variantAssociation) QVariantMap(variantMap);
m_type = AssociationType::VariantMap;
}
void VariantAssociationObject::init(
const QVariantHash& variantHash,
QV4::Heap::Object* container,
int property, Heap::ReferenceObject::Flags flags)
{
ReferenceObject::init(container, property, flags);
new(m_variantAssociation) QVariantHash(variantHash);
m_type = AssociationType::VariantHash;
}
void VariantAssociationObject::destroy() {
visitVariantAssociation<void>(
this,
std::destroy_at<QVariantMap>,
std::destroy_at<QVariantHash>);
ReferenceObject::destroy();
}
QVariant VariantAssociationObject::toVariant() const
{
return visitVariantAssociation<QVariant>(
this, [](auto association){ return QVariant(*association); });
}
bool VariantAssociationObject::setVariant(const QVariant &variant)
{
auto metatypeId = variant.metaType().id();
if (metatypeId != QMetaType::QVariantMap && metatypeId != QMetaType::QVariantHash)
return false;
if (metatypeId == QMetaType::QVariantMap && m_type == AssociationType::VariantMap) {
*reinterpret_cast<QVariantMap *>(&m_variantAssociation) = variant.toMap();
} else if (metatypeId == QMetaType::QVariantMap && m_type == AssociationType::VariantHash) {
std::destroy_at(reinterpret_cast<QVariantHash *>(&m_variantAssociation));
new(m_variantAssociation) QVariantMap(variant.toMap());
m_type = AssociationType::VariantMap;
} else if (metatypeId == QMetaType::QVariantHash && m_type == AssociationType::VariantHash) {
*reinterpret_cast<QVariantHash *>(&m_variantAssociation) = variant.toHash();
} else if (metatypeId == QMetaType::QVariantHash && m_type == AssociationType::VariantMap) {
std::destroy_at(reinterpret_cast<QVariantMap *>(&m_variantAssociation));
new(m_variantAssociation) QVariantHash(variant.toHash());
m_type = AssociationType::VariantHash;
}
return true;
}
VariantAssociationObject *VariantAssociationObject::detached() const
{
return visitVariantAssociation<VariantAssociationObject*>(
this,
[engine = internalClass->engine](auto association){
return engine->memoryManager->allocate<QV4::VariantAssociationObject>(
*association, nullptr, -1, ReferenceObject::Flag::NoFlag);
}
);
}
} // namespace Heap
ReturnedValue VariantAssociationObject::virtualGet(const Managed *that, PropertyKey id, const Value *, bool * hasProperty)
{
QString key = id.toQString();
return static_cast<const VariantAssociationObject *>(that)->getElement(key, hasProperty);
}
bool VariantAssociationObject::virtualPut(Managed *that, PropertyKey id, const Value &value, Value *)
{
QString key = id.toQString();
return static_cast<VariantAssociationObject *>(that)->putElement(key, value);
}
bool VariantAssociationObject::virtualDeleteProperty(Managed *that, PropertyKey id)
{
QString key = id.toQString();
return static_cast<VariantAssociationObject *>(that)->deleteElement(key);
}
OwnPropertyKeyIterator *VariantAssociationObject::virtualOwnPropertyKeys(
const Object *m, Value *target
) {
struct VariantAssociationOwnPropertyKeyIterator : ObjectOwnPropertyKeyIterator
{
QStringList keys;
~VariantAssociationOwnPropertyKeyIterator() override = default;
PropertyKey next(const Object *o, Property *pd = nullptr, PropertyAttributes *attrs = nullptr) override
{
const VariantAssociationObject *variantAssociation =
static_cast<const VariantAssociationObject *>(o);
if (memberIndex == 0) {
keys = variantAssociation->keys();
keys.sort();
}
if (static_cast<qsizetype>(memberIndex) < keys.count()) {
Scope scope(variantAssociation->engine());
ScopedString propertyName(scope, scope.engine->newString(keys[memberIndex]));
ScopedPropertyKey id(scope, propertyName->toPropertyKey());
if (attrs)
*attrs = QV4::Attr_Data;
if (pd)
pd->value = variantAssociation->getElement(keys[memberIndex]);
++memberIndex;
return id;
}
return PropertyKey::invalid();
}
};
QV4::ReferenceObject::readReference(static_cast<const VariantAssociationObject *>(m)->d());
*target = *m;
return new VariantAssociationOwnPropertyKeyIterator;
}
PropertyAttributes VariantAssociationObject::virtualGetOwnProperty(
const Managed *m, PropertyKey id, Property *p
) {
auto variantAssociation = static_cast<const VariantAssociationObject *>(m);
bool hasElement = false;
Scope scope(variantAssociation->engine());
ScopedValue element(scope, variantAssociation->getElement(id.toQString(), &hasElement));
if (!hasElement)
return Attr_Invalid;
if (p)
p->value = element->asReturnedValue();
return Attr_Data;
}
int VariantAssociationObject::virtualMetacall(Object *object, QMetaObject::Call call, int index, void **a)
{
VariantAssociationObject *variantAssociation = static_cast<VariantAssociationObject *>(object);
Q_ASSERT(variantAssociation);
Heap::VariantAssociationObject *heapAssociation = variantAssociation->d();
Q_ASSERT(heapAssociation->propertyIndexMapping);
switch (call) {
case QMetaObject::ReadProperty: {
QV4::ReferenceObject::readReference(heapAssociation);
if (index < 0 || index >= static_cast<int>(heapAssociation->propertyIndexMapping->arrayData->length()))
return 0;
Scope scope(variantAssociation->engine());
ScopedArrayObject mapping(scope, heapAssociation->propertyIndexMapping);
ScopedString scopedKey(scope, indexToKey(mapping, index));
const QString key = scopedKey->toQString();
if (!visitVariantAssociation<bool>(heapAssociation, [key](auto association) {
return association->contains(key);
})) {
return 0;
}
visitVariantAssociation<void>(heapAssociation, [a, key](auto association) {
*static_cast<QVariant*>(a[0]) = association->value(key);
});
break;
}
case QMetaObject::WriteProperty: {
if (index < 0 || index >= static_cast<int>(heapAssociation->propertyIndexMapping->arrayData->length()))
return 0;
Scope scope(variantAssociation->engine());
ScopedArrayObject mapping(scope, heapAssociation->propertyIndexMapping);
ScopedString scopedKey(scope, indexToKey(mapping, index));
const QString key = scopedKey->toQString();
visitVariantAssociation<void>(heapAssociation, [a, key](auto association) {
if (association->contains(key))
association->insert(key, *static_cast<QVariant*>(a[0]));
});
QV4::ReferenceObject::writeBack(heapAssociation);
break;
}
default:
return 0; // not supported
}
return -1;
}
QV4::ReturnedValue VariantAssociationObject::getElement(const QString& key, bool *hasProperty) const {
QV4::ReferenceObject::readReference(d());
return visitVariantAssociation<QV4::ReturnedValue>(
d(),
[engine = engine(), this, key, hasProperty](auto* association) {
bool hasElement = association->contains(key);
if (hasProperty)
*hasProperty = hasElement;
if (hasElement) {
if (!d()->propertyIndexMapping.heapObject())
d()->propertyIndexMapping.set(engine, engine->newArrayObject(1));
Scope scope(engine);
ScopedString scopedKey(scope, scope.engine->newString(key));
ScopedArrayObject mapping(scope, d()->propertyIndexMapping);
mapPropertyKey(mapping, scopedKey);
return engine->fromVariant(
association->value(key),
d(), keyToIndex(mapping.getPointer(), scopedKey.getPointer()),
Heap::ReferenceObject::Flag::CanWriteBack |
Heap::ReferenceObject::Flag::IsVariant);
}
return Encode::undefined();
}
);
}
bool VariantAssociationObject::putElement(const QString& key, const Value& value) {
Heap::VariantAssociationObject *heapAssociation = d();
visitVariantAssociation<void>(heapAssociation, [engine = engine(), value, key](auto association){
association->insert(key, engine->toVariant(value, QMetaType{}, false));
});
QV4::ReferenceObject::writeBack(heapAssociation);
return true;
}
bool VariantAssociationObject::deleteElement(const QString& key) {
bool result = visitVariantAssociation<bool>(d(), [key](auto association) {
return association->remove(key);
});
if (result)
QV4::ReferenceObject::writeBack(d());
return result;
}
QStringList VariantAssociationObject::keys() const {
return visitVariantAssociation<QStringList>(d(), [](auto association){
return association->keys();
});
}
} // namespace QV4
QT_END_NAMESPACE
|