mirror of https://github.com/nymea/nymea.git
201 lines
7.9 KiB
C++
201 lines
7.9 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU version 3. This project is distributed in the hope that it
|
|
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
* Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "platform.h"
|
|
#include "platform/platformsystemcontroller.h"
|
|
#include "platform/platformupdatecontroller.h"
|
|
#include "platform/platformzeroconfcontroller.h"
|
|
|
|
#include "loggingcategories.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDir>
|
|
#include <QPluginLoader>
|
|
|
|
namespace nymeaserver {
|
|
|
|
Platform::Platform(QObject *parent) : QObject(parent)
|
|
{
|
|
foreach (const QString &path, pluginSearchDirs()) {
|
|
QDir dir(path);
|
|
qCDebug(dcPlatform) << "Loading platform plugins from:" << dir.absolutePath();
|
|
foreach (const QString &entry, dir.entryList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot)) {
|
|
QFileInfo fi(path + "/" + entry);
|
|
if (fi.isFile()) {
|
|
if (entry.startsWith("libnymea_systemplugin") && entry.endsWith(".so")) {
|
|
loadSystemPlugin(path + "/" + entry);
|
|
} else if (entry.startsWith("libnymea_updateplugin") && entry.endsWith(".so")) {
|
|
loadUpdatePlugin(path + "/" + entry);
|
|
} else if (entry.startsWith("libnymea_zeroconfplugin") && entry.endsWith(".so")) {
|
|
loadZeroConfPlugin(path + "/" + entry);
|
|
}
|
|
} else if (fi.isDir()) {
|
|
if (QFileInfo::exists(path + "/" + entry + "/libnymea_systemplugin" + entry + ".so")) {
|
|
loadSystemPlugin(path + "/" + entry + "/libnymea_systemplugin" + entry + ".so");
|
|
} else if (QFileInfo::exists(path + "/" + entry + "/libnymea_updateplugin" + entry + ".so")) {
|
|
loadUpdatePlugin(path + "/" + entry + "/libnymea_updateplugin" + entry + ".so");
|
|
} else if (QFileInfo::exists(path + "/" + entry + "/libnymea_zeroconfplugin" + entry + ".so")) {
|
|
loadZeroConfPlugin(path + "/" + entry + "/libnymea_zeroconfplugin" + entry + ".so");
|
|
}
|
|
}
|
|
}
|
|
if (m_platformSystemController && m_platformUpdateController && m_platformZeroConfController) {
|
|
break;
|
|
}
|
|
}
|
|
if (!m_platformSystemController) {
|
|
qCWarning(dcPlatform()) << "No system plugin loaded. System control features won't be available.";
|
|
m_platformSystemController = new PlatformSystemController(this);
|
|
}
|
|
if (!m_platformUpdateController) {
|
|
qCWarning(dcPlatform()) << "No update plugin loaded. System update features won't be available.";
|
|
m_platformUpdateController = new PlatformUpdateController(this);
|
|
}
|
|
if (!m_platformZeroConfController) {
|
|
qCWarning(dcPlatform()) << "No ZeroConf plugin loaded. ZeroConf will not be available.";
|
|
m_platformZeroConfController = new PlatformZeroConfController(this);
|
|
}
|
|
}
|
|
|
|
PlatformSystemController *Platform::systemController() const
|
|
{
|
|
return m_platformSystemController;
|
|
}
|
|
|
|
PlatformUpdateController *Platform::updateController() const
|
|
{
|
|
return m_platformUpdateController;
|
|
}
|
|
|
|
PlatformZeroConfController *Platform::zeroConfController() const
|
|
{
|
|
return m_platformZeroConfController;
|
|
}
|
|
|
|
QStringList Platform::pluginSearchDirs() const
|
|
{
|
|
const char *envDefaultPath = "NYMEA_PLATFORM_PLUGINS_PATH";
|
|
const char *envExtraPath = "NYMEA_PLATFORM_PLUGINS_EXTRA_PATH";
|
|
|
|
QStringList searchDirs;
|
|
QByteArray envExtraPathData = qgetenv(envExtraPath);
|
|
if (!envExtraPathData.isEmpty()) {
|
|
searchDirs << QString::fromUtf8(envExtraPathData).split(':');
|
|
}
|
|
|
|
if (qEnvironmentVariableIsSet(envDefaultPath)) {
|
|
QByteArray envDefaultPathData = qgetenv(envDefaultPath);
|
|
if (!envDefaultPathData.isEmpty()) {
|
|
searchDirs << QString::fromUtf8(envDefaultPathData).split(':');
|
|
}
|
|
} else {
|
|
foreach (QString libraryPath, QCoreApplication::libraryPaths()) {
|
|
searchDirs << libraryPath.replace("qt5", "nymea").replace("plugins", "platform");
|
|
}
|
|
foreach (QString libraryPath, QCoreApplication::libraryPaths()) {
|
|
searchDirs << libraryPath.replace("plugins", "nymea/platform");
|
|
}
|
|
searchDirs << QDir(QCoreApplication::applicationDirPath() + "/../lib/nymea/platform/").absolutePath();
|
|
searchDirs << QDir(QCoreApplication::applicationDirPath() + "/../platform/").absolutePath();
|
|
searchDirs << QDir(QCoreApplication::applicationDirPath() + "/../../../platform/").absolutePath();
|
|
}
|
|
|
|
searchDirs.removeDuplicates();
|
|
return searchDirs;
|
|
}
|
|
|
|
void Platform::loadSystemPlugin(const QString &file)
|
|
{
|
|
if (m_platformSystemController) {
|
|
return; // Not loading another...
|
|
}
|
|
QPluginLoader loader;
|
|
loader.setFileName(file);
|
|
loader.setLoadHints(QLibrary::ResolveAllSymbolsHint);
|
|
if (!loader.load()) {
|
|
qCWarning(dcPlatform) << loader.errorString();
|
|
return;
|
|
}
|
|
m_platformSystemController = qobject_cast<PlatformSystemController*>(loader.instance());
|
|
if (!m_platformSystemController) {
|
|
qCWarning(dcPlatform) << "Could not get plugin instance of" << loader.fileName();
|
|
loader.unload();
|
|
return;
|
|
}
|
|
qCDebug(dcPlatform()) << "Loaded system plugin:" << loader.fileName();
|
|
m_platformSystemController->setParent(this);
|
|
}
|
|
|
|
void Platform::loadUpdatePlugin(const QString &file)
|
|
{
|
|
if (m_platformUpdateController) {
|
|
return; // Not loading another...
|
|
}
|
|
QPluginLoader loader;
|
|
loader.setFileName(file);
|
|
loader.setLoadHints(QLibrary::ResolveAllSymbolsHint);
|
|
if (!loader.load()) {
|
|
qCWarning(dcPlatform) << loader.errorString();
|
|
return;
|
|
}
|
|
m_platformUpdateController = qobject_cast<PlatformUpdateController*>(loader.instance());
|
|
if (!m_platformUpdateController) {
|
|
qCWarning(dcPlatform) << "Could not get plugin instance of" << loader.fileName();
|
|
loader.unload();
|
|
return;
|
|
}
|
|
qCDebug(dcPlatform()) << "Loaded update plugin:" << loader.fileName();
|
|
m_platformUpdateController->setParent(this);
|
|
}
|
|
|
|
void Platform::loadZeroConfPlugin(const QString &file)
|
|
{
|
|
if (m_platformZeroConfController) {
|
|
return; // Not loading another...
|
|
}
|
|
QPluginLoader loader;
|
|
loader.setFileName(file);
|
|
loader.setLoadHints(QLibrary::ResolveAllSymbolsHint);
|
|
if (!loader.load()) {
|
|
qCWarning(dcPlatform) << loader.errorString();
|
|
return;
|
|
}
|
|
m_platformZeroConfController = qobject_cast<PlatformZeroConfController*>(loader.instance());
|
|
if (!m_platformZeroConfController) {
|
|
qCWarning(dcPlatform) << "Could not get plugin instance of" << loader.fileName();
|
|
loader.unload();
|
|
return;
|
|
}
|
|
qCDebug(dcPlatform()) << "Loaded ZeroConf plugin:" << loader.fileName();
|
|
m_platformZeroConfController->setParent(this);
|
|
}
|
|
|
|
}
|