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
|
/*
plugininfo.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2014 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "plugininfo.h"
#include "paths.h"
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QLibrary>
#include <QLocale>
#include <QCoreApplication>
#include <QJsonArray>
#include <QJsonObject>
#include <QJsonValue>
#include <QPluginLoader>
using namespace GammaRay;
PluginInfo::PluginInfo() = default;
PluginInfo::PluginInfo(const QString &path)
{
// OSX has broken QLibrary::isLibrary() - QTBUG-50446
if (QLibrary::isLibrary(path) || path.endsWith(Paths::pluginExtension(), Qt::CaseInsensitive))
initFromJSON(path);
}
PluginInfo::PluginInfo(const QStaticPlugin &staticPlugin)
{
m_staticInstanceFunc = staticPlugin.instance;
initFromJSON(staticPlugin.metaData());
}
QString PluginInfo::path() const
{
return m_path;
}
QString PluginInfo::id() const
{
return m_id;
}
QString PluginInfo::interfaceId() const
{
return m_interface;
}
QStringList PluginInfo::supportedTypes() const
{
return m_supportedTypes;
}
bool PluginInfo::remoteSupport() const
{
return m_remoteSupport;
}
QString PluginInfo::name() const
{
return m_name;
}
bool PluginInfo::isHidden() const
{
return m_hidden;
}
QVector<QByteArray> PluginInfo::selectableTypes() const
{
return m_selectableTypes;
}
bool PluginInfo::isValid() const
{
return !m_id.isEmpty() && (isStatic() || !m_path.isEmpty()) && !m_interface.isEmpty();
}
static QString readLocalized(const QLocale &locale, const QJsonObject &obj, const QString &baseKey)
{
const QString qtcLanguage = qApp->property("qtc_locale").toString();
QStringList names = locale.uiLanguages();
if (!qtcLanguage.isEmpty())
names.prepend(qtcLanguage);
for (auto name : std::as_const(names)) {
const QLocale uiLocale(name);
// We are natively English, skip...
if (uiLocale.language() == QLocale::English || uiLocale.language() == QLocale::C) {
return obj.value(baseKey).toString();
}
// Check against name
QString key = baseKey + '[' + name + ']';
auto it = obj.find(key);
// Check against language
if (it == obj.end()) {
name.replace('-', '_');
name = name.section(QLatin1Char('_'), 0, -2);
if (!name.isEmpty()) {
key = baseKey + '[' + name + ']';
it = obj.find(key);
}
}
if (it != obj.end())
return it.value().toString();
}
return obj.value(baseKey).toString();
}
bool PluginInfo::isStatic() const
{
return m_staticInstanceFunc;
}
QObject *PluginInfo::staticInstance() const
{
Q_ASSERT(isStatic());
return m_staticInstanceFunc();
}
void PluginInfo::initFromJSON(const QString &path)
{
const QPluginLoader loader(path);
const QJsonObject metaData = loader.metaData();
initFromJSON(metaData);
m_path = path;
}
void PluginInfo::initFromJSON(const QJsonObject &metaData)
{
m_interface = metaData.value(QStringLiteral("IID")).toString();
const QJsonObject customData = metaData.value(QStringLiteral("MetaData")).toObject();
m_id = customData.value(QStringLiteral("id")).toString();
m_name = readLocalized(QLocale(), customData, QStringLiteral("name"));
m_remoteSupport = customData.value(QStringLiteral("remoteSupport")).toBool(true);
m_hidden = customData.value(QStringLiteral("hidden")).toBool(false);
const QJsonArray types = customData.value(QStringLiteral("types")).toArray();
m_supportedTypes.reserve(types.size());
for (auto it = types.constBegin(); it != types.constEnd(); ++it)
m_supportedTypes.push_back((*it).toString());
const auto selectableTypes = customData.value(QStringLiteral("selectableTypes")).toArray();
m_selectableTypes.reserve(selectableTypes.size());
for (auto &&selectable : selectableTypes)
m_selectableTypes.push_back(selectable.toString().toUtf8());
}
|