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
|
/*
proxyfactorybase.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2011 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.
*/
#ifndef GAMMARAY_PROXYFACTORYBASE_H
#define GAMMARAY_PROXYFACTORYBASE_H
#include "plugininfo.h"
#include <QCoreApplication>
#include <QObject>
#include <QString>
#include <iostream>
namespace GammaRay {
/** Base class for wrappers for potentially not yet loaded plugins. */
class ProxyFactoryBase : public QObject
{
Q_OBJECT
public:
explicit ProxyFactoryBase(const PluginInfo &pluginInfo, QObject *parent = nullptr);
~ProxyFactoryBase() override;
PluginInfo pluginInfo() const;
QString errorString() const;
protected:
void loadPlugin();
QObject *m_factory;
QString m_errorString;
private:
PluginInfo m_pluginInfo;
};
template<typename IFace>
class ProxyFactory : public ProxyFactoryBase, public IFace
{
public:
explicit inline ProxyFactory(const PluginInfo &pluginInfo, QObject *parent = nullptr)
: ProxyFactoryBase(pluginInfo, parent)
{
}
inline ~ProxyFactory() override = default;
QString id() const override
{
return pluginInfo().id();
}
protected:
IFace *factory()
{
loadPlugin();
IFace *iface = qobject_cast<IFace *>(m_factory);
if (!iface) {
m_errorString = qApp->translate("GammaRay::ProxyFactory",
"Plugin does not provide an instance of %1.")
.arg(qobject_interface_iid<IFace *>());
std::cerr << "Failed to cast object from " << qPrintable(pluginInfo().path())
<< " to " << qobject_interface_iid<IFace *>() << std::endl;
}
return iface;
}
};
}
#endif // GAMMARAY_PROXYFACTORYBASE_H
|