summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CommLayerServerDBus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/CommLayerServerDBus.h')
-rw-r--r--src/Daemon/CommLayerServerDBus.h34
1 files changed, 2 insertions, 32 deletions
diff --git a/src/Daemon/CommLayerServerDBus.h b/src/Daemon/CommLayerServerDBus.h
index 8824ca3..fffdd78 100644
--- a/src/Daemon/CommLayerServerDBus.h
+++ b/src/Daemon/CommLayerServerDBus.h
@@ -1,55 +1,25 @@
#ifndef COMMLAYERSERVERDBUS_H_
#define COMMLAYERSERVERDBUS_H_
-#include <dbus-c++/dbus.h>
-#include <dbus/dbus.h>
-#include <dbus-c++/glib-integration.h>
#include "CommLayerServer.h"
class CCommLayerServerDBus
-: public CCommLayerServer,
- public DBus::InterfaceAdaptor,
-// public DBus::IntrospectableAdaptor,
- public DBus::ObjectAdaptor
+: public CCommLayerServer
{
- private:
- DBus::Connection *m_pConn;
- static DBus::Connection *init_dbus(CCommLayerServerDBus *self);
-
public:
CCommLayerServerDBus();
virtual ~CCommLayerServerDBus();
- /* DBus call handlers */
- private:
- DBus::Message _GetCrashInfos_stub(const DBus::CallMessage &call);
- DBus::Message _CreateReport_stub(const DBus::CallMessage &call);
- DBus::Message _Report_stub(const DBus::CallMessage &call);
- DBus::Message _DeleteDebugDump_stub(const DBus::CallMessage &call);
- DBus::Message _GetJobResult_stub(const DBus::CallMessage &call);
- DBus::Message _GetPluginsInfo_stub(const DBus::CallMessage &call);
- DBus::Message _GetPluginSettings_stub(const DBus::CallMessage &call);
- DBus::Message _SetPluginSettings_stub(const DBus::CallMessage &call);
- DBus::Message _RegisterPlugin_stub(const DBus::CallMessage &call);
- DBus::Message _UnRegisterPlugin_stub(const DBus::CallMessage &call);
-
/* DBus signal senders */
- public:
virtual void Crash(const std::string& progname, const std::string& uid);
virtual void AnalyzeComplete(const map_crash_report_t& arg1);
virtual void Error(const std::string& arg1);
virtual void Update(const std::string& pMessage, uint64_t pJobID);
//the job id should be enough in jobdone
virtual void JobDone(const std::string& pDest, uint64_t pJobID);
- virtual void JobStarted(const std::string &pDest, uint64_t pJobID);
+ virtual void JobStarted(const std::string& pDest, uint64_t pJobID);
virtual void Warning(const std::string& pMessage);
virtual void Warning(const std::string& pMessage, uint64_t pJobID);
};
-/*
- * This must be done before instances of CCommLayerServerDBus are created
- * (otherwise "new DBus::Connection(DBus::Connection::SystemBus())" fails)
- */
-void attach_dbus_dispatcher_to_glib_main_context();
-
#endif