kded_kdeconnect splitted to module and daemon
kded_kdeconnect KDEDModule is a very simple daemon manager now, which allow to start/stop/restart real daemon. kdeconnectd is almost unmodified implementation of Daemon class wrapped with main() and QCoreApplication.
This commit is contained in:
parent
f9bad88aeb
commit
5ee45bce45
6 changed files with 258 additions and 14 deletions
|
@ -28,7 +28,18 @@ set(kded_kdeconnect_SRCS
|
|||
kdebugnamespace.cpp
|
||||
)
|
||||
|
||||
kde4_add_plugin(kded_kdeconnect ${kded_kdeconnect_SRCS})
|
||||
kde4_add_executable(kdeconnectd kdeconnectd.cpp ${kded_kdeconnect_SRCS})
|
||||
|
||||
target_link_libraries(kdeconnectd
|
||||
${KDE4_KDECORE_LIBS}
|
||||
${KDE4_KDEUI_LIBS}
|
||||
${KDE4_KIO_LIBS}
|
||||
${QT_QTNETWORK_LIBRARY}
|
||||
${QJSON_LIBRARIES}
|
||||
${QCA2_LIBRARIES}
|
||||
)
|
||||
|
||||
kde4_add_plugin(kded_kdeconnect kded.cpp ${kded_kdeconnect_SRCS})
|
||||
|
||||
target_link_libraries(kded_kdeconnect
|
||||
${KDE4_KDECORE_LIBS}
|
||||
|
@ -42,19 +53,27 @@ target_link_libraries(kded_kdeconnect
|
|||
include(../macros.cmake)
|
||||
|
||||
generate_and_install_dbus_interface(
|
||||
kded_kdeconnect
|
||||
kdeconnectd
|
||||
daemon.h
|
||||
org.kde.kdeconnect.daemon.xml
|
||||
OPTIONS -a
|
||||
)
|
||||
|
||||
generate_and_install_dbus_interface(
|
||||
kded_kdeconnect
|
||||
kdeconnectd
|
||||
device.h
|
||||
org.kde.kdeconnect.device.xml
|
||||
OPTIONS -a
|
||||
)
|
||||
|
||||
generate_and_install_dbus_interface(
|
||||
kded_kdeconnect
|
||||
kded.h
|
||||
org.kde.kdeconnect.kded.xml
|
||||
OPTIONS -a
|
||||
)
|
||||
|
||||
install(TARGETS kdeconnectd DESTINATION ${LIBEXEC_INSTALL_DIR})
|
||||
install(TARGETS kded_kdeconnect DESTINATION ${PLUGIN_INSTALL_DIR})
|
||||
install(FILES kdeconnect.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded)
|
||||
install(FILES kdeconnect.notifyrc DESTINATION ${DATA_INSTALL_DIR}/kdeconnect)
|
||||
|
|
|
@ -36,13 +36,8 @@
|
|||
#include "backends/lan/lanlinkprovider.h"
|
||||
#include "backends/loopback/loopbacklinkprovider.h"
|
||||
|
||||
K_PLUGIN_FACTORY(KdeConnectFactory, registerPlugin<Daemon>();)
|
||||
K_EXPORT_PLUGIN(KdeConnectFactory("kdeconnect", "kdeconnect"))
|
||||
|
||||
Daemon::Daemon(QObject *parent, const QList<QVariant>&)
|
||||
: KDEDModule(parent)
|
||||
Daemon::Daemon(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
KSharedConfigPtr config = KSharedConfig::openConfig("kdeconnectrc");
|
||||
|
||||
if (!config->group("myself").hasKey("id")) {
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef DAEMON_H
|
||||
#define DAEMON_H
|
||||
#ifndef KDECONNECT_DAEMON_H
|
||||
#define KDECONNECT_DAEMON_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QSet>
|
||||
|
@ -35,13 +35,13 @@
|
|||
#include "backends/linkprovider.h"
|
||||
|
||||
class Daemon
|
||||
: public KDEDModule
|
||||
: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.daemon")
|
||||
|
||||
public:
|
||||
Daemon(QObject *parent, const QList<QVariant>&);
|
||||
Daemon(QObject *parent);
|
||||
~Daemon();
|
||||
|
||||
public Q_SLOTS:
|
||||
|
@ -73,7 +73,6 @@ private:
|
|||
|
||||
// The Initializer object sets things up, and also does cleanup when it goes out of scope
|
||||
QCA::Initializer mQcaInitializer;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
56
kded/kdeconnectd.cpp
Normal file
56
kded/kdeconnectd.cpp
Normal file
|
@ -0,0 +1,56 @@
|
|||
|
||||
#include <sys/socket.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QSocketNotifier>
|
||||
|
||||
#include "daemon.h"
|
||||
|
||||
static int sigtermfd[2];
|
||||
const static char deadbeef = 1;
|
||||
struct sigaction action;
|
||||
|
||||
void sighandler(int signum)
|
||||
{
|
||||
if( signum == SIGTERM || signum == SIGINT)
|
||||
{
|
||||
ssize_t unused = ::write(sigtermfd[0], &deadbeef, sizeof(deadbeef));
|
||||
Q_UNUSED(unused);
|
||||
}
|
||||
}
|
||||
|
||||
void initializeTermHandlers(QCoreApplication* app)
|
||||
{
|
||||
::socketpair(AF_UNIX, SOCK_STREAM, 0, sigtermfd);
|
||||
QSocketNotifier* snTerm = new QSocketNotifier(sigtermfd[1], QSocketNotifier::Read, app);
|
||||
QObject::connect(snTerm, SIGNAL(activated(int)), app, SLOT(quit()));
|
||||
|
||||
action.sa_handler = sighandler;
|
||||
sigemptyset(&action.sa_mask);
|
||||
action.sa_flags = 0;
|
||||
|
||||
sigaction(SIGTERM, &action, NULL);
|
||||
sigaction(SIGINT, &action, NULL);
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
|
||||
initializeTermHandlers(&app);
|
||||
new Daemon(&app);
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
124
kded/kded.cpp
Normal file
124
kded/kded.cpp
Normal file
|
@ -0,0 +1,124 @@
|
|||
/**
|
||||
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
||||
*
|
||||
* 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 2 of
|
||||
* the License or (at your option) version 3 or any later version
|
||||
* accepted by the membership of KDE e.V. (or its successor approved
|
||||
* by the membership of KDE e.V.), which shall act as a proxy
|
||||
* defined in Section 14 of version 3 of the license.
|
||||
*
|
||||
* 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 "kded.h"
|
||||
|
||||
#include <QDBusConnection>
|
||||
#include <QTimer>
|
||||
|
||||
#include <KConfig>
|
||||
#include <KConfigGroup>
|
||||
#include <KPluginFactory>
|
||||
#include <KPluginLoader>
|
||||
#include <KStandardDirs>
|
||||
|
||||
#include "kdebugnamespace.h"
|
||||
|
||||
K_PLUGIN_FACTORY(KdeConnectFactory, registerPlugin<Kded>();)
|
||||
K_EXPORT_PLUGIN(KdeConnectFactory("kdeconnect", "kdeconnect"))
|
||||
|
||||
Kded::Kded(QObject *parent, const QList<QVariant>&)
|
||||
: KDEDModule(parent)
|
||||
, m_daemon(0)
|
||||
{
|
||||
QDBusConnection::sessionBus().registerService("org.kde.kdeconnect");
|
||||
QDBusConnection::sessionBus().registerObject("/modules/kdeconnect/kded", this, QDBusConnection::ExportScriptableContents);
|
||||
start();
|
||||
kDebug(kdeconnect_kded()) << "kded_kdeconnect started";
|
||||
}
|
||||
|
||||
Kded::~Kded()
|
||||
{
|
||||
QDBusConnection::sessionBus().unregisterObject("/modules/kdeconnect/kded");
|
||||
stop();
|
||||
kDebug(kdeconnect_kded()) << "kded_kdeconnect stopped";
|
||||
}
|
||||
|
||||
bool Kded::start()
|
||||
{
|
||||
if (m_daemon)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
const QString daemon = KStandardDirs::locate("exe", "kdeconnectd");
|
||||
kDebug(kdeconnect_kded()) << "Starting daemon " << daemon;
|
||||
m_daemon = new KProcess(this);
|
||||
connect(m_daemon, SIGNAL(error(QProcess::ProcessError)), this, SLOT(onError(QProcess::ProcessError)));
|
||||
connect(m_daemon, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(onFinished(int,QProcess::ExitStatus)));
|
||||
connect(m_daemon, SIGNAL(finished(int,QProcess::ExitStatus)), m_daemon, SLOT(deleteLater()));
|
||||
|
||||
m_daemon->setProgram(daemon);
|
||||
m_daemon->start();
|
||||
if (!m_daemon->waitForStarted(10000))
|
||||
{
|
||||
kError(kdeconnect_kded()) << "Can't start " << daemon;
|
||||
return false;
|
||||
}
|
||||
|
||||
kDebug(kdeconnect_kded()) << "Daemon successfuly started";
|
||||
return true;
|
||||
}
|
||||
|
||||
void Kded::stop()
|
||||
{
|
||||
if (m_daemon)
|
||||
{
|
||||
m_daemon->terminate();
|
||||
if (m_daemon->waitForFinished(10000))
|
||||
{
|
||||
kDebug(kdeconnect_kded()) << "Daemon successfuly stopped";
|
||||
}
|
||||
else
|
||||
{
|
||||
m_daemon->kill();
|
||||
kWarning(kdeconnect_kded()) << "Daemon killed";
|
||||
}
|
||||
m_daemon = 0;
|
||||
}
|
||||
}
|
||||
|
||||
bool Kded::restart()
|
||||
{
|
||||
stop();
|
||||
return start();
|
||||
}
|
||||
|
||||
void Kded::onError(QProcess::ProcessError errorCode)
|
||||
{
|
||||
kError(kdeconnect_kded()) << "Process error code=" << errorCode;
|
||||
}
|
||||
|
||||
void Kded::onFinished(int exitCode, QProcess::ExitStatus status)
|
||||
{
|
||||
m_daemon = 0;
|
||||
|
||||
if (status == QProcess::CrashExit)
|
||||
{
|
||||
kError(kdeconnect_kded()) << "Process crashed code=" << exitCode;
|
||||
kWarning(kdeconnect_kded()) << "Restarting in 5 sec...";
|
||||
QTimer::singleShot(5000, this, SLOT(start()));
|
||||
}
|
||||
else
|
||||
{
|
||||
kWarning(kdeconnect_kded()) << "Process finished code=" << exitCode;
|
||||
}
|
||||
}
|
||||
|
51
kded/kded.h
Normal file
51
kded/kded.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
/**
|
||||
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
||||
*
|
||||
* 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 2 of
|
||||
* the License or (at your option) version 3 or any later version
|
||||
* accepted by the membership of KDE e.V. (or its successor approved
|
||||
* by the membership of KDE e.V.), which shall act as a proxy
|
||||
* defined in Section 14 of version 3 of the license.
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#ifndef KDECONNECT_KDED_H
|
||||
#define KDECONNECT_KDED_H
|
||||
|
||||
#include <KDEDModule>
|
||||
#include <KProcess>
|
||||
|
||||
class Kded
|
||||
: public KDEDModule
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.kded")
|
||||
|
||||
public:
|
||||
Kded(QObject *parent, const QList<QVariant>&);
|
||||
~Kded();
|
||||
|
||||
public Q_SLOTS:
|
||||
|
||||
Q_SCRIPTABLE bool start();
|
||||
Q_SCRIPTABLE void stop();
|
||||
Q_SCRIPTABLE bool restart();
|
||||
|
||||
private Q_SLOTS:
|
||||
void onError(QProcess::ProcessError);
|
||||
void onFinished(int, QProcess::ExitStatus);
|
||||
|
||||
private:
|
||||
KProcess* m_daemon;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue