summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-06-02 05:42:13 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-06 02:02:49 +0200
commit7443895857fdaee132c8efc643e471f02b3d0fa4 (patch)
tree9a812815651552e361fd032946f2bfe1144ad9c5 /src
parent9ca509676f3e7a4c19aded98c59990a779a4a052 (diff)
Remove support for Qt 4 style plugins
The new plugin format allows us to avoid loading the plugins in all cases. Remove the old format, as we could get bad behavior with the old format if Qt would try to dlopen a Qt 4.x plugin. Change-Id: I2193e6874d6cca3c0b12298c2b9beb4105a42fd5 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/plugin/qelfparser_p.cpp4
-rw-r--r--src/corelib/plugin/qelfparser_p.h2
-rw-r--r--src/corelib/plugin/qfactoryloader.cpp136
-rw-r--r--src/corelib/plugin/qfactoryloader_p.h3
-rw-r--r--src/corelib/plugin/qlibrary.cpp202
-rw-r--r--src/corelib/plugin/qlibrary_p.h1
-rw-r--r--src/corelib/plugin/qplugin.h52
7 files changed, 26 insertions, 374 deletions
diff --git a/src/corelib/plugin/qelfparser_p.cpp b/src/corelib/plugin/qelfparser_p.cpp
index e4215dc39b..a108c053a6 100644
--- a/src/corelib/plugin/qelfparser_p.cpp
+++ b/src/corelib/plugin/qelfparser_p.cpp
@@ -203,7 +203,7 @@ int QElfParser::parse(const char *dataStart, ulong fdlen, const QString &library
qDebug() << "++++" << i << shnam;
#endif
- if (qstrcmp(shnam, ".qtmetadata") == 0 || qstrcmp(shnam, ".qtplugin") == 0 || qstrcmp(shnam, ".rodata") == 0) {
+ if (qstrcmp(shnam, ".qtmetadata") == 0 || qstrcmp(shnam, ".rodata") == 0) {
if (!(sh.type & 0x1)) {
if (shnam[1] == 'r') {
if (lib)
@@ -227,7 +227,7 @@ int QElfParser::parse(const char *dataStart, ulong fdlen, const QString &library
*pos = sh.offset;
*sectionlen = sh.size - 1;
if (shnam[1] == 'q')
- return shnam[3] == 'm' ? QtMetaDataSection : QtPluginSection;
+ return QtMetaDataSection;
}
s += e_shentsize;
}
diff --git a/src/corelib/plugin/qelfparser_p.h b/src/corelib/plugin/qelfparser_p.h
index 4ae0ed14db..8a8f954908 100644
--- a/src/corelib/plugin/qelfparser_p.h
+++ b/src/corelib/plugin/qelfparser_p.h
@@ -72,7 +72,7 @@ typedef quintptr qelfaddr_t;
class QElfParser
{
public:
- enum { QtMetaDataSection, QtPluginSection, NoQtSection, NotElf, Corrupt };
+ enum { QtMetaDataSection, NoQtSection, NotElf, Corrupt };
enum {ElfLittleEndian = 0, ElfBigEndian = 1};
struct ElfSectionHeader
diff --git a/src/corelib/plugin/qfactoryloader.cpp b/src/corelib/plugin/qfactoryloader.cpp
index 1e70e340d0..0b7b389264 100644
--- a/src/corelib/plugin/qfactoryloader.cpp
+++ b/src/corelib/plugin/qfactoryloader.cpp
@@ -144,56 +144,23 @@ void QFactoryLoader::update()
QStringList keys;
bool metaDataOk = false;
- if (library->compatPlugin) {
- qWarning("Qt plugin loader: Compatibility plugin '%s', need to load for accessing meta data.",
- qPrintable(QDir::toNativeSeparators(fileName)));
- if (!library->loadPlugin()) {
- if (qt_debug_component()) {
- qDebug() << library->errorString;
- qDebug() << " could not load";
- }
- library->release();
- continue;
- }
- if (!library->inst)
- library->inst = library->instance();
- QObject *instance = library->inst.data();
- if (!instance) {
- library->release();
- // ignore plugins that have a valid signature but cannot be loaded.
- continue;
- }
- QFactoryInterface *factory = qobject_cast<QFactoryInterface*>(instance);
- if (instance && factory && instance->qt_metacast(d->iid))
- keys = factory->keys();
-
- if (!keys.isEmpty()) {
- metaDataOk = true;
- QJsonObject object = library->metaData.value(QLatin1String("MetaData")).toObject();
- object.insert(QLatin1String("Keys"), QJsonArray::fromStringList(keys));
- library->metaData[QLatin1String("MetaData")] = object;
- }
+ QString iid = library->metaData.value(QLatin1String("IID")).toString();
+ if (iid == QLatin1String(d->iid.constData(), d->iid.size())) {
+ QJsonObject object = library->metaData.value(QLatin1String("MetaData")).toObject();
+ metaDataOk = true;
- } else {
- QString iid = library->metaData.value(QLatin1String("IID")).toString();
- if (iid == QLatin1String(d->iid.constData(), d->iid.size())) {
- QJsonObject object = library->metaData.value(QLatin1String("MetaData")).toObject();
- metaDataOk = true;
-
- QJsonArray k = object.value(QLatin1String("Keys")).toArray();
- for (int i = 0; i < k.size(); ++i) {
- QString s = k.at(i).toString();
- keys += s;
- }
+ QJsonArray k = object.value(QLatin1String("Keys")).toArray();
+ for (int i = 0; i < k.size(); ++i) {
+ QString s = k.at(i).toString();
+ keys += s;
}
- if (qt_debug_component())
- qDebug() << "Got keys from plugin meta data" << keys;
}
+ if (qt_debug_component())
+ qDebug() << "Got keys from plugin meta data" << keys;
+
if (!metaDataOk) {
- if (library->compatPlugin)
- library->unload();
library->release();
continue;
}
@@ -235,37 +202,6 @@ QFactoryLoader::~QFactoryLoader()
qt_factory_loaders()->removeAll(this);
}
-QStringList QFactoryLoader::keys() const
-{
- Q_D(const QFactoryLoader);
- QMutexLocker locker(&d->mutex);
- QStringList keys = d->keyList;
- QVector<QStaticPlugin> staticPlugins = QLibraryPrivate::staticPlugins();
- for (int i = 0; i < staticPlugins.count(); ++i) {
- if (staticPlugins.at(i).metaData) {
- const char *rawMetaData = staticPlugins.at(i).metaData();
- QJsonObject object = QLibraryPrivate::fromRawMetaData(rawMetaData).object();
- if (object.value(QLatin1String("IID")) != QLatin1String(d->iid.constData(), d->iid.size()))
- continue;
-
- QJsonObject meta = object.value(QLatin1String("MetaData")).toObject();
- QJsonArray a = meta.value(QLatin1String("Keys")).toArray();
- for (int i = 0; i < a.size(); ++i) {
- QString s = a.at(i).toString();
- if (!s.isEmpty())
- keys += s;
- }
- } else {
- // compat plugin
- QObject *instance = staticPlugins.at(i).instance();
- QFactoryInterface *factory = qobject_cast<QFactoryInterface*>(instance);
- if (instance && factory && instance->qt_metacast(d->iid))
- keys += factory->keys();
- }
- }
- return keys;
-}
-
QList<QJsonObject> QFactoryLoader::metaData() const
{
Q_D(const QFactoryLoader);
@@ -276,57 +212,17 @@ QList<QJsonObject> QFactoryLoader::metaData() const
QVector<QStaticPlugin> staticPlugins = QLibraryPrivate::staticPlugins();
for (int i = 0; i < staticPlugins.count(); ++i) {
- if (staticPlugins.at(i).metaData) {
- const char *rawMetaData = staticPlugins.at(i).metaData();
- QJsonObject object = QLibraryPrivate::fromRawMetaData(rawMetaData).object();
- if (object.value(QLatin1String("IID")) != QLatin1String(d->iid.constData(), d->iid.size()))
- continue;
+ const char *rawMetaData = staticPlugins.at(i).metaData();
+ QJsonObject object = QLibraryPrivate::fromRawMetaData(rawMetaData).object();
+ if (object.value(QLatin1String("IID")) != QLatin1String(d->iid.constData(), d->iid.size()))
+ continue;
- QJsonObject meta = object.value(QLatin1String("MetaData")).toObject();
+ QJsonObject meta = object.value(QLatin1String("MetaData")).toObject();
metaData.append(meta);
- } else {
- // compat plugins
- QObject *instance = staticPlugins.at(i).instance();
- QFactoryInterface *factory = qobject_cast<QFactoryInterface*>(instance);
- if (instance && factory && instance->qt_metacast(d->iid)) {
- QJsonObject meta;
- QJsonArray a = QJsonArray::fromStringList(factory->keys());
- meta.insert(QLatin1String("Keys"), a);
- metaData.append(meta);
- }
- }
}
return metaData;
}
-QObject *QFactoryLoader::instance(const QString &key) const
-{
- Q_D(const QFactoryLoader);
- QMutexLocker locker(&d->mutex);
- QVector<QStaticPlugin> staticPlugins = QLibraryPrivate::staticPlugins();
- for (int i = 0; i < staticPlugins.count(); ++i) {
- QObject *instance = staticPlugins.at(i).instance();
- if (QFactoryInterface *factory = qobject_cast<QFactoryInterface*>(instance))
- if (instance->qt_metacast(d->iid) && factory->keys().contains(key, Qt::CaseInsensitive))
- return instance;
- }
-
- QString lowered = d->cs ? key : key.toLower();
- if (QLibraryPrivate* library = d->keyMap.value(lowered)) {
- if (library->instance || library->loadPlugin()) {
- if (!library->inst)
- library->inst = library->instance();
- QObject *obj = library->inst.data();
- if (obj) {
- if (!obj->parent())
- obj->moveToThread(QCoreApplicationPrivate::mainThread());
- return obj;
- }
- }
- }
- return 0;
-}
-
QObject *QFactoryLoader::instance(int index) const
{
Q_D(const QFactoryLoader);
diff --git a/src/corelib/plugin/qfactoryloader_p.h b/src/corelib/plugin/qfactoryloader_p.h
index 66ded8074b..907df386d5 100644
--- a/src/corelib/plugin/qfactoryloader_p.h
+++ b/src/corelib/plugin/qfactoryloader_p.h
@@ -75,10 +75,7 @@ public:
Qt::CaseSensitivity = Qt::CaseSensitive);
~QFactoryLoader();
- QT_DEPRECATED QStringList keys() const;
QList<QJsonObject> metaData() const;
-
- QT_DEPRECATED QObject *instance(const QString &key) const;
QObject *instance(int index) const;
#if defined(Q_OS_UNIX) && !defined (Q_OS_MAC)
diff --git a/src/corelib/plugin/qlibrary.cpp b/src/corelib/plugin/qlibrary.cpp
index a704b8f02d..160356f9cc 100644
--- a/src/corelib/plugin/qlibrary.cpp
+++ b/src/corelib/plugin/qlibrary.cpp
@@ -172,124 +172,7 @@ static QBasicMutex qt_library_mutex;
*/
-#ifndef QT_NO_PLUGIN_CHECK
-struct qt_token_info
-{
- qt_token_info(const char *f, const ulong fc)
- : fields(f), field_count(fc), results(fc), lengths(fc)
- {
- results.fill(0);
- lengths.fill(0);
- }
-
- const char *fields;
- const ulong field_count;
-
- QVector<const char *> results;
- QVector<ulong> lengths;
-};
-
-/*
- return values:
- 1 parse ok
- 0 eos
- -1 parse error
-*/
-static int qt_tokenize(const char *s, ulong s_len, ulong *advance,
- qt_token_info &token_info)
-{
- ulong pos = 0, field = 0, fieldlen = 0;
- char current;
- int ret = -1;
- *advance = 0;
- for (;;) {
- current = s[pos];
-
- // next char
- ++pos;
- ++fieldlen;
- ++*advance;
-
- if (! current || pos == s_len + 1) {
- // save result
- token_info.results[(int)field] = s;
- token_info.lengths[(int)field] = fieldlen - 1;
-
- // end of string
- ret = 0;
- break;
- }
-
- if (current == token_info.fields[field]) {
- // save result
- token_info.results[(int)field] = s;
- token_info.lengths[(int)field] = fieldlen - 1;
-
- // end of field
- fieldlen = 0;
- ++field;
- if (field == token_info.field_count - 1) {
- // parse ok
- ret = 1;
- }
- if (field == token_info.field_count) {
- // done parsing
- break;
- }
-
- // reset string and its length
- s = s + pos;
- s_len -= pos;
- pos = 0;
- }
- }
-
- return ret;
-}
-
-/*
- returns true if the string s was correctly parsed, false otherwise.
-*/
-static bool qt_parse_pattern(const char *s, uint *version, bool *debug)
-{
- bool ret = true;
-
- qt_token_info pinfo("=\n", 2);
- int parse;
- ulong at = 0, advance, parselen = qstrlen(s);
- do {
- parse = qt_tokenize(s + at, parselen, &advance, pinfo);
- if (parse == -1) {
- ret = false;
- break;
- }
-
- at += advance;
- parselen -= advance;
-
- if (qstrncmp("version", pinfo.results[0], pinfo.lengths[0]) == 0) {
- // parse version string
- qt_token_info pinfo2("..-", 3);
- if (qt_tokenize(pinfo.results[1], pinfo.lengths[1],
- &advance, pinfo2) != -1) {
- QByteArray m(pinfo2.results[0], pinfo2.lengths[0]);
- QByteArray n(pinfo2.results[1], pinfo2.lengths[1]);
- QByteArray p(pinfo2.results[2], pinfo2.lengths[2]);
- *version = (m.toUInt() << 16) | (n.toUInt() << 8) | p.toUInt();
- } else {
- ret = false;
- break;
- }
- } else if (qstrncmp("debug", pinfo.results[0], pinfo.lengths[0]) == 0) {
- *debug = qstrncmp("true", pinfo.results[1], pinfo.lengths[1]) == 0;
- }
- } while (parse == 1 && parselen > 0);
-
- return ret;
-}
-#endif // QT_NO_PLUGIN_CHECK
-
-#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC) && !defined(QT_NO_PLUGIN_CHECK)
+#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
static long qt_find_pattern(const char *s, ulong s_len,
const char *pattern, ulong p_len)
@@ -366,8 +249,6 @@ static bool qt_unix_query(const QString &library, QLibraryPrivate *lib)
*/
bool hasMetaData = false;
long pos = 0;
- const char oldPattern[] = "pattern=QT_PLUGIN_VERIFICATION_DATA";
- const ulong oldPlen = qstrlen(oldPattern);
const char pattern[] = "QTMETADATA ";
const ulong plen = qstrlen(pattern);
#if defined (Q_OF_ELF) && defined(Q_CC_GNU)
@@ -377,18 +258,6 @@ static bool qt_unix_query(const QString &library, QLibraryPrivate *lib)
qWarning("QElfParser: %s",qPrintable(lib->errorString));
}
return false;
- } else if (r == QElfParser::NoQtSection || r == QElfParser::QtPluginSection) {
- if (pos > 0) {
- // find inside .rodata
- long rel = qt_find_pattern(filedata + pos, fdlen, oldPattern, oldPlen);
- if (rel < 0) {
- pos = -1;
- } else {
- pos += rel;
- }
- } else {
- pos = qt_find_pattern(filedata, fdlen, oldPattern, oldPlen);
- }
} else if (r == QElfParser::QtMetaDataSection) {
long rel = qt_find_pattern(filedata + pos, fdlen, pattern, plen);
if (rel < 0)
@@ -401,8 +270,6 @@ static bool qt_unix_query(const QString &library, QLibraryPrivate *lib)
pos = qt_find_pattern(filedata, fdlen, pattern, plen);
if (pos > 0)
hasMetaData = true;
- else
- pos = qt_find_pattern(filedata, fdlen, oldPattern, oldPlen);
#endif // defined(Q_OF_ELF) && defined(Q_CC_GNU)
bool ret = false;
@@ -412,21 +279,10 @@ static bool qt_unix_query(const QString &library, QLibraryPrivate *lib)
const char *data = filedata + pos;
QJsonDocument doc = QLibraryPrivate::fromRawMetaData(data);
lib->metaData = doc.object();
- lib->compatPlugin = false;
if (qt_debug_component())
qWarning("Found metadata in lib %s, metadata=\n%s\n",
library.toLocal8Bit().constData(), doc.toJson().constData());
ret = !doc.isNull();
- } else {
- qWarning("Old plugin format found in lib %s", library.toLocal8Bit().constData());
- uint version;
- bool isDebug;
- ret = qt_parse_pattern(filedata + pos, &version, &isDebug);
- if (ret) {
- lib->metaData.insert(QLatin1String("version"), (int)version);
- lib->metaData.insert(QLatin1String("debug"), isDebug);
- lib->compatPlugin = true;
- }
}
}
@@ -436,7 +292,7 @@ static bool qt_unix_query(const QString &library, QLibraryPrivate *lib)
return ret;
}
-#endif // Q_OS_UNIX && !Q_OS_MAC && !defined(QT_NO_PLUGIN_CHECK)
+#endif // Q_OS_UNIX && !Q_OS_MAC
static void installCoverageTool(QLibraryPrivate *libPrivate)
{
@@ -490,7 +346,7 @@ static LibraryMap *libraryMap()
QLibraryPrivate::QLibraryPrivate(const QString &canonicalFileName, const QString &version)
: pHnd(0), fileName(canonicalFileName), fullVersion(version), instance(0),
- compatPlugin(false), loadHints(0),
+ loadHints(0),
libraryRefCount(1), libraryUnloadCount(0), pluginState(MightBeAPlugin)
{ libraryMap()->insert(canonicalFileName, this); }
@@ -691,30 +547,6 @@ const char* qt_try_versioninfo(void *pfn, bool *exceptionThrown)
typedef const char * (*QtPluginQueryVerificationDataFunction)();
-bool qt_get_verificationdata(QtPluginQueryVerificationDataFunction pfn, QLibraryPrivate *priv, bool *exceptionThrown)
-{
- *exceptionThrown = false;
- const char *szData = 0;
- if (!pfn)
- return false;
-#ifdef QT_USE_MS_STD_EXCEPTION
- szData = qt_try_versioninfo((void *)pfn, exceptionThrown);
- if (*exceptionThrown)
- return false;
-#else
- szData = pfn();
-#endif
- uint qt_version;
- bool debug;
- if (qt_parse_pattern(szData, &qt_version, &debug)) {
- priv->metaData.insert(QLatin1String("version"), (int)qt_version);
- priv->metaData.insert(QLatin1String("debug"), debug);
- priv->compatPlugin = true;
- return true;
- }
- return false;
-}
-
bool qt_get_metadata(QtPluginQueryVerificationDataFunction pfn, QLibraryPrivate *priv, bool *exceptionThrown)
{
*exceptionThrown = false;
@@ -734,7 +566,6 @@ bool qt_get_metadata(QtPluginQueryVerificationDataFunction pfn, QLibraryPrivate
if (doc.isNull())
return false;
priv->metaData = doc.object();
- priv->compatPlugin = false;
return true;
}
@@ -745,7 +576,6 @@ bool QLibraryPrivate::isPlugin()
if (pluginState != MightBeAPlugin)
return pluginState == IsAPlugin;
-#ifndef QT_NO_PLUGIN_CHECK
bool success = false;
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
@@ -805,28 +635,8 @@ bool QLibraryPrivate::isPlugin()
getMetaData = (QtPluginQueryVerificationDataFunction) resolve("qt_plugin_query_metadata");
}
- if (getMetaData) {
+ if (getMetaData)
ret = qt_get_metadata(getMetaData, this, &exceptionThrown);
- } else {
- // try the old plugin style
- QtPluginQueryVerificationDataFunction qtPluginQueryVerificationDataFunction = NULL;
-#ifdef Q_OS_WIN
- if (hTempModule) {
- qtPluginQueryVerificationDataFunction = (QtPluginQueryVerificationDataFunction)
-#ifdef Q_OS_WINCE
- ::GetProcAddress(hTempModule, L"qt_plugin_query_verification_data")
-#else
- ::GetProcAddress(hTempModule, "qt_plugin_query_verification_data")
-#endif
- ;
- } else
-#endif
- {
- qtPluginQueryVerificationDataFunction = (QtPluginQueryVerificationDataFunction) resolve("qt_plugin_query_verification_data");
- }
-
- ret = qt_get_verificationdata(qtPluginQueryVerificationDataFunction, this, &exceptionThrown);
- }
if (!exceptionThrown) {
if (!ret) {
@@ -898,10 +708,6 @@ bool QLibraryPrivate::isPlugin()
}
return pluginState == IsAPlugin;
-#else
- Q_UNUSED(settings);
- return pluginState == MightBeAPlugin;
-#endif
}
/*!
diff --git a/src/corelib/plugin/qlibrary_p.h b/src/corelib/plugin/qlibrary_p.h
index ca7b5d9bb4..965f1d26bd 100644
--- a/src/corelib/plugin/qlibrary_p.h
+++ b/src/corelib/plugin/qlibrary_p.h
@@ -99,7 +99,6 @@ public:
QPointer<QObject> inst;
QtPluginInstanceFunction instance;
QJsonObject metaData;
- bool compatPlugin;
QString errorString;
QLibrary::LoadHints loadHints;
diff --git a/src/corelib/plugin/qplugin.h b/src/corelib/plugin/qplugin.h
index e31ab5f565..61bd2933ab 100644
--- a/src/corelib/plugin/qplugin.h
+++ b/src/corelib/plugin/qplugin.h
@@ -70,22 +70,15 @@ struct QStaticPlugin
void Q_CORE_EXPORT qRegisterStaticPluginFunction(QStaticPlugin staticPlugin);
#if defined (Q_OF_ELF) && (defined (Q_CC_GNU) || defined(Q_CC_CLANG))
-# define QT_PLUGIN_VERIFICATION_SECTION \
- __attribute__ ((section (".qtplugin"))) __attribute__((used))
# define QT_PLUGIN_METADATA_SECTION \
__attribute__ ((section (".qtmetadata"))) __attribute__((used))
#elif defined(Q_OS_MAC)
// TODO: Implement section parsing on Mac
-# define QT_PLUGIN_VERIFICATION_SECTION \
- __attribute__((section("__TEXT,qtplugin"))) __attribute__((used))
# define QT_PLUGIN_METADATA_SECTION \
__attribute__ ((section ("__TEXT,qtmetadata"))) __attribute__((used))
#elif defined(Q_CC_MSVC)
// TODO: Implement section parsing for MSVC
-#pragma section(".qtplugin",read,shared)
#pragma section(".qtmetadata",read,shared)
-# define QT_PLUGIN_VERIFICATION_SECTION \
- __declspec(allocate(".qtplugin"))
# define QT_PLUGIN_METADATA_SECTION \
__declspec(allocate(".qtmetadata"))
#else
@@ -137,51 +130,12 @@ void Q_CORE_EXPORT qRegisterStaticPluginFunction(QStaticPlugin staticPlugin);
#define Q_EXPORT_PLUGIN(PLUGIN) \
Q_EXPORT_PLUGIN2(PLUGIN, PLUGIN)
-#define Q_EXPORT_STATIC_PLUGIN(PLUGIN)
-#define Q_EXPORT_STATIC_PLUGIN2(PLUGIN, PLUGINCLASS)
-
-#if defined(QT_STATICPLUGIN)
-
-# define Q_EXPORT_PLUGIN2(PLUGIN, PLUGINCLASS) \
- static QT_PREPEND_NAMESPACE(QObject) *qt_plugin_instance() \
- Q_PLUGIN_INSTANCE(PLUGINCLASS) \
- const QT_PREPEND_NAMESPACE(QStaticPlugin) qt_static_plugin_##PLUGIN() { \
- QT_PREPEND_NAMESPACE(QStaticPlugin) plugin = { qt_plugin_instance, 0 }; \
- return plugin; \
- }
-
-#else
-// NOTE: if you change pattern, you MUST change the pattern in
-// qlibrary.cpp as well. changing the pattern will break all
-// backwards compatibility as well (no old plugins will be loaded).
-# ifdef QPLUGIN_DEBUG_STR
-# undef QPLUGIN_DEBUG_STR
-# endif
-# ifdef QT_NO_DEBUG
-# define QPLUGIN_DEBUG_STR "false"
-# define QPLUGIN_SECTION_DEBUG_STR ""
-# else
-# define QPLUGIN_DEBUG_STR "true"
-# define QPLUGIN_SECTION_DEBUG_STR ".debug"
-# endif
-# define Q_PLUGIN_VERIFICATION_DATA \
- static const char qt_plugin_verification_data[] = \
- "pattern=" "QT_PLUGIN_VERIFICATION_DATA" "\n" \
- "version=" QT_VERSION_STR "\n" \
- "debug=" QPLUGIN_DEBUG_STR;
-
-
# define Q_EXPORT_PLUGIN2(PLUGIN, PLUGINCLASS) \
- QT_PLUGIN_VERIFICATION_SECTION Q_PLUGIN_VERIFICATION_DATA \
- Q_EXTERN_C Q_DECL_EXPORT \
- const char * qt_plugin_query_verification_data() \
- { return qt_plugin_verification_data; } \
- Q_EXTERN_C Q_DECL_EXPORT QT_PREPEND_NAMESPACE(QObject) * qt_plugin_instance() \
- Q_PLUGIN_INSTANCE(PLUGINCLASS)
+ Q_STATIC_ASSERT_X(false, "Old plugin system used")
-# define Q_EXPORT_STATIC_PLUGIN2(PLUGIN, PLUGINCLASS)
+# define Q_EXPORT_STATIC_PLUGIN2(PLUGIN, PLUGINCLASS) \
+ Q_STATIC_ASSERT_X(false, "Old plugin system used")
-#endif
QT_END_NAMESPACE