From b152adec93b05c0d01b240e0f28326eb1d8e18e9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 10 Apr 2010 17:37:56 +0200 Subject: dbus: add Dump() D-Bus call --- dbus-manager.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'dbus-manager.c') diff --git a/dbus-manager.c b/dbus-manager.c index 7549164829..2323260dbb 100644 --- a/dbus-manager.c +++ b/dbus-manager.c @@ -49,6 +49,7 @@ " " \ " " \ " " \ + " " \ " " \ " " \ " " \ @@ -330,6 +331,35 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection if (!(reply = dbus_message_new_method_return(message))) goto oom; + } else if (dbus_message_is_method_call(message, "org.freedesktop.systemd1", "Dump")) { + FILE *f; + char *dump = NULL; + size_t size; + + if (!(reply = dbus_message_new_method_return(message))) + goto oom; + + if (!(f = open_memstream(&dump, &size))) + goto oom; + + manager_dump_units(m, f, NULL); + manager_dump_jobs(m, f, NULL); + + if (ferror(f)) { + fclose(f); + free(dump); + goto oom; + } + + fclose(f); + + if (!dbus_message_append_args(reply, DBUS_TYPE_STRING, &dump, DBUS_TYPE_INVALID)) { + free(dump); + goto oom; + } + + free(dump); + } else if (dbus_message_is_method_call(message, "org.freedesktop.DBus.Introspectable", "Introspect")) { char *introspection = NULL; FILE *f; -- cgit v1.2.3-54-g00ecf