aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltypemodule.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-02-04 09:25:31 +0100
committerUlf Hermann <ulf.hermann@qt.io>2019-02-07 13:49:26 +0000
commit8d0b649c6b6ebf64dd4f644a5a2b3b1fa34e57c9 (patch)
tree41fd801a6949cd59374e81b8a3c0939c25118bc2 /src/qml/qml/qqmltypemodule.cpp
parent77ca9599418806733322b6be55283098cea383a4 (diff)
Tighten the interface of QQmlTypeModule
No other classes really need direct access to QQmlTypeModulePrivate. Adding or removing types, as well as lookup of types needs to be protected by a mutex, as that can happen from multiple threads. However, we don't need to acquire the global type registration mutex in order to change the internals of some QQmlTypeModule. Rather, each type module gets its own mutex. The minimum and maximum versions as well as the "locked" property can be handled with atomic integers as they only ever move in one direction. The module and majorVersion properties are constant over the life time of the object. Therefore they don't need any locking. Task-number: QTBUG-73271 Change-Id: I23fe7dcaf521ccecaaaf19c1fb0436e109c42f03 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/qml/qqmltypemodule.cpp')
-rw-r--r--src/qml/qml/qqmltypemodule.cpp63
1 files changed, 43 insertions, 20 deletions
diff --git a/src/qml/qml/qqmltypemodule.cpp b/src/qml/qml/qqmltypemodule.cpp
index 05264abb1d..4d7553fbab 100644
--- a/src/qml/qml/qqmltypemodule.cpp
+++ b/src/qml/qml/qqmltypemodule.cpp
@@ -45,46 +45,60 @@
QT_BEGIN_NAMESPACE
-QQmlTypeModule::QQmlTypeModule()
- : d(new QQmlTypeModulePrivate)
+QQmlTypeModule::QQmlTypeModule(const QString &module, int majorVersion)
+ : d(new QQmlTypeModulePrivate(module, majorVersion))
{
}
QQmlTypeModule::~QQmlTypeModule()
{
- delete d; d = nullptr;
+ delete d;
}
QString QQmlTypeModule::module() const
{
- return d->uri.uri;
+ // No need to lock. d->module is const
+ return d->module;
}
int QQmlTypeModule::majorVersion() const
{
- return d->uri.majorVersion;
+ // No need to lock. d->majorVersion is const
+ return d->majorVersion;
}
int QQmlTypeModule::minimumMinorVersion() const
{
- return d->minMinorVersion;
+ return d->minMinorVersion.load();
}
int QQmlTypeModule::maximumMinorVersion() const
{
- return d->maxMinorVersion;
+ return d->maxMinorVersion.load();
}
-void QQmlTypeModulePrivate::add(QQmlTypePrivate *type)
+void QQmlTypeModule::addMinorVersion(int version)
{
- int minVersion = type->version_min;
- minMinorVersion = qMin(minMinorVersion, minVersion);
- maxMinorVersion = qMax(maxMinorVersion, minVersion);
+ for (int oldVersion = d->minMinorVersion.load();
+ oldVersion > version && !d->minMinorVersion.testAndSetOrdered(oldVersion, version);
+ oldVersion = d->minMinorVersion.load()) {
+ }
+
+ for (int oldVersion = d->maxMinorVersion.load();
+ oldVersion < version && !d->maxMinorVersion.testAndSetOrdered(oldVersion, version);
+ oldVersion = d->maxMinorVersion.load()) {
+ }
+}
- QList<QQmlTypePrivate *> &list = typeHash[type->elementName];
+void QQmlTypeModule::add(QQmlTypePrivate *type)
+{
+ QMutexLocker lock(&d->mutex);
+ addMinorVersion(type->version_min);
+
+ QList<QQmlTypePrivate *> &list = d->typeHash[type->elementName];
for (int ii = 0; ii < list.count(); ++ii) {
Q_ASSERT(list.at(ii));
- if (list.at(ii)->version_min < minVersion) {
+ if (list.at(ii)->version_min < type->version_min) {
list.insert(ii, type);
return;
}
@@ -92,9 +106,10 @@ void QQmlTypeModulePrivate::add(QQmlTypePrivate *type)
list.append(type);
}
-void QQmlTypeModulePrivate::remove(const QQmlTypePrivate *type)
+void QQmlTypeModule::remove(const QQmlTypePrivate *type)
{
- for (TypeHash::MutableIterator elementIt = typeHash.begin(); elementIt != typeHash.end();) {
+ QMutexLocker lock(&d->mutex);
+ for (auto elementIt = d->typeHash.begin(); elementIt != d->typeHash.end();) {
QQmlMetaType::removeQQmlTypePrivate(elementIt.value(), type);
#if 0
@@ -108,10 +123,19 @@ void QQmlTypeModulePrivate::remove(const QQmlTypePrivate *type)
}
}
-QQmlType QQmlTypeModule::type(const QHashedStringRef &name, int minor) const
+bool QQmlTypeModule::isLocked() const
{
- QMutexLocker lock(QQmlMetaType::typeRegistrationLock());
+ return d->locked.load() != 0;
+}
+
+void QQmlTypeModule::lock()
+{
+ d->locked.store(1);
+}
+QQmlType QQmlTypeModule::type(const QHashedStringRef &name, int minor) const
+{
+ QMutexLocker lock(&d->mutex);
QList<QQmlTypePrivate *> *types = d->typeHash.value(name);
if (types) {
for (int ii = 0; ii < types->count(); ++ii)
@@ -124,8 +148,7 @@ QQmlType QQmlTypeModule::type(const QHashedStringRef &name, int minor) const
QQmlType QQmlTypeModule::type(const QV4::String *name, int minor) const
{
- QMutexLocker lock(QQmlMetaType::typeRegistrationLock());
-
+ QMutexLocker lock(&d->mutex);
QList<QQmlTypePrivate *> *types = d->typeHash.value(name);
if (types) {
for (int ii = 0; ii < types->count(); ++ii)
@@ -138,7 +161,7 @@ QQmlType QQmlTypeModule::type(const QV4::String *name, int minor) const
void QQmlTypeModule::walkCompositeSingletons(const std::function<void(const QQmlType &)> &callback) const
{
- QMutexLocker lock(QQmlMetaType::typeRegistrationLock());
+ QMutexLocker lock(&d->mutex);
for (auto typeCandidates = d->typeHash.begin(), end = d->typeHash.end();
typeCandidates != end; ++typeCandidates) {
for (auto type: typeCandidates.value()) {