1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2023 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>
#include <sys/types.h>
#include <signal.h>
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;
PluginManager* manager = nullptr;
void handler(int no)
{
USD_LOG(LOG_DEBUG,"catch SIGTERM signal, with exitcode %d",no);
if (manager)
manager->managerStop();
QApplication::exit(15);
}
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
QApplication app(argc, argv);
USD_LOG (LOG_DEBUG, "Activating %s plugin compilation time:[%s] [%s]",MODULE_NAME,__DATE__,__TIME__);
signal(SIGTERM, &handler);
QApplication::setQuitOnLastWindowClosed(false);
QTranslator translator;
if (translator.load(QLocale(), "ukui-settings-daemon", "_", QM_FILES_INSTALL_PATH))
app.installTranslator(&translator);
else {
USD_LOG(LOG_DEBUG, "Load translations file %s failed", QLocale::system().name().toLatin1().data());
}
parse_args (argc, argv);
if (replace) stop_daemon ();
manager = PluginManager::getInstance();
if (!manager) {
return 0;
}
bool res = manager->managerStart();
if (!res) {
// USD_LOG(LOG_INFO, "manager start error!");
return 0;
}
USD_LOG(LOG_INFO, "ukui-settings-daemon started!");
return app.exec();
}
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();
USD_LOG(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();
sleep(2);
reply.waitForFinished();
if (reply.isValid()) {
//USD_LOG(LOG_DEBUG, "stop current 'ukui-settings-daemon'");
}
}
}
|