X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-execute.c;h=12523999d48efc2385ddfd1aec3beb042f84297c;hb=21c6dc33a6fc0e8617247fc12123bc667dcde92b;hp=90556274d310ad514c575d8829663de15de36c19;hpb=ebcf1f97de4f6b1580ae55eb56b1a3939fe6b602;p=elogind.git diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c index 90556274d..12523999d 100644 --- a/src/core/dbus-execute.c +++ b/src/core/dbus-execute.c @@ -428,6 +428,42 @@ const sd_bus_vtable bus_exec_vtable[] = { SD_BUS_VTABLE_END }; +static int append_exec_command(sd_bus_message *reply, ExecCommand *c) { + int r; + + assert(reply); + assert(c); + + if (!c->path) + return 0; + + r = sd_bus_message_open_container(reply, 'r', "sasbttttuii"); + if (r < 0) + return r; + + r = sd_bus_message_append(reply, "s", c->path); + if (r < 0) + return r; + + r = sd_bus_message_append_strv(reply, c->argv); + if (r < 0) + return r; + + r = sd_bus_message_append(reply, "bttttuii", + c->ignore, + c->exec_status.start_timestamp.realtime, + c->exec_status.start_timestamp.monotonic, + c->exec_status.exit_timestamp.realtime, + c->exec_status.exit_timestamp.monotonic, + (uint32_t) c->exec_status.pid, + (int32_t) c->exec_status.code, + (int32_t) c->exec_status.status); + if (r < 0) + return r; + + return sd_bus_message_close_container(reply); +} + int bus_property_get_exec_command( sd_bus *bus, const char *path, @@ -437,7 +473,7 @@ int bus_property_get_exec_command( void *userdata, sd_bus_error *ret_error) { - ExecCommand *c = *(ExecCommand**) userdata; + ExecCommand *c = (ExecCommand*) userdata; int r; assert(bus); @@ -447,35 +483,34 @@ int bus_property_get_exec_command( if (r < 0) return r; - LIST_FOREACH(command, c, c) { - if (!c->path) - continue; + r = append_exec_command(reply, c); + if (r < 0) + return r; - r = sd_bus_message_open_container(reply, 'r', "sasbttttuii"); - if (r < 0) - return r; + return sd_bus_message_close_container(reply); +} - r = sd_bus_message_append(reply, "s", c->path); - if (r < 0) - return r; +int bus_property_get_exec_command_list( + sd_bus *bus, + const char *path, + const char *interface, + const char *property, + sd_bus_message *reply, + void *userdata, + sd_bus_error *ret_error) { - r = sd_bus_message_append_strv(reply, c->argv); - if (r < 0) - return r; + ExecCommand *c = *(ExecCommand**) userdata; + int r; - r = sd_bus_message_append(reply, "bttttuii", - c->ignore, - c->exec_status.start_timestamp.realtime, - c->exec_status.start_timestamp.monotonic, - c->exec_status.exit_timestamp.realtime, - c->exec_status.exit_timestamp.monotonic, - (uint32_t) c->exec_status.pid, - (int32_t) c->exec_status.code, - (int32_t) c->exec_status.status); - if (r < 0) - return r; + assert(bus); + assert(reply); + + r = sd_bus_message_open_container(reply, 'a', "(sasbttttuii)"); + if (r < 0) + return r; - r = sd_bus_message_close_container(reply); + LIST_FOREACH(command, c, c) { + r = append_exec_command(reply, c); if (r < 0) return r; }