// SPDX-License-Identifier: LGPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea. * * nymea is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * nymea 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with nymea. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "platform.h" #include "platform/platformsystemcontroller.h" #include "platform/platformupdatecontroller.h" #include "platform/platformzeroconfcontroller.h" #include "loggingcategories.h" #include #include #include 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 { #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) foreach (QString libraryPath, QCoreApplication::libraryPaths()) { searchDirs << libraryPath.replace("qt5", "nymea").replace("plugins", "platform"); } #else foreach (QString libraryPath, QCoreApplication::libraryPaths()) { searchDirs << libraryPath.replace("qt6", "nymea").replace("plugins", "platform"); } #endif 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(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(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(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); } }