7#include <private/qqmlobjectcreator_p.h>
8#include <private/qqmlcustomparser_p.h>
9#include <private/qqmlvmemetaobject_p.h>
10#include <private/qqmlcomponent_p.h>
11#include <private/qqmlpropertyresolver_p.h>
12#include <private/qqmlcomponentandaliasresolver_p.h>
13#include <private/qqmlsignalnames_p.h>
15#include <QtCore/qtyperevision.h>
17#define COMPILE_EXCEPTION(token, desc)
19 recordError((token)->location, desc);
25DEFINE_BOOL_CONFIG_OPTION(
26 disableInternalDeferredProperties, QML_DISABLE_INTERNAL_DEFERRED_PROPERTIES);
31 QQmlTypeLoader *typeLoader, QQmlTypeData *typeData,
QmlIR::Document *parsedQML,
32 QV4::CompiledData::ResolvedTypeReferenceMap *resolvedTypeCache,
33 const QV4::CompiledData::DependentTypesHasher &dependencyHasher)
34 : resolvedTypes(resolvedTypeCache)
36 , dependencyHasher(dependencyHasher)
46 for (
auto it = resolvedTypes->constBegin(), end = resolvedTypes->constEnd();
48 QQmlCustomParser *customParser = (*it)->type().customParser();
50 customParsers.insert(it.key(), customParser);
53 QQmlPendingGroupPropertyBindings pendingGroupPropertyBindings;
57 QQmlPropertyCacheCreator<QQmlTypeCompiler> propertyCacheBuilder(
58 &m_propertyCaches, &pendingGroupPropertyBindings,
59 loader,
this, imports(), typeData->typeClassName());
60 QQmlError cycleError = propertyCacheBuilder.verifyNoICCycle();
61 if (cycleError.isValid()) {
65 QQmlPropertyCacheCreatorBase::IncrementalResult result;
67 result = propertyCacheBuilder.buildMetaObjectsIncrementally();
68 const QQmlError &error = result.error;
69 if (error.isValid()) {
75 QQmlComponentAndAliasResolver resolver(
this, &m_propertyCaches);
76 if (QQmlError error = resolver.resolve(result.processedRoot); error.isValid()) {
80 pendingGroupPropertyBindings.resolveMissingPropertyCaches(&m_propertyCaches);
81 pendingGroupPropertyBindings.clear();
83 }
while (result.canResume);
114 if (!document->javaScriptCompilationUnit || !document->javaScriptCompilationUnit->unitData()) {
123 Q_ASSERT(document->jsModule.fileName == typeData->urlString());
124 Q_ASSERT(document->jsModule.finalUrl == typeData->finalUrlString());
125 QmlIR::JSCodeGen v4CodeGenerator(document);
126 for (QmlIR::Object *object : std::as_const(document->objects)) {
127 if (!v4CodeGenerator.generateRuntimeFunctions(object)) {
128 Q_ASSERT(v4CodeGenerator.hasError());
129 recordError(v4CodeGenerator.error());
133 document->javaScriptCompilationUnit = v4CodeGenerator.generateCompilationUnit(
false);
138 QmlIR::QmlUnitGenerator qmlGenerator;
139 qmlGenerator.generate(*document, dependencyHasher);
141 if (!errors.isEmpty())
144 return std::move(document->javaScriptCompilationUnit);
150 error.setLine(qmlConvertSourceCoordinate<quint32,
int>(location.line()));
151 error.setColumn(qmlConvertSourceCoordinate<quint32,
int>(location.column()));
152 error.setDescription(description);
160 error.setDescription(message.message);
161 error.setLine(qmlConvertSourceCoordinate<quint32,
int>(message.loc.startLine));
162 error.setColumn(qmlConvertSourceCoordinate<quint32,
int>(message.loc.startColumn));
176 return document->stringAt(idx);
181 return document->jsGenerator.registerString(str);
188 const auto *p = m_propertyCaches.at(index)->defaultProperty();
189 Q_ASSERT(p && p->isComponentWrapper());
190 return p->wrappedObjectIndex();
195 for (
int i =
objectCount(), end = m_propertyCaches.count(); i < end; ++i) {
196 const auto *p = m_propertyCaches.at(i)->defaultProperty();
197 Q_ASSERT(p && p->isComponentWrapper());
198 if (p->wrappedObjectIndex() == childIndex)
206 return document->jsGenerator.registerConstant(v);
211 return document->javaScriptCompilationUnit->unitData();
216 return typeData->imports();
221 return &document->objects;
226 return &m_propertyCaches;
231 return &m_propertyCaches;
236 return document->jsParserEngine.pool();
241 return document->jsParserEngine.newStringRef(string);
246 return &document->jsGenerator.stringTable;
251 return object->bindingAsString(document, scriptIndex);
256 const quint32 moduleIdx = registerString(module);
257 const quint32 qualifierIdx = registerString(qualifier);
259 for (
int i = 0, count = document->imports.size(); i < count; ++i) {
260 const QV4::CompiledData::Import *existingImport = document->imports.at(i);
261 if (existingImport->type == QV4::CompiledData::Import::ImportLibrary
262 && existingImport->uriIndex == moduleIdx
263 && existingImport->qualifierIndex == qualifierIdx)
266 auto pool = memoryPool();
267 QV4::CompiledData::Import *import = pool->New<QV4::CompiledData::Import>();
268 import->type = QV4::CompiledData::Import::ImportLibrary;
269 import->version = version;
270 import->uriIndex = moduleIdx;
271 import->qualifierIndex = qualifierIdx;
272 document->imports.append(import);
277 return typeData->qmlType(inlineComponentName);
287 , typeLoader(typeCompiler->typeLoader())
288 , qmlObjects(*typeCompiler->qmlObjects())
290 , customParsers(typeCompiler->customParserCache())
291 , propertyCaches(typeCompiler->propertyCaches())
297 for (
int objectIndex = 0; objectIndex < qmlObjects.size(); ++objectIndex) {
298 const QmlIR::Object *
const obj = qmlObjects.at(objectIndex);
299 QQmlPropertyCache::ConstPtr cache = propertyCaches->at(objectIndex);
302 if (QQmlCustomParser *customParser = customParsers.value(obj->inheritedTypeNameIndex)) {
303 if (!(customParser->flags() & QQmlCustomParser::AcceptsSignalHandlers))
306 const QString elementName = stringAt(obj->inheritedTypeNameIndex);
314 const QmlIR::Object *obj,
const QString &typeName,
315 const QQmlPropertyCache::ConstPtr &propertyCache,
316 QQmlPropertyResolver::RevisionCheck checkRevision)
319 QHash<QString, QStringList> customSignals;
321 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
322 const QString bindingPropertyName = stringAt(binding->propertyNameIndex);
324 const QV4::CompiledData::Binding::Type bindingType = binding->type();
325 if (bindingType == QV4::CompiledData::Binding::Type_AttachedProperty) {
326 const QmlIR::Object *attachedObj = qmlObjects.at(binding->value.objectIndex);
327 auto *typeRef = resolvedType(binding->propertyNameIndex);
328 QQmlType type = typeRef ? typeRef->type() : QQmlType();
330 imports->resolveType(typeLoader, bindingPropertyName, &type,
nullptr,
nullptr);
332 const QMetaObject *attachedType = type.attachedPropertiesType(typeLoader);
335 QQmlPropertyCache::ConstPtr cache = QQmlMetaType::propertyCache(attachedType);
339 attachedObj, bindingPropertyName, cache,
340 QQmlPropertyResolver::IgnoreRevision)) {
347 QString qPropertyName;
349 if (
auto propertyName =
350 QQmlSignalNames::changedHandlerNameToPropertyName(bindingPropertyName)) {
351 qPropertyName = *propertyName;
352 signalName = *QQmlSignalNames::changedHandlerNameToSignalName(bindingPropertyName);
354 signalName = QQmlSignalNames::handlerNameToSignalName(bindingPropertyName)
355 .value_or(QString());
357 if (signalName.isEmpty())
360 QQmlPropertyResolver resolver(propertyCache);
362 bool notInRevision =
false;
363 const QQmlPropertyData *
const signal
364 = resolver.signal(signalName, ¬InRevision, checkRevision);
365 const QQmlPropertyData *
const signalPropertyData
366 = resolver.property(signalName,
nullptr, checkRevision);
367 const QQmlPropertyData *
const qPropertyData = !qPropertyName.isEmpty()
368 ? resolver.property(qPropertyName,
nullptr, checkRevision)
370 QString finalSignalHandlerPropertyName = signalName;
371 QV4::CompiledData::Binding::Flag flag
372 = QV4::CompiledData::Binding::IsSignalHandlerExpression;
374 const bool isPropertyObserver
375 = !signalPropertyData && qPropertyData && qPropertyData->notifiesViaBindable();
376 if (signal && !(qPropertyData && qPropertyData->isAlias() && isPropertyObserver)) {
377 int sigIndex = propertyCache->methodIndexToSignalIndex(signal->coreIndex());
378 sigIndex = propertyCache->originalClone(sigIndex);
380 bool unnamedParameter =
false;
382 QList<QByteArray> parameterNames = propertyCache->signalParameterNames(sigIndex);
383 for (
int i = 0; i < parameterNames.size(); ++i) {
384 const QString param = QString::fromUtf8(parameterNames.at(i));
386 unnamedParameter =
true;
387 else if (unnamedParameter) {
388 COMPILE_EXCEPTION(binding, tr(
"Signal uses unnamed parameter followed by named parameter."));
389 }
else if (QV4::Compiler::Codegen::isNameGlobal(param)) {
390 COMPILE_EXCEPTION(binding, tr(
"Signal parameter \"%1\" hides global variable.").arg(param));
393 }
else if (isPropertyObserver) {
394 finalSignalHandlerPropertyName = qPropertyName;
395 flag = QV4::CompiledData::Binding::IsPropertyObserver;
399 if (signalPropertyData)
402 const QString &originalPropertyName = stringAt(binding->propertyNameIndex);
404 auto *typeRef = resolvedType(obj->inheritedTypeNameIndex);
405 const QQmlType type = typeRef ? typeRef->type() : QQmlType();
406 if (type.isValid()) {
408 .arg(typeName, originalPropertyName, type.module())
409 .arg(type.version().majorVersion())
410 .arg(type.version().minorVersion()));
414 tr(
"\"%1.%2\" is not available due to component versioning.")
415 .arg(typeName, originalPropertyName));
422 if (customSignals.isEmpty()) {
423 for (
const QmlIR::Signal *signal = obj->firstSignal(); signal; signal = signal->next) {
424 const QString &signalName = stringAt(signal->nameIndex);
425 customSignals.insert(signalName, signal->parameterStringList(compiler->stringPool()));
428 for (
const QmlIR::Property *property = obj->firstProperty(); property; property = property->next) {
429 const QString propName = stringAt(property->nameIndex());
430 customSignals.insert(propName, QStringList());
434 QHash<QString, QStringList>::ConstIterator entry = customSignals.constFind(signalName);
435 if (entry == customSignals.constEnd() && !qPropertyName.isEmpty())
436 entry = customSignals.constFind(qPropertyName);
438 if (entry == customSignals.constEnd()) {
446 if (bindingType == QV4::CompiledData::Binding::Type_Object) {
447 binding->setFlag(QV4::CompiledData::Binding::IsSignalHandlerObject);
451 if (bindingType != QV4::CompiledData::Binding::Type_Script) {
452 if (bindingType < QV4::CompiledData::Binding::Type_Script) {
453 COMPILE_EXCEPTION(binding, tr(
"Cannot assign a value to a signal (expecting a script to be run)"));
459 binding->propertyNameIndex = compiler->registerString(finalSignalHandlerPropertyName);
460 binding->setFlag(flag);
467 , qmlObjects(*typeCompiler->qmlObjects())
468 , propertyCaches(typeCompiler->propertyCaches())
475 for (
int i = 0; i < qmlObjects.size(); ++i) {
476 QQmlPropertyCache::ConstPtr propertyCache = propertyCaches->at(i);
479 const QmlIR::Object *obj = qmlObjects.at(i);
481 QQmlPropertyResolver resolver(propertyCache);
483 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
484 const QV4::CompiledData::Binding::Flags bindingFlags = binding->flags();
485 if (bindingFlags & QV4::CompiledData::Binding::IsSignalHandlerExpression
486 || bindingFlags & QV4::CompiledData::Binding::IsSignalHandlerObject
487 || bindingFlags & QV4::CompiledData::Binding::IsPropertyObserver)
490 if (binding->type() != QV4::CompiledData::Binding::Type_Script)
493 const QString propertyName = stringAt(binding->propertyNameIndex);
494 bool notInRevision =
false;
495 const QQmlPropertyData *pd = resolver.property(propertyName, ¬InRevision);
496 if (!pd || pd->isQList())
499 if (!pd->isEnum() && pd->propType().id() != QMetaType::Int)
502 if (!tryQualifiedEnumAssignment(obj, propertyCache, pd, binding))
510bool QQmlEnumTypeResolver::assignEnumToBinding(QmlIR::Binding *binding, QStringView,
int enumValue,
bool)
512 binding->setType(QV4::CompiledData::Binding::Type_Number);
513 binding->value.constantValueIndex = compiler->registerConstant(QV4::Encode((
double)enumValue));
515 binding->setFlag(QV4::CompiledData::Binding::IsResolvedEnum);
520 const QmlIR::Object *obj,
const QQmlPropertyCache::ConstPtr &propertyCache,
521 const QQmlPropertyData *prop, QmlIR::Binding *binding)
523 bool isIntProp = (prop->propType().id() == QMetaType::Int) && !prop->isEnum();
524 if (!prop->isEnum() && !isIntProp)
527 if (!prop->isWritable()
528 && !(binding->hasFlag(QV4::CompiledData::Binding::InitializerForReadOnlyDeclaration))) {
529 COMPILE_EXCEPTION(binding, tr(
"Invalid property assignment: \"%1\" is a read-only property")
530 .arg(stringAt(binding->propertyNameIndex)));
533 Q_ASSERT(binding->type() == QV4::CompiledData::Binding::Type_Script);
534 const QString string = compiler->bindingAsString(obj, binding->value.compiledScriptIndex);
535 if (!string.constData()->isUpper())
541 for (
const QChar &c : string)
542 if (!(c.isLetterOrNumber() || c == u'.' || c == u'_' || c.isSpace()))
549 int dot = string.indexOf(QLatin1Char(
'.'));
550 if (dot == -1 || dot == string.size()-1)
553 int dot2 = string.indexOf(QLatin1Char(
'.'), dot+1);
554 if (dot2 != -1 && dot2 != string.size()-1) {
555 if (!string.at(dot+1).isUpper())
557 if (string.indexOf(QLatin1Char(
'.'), dot2+1) != -1)
561 QHashedStringRef typeName(string.constData(), dot);
562 const bool isQtObject = (typeName == QLatin1String(
"Qt"));
563 const QStringView scopedEnumName = (dot2 != -1 ? QStringView{string}.mid(dot + 1, dot2 - dot - 1) : QStringView());
565 const QStringView enumValue = QStringView{string}.mid(!isQtObject && dot2 != -1 ? dot2 + 1 : dot + 1);
570 int enumval = evaluateEnum(typeName.toString(), scopedEnumName, enumValue, &ok);
572 if (!assignEnumToBinding(binding, enumValue, enumval, isQtObject))
578 imports->resolveType(compiler->typeLoader(), typeName, &type,
nullptr,
nullptr);
580 if (!type.isValid() && !isQtObject)
586 auto *tr = resolvedType(obj->inheritedTypeNameIndex);
589 bool useFastPath = type.isValid() && tr && tr->type() == type;
593 mprop = propertyCache->firstCppMetaObject()->property(prop->coreIndex());
594 menum = mprop.enumerator();
597 if (!menum.isScoped() && scopedEnumName.isEmpty() && typeName != QString::fromUtf8(menum.scope()))
598 useFastPath =
false;;
601 QByteArray enumName = enumValue.toUtf8();
602 if (menum.isScoped() && !scopedEnumName.isEmpty() && enumName != scopedEnumName.toUtf8())
605 if (mprop.isFlagType()) {
606 value = menum.keysToValue(enumName.constData(), &ok);
608 value = menum.keyToValue(enumName.constData(), &ok);
612 if (type.isValid()) {
613 if (!scopedEnumName.isEmpty()) {
614 value = type.scopedEnumValue(
615 compiler->typeLoader(), scopedEnumName, enumValue, &ok);
617 value = type.enumValue(compiler->typeLoader(), QHashedStringRef(enumValue), &ok);
620 QByteArray enumName = enumValue.toUtf8();
621 const QMetaObject *metaObject = &Qt::staticMetaObject;
622 for (
int ii = metaObject->enumeratorCount() - 1; !ok && ii >= 0; --ii) {
623 QMetaEnum e = metaObject->enumerator(ii);
624 value = e.keyToValue(enumName.constData(), &ok);
632 return assignEnumToBinding(binding, enumValue, value, isQtObject);
635int QQmlEnumTypeResolver::evaluateEnum(
const QString &scope, QStringView enumName, QStringView enumValue,
bool *ok)
const
637 Q_ASSERT_X(ok,
"QQmlEnumTypeResolver::evaluateEnum",
"ok must not be a null pointer");
640 if (scope != QLatin1String(
"Qt")) {
642 imports->resolveType(compiler->typeLoader(), scope, &type,
nullptr,
nullptr);
645 if (!enumName.isEmpty())
646 return type.scopedEnumValue(compiler->typeLoader(), enumName, enumValue, ok);
647 return type.enumValue(
648 compiler->typeLoader(),
649 QHashedStringRef(enumValue.constData(), enumValue.size()), ok);
652 const QMetaObject *mo = &Qt::staticMetaObject;
653 int i = mo->enumeratorCount();
654 const QByteArray ba = enumValue.toUtf8();
656 int v = mo->enumerator(i).keyToValue(ba.constData(), ok);
672 scanObjectRecursively(0);
673 for (
int i = 0; i < qmlObjects.size(); ++i)
674 if (qmlObjects.at(i)->flags & QV4::CompiledData::Object::IsInlineComponentRoot)
675 scanObjectRecursively(i);
680 const QmlIR::Object *
const obj = qmlObjects.at(objectIndex);
681 if (!annotateScriptBindings)
682 annotateScriptBindings = customParsers.contains(obj->inheritedTypeNameIndex);
683 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
684 switch (binding->type()) {
685 case QV4::CompiledData::Binding::Type_Script:
686 if (annotateScriptBindings) {
687 binding->stringIndex = compiler->registerString(
688 compiler->bindingAsString(obj, binding->value.compiledScriptIndex));
691 case QV4::CompiledData::Binding::Type_Object:
692 case QV4::CompiledData::Binding::Type_AttachedProperty:
693 case QV4::CompiledData::Binding::Type_GroupProperty:
694 scanObjectRecursively(binding->value.objectIndex, annotateScriptBindings);
711 for (
int i = 0; i < qmlObjects.size(); ++i) {
712 QQmlPropertyCache::ConstPtr propertyCache = propertyCaches->at(i);
716 const QmlIR::Object *obj = qmlObjects.at(i);
718 QQmlPropertyResolver resolver(propertyCache);
719 const QQmlPropertyData *defaultProperty = obj->indexOfDefaultPropertyOrAlias != -1 ? propertyCache->parent()->defaultProperty() : propertyCache->defaultProperty();
721 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
722 if (!binding->isValueBinding())
724 bool notInRevision =
false;
725 const QQmlPropertyData *pd = binding->propertyNameIndex != quint32(0) ? resolver.property(stringAt(binding->propertyNameIndex), ¬InRevision) : defaultProperty;
726 if (pd && pd->isAlias())
727 binding->setFlag(QV4::CompiledData::Binding::IsBindingToAlias);
742 const QMetaType scriptStringMetaType = QMetaType::fromType<QQmlScriptString>();
743 for (
int i = 0; i < qmlObjects.size(); ++i) {
744 QQmlPropertyCache::ConstPtr propertyCache = propertyCaches->at(i);
748 const QmlIR::Object *obj = qmlObjects.at(i);
750 QQmlPropertyResolver resolver(propertyCache);
751 const QQmlPropertyData *defaultProperty = obj->indexOfDefaultPropertyOrAlias != -1 ? propertyCache->parent()->defaultProperty() : propertyCache->defaultProperty();
753 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
754 if (binding->type() != QV4::CompiledData::Binding::Type_Script)
756 bool notInRevision =
false;
757 const QQmlPropertyData *pd = binding->propertyNameIndex != quint32(0) ? resolver.property(stringAt(binding->propertyNameIndex), ¬InRevision) : defaultProperty;
758 if (!pd || pd->propType() != scriptStringMetaType)
761 QString script = compiler->bindingAsString(obj, binding->value.compiledScriptIndex);
762 binding->stringIndex = compiler->registerString(script);
768void QQmlComponentAndAliasResolver<QQmlTypeCompiler>::allocateNamedObjects(
769 QmlIR::Object *object)
const
771 object->namedObjectsInComponent.allocate(m_compiler->memoryPool(), m_idToObjectIndex);
775bool QQmlComponentAndAliasResolver<QQmlTypeCompiler>::markAsComponent(
int index)
const
777 m_compiler->qmlObjects()->at(index)->flags |= QV4::CompiledData::Object::IsComponent;
782void QQmlComponentAndAliasResolver<QQmlTypeCompiler>::setObjectId(
int index)
const
784 m_compiler->qmlObjects()->at(index)->id = m_idToObjectIndex.size();
788void QQmlComponentAndAliasResolver<QQmlTypeCompiler>::resolveGeneralizedGroupProperty(
789 const CompiledObject &component, CompiledBinding *binding)
793 const int targetObjectIndex = m_idToObjectIndex.value(binding->propertyNameIndex, -1);
794 if (targetObjectIndex != -1)
795 m_propertyCaches->set(binding->value.objectIndex, m_propertyCaches->at(targetObjectIndex));
799
800
801
802
803
804
805
806
807
808
809
810
811
812
815 QStringView property, QStringView subProperty,
816 QQmlPropertyIndex &propIdx, QMetaType targetPropertyType,
817 const QQmlPropertyCacheVector *propertyCaches,
818 const QMap<
int,
int> &idToObjectIndex)
820 for (
auto it = targetObject->bindingsBegin(), end = targetObject->bindingsEnd();
823 if (compiler->stringAt(binding.propertyNameIndex) != property)
825 const auto &cache = propertyCaches->at(binding.value.objectIndex);
828 QQmlPropertyResolver resolver(cache);
829 const QQmlPropertyData *pd = resolver.property(subProperty.toString());
832 propIdx = QQmlPropertyIndex(propIdx.coreIndex(), pd->coreIndex());
836 for (
auto it = targetObject->aliasesBegin(), end = targetObject->aliasesEnd();
838 auto innerAlias = *it;
839 if (compiler->stringAt(innerAlias.nameIndex()) != property)
841 const int innerObjectIndex = idToObjectIndex.value(innerAlias.idIndex(), -1);
842 if (innerObjectIndex == -1)
844 const auto &cache = propertyCaches->at(innerObjectIndex);
847 QQmlPropertyResolver resolver(cache);
848 const QQmlPropertyData *pd = resolver.property(subProperty.toString());
851 propIdx = QQmlPropertyIndex(propIdx.coreIndex(), pd->coreIndex());
855 const QQmlPropertyCache::ConstPtr typeCache
856 = QQmlMetaType::propertyCacheForType(targetPropertyType);
858 const QQmlPropertyResolver resolver(typeCache);
859 const QQmlPropertyData *pd = resolver.property(subProperty.toString());
861 propIdx = QQmlPropertyIndex(propIdx.coreIndex(), pd->coreIndex());
870typename QQmlComponentAndAliasResolver<QQmlTypeCompiler>::AliasResolutionResult
871QQmlComponentAndAliasResolver<QQmlTypeCompiler>::resolveAliasesInObject(
872 const CompiledObject &component,
int objectIndex,
873 QQmlPropertyCacheAliasCreator<QQmlTypeCompiler> *aliasCacheCreator, QQmlError *error)
877 const QmlIR::Object *obj = m_compiler->objectAt(objectIndex);
878 if (!obj->aliasCount())
879 return AllAliasesResolved;
882 int numSkippedAliases = 0;
883 bool hasUnresolvedLocalAliases =
false;
885 for (
const QmlIR::Alias *alias = obj->firstAlias(); alias; alias = alias->next, ++aliasIndex) {
886 if (resolvedAliases.contains(alias)) {
892 const int idIndex = alias->idIndex();
893 const int targetObjectIndex = m_idToObjectIndex.value(idIndex, -1);
894 if (targetObjectIndex == -1) {
895 *error = qQmlCompileError(
896 alias->referenceLocation(),
897 QQmlComponentAndAliasResolverBase::tr(
898 "Invalid alias reference. Unable to find id \"%1\"")
899 .arg(stringAt(idIndex)));
903 const QmlIR::Object *targetObject = m_compiler->objectAt(targetObjectIndex);
904 Q_ASSERT(targetObject->id >= 0);
905 const int resolvedTargetObjectId = targetObject->id;
907 const QString aliasPropertyValue = stringAt(alias->propertyNameIndex());
909 QStringView property;
910 QStringView subProperty;
912 const int propertySeparator = aliasPropertyValue.indexOf(QLatin1Char(
'.'));
913 if (propertySeparator != -1) {
914 property = QStringView{aliasPropertyValue}.left(propertySeparator);
915 subProperty = QStringView{aliasPropertyValue}.mid(propertySeparator + 1);
917 property = QStringView(aliasPropertyValue);
919 QQmlPropertyIndex propIdx;
921 if (property.isEmpty()) {
924 QQmlPropertyCache::ConstPtr targetCache = m_propertyCaches->at(targetObjectIndex);
926 *error = qQmlCompileError(
927 alias->referenceLocation(),
928 QQmlComponentAndAliasResolverBase::tr(
"Invalid alias target location: %1")
929 .arg(property.toString()));
933 QQmlPropertyResolver resolver(targetCache);
935 const QQmlPropertyData *targetProperty = resolver.property(
936 property.toString(),
nullptr, QQmlPropertyResolver::IgnoreRevision);
939 if (!targetProperty) {
940 bool aliasPointsToOtherAlias =
false;
941 auto targetAlias = targetObject->aliasesBegin();
942 for (
const auto end = targetObject->aliasesEnd(); targetAlias != end;
944 if (stringAt(targetAlias->nameIndex()) == property) {
945 aliasPointsToOtherAlias =
true;
949 if (aliasPointsToOtherAlias) {
950 if (targetObjectIndex != objectIndex) {
952 return aliasIndex == numSkippedAliases
954 : SomeAliasesResolved;
957 if (resolvedAliases.contains(targetAlias)) {
959 if (!appendAliasToPropertyCache(
960 &component, alias, objectIndex, aliasIndex, -1,
961 resolvedTargetObjectId, aliasCacheCreator, error)) {
971 hasUnresolvedLocalAliases =
true;
976 if (!targetProperty || targetProperty->coreIndex() > 0x0000FFFF) {
977 *error = qQmlCompileError(
978 alias->referenceLocation(),
979 QQmlComponentAndAliasResolverBase::tr(
"Invalid alias target location: %1")
980 .arg(property.toString()));
984 propIdx = QQmlPropertyIndex(targetProperty->coreIndex());
986 if (!subProperty.isEmpty()) {
987 const QMetaObject *valueTypeMetaObject = QQmlMetaType::metaObjectForValueType(targetProperty->propType());
988 if (!valueTypeMetaObject) {
990 bool isDeepAlias = subProperty.at(0).isLower();
992 isDeepAlias = resolveDeepAlias(
993 m_compiler, targetObject, property, subProperty, propIdx,
994 targetProperty->propType(), m_propertyCaches, m_idToObjectIndex);
997 *error = qQmlCompileError(
998 alias->referenceLocation(),
999 QQmlComponentAndAliasResolverBase::tr(
1000 "Invalid alias target location: %1")
1001 .arg(subProperty.toString()));
1006 int valueTypeIndex =
1007 valueTypeMetaObject->indexOfProperty(subProperty.toString().toUtf8().constData());
1008 if (valueTypeIndex == -1) {
1009 *error = qQmlCompileError(
1010 alias->referenceLocation(),
1011 QQmlComponentAndAliasResolverBase::tr(
1012 "Invalid alias target location: %1")
1013 .arg(subProperty.toString()));
1016 Q_ASSERT(valueTypeIndex <= 0x0000FFFF);
1018 propIdx = QQmlPropertyIndex(propIdx.coreIndex(), valueTypeIndex);
1023 if (!appendAliasToPropertyCache(
1024 &component, alias, objectIndex, aliasIndex, propIdx.toEncoded(),
1025 resolvedTargetObjectId, aliasCacheCreator, error)) {
1030 if (numSkippedAliases == aliasIndex)
1031 return NoAliasResolved;
1033 if (aliasIndex == obj->aliasCount() && !hasUnresolvedLocalAliases)
1034 return AllAliasesResolved;
1036 return SomeAliasesResolved;
1041 , qmlObjects(typeCompiler->qmlObjects())
1042 , propertyCaches(typeCompiler->propertyCaches())
1043 , customParsers(typeCompiler->customParserCache())
1044 , _seenObjectWithId(
false)
1050 for (
int i = 0; i < qmlObjects->size(); ++i) {
1051 if ((qmlObjects->at(i)->flags & QV4::CompiledData::Object::IsInlineComponentRoot)
1052 && !scanObject(i, ScopeDeferred::False)) {
1056 return scanObject(0, ScopeDeferred::False);
1060 int objectIndex, ScopeDeferred scopeDeferred)
1064 QmlIR::Object *obj = qmlObjects->at(objectIndex);
1065 if (obj->idNameIndex != 0)
1066 _seenObjectWithId =
true;
1068 if (obj->flags & Object::IsComponent) {
1069 Q_ASSERT(obj->bindingCount() == 1);
1070 const Binding *componentBinding = obj->firstBinding();
1071 Q_ASSERT(componentBinding->type() == Binding::Type_Object);
1073 return scanObject(componentBinding->value.objectIndex, ScopeDeferred::False);
1076 QQmlPropertyCache::ConstPtr propertyCache = propertyCaches->at(objectIndex);
1080 QString defaultPropertyName;
1081 const QQmlPropertyData *defaultProperty =
nullptr;
1082 if (obj->indexOfDefaultPropertyOrAlias != -1) {
1083 const QQmlPropertyCache *cache = propertyCache->parent().data();
1084 defaultPropertyName = cache->defaultPropertyName();
1085 defaultProperty = cache->defaultProperty();
1087 defaultPropertyName = propertyCache->defaultPropertyName();
1088 defaultProperty = propertyCache->defaultProperty();
1091 QQmlCustomParser *customParser = customParsers.value(obj->inheritedTypeNameIndex);
1093 QQmlPropertyResolver propertyResolver(propertyCache);
1095 QStringList deferredPropertyNames;
1096 QStringList immediatePropertyNames;
1098 const QMetaObject *mo = propertyCache->firstCppMetaObject();
1099 const int deferredNamesIndex = mo->indexOfClassInfo(
"DeferredPropertyNames");
1100 const int immediateNamesIndex = mo->indexOfClassInfo(
"ImmediatePropertyNames");
1101 if (deferredNamesIndex != -1) {
1102 if (immediateNamesIndex != -1) {
1104 "ImmediatePropertyNames on the same type."));
1106 const QMetaClassInfo classInfo = mo->classInfo(deferredNamesIndex);
1107 deferredPropertyNames = QString::fromUtf8(classInfo.value()).split(u',');
1108 }
else if (immediateNamesIndex != -1) {
1109 const QMetaClassInfo classInfo = mo->classInfo(immediateNamesIndex);
1110 immediatePropertyNames = QString::fromUtf8(classInfo.value()).split(u',');
1113 if (immediatePropertyNames.isEmpty())
1114 immediatePropertyNames.append(QString());
1118 for (QmlIR::Binding *binding = obj->firstBinding(); binding; binding = binding->next) {
1119 QString name = stringAt(binding->propertyNameIndex);
1122 if (binding->type() == Binding::Type_AttachedProperty) {
1123 if (customParser->flags() & QQmlCustomParser::AcceptsAttachedProperties) {
1124 binding->setFlag(Binding::IsCustomParserBinding);
1125 obj->flags |= Object::HasCustomParserBindings;
1128 }
else if (QQmlSignalNames::isHandlerName(name)
1129 && !(customParser->flags() & QQmlCustomParser::AcceptsSignalHandlers)) {
1130 obj->flags |= Object::HasCustomParserBindings;
1131 binding->setFlag(Binding::IsCustomParserBinding);
1136 const bool hasPropertyData = [&]() {
1137 if (name.isEmpty()) {
1138 name = defaultPropertyName;
1139 if (defaultProperty)
1141 }
else if (name.constData()->isUpper()) {
1146 bool notInRevision =
false;
1147 if (propertyResolver.property(
1148 name, ¬InRevision, QQmlPropertyResolver::CheckRevision)) {
1156 const Binding::Flags bindingFlags = binding->flags();
1157 if (bindingFlags & Binding::IsSignalHandlerExpression
1158 || bindingFlags & Binding::IsSignalHandlerObject
1159 || bindingFlags & Binding::IsPropertyObserver) {
1166 obj->flags |= Object::HasCustomParserBindings;
1167 binding->setFlag(Binding::IsCustomParserBinding);
1171 bool seenSubObjectWithId =
false;
1172 bool isExternal =
false;
1173 if (binding->type() >= Binding::Type_Object) {
1174 const bool isOwnProperty = hasPropertyData || binding->isAttachedProperty();
1175 isExternal = !isOwnProperty && binding->isGroupProperty();
1176 if (isOwnProperty || isExternal) {
1177 qSwap(_seenObjectWithId, seenSubObjectWithId);
1180 const bool isImplicitComponent
1181 = compiler->implicitComponentForObject(binding->value.objectIndex) != -1;
1183 const ScopeDeferred objectScope =
1184 !isImplicitComponent && (isExternal || scopeDeferred == ScopeDeferred::True)
1185 ? ScopeDeferred::True
1186 : ScopeDeferred::False;
1187 const bool subObjectValid = scanObject(binding->value.objectIndex, objectScope);
1188 qSwap(_seenObjectWithId, seenSubObjectWithId);
1189 if (!subObjectValid)
1191 _seenObjectWithId |= seenSubObjectWithId;
1195 bool isDeferred =
false;
1196 if (!immediatePropertyNames.isEmpty() && !immediatePropertyNames.contains(name)) {
1197 if (seenSubObjectWithId) {
1199 "to a deferred property."));
1201 if (isExternal || !disableInternalDeferredProperties())
1203 }
else if (!deferredPropertyNames.isEmpty() && deferredPropertyNames.contains(name)) {
1204 if (!seenSubObjectWithId && binding->type() != Binding::Type_GroupProperty) {
1205 if (isExternal || !disableInternalDeferredProperties())
1210 if (binding->type() >= Binding::Type_Object) {
1211 if (isExternal && !isDeferred && !customParser) {
1213 binding, tr(
"Cannot assign to non-existent property \"%1\"").arg(name));
1218 binding->setFlag(Binding::IsDeferredBinding);
1219 obj->flags |= Object::HasDeferredBindings;
void annotateBindingsToAliases()
QQmlAliasAnnotator(QQmlTypeCompiler *typeCompiler)
void annotateBindingsWithScriptStrings()
QQmlCustomParserScriptIndexer(QQmlTypeCompiler *typeCompiler)
bool resolveEnumBindings()
QQmlScriptStringScanner(QQmlTypeCompiler *typeCompiler)
Combined button and popup list for selecting options.
Q_LOGGING_CATEGORY(lcEventDispatcher, "qt.eventdispatcher")
#define COMPILE_EXCEPTION(location, desc)
static bool resolveDeepAlias(QQmlTypeCompiler *compiler, const QmlIR::Object *targetObject, QStringView property, QStringView subProperty, QQmlPropertyIndex &propIdx, QMetaType targetPropertyType, const QQmlPropertyCacheVector *propertyCaches, const QMap< int, int > &idToObjectIndex)
QQmlCompilePass(QQmlTypeCompiler *typeCompiler)
QQmlTypeCompiler * compiler
int implicitComponentForObject(int childIndex) const
int registerConstant(QV4::ReturnedValue v)
void recordError(const QQmlJS::DiagnosticMessage &message)
const QV4::CompiledData::Unit * qmlUnit() const
QQmlType qmlTypeForComponent(const QString &inlineComponentName=QString()) const
QList< QmlIR::Object * > * qmlObjects() const
QQmlPropertyCacheVector * propertyCaches()
QQmlJS::MemoryPool * memoryPool()
void recordError(const QQmlError &e)
QString bindingAsString(const QmlIR::Object *object, int scriptIndex) const
const QQmlPropertyCacheVector * propertyCaches() const
int registerString(const QString &str)
const QV4::Compiler::StringTableGenerator * stringPool() const
void recordError(const QV4::CompiledData::Location &location, const QString &description)
QStringView newStringRef(const QString &string)
int resolvedIndex(int index) const
void addImport(const QString &module, const QString &qualifier, QTypeRevision version)
QQmlRefPointer< QV4::CompiledData::CompilationUnit > compile()
QString stringAt(int idx) const
const QQmlImports * imports() const
bool resolveSignalHandlerExpressions()