2014-10-10 19:26:50 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Albert Vaca <albertvaka@gmail.com>
|
2014-10-10 19:26:50 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-10-10 19:26:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dbushelper.h"
|
2019-06-18 02:21:31 +01:00
|
|
|
#include "core_debug.h"
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QCoreApplication>
|
2019-06-18 02:21:31 +01:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QFile>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QProcess>
|
2023-04-19 20:22:58 +01:00
|
|
|
#include <QRegularExpression>
|
2019-07-30 14:46:18 +01:00
|
|
|
#include <QStandardPaths>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QUrl>
|
2019-06-18 02:21:31 +01:00
|
|
|
|
|
|
|
#include "kdeconnectconfig.h"
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
2019-07-09 20:42:08 +01:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionMatch>
|
2019-06-18 02:21:31 +01:00
|
|
|
#endif
|
2014-10-10 19:26:50 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
namespace DBusHelper
|
|
|
|
{
|
2022-04-12 06:40:03 +01:00
|
|
|
#ifdef Q_OS_MAC
|
2019-06-18 02:21:31 +01:00
|
|
|
class DBusInstancePrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DBusInstancePrivate();
|
|
|
|
~DBusInstancePrivate();
|
|
|
|
|
|
|
|
void launchDBusDaemon();
|
|
|
|
void closeDBusDaemon();
|
2022-09-10 22:23:52 +01:00
|
|
|
|
2019-06-18 02:21:31 +01:00
|
|
|
private:
|
|
|
|
QProcess *m_dbusProcess;
|
|
|
|
};
|
|
|
|
|
|
|
|
static DBusInstancePrivate dbusInstance;
|
|
|
|
#endif
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void filterNonExportableCharacters(QString &s)
|
2014-10-10 19:26:50 +01:00
|
|
|
{
|
2023-04-19 20:22:58 +01:00
|
|
|
static QRegularExpression regexp(QStringLiteral("[^A-Za-z0-9_]"), QRegularExpression::CaseInsensitiveOption);
|
2022-09-10 22:23:52 +01:00
|
|
|
s.replace(regexp, QLatin1String("_"));
|
2014-10-10 19:26:50 +01:00
|
|
|
}
|
|
|
|
|
2022-04-12 06:40:03 +01:00
|
|
|
#ifdef Q_OS_MAC
|
2019-06-18 02:21:31 +01:00
|
|
|
void launchDBusDaemon()
|
|
|
|
{
|
|
|
|
dbusInstance.launchDBusDaemon();
|
2019-07-09 20:42:08 +01:00
|
|
|
qAddPostRoutine(closeDBusDaemon);
|
2019-06-18 02:21:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void closeDBusDaemon()
|
|
|
|
{
|
|
|
|
dbusInstance.closeDBusDaemon();
|
|
|
|
}
|
|
|
|
|
2019-07-09 20:42:08 +01:00
|
|
|
void macosUnsetLaunchctlEnv()
|
|
|
|
{
|
|
|
|
// Unset Launchd env
|
|
|
|
QProcess unsetLaunchdDBusEnv;
|
|
|
|
unsetLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
2022-09-10 22:23:52 +01:00
|
|
|
unsetLaunchdDBusEnv.setArguments({QStringLiteral("unsetenv"), QStringLiteral(KDECONNECT_SESSION_DBUS_LAUNCHD_ENV)});
|
2019-07-09 20:42:08 +01:00
|
|
|
unsetLaunchdDBusEnv.start();
|
|
|
|
unsetLaunchdDBusEnv.waitForFinished();
|
|
|
|
}
|
|
|
|
|
2019-06-18 02:21:31 +01:00
|
|
|
void DBusInstancePrivate::launchDBusDaemon()
|
|
|
|
{
|
|
|
|
// Kill old dbus daemon
|
2022-09-10 22:23:52 +01:00
|
|
|
if (m_dbusProcess != nullptr)
|
|
|
|
closeDBusDaemon();
|
2019-06-18 02:21:31 +01:00
|
|
|
|
|
|
|
// Start dbus daemon
|
|
|
|
m_dbusProcess = new QProcess();
|
2019-07-30 14:46:18 +01:00
|
|
|
|
|
|
|
QString kdeconnectDBusConfiguration;
|
2022-09-10 22:23:52 +01:00
|
|
|
QString dbusDaemonExecutable = QStandardPaths::findExecutable(QStringLiteral("dbus-daemon"), {QCoreApplication::applicationDirPath()});
|
2019-07-30 14:46:18 +01:00
|
|
|
if (!dbusDaemonExecutable.isNull()) {
|
|
|
|
kdeconnectDBusConfiguration = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("dbus-1/session.conf"));
|
|
|
|
} else {
|
|
|
|
// macOS Debug env
|
|
|
|
dbusDaemonExecutable = QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../bin/dbus-daemon");
|
|
|
|
kdeconnectDBusConfiguration = QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../share/dbus-1/session.conf");
|
|
|
|
}
|
|
|
|
m_dbusProcess->setProgram(dbusDaemonExecutable);
|
|
|
|
m_dbusProcess->setArguments({QStringLiteral("--print-address"),
|
2022-09-10 22:23:52 +01:00
|
|
|
QStringLiteral("--nofork"),
|
|
|
|
QStringLiteral("--config-file=") + kdeconnectDBusConfiguration,
|
|
|
|
QStringLiteral("--address=") + QStringLiteral(KDECONNECT_PRIVATE_DBUS_ADDR)});
|
2019-07-30 14:46:18 +01:00
|
|
|
m_dbusProcess->setWorkingDirectory(QCoreApplication::applicationDirPath());
|
2019-09-18 13:56:45 +01:00
|
|
|
m_dbusProcess->setStandardOutputFile(KdeConnectConfig::instance().privateDBusAddressPath());
|
2019-06-18 02:21:31 +01:00
|
|
|
m_dbusProcess->setStandardErrorFile(QProcess::nullDevice());
|
|
|
|
m_dbusProcess->start();
|
2019-07-09 20:42:08 +01:00
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
// Set launchctl env
|
2019-09-18 13:56:45 +01:00
|
|
|
QString privateDBusAddress = KdeConnectConfig::instance().privateDBusAddress();
|
2019-07-09 20:42:08 +01:00
|
|
|
QRegularExpressionMatch path;
|
2022-09-10 22:23:52 +01:00
|
|
|
if (privateDBusAddress.contains(QRegularExpression(QStringLiteral("path=(?<path>/tmp/dbus-[A-Za-z0-9]+)")), &path)) {
|
2019-07-09 20:42:08 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "DBus address: " << path.captured(QStringLiteral("path"));
|
|
|
|
QProcess setLaunchdDBusEnv;
|
|
|
|
setLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
2022-09-10 22:23:52 +01:00
|
|
|
setLaunchdDBusEnv.setArguments({QStringLiteral("setenv"), QStringLiteral(KDECONNECT_SESSION_DBUS_LAUNCHD_ENV), path.captured(QStringLiteral("path"))});
|
2019-07-09 20:42:08 +01:00
|
|
|
setLaunchdDBusEnv.start();
|
|
|
|
setLaunchdDBusEnv.waitForFinished();
|
|
|
|
} else {
|
|
|
|
qCDebug(KDECONNECT_CORE) << "Cannot get dbus address";
|
|
|
|
}
|
|
|
|
#endif
|
2019-06-18 02:21:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DBusInstancePrivate::closeDBusDaemon()
|
|
|
|
{
|
2022-09-10 22:23:52 +01:00
|
|
|
if (m_dbusProcess != nullptr) {
|
2019-06-18 02:21:31 +01:00
|
|
|
m_dbusProcess->terminate();
|
|
|
|
m_dbusProcess->waitForFinished();
|
|
|
|
delete m_dbusProcess;
|
|
|
|
m_dbusProcess = nullptr;
|
|
|
|
|
2019-09-18 13:56:45 +01:00
|
|
|
QFile privateDBusAddressFile(KdeConnectConfig::instance().privateDBusAddressPath());
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
if (privateDBusAddressFile.exists())
|
|
|
|
privateDBusAddressFile.resize(0);
|
2019-07-09 20:42:08 +01:00
|
|
|
|
|
|
|
macosUnsetLaunchctlEnv();
|
2019-06-18 02:21:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusInstancePrivate::DBusInstancePrivate()
|
2022-09-10 22:23:52 +01:00
|
|
|
: m_dbusProcess(nullptr)
|
|
|
|
{
|
|
|
|
}
|
2019-06-18 02:21:31 +01:00
|
|
|
|
|
|
|
DBusInstancePrivate::~DBusInstancePrivate()
|
|
|
|
{
|
|
|
|
closeDBusDaemon();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-21 17:38:54 +01:00
|
|
|
}
|