Files
ukui-settings-daemon/daemon/main.cpp
shangxiaoyang-kylin 702686854a Synchronize the master branch code. (#40)
* Fix: The sound icon disappears.
* Feature: Improve the file format after the touchpad function is added.
* Use lrelease-qt5 on openSUSE
* Fix Chinese-English compose type
* Fix library links check
* Fix build on openSUSE, make sure library links check will be success.
* Fix: Shortcut key Sinicization.
* Feature: remove  xcb-proto dependency.
* Drop libdbus-glib-1 from build-depends and daemon.pro, update changelog
* Fix: The touch point do not match when the touch screen is dual screen.
* Feature: Add HDMI 4K display plug-in zoom popup.
* Feature: Organize the overall code format.
* Fix: Modify the shortcut key prompt
* Fix library links (#29)
* Feature (mpris): Adapt kylin-video shortcut keys.
* Feature: Modify the trackpad shortcut key theme icon.
* don't depend xserver-xorg-input-synaptics on s390x.
* Fix: improve the problem of 4K double zoom
* Fix: improve zoom prompt popup
* Fix: the black X problem of GTK small window cursor.
* Feature: Added button monitoring event.
* Fix: Ctrl display mouse position key conflict.
* Fix : Compilation error
* Feature: Improve the shortcut key code.
* Fix: some shortcut key issues.
2021-01-21 15:10:27 +08:00

128 lines
3.8 KiB
C++

/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2020 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <libmate-desktop/mate-gsettings.h>
#include "clib-syslog.h"
#include "plugin-manager.h"
#include "manager-interface.h"
#include <QDebug>
#include <QObject>
#include <QDBusReply>
#include <QApplication>
#include <QDBusConnectionInterface>
static void print_help ();
static void parse_args (int argc, char *argv[]);
static void stop_daemon ();
static bool no_daemon = true;
static bool replace = false;
int main (int argc, char* argv[])
{
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
QApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
#endif
PluginManager* manager = NULL;
qDebug( "ukui-settings-daemon starting ...");
QApplication app(argc, argv);
QApplication::setQuitOnLastWindowClosed(false);
QTranslator translator;
translator.load("/usr/share/ukui-settings-daemon/daemon/res/i18n/zh_CN.qm");
app.installTranslator(&translator);
parse_args (argc, argv);
if (replace) stop_daemon ();
manager = PluginManager::getInstance();
if (nullptr == manager) {
qDebug("get plugin manager error");
goto out;
}
if (!manager->managerStart()) {
qDebug( "manager start error!");
goto out;
}
CT_SYSLOG(LOG_INFO, "ukui-settings-daemon started!");
app.exec();
out:
if (manager != NULL) delete manager;
CT_SYSLOG(LOG_DEBUG, "SettingsDaemon finished");
return 0;
}
static void parse_args (int argc, char *argv[])
{
if (argc == 1) return;
for (int i = 1; i < argc; ++i) {
if (0 == QString::compare(QString(argv[i]).trimmed(), QString("--replace"))) {
replace = true;
} else if (0 == QString::compare(QString(argv[i]).trimmed(), QString("--daemon"))) {
no_daemon = false;
} else {
if (argc > 1) {
print_help();
CT_SYSLOG(LOG_DEBUG, " Unsupported command line arguments: '%s'", argv[i]);
exit(0);
}
}
}
}
static void print_help()
{
fprintf(stdout, "%s\n%s\n%s\n%s\n\n", \
"Useage: ukui-setting-daemon <option> [...]", \
"options:",\
" --replace Replace the current daemon", \
" --daemon Become a daemon(not support now)");
}
static void stop_daemon ()
{
QString ukuiDaemonBusName = UKUI_SETTINGS_DAEMON_DBUS_NAME;
QString ukuiDaemonBusPath = UKUI_SETTINGS_DAEMON_DBUS_PATH;
bool isStarting = QDBusConnection::sessionBus().interface()->isServiceRegistered(ukuiDaemonBusName);
if (isStarting) {
// close current
PluginManagerDBus pmd(ukuiDaemonBusName, ukuiDaemonBusPath, QDBusConnection::sessionBus());
QDBusPendingReply<> reply = pmd.managerStop();
reply.waitForFinished();
if (reply.isValid()) {
CT_SYSLOG(LOG_DEBUG, "stop current 'ukui-settings-daemon'");
}
}
}