2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2023-01-04 08:52:22 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
#include "fakemetaobject.h"
|
2013-11-13 16:31:04 +01:00
|
|
|
#include <QCryptographicHash>
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
using namespace LanguageUtils;
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
FakeMetaEnum::FakeMetaEnum()
|
|
|
|
|
{}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
FakeMetaEnum::FakeMetaEnum(const QString &name)
|
|
|
|
|
: m_name(name)
|
|
|
|
|
{}
|
|
|
|
|
|
2011-06-21 15:10:57 +02:00
|
|
|
bool FakeMetaEnum::isValid() const
|
|
|
|
|
{ return !m_name.isEmpty(); }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QString FakeMetaEnum::name() const
|
|
|
|
|
{ return m_name; }
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
void FakeMetaEnum::setName(const QString &name)
|
|
|
|
|
{ m_name = name; }
|
|
|
|
|
|
2019-08-29 10:38:36 +02:00
|
|
|
void FakeMetaEnum::addKey(const QString &key)
|
|
|
|
|
{ m_keys.append(key); }
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
QString FakeMetaEnum::key(int index) const
|
|
|
|
|
{ return m_keys.at(index); }
|
|
|
|
|
|
|
|
|
|
int FakeMetaEnum::keyCount() const
|
|
|
|
|
{ return m_keys.size(); }
|
|
|
|
|
|
|
|
|
|
QStringList FakeMetaEnum::keys() const
|
|
|
|
|
{ return m_keys; }
|
|
|
|
|
|
2011-07-01 15:09:15 +02:00
|
|
|
bool FakeMetaEnum::hasKey(const QString &key) const
|
|
|
|
|
{ return m_keys.contains(key); }
|
|
|
|
|
|
2013-11-13 16:31:04 +01:00
|
|
|
void FakeMetaEnum::addToHash(QCryptographicHash &hash) const
|
|
|
|
|
{
|
|
|
|
|
int len = m_name.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_name.constData()), len * sizeof(QChar));
|
|
|
|
|
len = m_keys.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &key : std::as_const(m_keys)) {
|
2013-11-13 16:31:04 +01:00
|
|
|
len = key.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(key.constData()), len * sizeof(QChar));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-21 16:04:52 +02:00
|
|
|
QString FakeMetaEnum::describe(int baseIndent) const
|
|
|
|
|
{
|
|
|
|
|
QString newLine = QString::fromLatin1("\n") + QString::fromLatin1(" ").repeated(baseIndent);
|
|
|
|
|
QString res = QLatin1String("Enum ");
|
|
|
|
|
res += name();
|
2019-08-29 10:38:36 +02:00
|
|
|
res += QLatin1String(": [");
|
2014-05-21 16:04:52 +02:00
|
|
|
for (int i = 0; i < keyCount(); ++i) {
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += key(i);
|
|
|
|
|
}
|
|
|
|
|
res += newLine;
|
2019-08-29 10:38:36 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaEnum::toString() const
|
|
|
|
|
{
|
|
|
|
|
return describe();
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
FakeMetaMethod::FakeMetaMethod(const QString &name, const QString &returnType)
|
|
|
|
|
: m_name(name)
|
|
|
|
|
, m_returnType(returnType)
|
|
|
|
|
, m_methodTy(FakeMetaMethod::Method)
|
|
|
|
|
, m_methodAccess(FakeMetaMethod::Public)
|
2011-05-30 09:01:52 +02:00
|
|
|
, m_revision(0)
|
2010-12-03 11:17:25 +01:00
|
|
|
{}
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
FakeMetaMethod::FakeMetaMethod()
|
|
|
|
|
: m_methodTy(FakeMetaMethod::Method)
|
|
|
|
|
, m_methodAccess(FakeMetaMethod::Public)
|
2011-05-30 09:01:52 +02:00
|
|
|
, m_revision(0)
|
2011-02-08 11:01:37 +01:00
|
|
|
{}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QString FakeMetaMethod::methodName() const
|
|
|
|
|
{ return m_name; }
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
void FakeMetaMethod::setMethodName(const QString &name)
|
|
|
|
|
{ m_name = name; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaMethod::setReturnType(const QString &type)
|
|
|
|
|
{ m_returnType = type; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QStringList FakeMetaMethod::parameterNames() const
|
|
|
|
|
{ return m_paramNames; }
|
|
|
|
|
|
|
|
|
|
QStringList FakeMetaMethod::parameterTypes() const
|
|
|
|
|
{ return m_paramTypes; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaMethod::addParameter(const QString &name, const QString &type)
|
|
|
|
|
{ m_paramNames.append(name); m_paramTypes.append(type); }
|
|
|
|
|
|
|
|
|
|
int FakeMetaMethod::methodType() const
|
|
|
|
|
{ return m_methodTy; }
|
|
|
|
|
|
2011-01-04 16:15:05 +01:00
|
|
|
void FakeMetaMethod::setMethodType(int methodType)
|
2010-12-03 11:17:25 +01:00
|
|
|
{ m_methodTy = methodType; }
|
|
|
|
|
|
|
|
|
|
int FakeMetaMethod::access() const
|
|
|
|
|
{ return m_methodAccess; }
|
|
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
int FakeMetaMethod::revision() const
|
|
|
|
|
{ return m_revision; }
|
2010-12-03 11:17:25 +01:00
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
void FakeMetaMethod::setRevision(int r)
|
|
|
|
|
{ m_revision = r; }
|
|
|
|
|
|
2013-11-13 16:31:04 +01:00
|
|
|
void FakeMetaMethod::addToHash(QCryptographicHash &hash) const
|
|
|
|
|
{
|
|
|
|
|
int len = m_name.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_name.constData()), len * sizeof(QChar));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&m_methodAccess), sizeof(m_methodAccess));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&m_methodTy), sizeof(m_methodTy));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&m_revision), sizeof(m_revision));
|
|
|
|
|
len = m_paramNames.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &pName : std::as_const(m_paramNames)) {
|
2013-11-13 16:31:04 +01:00
|
|
|
len = pName.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(pName.constData()), len * sizeof(QChar));
|
|
|
|
|
}
|
|
|
|
|
len = m_paramTypes.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &pType : std::as_const(m_paramTypes)) {
|
2013-11-13 16:31:04 +01:00
|
|
|
len = pType.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(pType.constData()), len * sizeof(QChar));
|
|
|
|
|
}
|
|
|
|
|
len = m_returnType.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_returnType.constData()), len * sizeof(QChar));
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-21 16:04:52 +02:00
|
|
|
QString FakeMetaMethod::describe(int baseIndent) const
|
|
|
|
|
{
|
|
|
|
|
QString newLine = QString::fromLatin1("\n") + QString::fromLatin1(" ").repeated(baseIndent);
|
|
|
|
|
QString res = QLatin1String("Method {");
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" methodName:");
|
|
|
|
|
res += methodName();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" methodType:");
|
2020-11-06 08:58:28 +01:00
|
|
|
res += QString::number(methodType());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" parameterNames:[");
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &pName : parameterNames()) {
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += pName;
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" parameterTypes:[");
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &pType : parameterTypes()) {
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += pType;
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char('}');
|
2014-05-21 16:04:52 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaMethod::toString() const
|
|
|
|
|
{
|
|
|
|
|
return describe();
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
|
|
|
|
|
FakeMetaProperty::FakeMetaProperty(const QString &name, const QString &type, bool isList,
|
|
|
|
|
bool isWritable, bool isPointer, int revision)
|
|
|
|
|
: m_propertyName(name)
|
|
|
|
|
, m_type(type)
|
|
|
|
|
, m_isList(isList)
|
|
|
|
|
, m_isWritable(isWritable)
|
|
|
|
|
, m_isPointer(isPointer)
|
|
|
|
|
, m_revision(revision)
|
2010-12-03 11:17:25 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaProperty::name() const
|
|
|
|
|
{ return m_propertyName; }
|
|
|
|
|
|
|
|
|
|
QString FakeMetaProperty::typeName() const
|
|
|
|
|
{ return m_type; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isList() const
|
|
|
|
|
{ return m_isList; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isWritable() const
|
|
|
|
|
{ return m_isWritable; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isPointer() const
|
|
|
|
|
{ return m_isPointer; }
|
|
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
int FakeMetaProperty::revision() const
|
|
|
|
|
{ return m_revision; }
|
|
|
|
|
|
2013-11-13 16:31:04 +01:00
|
|
|
void FakeMetaProperty::addToHash(QCryptographicHash &hash) const
|
|
|
|
|
{
|
|
|
|
|
int len = m_propertyName.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_propertyName.constData()), len * sizeof(QChar));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&m_revision), sizeof(m_revision));
|
|
|
|
|
int flags = (m_isList ? (1 << 0) : 0)
|
|
|
|
|
+ (m_isPointer ? (1 << 1) : 0)
|
|
|
|
|
+ (m_isWritable ? (1 << 2) : 0);
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&flags), sizeof(flags));
|
|
|
|
|
len = m_type.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_type.constData()), len * sizeof(QChar));
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-21 16:04:52 +02:00
|
|
|
QString FakeMetaProperty::describe(int baseIndent) const
|
|
|
|
|
{
|
2016-01-05 13:55:21 +01:00
|
|
|
auto boolStr = [] (bool v) { return v ? QLatin1String("true") : QLatin1String("false"); };
|
2014-05-21 16:04:52 +02:00
|
|
|
QString newLine = QString::fromLatin1("\n") + QString::fromLatin1(" ").repeated(baseIndent);
|
|
|
|
|
QString res = QLatin1String("Property {");
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" name:");
|
|
|
|
|
res += name();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" typeName:");
|
|
|
|
|
res += typeName();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" typeName:");
|
|
|
|
|
res += QString::number(revision());
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" isList:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isList());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" isPointer:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isPointer());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" isWritable:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isWritable());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char('}');
|
2014-05-21 16:04:52 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaProperty::toString() const
|
|
|
|
|
{
|
|
|
|
|
return describe();
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
|
2014-02-13 23:53:13 +01:00
|
|
|
FakeMetaObject::FakeMetaObject() : m_isSingleton(false), m_isCreatable(true), m_isComposite(false)
|
2010-12-03 11:17:25 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
QString FakeMetaObject::className() const
|
|
|
|
|
{ return m_className; }
|
|
|
|
|
void FakeMetaObject::setClassName(const QString &name)
|
|
|
|
|
{ m_className = name; }
|
|
|
|
|
|
2022-12-07 23:19:07 +01:00
|
|
|
QString FakeMetaObject::filePath() const
|
|
|
|
|
{ return m_filePath; }
|
|
|
|
|
void FakeMetaObject::setFilePath(const QString &path)
|
|
|
|
|
{ m_filePath = path; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
void FakeMetaObject::addExport(const QString &name, const QString &package, ComponentVersion version)
|
|
|
|
|
{
|
|
|
|
|
Export exp;
|
|
|
|
|
exp.type = name;
|
|
|
|
|
exp.package = package;
|
|
|
|
|
exp.version = version;
|
|
|
|
|
m_exports.append(exp);
|
|
|
|
|
}
|
2011-09-21 12:42:27 +02:00
|
|
|
|
|
|
|
|
void FakeMetaObject::setExportMetaObjectRevision(int exportIndex, int metaObjectRevision)
|
|
|
|
|
{
|
|
|
|
|
m_exports[exportIndex].metaObjectRevision = metaObjectRevision;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-19 16:41:00 +01:00
|
|
|
const QList<FakeMetaObject::Export> FakeMetaObject::exports() const
|
2010-12-03 11:17:25 +01:00
|
|
|
{ return m_exports; }
|
2011-02-10 14:53:57 +01:00
|
|
|
FakeMetaObject::Export FakeMetaObject::exportInPackage(const QString &package) const
|
|
|
|
|
{
|
2022-12-19 16:41:00 +01:00
|
|
|
for (const Export &exp : m_exports) {
|
2011-02-10 14:53:57 +01:00
|
|
|
if (exp.package == package)
|
|
|
|
|
return exp;
|
|
|
|
|
}
|
|
|
|
|
return Export();
|
|
|
|
|
}
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
void FakeMetaObject::setSuperclassName(const QString &superclass)
|
|
|
|
|
{ m_superName = superclass; }
|
|
|
|
|
QString FakeMetaObject::superclassName() const
|
|
|
|
|
{ return m_superName; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addEnum(const FakeMetaEnum &fakeEnum)
|
|
|
|
|
{ m_enumNameToIndex.insert(fakeEnum.name(), m_enums.size()); m_enums.append(fakeEnum); }
|
|
|
|
|
int FakeMetaObject::enumeratorCount() const
|
|
|
|
|
{ return m_enums.size(); }
|
|
|
|
|
int FakeMetaObject::enumeratorOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaEnum FakeMetaObject::enumerator(int index) const
|
|
|
|
|
{ return m_enums.at(index); }
|
|
|
|
|
int FakeMetaObject::enumeratorIndex(const QString &name) const
|
|
|
|
|
{ return m_enumNameToIndex.value(name, -1); }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addProperty(const FakeMetaProperty &property)
|
|
|
|
|
{ m_propNameToIdx.insert(property.name(), m_props.size()); m_props.append(property); }
|
|
|
|
|
int FakeMetaObject::propertyCount() const
|
|
|
|
|
{ return m_props.size(); }
|
|
|
|
|
int FakeMetaObject::propertyOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaProperty FakeMetaObject::property(int index) const
|
|
|
|
|
{ return m_props.at(index); }
|
|
|
|
|
int FakeMetaObject::propertyIndex(const QString &name) const
|
|
|
|
|
{ return m_propNameToIdx.value(name, -1); }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addMethod(const FakeMetaMethod &method)
|
|
|
|
|
{ m_methods.append(method); }
|
|
|
|
|
int FakeMetaObject::methodCount() const
|
|
|
|
|
{ return m_methods.size(); }
|
|
|
|
|
int FakeMetaObject::methodOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaMethod FakeMetaObject::method(int index) const
|
|
|
|
|
{ return m_methods.at(index); }
|
2013-03-29 12:51:48 -07:00
|
|
|
int FakeMetaObject::methodIndex(const QString &name) const //If performances becomes an issue, just use a nameToIdx hash
|
|
|
|
|
{
|
|
|
|
|
for (int i=0; i<m_methods.count(); i++)
|
|
|
|
|
if (m_methods[i].methodName() == name)
|
|
|
|
|
return i;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
QString FakeMetaObject::defaultPropertyName() const
|
|
|
|
|
{ return m_defaultPropertyName; }
|
2011-02-10 14:46:03 +01:00
|
|
|
void FakeMetaObject::setDefaultPropertyName(const QString &defaultPropertyName)
|
2010-12-03 11:17:25 +01:00
|
|
|
{ m_defaultPropertyName = defaultPropertyName; }
|
2011-02-10 14:46:03 +01:00
|
|
|
|
|
|
|
|
QString FakeMetaObject::attachedTypeName() const
|
|
|
|
|
{ return m_attachedTypeName; }
|
|
|
|
|
void FakeMetaObject::setAttachedTypeName(const QString &name)
|
|
|
|
|
{ m_attachedTypeName = name; }
|
|
|
|
|
|
2021-02-04 17:29:24 +01:00
|
|
|
QString FakeMetaObject::extensionTypeName() const
|
|
|
|
|
{ return m_extensionTypeName; }
|
|
|
|
|
void FakeMetaObject::setExtensionTypeName(const QString &name)
|
|
|
|
|
{ m_extensionTypeName = name; }
|
|
|
|
|
|
2013-11-13 16:31:04 +01:00
|
|
|
QByteArray FakeMetaObject::calculateFingerprint() const
|
|
|
|
|
{
|
|
|
|
|
QCryptographicHash hash(QCryptographicHash::Sha1);
|
|
|
|
|
int len = m_className.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_className.constData()), len * sizeof(QChar));
|
|
|
|
|
len = m_attachedTypeName.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_attachedTypeName.constData()), len * sizeof(QChar));
|
|
|
|
|
len = m_defaultPropertyName.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_defaultPropertyName.constData()), len * sizeof(QChar));
|
|
|
|
|
len = m_enumNameToIndex.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
{
|
|
|
|
|
QStringList keys(m_enumNameToIndex.keys());
|
|
|
|
|
keys.sort();
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &key : std::as_const(keys)) {
|
2013-11-13 16:31:04 +01:00
|
|
|
len = key.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(key.constData()), len * sizeof(QChar));
|
|
|
|
|
int value = m_enumNameToIndex.value(key);
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&value), sizeof(value)); // avoid? this adds order dependency to fingerprint...
|
|
|
|
|
m_enums.at(value).addToHash(hash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
len = m_exports.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const Export &e : std::as_const(m_exports))
|
2013-11-13 16:31:04 +01:00
|
|
|
e.addToHash(hash); // normalize order?
|
|
|
|
|
len = m_exports.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const FakeMetaMethod &m : std::as_const(m_methods))
|
2013-11-13 16:31:04 +01:00
|
|
|
m.addToHash(hash); // normalize order?
|
|
|
|
|
{
|
|
|
|
|
QStringList keys(m_propNameToIdx.keys());
|
|
|
|
|
keys.sort();
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const QString &key : std::as_const(keys)) {
|
2013-11-13 16:31:04 +01:00
|
|
|
len = key.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(key.constData()), len * sizeof(QChar));
|
|
|
|
|
int value = m_propNameToIdx.value(key);
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&value), sizeof(value)); // avoid? this adds order dependency to fingerprint...
|
|
|
|
|
m_props.at(value).addToHash(hash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
len = m_superName.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(m_superName.constData()), len * sizeof(QChar));
|
|
|
|
|
|
|
|
|
|
QByteArray res = hash.result();
|
|
|
|
|
res.append('F');
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::updateFingerprint()
|
|
|
|
|
{
|
|
|
|
|
m_fingerprint = calculateFingerprint();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray FakeMetaObject::fingerprint() const
|
|
|
|
|
{
|
|
|
|
|
return m_fingerprint;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-13 23:53:13 +01:00
|
|
|
bool FakeMetaObject::isSingleton() const
|
|
|
|
|
{
|
|
|
|
|
return m_isSingleton;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FakeMetaObject::isCreatable() const
|
|
|
|
|
{
|
|
|
|
|
return m_isCreatable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FakeMetaObject::isComposite() const
|
|
|
|
|
{
|
|
|
|
|
return m_isComposite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::setIsSingleton(bool value)
|
|
|
|
|
{
|
|
|
|
|
m_isSingleton = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::setIsCreatable(bool value)
|
|
|
|
|
{
|
|
|
|
|
m_isCreatable = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::setIsComposite(bool value)
|
|
|
|
|
{
|
|
|
|
|
m_isSingleton = value;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-21 16:04:52 +02:00
|
|
|
QString FakeMetaObject::toString() const
|
|
|
|
|
{
|
|
|
|
|
return describe();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaObject::describe(bool printDetails, int baseIndent) const
|
|
|
|
|
{
|
|
|
|
|
QString res = QString::fromLatin1("FakeMetaObject@%1")
|
|
|
|
|
.arg((quintptr)(void *)this, 0, 16);
|
|
|
|
|
if (!printDetails)
|
|
|
|
|
return res;
|
2016-01-05 13:55:21 +01:00
|
|
|
auto boolStr = [] (bool v) { return v ? QLatin1String("true") : QLatin1String("false"); };
|
2014-05-21 16:04:52 +02:00
|
|
|
QString newLine = QString::fromLatin1("\n") + QString::fromLatin1(" ").repeated(baseIndent);
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char('{');
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("className:");
|
|
|
|
|
res += className();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("superClassName:");
|
|
|
|
|
res += superclassName();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("isSingleton:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isSingleton());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("isCreatable:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isCreatable());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("isComposite:");
|
2016-01-05 13:55:21 +01:00
|
|
|
res += boolStr(isComposite());
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("defaultPropertyName:");
|
|
|
|
|
res += defaultPropertyName();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("attachedTypeName:");
|
|
|
|
|
res += attachedTypeName();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("fingerprint:");
|
|
|
|
|
res += QString::fromUtf8(fingerprint());
|
|
|
|
|
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("exports:[");
|
2022-12-19 13:23:53 +01:00
|
|
|
for (const Export &e : exports()) {
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += e.describe(baseIndent + 2);
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("enums:[");
|
|
|
|
|
for (int iEnum = 0; iEnum < enumeratorCount() ; ++ iEnum) {
|
|
|
|
|
FakeMetaEnum e = enumerator(enumeratorOffset() + iEnum);
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += e.describe(baseIndent + 2);
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String("properties:[");
|
|
|
|
|
for (int iProp = 0; iProp < propertyCount() ; ++ iProp) {
|
|
|
|
|
FakeMetaProperty prop = property(propertyOffset() + iProp);
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
res += prop.describe(baseIndent + 2);
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
res += QLatin1String("methods:[");
|
|
|
|
|
for (int iMethod = 0; iMethod < methodOffset() ; ++ iMethod) {
|
|
|
|
|
FakeMetaMethod m = method(methodOffset() + iMethod);
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" ");
|
|
|
|
|
m.describe(baseIndent + 2);
|
|
|
|
|
}
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char(']');
|
2014-05-21 16:04:52 +02:00
|
|
|
res += newLine;
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char('}');
|
2014-05-21 16:04:52 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-21 12:42:27 +02:00
|
|
|
FakeMetaObject::Export::Export()
|
|
|
|
|
: metaObjectRevision(0)
|
|
|
|
|
{}
|
2011-02-10 14:46:03 +01:00
|
|
|
bool FakeMetaObject::Export::isValid() const
|
2011-09-21 12:42:27 +02:00
|
|
|
{ return version.isValid() || !package.isEmpty() || !type.isEmpty(); }
|
2013-11-13 16:31:04 +01:00
|
|
|
|
|
|
|
|
void FakeMetaObject::Export::addToHash(QCryptographicHash &hash) const
|
|
|
|
|
{
|
|
|
|
|
int len = package.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(package.constData()), len * sizeof(QChar));
|
|
|
|
|
len = type.size();
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&len), sizeof(len));
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(type.constData()), len * sizeof(QChar));
|
|
|
|
|
version.addToHash(hash);
|
|
|
|
|
hash.addData(reinterpret_cast<const char *>(&metaObjectRevision), sizeof(metaObjectRevision));
|
|
|
|
|
}
|
2014-05-21 16:04:52 +02:00
|
|
|
|
|
|
|
|
QString FakeMetaObject::Export::describe(int baseIndent) const
|
|
|
|
|
{
|
|
|
|
|
QString newLine = QString::fromLatin1("\n") + QString::fromLatin1(" ").repeated(baseIndent);
|
|
|
|
|
QString res = QLatin1String("Export {");
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" package:");
|
|
|
|
|
res += package;
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" type:");
|
|
|
|
|
res += type;
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" version:");
|
|
|
|
|
res += version.toString();
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" metaObjectRevision:");
|
|
|
|
|
res += QString::number(metaObjectRevision);
|
|
|
|
|
res += newLine;
|
|
|
|
|
res += QLatin1String(" isValid:");
|
|
|
|
|
res += QString::number(isValid());
|
|
|
|
|
res += newLine;
|
2014-08-29 14:00:18 +02:00
|
|
|
res += QLatin1Char('}');
|
2014-05-21 16:04:52 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaObject::Export::toString() const
|
|
|
|
|
{
|
|
|
|
|
return describe();
|
|
|
|
|
}
|