750 lines
19 KiB
C++
750 lines
19 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2024 - 2025 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "CoreProcess.h"
|
|
|
|
#include "common/constants.h"
|
|
#include "gui/config/IAppConfig.h"
|
|
#include "gui/core/CoreTool.h"
|
|
#include "gui/ipc/DaemonIpcClient.h"
|
|
#include "gui/paths.h"
|
|
#include "tls/TlsUtility.h"
|
|
|
|
#if defined(Q_OS_MAC)
|
|
#include "OSXHelpers.h"
|
|
#endif
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDir>
|
|
#include <QFile>
|
|
#include <QMessageBox>
|
|
#include <QMutexLocker>
|
|
#include <QRegularExpression>
|
|
#include <QStandardPaths>
|
|
#include <QTimer>
|
|
|
|
namespace deskflow::gui {
|
|
|
|
const int kRetryDelay = 1000;
|
|
const auto kServerConfigFilename = QStringLiteral("%1-server.conf").arg(kAppId);
|
|
const auto kLineSplitRegex = QRegularExpression("\r|\n|\r\n");
|
|
|
|
//
|
|
// free functions
|
|
//
|
|
|
|
QString processModeToString(ProcessMode mode)
|
|
{
|
|
using enum ProcessMode;
|
|
|
|
switch (mode) {
|
|
case kDesktop:
|
|
return "desktop";
|
|
case kService:
|
|
return "service";
|
|
default:
|
|
qFatal("invalid process mode");
|
|
abort();
|
|
}
|
|
}
|
|
|
|
QString processStateToString(CoreProcess::ProcessState state)
|
|
{
|
|
using enum CoreProcess::ProcessState;
|
|
|
|
switch (state) {
|
|
case Starting:
|
|
return "starting";
|
|
case Started:
|
|
return "started";
|
|
case Stopping:
|
|
return "stopping";
|
|
case Stopped:
|
|
return "stopped";
|
|
case RetryPending:
|
|
return "retry pending";
|
|
default:
|
|
qFatal("invalid process state");
|
|
abort();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Wraps options that contain spaces in quotes
|
|
*
|
|
* Useful to handle things like paths with spaces (e.g. "C:\Program Files").
|
|
*
|
|
* Can also be used to create a representation of a command that can be pasted
|
|
* into a terminal.
|
|
*/
|
|
QString makeQuotedArgs(const QString &app, const QStringList &args)
|
|
{
|
|
QStringList command;
|
|
command << app;
|
|
command << args;
|
|
|
|
QStringList quoted;
|
|
for (const auto &arg : std::as_const(command)) {
|
|
if (arg.contains(' ')) {
|
|
quoted << QString("\"%1\"").arg(arg);
|
|
} else {
|
|
quoted << arg;
|
|
}
|
|
}
|
|
|
|
return quoted.join(" ");
|
|
}
|
|
|
|
/**
|
|
* @brief If IPv6, ensures the IP is surround in square brackets.
|
|
*/
|
|
QString wrapIpv6(const QString &address)
|
|
{
|
|
if (!address.contains(':') || address.isEmpty()) {
|
|
return address;
|
|
}
|
|
|
|
QString wrapped = address;
|
|
|
|
if (address[0] != '[') {
|
|
wrapped.insert(0, '[');
|
|
}
|
|
|
|
if (address[address.size() - 1] != ']') {
|
|
wrapped.push_back(']');
|
|
}
|
|
|
|
return address;
|
|
}
|
|
|
|
//
|
|
// CoreProcess::Deps
|
|
//
|
|
|
|
QString CoreProcess::Deps::appPath(const QString &name) const
|
|
{
|
|
QDir dir(QCoreApplication::applicationDirPath());
|
|
return dir.filePath(name);
|
|
}
|
|
|
|
bool CoreProcess::Deps::fileExists(const QString &path) const
|
|
{
|
|
return QFile::exists(path);
|
|
}
|
|
|
|
QString CoreProcess::Deps::getProfileRoot() const
|
|
{
|
|
CoreTool coreTool;
|
|
QDir appDir = coreTool.getProfileDir();
|
|
|
|
// the core expects the profile root dir, not the app-specific profile dir.
|
|
if (!appDir.cdUp()) {
|
|
qFatal("failed to cd up to profile root dir");
|
|
}
|
|
|
|
return appDir.absolutePath();
|
|
}
|
|
|
|
//
|
|
// CoreProcess
|
|
//
|
|
|
|
CoreProcess::CoreProcess(const IAppConfig &appConfig, const IServerConfig &serverConfig, std::shared_ptr<Deps> deps)
|
|
: m_appConfig(appConfig),
|
|
m_serverConfig(serverConfig),
|
|
m_pDeps(deps),
|
|
m_daemonIpcClient{new ipc::DaemonIpcClient(this)}
|
|
{
|
|
connect(m_daemonIpcClient, &ipc::DaemonIpcClient::connected, this, &CoreProcess::daemonIpcClientConnected);
|
|
|
|
connect(&m_pDeps->process(), &QProcessProxy::finished, this, &CoreProcess::onProcessFinished);
|
|
|
|
connect(
|
|
&m_pDeps->process(), &QProcessProxy::readyReadStandardOutput, this, &CoreProcess::onProcessReadyReadStandardOutput
|
|
);
|
|
|
|
connect(
|
|
&m_pDeps->process(), &QProcessProxy::readyReadStandardError, this, &CoreProcess::onProcessReadyReadStandardError
|
|
);
|
|
|
|
connect(&m_retryTimer, &QTimer::timeout, this, [this] {
|
|
if (m_processState == ProcessState::RetryPending) {
|
|
start();
|
|
} else {
|
|
qDebug("retry cancelled, process state is not retry pending");
|
|
}
|
|
});
|
|
}
|
|
|
|
void CoreProcess::onProcessReadyReadStandardOutput()
|
|
{
|
|
if (m_pDeps->process()) {
|
|
handleLogLines(m_pDeps->process().readAllStandardOutput());
|
|
}
|
|
}
|
|
|
|
void CoreProcess::onProcessReadyReadStandardError()
|
|
{
|
|
if (m_pDeps->process()) {
|
|
handleLogLines(m_pDeps->process().readAllStandardError());
|
|
}
|
|
}
|
|
|
|
void CoreProcess::daemonIpcClientConnected()
|
|
{
|
|
applyLogLevel();
|
|
|
|
const auto logPath = requestDaemonLogPath();
|
|
if (!logPath.isEmpty()) {
|
|
if (m_daemonFileTail != nullptr) {
|
|
disconnect(m_daemonFileTail, &FileTail::newLine, this, &CoreProcess::handleLogLines);
|
|
m_daemonFileTail->deleteLater();
|
|
}
|
|
|
|
qInfo() << "daemon log path:" << logPath;
|
|
m_daemonFileTail = new FileTail(logPath, this);
|
|
connect(m_daemonFileTail, &FileTail::newLine, this, &CoreProcess::handleLogLines);
|
|
}
|
|
}
|
|
|
|
void CoreProcess::onProcessFinished(int exitCode, QProcess::ExitStatus)
|
|
{
|
|
const auto wasStarted = m_processState == ProcessState::Started;
|
|
|
|
setConnectionState(ConnectionState::Disconnected);
|
|
|
|
if (exitCode == 0) {
|
|
qDebug("desktop process exited normally");
|
|
} else {
|
|
qWarning("desktop process exited with error code: %d", exitCode);
|
|
}
|
|
|
|
if (wasStarted) {
|
|
qDebug("desktop process was running, retrying in %d ms", kRetryDelay);
|
|
|
|
if (m_retryTimer.isActive()) {
|
|
m_retryTimer.stop();
|
|
}
|
|
|
|
setProcessState(ProcessState::RetryPending);
|
|
m_retryTimer.setSingleShot(true);
|
|
m_retryTimer.start(kRetryDelay);
|
|
} else {
|
|
setProcessState(ProcessState::Stopped);
|
|
}
|
|
}
|
|
|
|
void CoreProcess::applyLogLevel()
|
|
{
|
|
if (m_appConfig.processMode() == ProcessMode::kService) {
|
|
qDebug() << "setting daemon log level:" << m_appConfig.logLevelText();
|
|
if (!m_daemonIpcClient->sendLogLevel(m_appConfig.logLevelText())) {
|
|
qCritical() << "failed to set daemon ipc log level";
|
|
}
|
|
}
|
|
}
|
|
|
|
void CoreProcess::startForegroundProcess(const QString &app, const QStringList &args)
|
|
{
|
|
using enum ProcessState;
|
|
|
|
if (m_processState != Starting) {
|
|
qFatal("core process must be in starting state");
|
|
}
|
|
|
|
// only make quoted args for printing the command for convenience; so that the
|
|
// core command can be easily copy/pasted to the terminal for testing.
|
|
const auto quoted = makeQuotedArgs(app, args);
|
|
qInfo("running command: %s", qPrintable(quoted));
|
|
|
|
m_pDeps->process().start(app, args);
|
|
|
|
if (m_pDeps->process().waitForStarted()) {
|
|
setProcessState(Started);
|
|
} else {
|
|
setProcessState(Stopped);
|
|
Q_EMIT error(Error::StartFailed);
|
|
}
|
|
}
|
|
|
|
void CoreProcess::startProcessFromDaemon(const QString &app, const QStringList &args)
|
|
{
|
|
using enum ProcessState;
|
|
|
|
if (m_processState != Starting) {
|
|
qFatal("core process must be in starting state");
|
|
}
|
|
|
|
QString commandQuoted = makeQuotedArgs(app, args);
|
|
|
|
qInfo("running command: %s", qPrintable(commandQuoted));
|
|
|
|
if (!m_daemonIpcClient->sendStartProcess(commandQuoted, m_appConfig.elevateMode())) {
|
|
qCritical("cannot start process, ipc command failed");
|
|
return;
|
|
}
|
|
|
|
setProcessState(Started);
|
|
}
|
|
|
|
void CoreProcess::stopForegroundProcess() const
|
|
{
|
|
if (m_processState != ProcessState::Stopping) {
|
|
qFatal("core process must be in stopping state");
|
|
}
|
|
|
|
if (!m_pDeps->process()) {
|
|
qFatal("process not set, cannot stop");
|
|
}
|
|
|
|
qInfo("stopping core desktop process");
|
|
|
|
if (m_pDeps->process().state() == QProcess::ProcessState::Running) {
|
|
qDebug("process is running, closing");
|
|
m_pDeps->process().close();
|
|
} else {
|
|
qDebug("process is not running, skipping terminate");
|
|
}
|
|
}
|
|
|
|
void CoreProcess::stopProcessFromDaemon()
|
|
{
|
|
if (m_processState != ProcessState::Stopping) {
|
|
qFatal("core process must be in stopping state");
|
|
}
|
|
|
|
if (!m_daemonIpcClient->sendStopProcess()) {
|
|
qCritical("cannot stop process, ipc command failed");
|
|
return;
|
|
}
|
|
|
|
setProcessState(ProcessState::Stopped);
|
|
}
|
|
|
|
void CoreProcess::handleLogLines(const QString &text)
|
|
{
|
|
const auto lines = text.split(kLineSplitRegex);
|
|
for (const auto &line : lines) {
|
|
if (line.isEmpty()) {
|
|
continue;
|
|
}
|
|
|
|
#if defined(Q_OS_MAC)
|
|
// HACK: macOS 10.13.4+ spamming error lines in logs making them
|
|
// impossible to read and debug; giving users a red herring.
|
|
if (line.contains("calling TIS/TSM in non-main thread environment")) {
|
|
continue;
|
|
}
|
|
#endif
|
|
|
|
checkLogLine(line);
|
|
Q_EMIT logLine(line);
|
|
}
|
|
}
|
|
|
|
void CoreProcess::start(std::optional<ProcessMode> processModeOption)
|
|
{
|
|
QMutexLocker locker(&m_processMutex);
|
|
|
|
const auto processMode = processModeOption.value_or(m_appConfig.processMode());
|
|
|
|
qInfo("starting core %s process (%s mode)", qPrintable(modeString()), qPrintable(processModeToString(processMode)));
|
|
|
|
if (m_processState == ProcessState::Started) {
|
|
qCritical("core process already started");
|
|
return;
|
|
}
|
|
|
|
// allow external listeners to abort the start process (e.g. licensing issue).
|
|
setProcessState(ProcessState::Starting);
|
|
Q_EMIT starting();
|
|
if (m_processState == ProcessState::Stopped) {
|
|
qDebug("core process start was cancelled by listener");
|
|
return;
|
|
}
|
|
|
|
#ifdef Q_OS_MAC
|
|
requestOSXNotificationPermission();
|
|
#endif
|
|
|
|
setConnectionState(ConnectionState::Connecting);
|
|
|
|
if (processMode == ProcessMode::kDesktop) {
|
|
m_pDeps->process().create();
|
|
}
|
|
|
|
QString app;
|
|
QStringList args;
|
|
addGenericArgs(args, processMode);
|
|
|
|
if (mode() == Mode::Server && !addServerArgs(args, app)) {
|
|
qWarning("failed to add server args for core process, aborting start");
|
|
return;
|
|
} else if (mode() == Mode::Client && !addClientArgs(args, app)) {
|
|
qWarning("failed to add client args for core process, aborting start");
|
|
return;
|
|
}
|
|
|
|
qDebug("log level: %s", qPrintable(m_appConfig.logLevelText()));
|
|
|
|
if (m_appConfig.logToFile())
|
|
qInfo("log file: %s", qPrintable(m_appConfig.logFilename()));
|
|
|
|
if (processMode == ProcessMode::kDesktop) {
|
|
startForegroundProcess(app, args);
|
|
} else if (processMode == ProcessMode::kService) {
|
|
startProcessFromDaemon(app, args);
|
|
}
|
|
|
|
m_lastProcessMode = processMode;
|
|
}
|
|
|
|
void CoreProcess::stop(std::optional<ProcessMode> processModeOption)
|
|
{
|
|
QMutexLocker locker(&m_processMutex);
|
|
|
|
const auto processMode = processModeOption.value_or(m_appConfig.processMode());
|
|
|
|
qInfo("stopping core process (%s mode)", qPrintable(processModeToString(processMode)));
|
|
|
|
if (m_processState == ProcessState::Starting) {
|
|
qDebug("core process is starting, cancelling");
|
|
setProcessState(ProcessState::Stopped);
|
|
} else if (m_processState != ProcessState::Stopped) {
|
|
setProcessState(ProcessState::Stopping);
|
|
|
|
if (processMode == ProcessMode::kService) {
|
|
stopProcessFromDaemon();
|
|
} else if (processMode == ProcessMode::kDesktop) {
|
|
stopForegroundProcess();
|
|
}
|
|
|
|
} else {
|
|
qWarning("core process already stopped");
|
|
}
|
|
|
|
setConnectionState(ConnectionState::Disconnected);
|
|
}
|
|
|
|
void CoreProcess::restart()
|
|
{
|
|
using enum ProcessMode;
|
|
|
|
qDebug("restarting core process");
|
|
|
|
const auto processMode = m_appConfig.processMode();
|
|
|
|
if (m_lastProcessMode != processMode) {
|
|
if (processMode == kDesktop) {
|
|
qDebug("process mode changed to desktop, stopping service process");
|
|
stop(kService);
|
|
} else if (processMode == kService) {
|
|
qDebug("process mode changed to service, stopping desktop process");
|
|
stop(kDesktop);
|
|
} else {
|
|
qFatal("invalid process mode");
|
|
}
|
|
} else {
|
|
// in service mode: though there is technically no need to stop the service
|
|
// before restarting it, it does make for cleaner process state tracking,
|
|
// especially if something goes wrong with starting the service.
|
|
stop();
|
|
}
|
|
|
|
start();
|
|
}
|
|
|
|
void CoreProcess::cleanup()
|
|
{
|
|
qInfo("cleaning up core process");
|
|
|
|
const auto isDesktop = m_appConfig.processMode() == ProcessMode::kDesktop;
|
|
const auto isRunning = m_processState == ProcessState::Started;
|
|
if (isDesktop && isRunning) {
|
|
stop();
|
|
}
|
|
}
|
|
|
|
bool CoreProcess::addGenericArgs(QStringList &args, const ProcessMode processMode) const
|
|
{
|
|
args << "-f"
|
|
<< "--debug" << m_appConfig.logLevelText();
|
|
|
|
args << "--name" << m_appConfig.screenName();
|
|
|
|
if (processMode != ProcessMode::kDesktop) {
|
|
#if defined(Q_OS_WIN)
|
|
// tell the client/server to shut down when a ms windows desk
|
|
// is switched; this is because we may need to elevate or not
|
|
// based on which desk the user is in (login always needs
|
|
// elevation, where as default desk does not).
|
|
// Note that this is only enabled when deskflow is set to elevate
|
|
// 'as needed' (e.g. on a UAC dialog popup) in order to prevent
|
|
// unnecessary restarts when deskflow was started elevated or
|
|
// when it is not allowed to elevate. In these cases restarting
|
|
// the server is fruitless.
|
|
if (m_appConfig.elevateMode() == ElevateMode::kAutomatic) {
|
|
args << "--stop-on-desk-switch";
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#ifndef Q_OS_LINUX
|
|
|
|
if (m_serverConfig.enableDragAndDrop()) {
|
|
args << "--enable-drag-drop";
|
|
}
|
|
|
|
#endif
|
|
|
|
if (m_appConfig.tlsEnabled()) {
|
|
args << "--enable-crypto";
|
|
}
|
|
|
|
#if defined(Q_OS_WIN)
|
|
// on windows, the profile directory changes depending on the user that
|
|
// launched the process (e.g. when launched with elevation). setting the
|
|
// profile dir on launch ensures it uses the same profile dir is used
|
|
// no matter how its relaunched.
|
|
args << "--profile-dir" << m_pDeps->getProfileRoot();
|
|
#endif
|
|
|
|
if (m_appConfig.preventSleep()) {
|
|
args << "--prevent-sleep";
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CoreProcess::addServerArgs(QStringList &args, QString &app)
|
|
{
|
|
app = m_pDeps->appPath(m_appConfig.coreServerName());
|
|
|
|
if (!m_pDeps->fileExists(app)) {
|
|
qFatal("core server binary does not exist");
|
|
return false;
|
|
}
|
|
|
|
if (m_appConfig.logToFile()) {
|
|
m_appConfig.persistLogDir();
|
|
|
|
args << "--log" << m_appConfig.logFilename();
|
|
}
|
|
|
|
if (!m_appConfig.requireClientCerts()) {
|
|
args << "--disable-client-cert-check";
|
|
}
|
|
|
|
QString configFilename = persistServerConfig();
|
|
if (configFilename.isEmpty()) {
|
|
qFatal("config file name empty for server args");
|
|
return false;
|
|
}
|
|
|
|
// the address arg is dual purpose; when in listening mode, it's the address
|
|
// that the server listens on. when tcp sockets are inverted, it connects to
|
|
// that address. this is a bit confusing, and there should be probably be
|
|
// different args for different purposes.
|
|
args << "--address" << correctedInterface();
|
|
|
|
args << "-c" << configFilename;
|
|
qInfo("core config file: %s", qPrintable(configFilename));
|
|
// bizarrely, the tls cert path arg was being given to the core client.
|
|
// since it's not clear why (it is only needed for the server), this has now
|
|
// been moved to server args.
|
|
if (m_appConfig.tlsEnabled()) {
|
|
TlsUtility tlsUtility(m_appConfig);
|
|
if (!tlsUtility.persistCertificate()) {
|
|
qCritical("failed to persist tls certificate");
|
|
return false;
|
|
}
|
|
args << "--tls-cert" << m_appConfig.tlsCertPath();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CoreProcess::addClientArgs(QStringList &args, QString &app)
|
|
{
|
|
app = m_pDeps->appPath(m_appConfig.coreClientName());
|
|
|
|
if (!m_pDeps->fileExists(app)) {
|
|
qFatal("core client binary does not exist");
|
|
return false;
|
|
}
|
|
|
|
if (m_appConfig.logToFile()) {
|
|
m_appConfig.persistLogDir();
|
|
args << "--log" << m_appConfig.logFilename();
|
|
}
|
|
|
|
if (m_appConfig.languageSync()) {
|
|
args << "--sync-language";
|
|
}
|
|
|
|
if (m_appConfig.invertScrollDirection()) {
|
|
args << "--invert-scroll";
|
|
}
|
|
|
|
if (correctedAddress().isEmpty()) {
|
|
Q_EMIT error(Error::AddressMissing);
|
|
qDebug("address is missing for client args");
|
|
return false;
|
|
}
|
|
|
|
args << correctedAddress() + ":" + QString::number(m_appConfig.port());
|
|
|
|
return true;
|
|
}
|
|
|
|
QString CoreProcess::persistServerConfig() const
|
|
{
|
|
if (m_appConfig.useExternalConfig()) {
|
|
return m_appConfig.configFile();
|
|
}
|
|
|
|
const auto configDir = paths::configDir(true);
|
|
const auto configDirPath = configDir.absolutePath();
|
|
|
|
QFile configFile(configDirPath + "/" + kServerConfigFilename);
|
|
if (!configFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
|
|
qFatal("failed to open core config file for write: %s", qPrintable(configFile.fileName()));
|
|
}
|
|
|
|
m_serverConfig.save(configFile);
|
|
configFile.close();
|
|
return configFile.fileName();
|
|
}
|
|
|
|
QString CoreProcess::modeString() const
|
|
{
|
|
using enum Mode;
|
|
|
|
switch (m_mode) {
|
|
case Server:
|
|
return "server";
|
|
case Client:
|
|
return "client";
|
|
default:
|
|
qFatal("invalid core mode");
|
|
return "";
|
|
}
|
|
}
|
|
|
|
void CoreProcess::setConnectionState(ConnectionState state)
|
|
{
|
|
if (m_connectionState == state) {
|
|
return;
|
|
}
|
|
|
|
m_connectionState = state;
|
|
Q_EMIT connectionStateChanged(state);
|
|
}
|
|
|
|
void CoreProcess::setProcessState(ProcessState state)
|
|
{
|
|
if (m_processState == state) {
|
|
return;
|
|
}
|
|
|
|
qDebug(
|
|
"core process state changed: %s -> %s", //
|
|
qPrintable(processStateToString(m_processState)), qPrintable(processStateToString(state))
|
|
);
|
|
m_processState = state;
|
|
Q_EMIT processStateChanged(state);
|
|
}
|
|
|
|
void CoreProcess::checkLogLine(const QString &line)
|
|
{
|
|
using enum ConnectionState;
|
|
|
|
if (line.contains("connected to server") || line.contains("has connected")) {
|
|
m_connections++;
|
|
setConnectionState(Connected);
|
|
} else if (line.contains("started server")) {
|
|
m_connections = 0;
|
|
setConnectionState(Listening);
|
|
} else if (line.contains("disconnected from server") || line.contains("process exited")) {
|
|
m_connections = 0;
|
|
setConnectionState(Disconnected);
|
|
} else if (line.contains("connecting to")) {
|
|
setConnectionState(Connecting);
|
|
} else if (line.contains("has disconnected")) {
|
|
m_connections--;
|
|
if (m_connections < 1) {
|
|
setConnectionState(Listening);
|
|
}
|
|
}
|
|
|
|
checkSecureSocket(line);
|
|
|
|
// server and client processes are not allowed to show notifications.
|
|
// process the log from it and show notification from deskflow instead.
|
|
#ifdef Q_OS_MAC
|
|
checkOSXNotification(line);
|
|
#endif
|
|
}
|
|
|
|
bool CoreProcess::checkSecureSocket(const QString &line)
|
|
{
|
|
static const QString tlsCheckString = "network encryption protocol: ";
|
|
const auto index = line.indexOf(tlsCheckString, 0, Qt::CaseInsensitive);
|
|
if (index == -1) {
|
|
return false;
|
|
}
|
|
|
|
Q_EMIT secureSocket(true);
|
|
m_secureSocketVersion = line.mid(index + tlsCheckString.size());
|
|
return true;
|
|
}
|
|
|
|
#ifdef Q_OS_MAC
|
|
void CoreProcess::checkOSXNotification(const QString &line)
|
|
{
|
|
static const QString needle = "OSX Notification: ";
|
|
if (line.contains(needle) && line.contains('|')) {
|
|
int delimiterPosition = line.indexOf('|');
|
|
int start = line.indexOf(needle);
|
|
QString title = line.mid(start + needle.length(), delimiterPosition - start - needle.length());
|
|
QString body = line.mid(delimiterPosition + 1, line.length() - delimiterPosition);
|
|
if (!showOSXNotification(title, body)) {
|
|
qDebug("osx notification was not shown");
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
QString CoreProcess::correctedInterface() const
|
|
{
|
|
QString interface = wrapIpv6(m_appConfig.networkInterface());
|
|
return interface + ":" + QString::number(m_appConfig.port());
|
|
}
|
|
|
|
QString CoreProcess::correctedAddress() const
|
|
{
|
|
return wrapIpv6(m_address);
|
|
}
|
|
|
|
QString CoreProcess::requestDaemonLogPath()
|
|
{
|
|
qDebug() << "requesting daemon log path";
|
|
const auto logPath = m_daemonIpcClient->requestLogPath();
|
|
if (logPath.isEmpty()) {
|
|
qCritical() << "failed to get daemon log path";
|
|
return QString();
|
|
}
|
|
|
|
if (QFileInfo logFile(logPath); !logFile.exists() || !logFile.isFile()) {
|
|
qWarning() << "daemon log path file does not exist:" << logPath;
|
|
return QString();
|
|
}
|
|
|
|
return logPath;
|
|
}
|
|
|
|
} // namespace deskflow::gui
|