1/*
2 Copyright (c) 2010 Volker Krause <vkrause@kde.org>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#include "agentserver.h"
21
22#include <shared/akapplication.h>
23#include <shared/akdbus.h>
24#include <shared/akdebug.h>
25
26#include <QtDBus/QDBusConnection>
27#include <QtDBus/QDBusConnectionInterface>
28#include <QtDBus/QDBusError>
29#include <QApplication>
30
31int main(int argc, char **argv)
32{
33 AkGuiApplication app(argc, argv);
34 app.setDescription(QLatin1String("Akonadi Agent Server\nDo not run manually, use 'akonadictl' instead to start/stop Akonadi."));
35 app.parseCommandLine();
36 qApp->setQuitOnLastWindowClosed(false);
37
38 if (!QDBusConnection::sessionBus().interface()->isServiceRegistered(AkDBus::serviceName(AkDBus::ControlLock))) {
39 akError() << "Akonadi control process not found - aborting.";
40 akFatal() << "If you started akonadi_agent_server manually, try 'akonadictl start' instead.";
41 }
42
43 new Akonadi::AgentServer(&app);
44
45 if (!QDBusConnection::sessionBus().registerService(AkDBus::serviceName(AkDBus::AgentServer))) {
46 akFatal() << "Unable to connect to dbus service: " << QDBusConnection::sessionBus().lastError().message();
47 }
48
49 return app.exec();
50}
51