summaryrefslogtreecommitdiffstats
path: root/src/Daemon
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:19:33 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:19:33 +0200
commit4ffdeb427822df049e9b7516164a32ec9c88ea8b (patch)
treeff7e77acb4b51348d7fb5837c0dd17d22e4a097b /src/Daemon
parentac7499b150a761c87cb39b6ed1c19eb5d4157e01 (diff)
downloadabrt-4ffdeb427822df049e9b7516164a32ec9c88ea8b.tar.gz
abrt-4ffdeb427822df049e9b7516164a32ec9c88ea8b.tar.xz
abrt-4ffdeb427822df049e9b7516164a32ec9c88ea8b.zip
Removed unused file
Diffstat (limited to 'src/Daemon')
-rw-r--r--src/Daemon/DBusServerProxy.h190
-rw-r--r--src/Daemon/Makefile.am2
2 files changed, 1 insertions, 191 deletions
diff --git a/src/Daemon/DBusServerProxy.h b/src/Daemon/DBusServerProxy.h
deleted file mode 100644
index afdfe1b6..00000000
--- a/src/Daemon/DBusServerProxy.h
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- Copyright (C) 2009 Jiri Moskovcak (jmoskovc@redhat.com)
- Copyright (C) 2009 RedHat inc.
-
- 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) 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, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <dbus-c++/dbus.h>
-#include <dbus-c++/glib-integration.h>
-#include "DBusCommon.h"
-
-class CDBusServer_adaptor
-: public DBus::InterfaceAdaptor
-{
-public:
-
- CDBusServer_adaptor()
- : DBus::InterfaceAdaptor(CC_DBUS_IFACE)
- {
- register_method(CDBusServer_adaptor, GetCrashInfos, _GetCrashInfos_stub);
- register_method(CDBusServer_adaptor, GetCrashInfosMap, _GetCrashInfosMap_stub);
- register_method(CDBusServer_adaptor, CreateReport, _CreateReport_stub);
- register_method(CDBusServer_adaptor, Report, _Report_stub);
- register_method(CDBusServer_adaptor, DeleteDebugDump, _DeleteDebugDump_stub);
- }
-/* reveal Interface introspection when we stabilize the API */
-/*
- DBus::IntrospectedInterface *const introspect() const
- {
- static DBus::IntrospectedArgument GetCrashInfos_args[] =
- {
- //{ "uid", "i", true},
- { "info", "a{ss}", false },
- { 0, 0, 0 }
- };
- static DBus::IntrospectedArgument Crash_args[] =
- {
- { "package", "s", false },
- { 0, 0, 0 }
- };
- static DBus::IntrospectedMethod CDBusServer_adaptor_methods[] =
- {
- { "GetCrashInfos", GetCrashInfos_args },
- { 0, 0 },
- { "GetCrashInfosMap", GetCrashInfos_args },
- { 0, 0 }
- };
- static DBus::IntrospectedMethod CDBusServer_adaptor_signals[] =
- {
- { "Crash", Crash_args },
- { 0, 0 }
- };
- static DBus::IntrospectedProperty CDBusServer_adaptor_properties[] =
- {
- { 0, 0, 0, 0 }
- };
- static DBus::IntrospectedInterface CDBusServer_adaptor_interface =
- {
- "com.redhat.abrt",
- CDBusServer_adaptor_methods,
- CDBusServer_adaptor_signals,
- CDBusServer_adaptor_properties
- };
- return &CDBusServer_adaptor_interface;
- }
-*/
-public:
-
- /* properties exposed by this interface, use
- * property() and property(value) to get and set a particular property
- */
-
-public:
-
- /* methods exported by this interface,
- * you will have to implement them in your ObjectAdaptor
- */
- virtual vector_crash_infos_t GetCrashInfos(const std::string &pUID) = 0;
- virtual dbus_vector_map_crash_infos_t GetCrashInfosMap(const std::string &pDBusSender) = 0;
- virtual dbus_map_report_info_t CreateReport(const std::string &pUUID,const std::string &pDBusSender) = 0;
- virtual bool Report(dbus_map_report_info_t pReport) = 0;
- virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pDBusSender) = 0;
-
-public:
-
- /* signal emitters for this interface
- */
- /* Notify the clients (UI) about a new crash */
- void Crash(const std::string& arg1)
- {
- ::DBus::SignalMessage sig("Crash");
- ::DBus::MessageIter wi = sig.writer();
- wi << arg1;
- emit_signal(sig);
- }
- /* Notify the clients that creating a report has finished */
- void AnalyzeComplete(dbus_map_report_info_t arg1)
- {
- ::DBus::SignalMessage sig("AnalyzeComplete");
- ::DBus::MessageIter wi = sig.writer();
- wi << arg1;
- emit_signal(sig);
- }
-
- void Error(const std::string& arg1)
- {
- ::DBus::SignalMessage sig("Error");
- ::DBus::MessageIter wi = sig.writer();
- wi << arg1;
- emit_signal(sig);
- }
-
-
-private:
-
- /* unmarshalers (to unpack the DBus message before calling the actual interface method)
- */
- DBus::Message _GetCrashInfos_stub(const DBus::CallMessage &call)
- {
- DBus::MessageIter ri = call.reader();
-
- std::string argin1; ri >> argin1;
- vector_crash_infos_t argout1 = GetCrashInfos(argin1);
- DBus::ReturnMessage reply(call);
- DBus::MessageIter wi = reply.writer();
- wi << argout1;
- return reply;
- }
-
- DBus::Message _CreateReport_stub(const DBus::CallMessage &call)
- {
- DBus::MessageIter ri = call.reader();
-
- std::string argin1; ri >> argin1;
- dbus_map_report_info_t argout1 = CreateReport(argin1,call.sender());
- DBus::ReturnMessage reply(call);
- DBus::MessageIter wi = reply.writer();
- wi << argout1;
- return reply;
- }
-
- DBus::Message _GetCrashInfosMap_stub(const DBus::CallMessage &call)
- {
- DBus::MessageIter ri = call.reader();
-
- //std::string argin1; ri >> argin1;
- dbus_vector_map_crash_infos_t argout1 = GetCrashInfosMap(call.sender());
- DBus::ReturnMessage reply(call);
- DBus::MessageIter wi = reply.writer();
- wi << argout1;
- return reply;
- }
-
- DBus::Message _Report_stub(const DBus::CallMessage &call)
- {
- DBus::MessageIter ri = call.reader();
-
- dbus_map_report_info_t argin1; ri >> argin1;
- bool argout1 = Report(argin1);
- DBus::ReturnMessage reply(call);
- DBus::MessageIter wi = reply.writer();
- wi << argout1;
- return reply;
- }
-
- DBus::Message _DeleteDebugDump_stub(const DBus::CallMessage &call)
- {
- DBus::MessageIter ri = call.reader();
-
- std::string argin1; ri >> argin1;
- bool argout1 = DeleteDebugDump(argin1,call.sender());
- DBus::ReturnMessage reply(call);
- DBus::MessageIter wi = reply.writer();
- wi << argout1;
- return reply;
- }
-};
-
diff --git a/src/Daemon/Makefile.am b/src/Daemon/Makefile.am
index 01dc622b..61d19207 100644
--- a/src/Daemon/Makefile.am
+++ b/src/Daemon/Makefile.am
@@ -1,5 +1,5 @@
sbin_PROGRAMS = abrt
-abrt_SOURCES = CrashWatcher.cpp CrashWatcher.h Daemon.cpp DBusServerProxy.h \
+abrt_SOURCES = CrashWatcher.cpp CrashWatcher.h Daemon.cpp \
DBusCommon.h Settings.h Settings.cpp
abrt_CPPFLAGS = -I$(srcdir)/../../lib/MiddleWare -I$(srcdir)/../../lib/CommLayer\
-I$(srcdir)/../../inc -I$(srcdir)/../../lib/Utils \