[systemd-devel] [PATCH] [RFC] Add DropIn paths to status message

Oleksii Shevchuk alxchk at gmail.com
Fri Apr 5 09:03:25 PDT 2013


> dctl status null.target
null.target - NYAN
   Loaded: loaded (/home/alxchk/.config/systemd/user/null.target; disabled)
   DropIn: /home/alxchk/.config/systemd/user/null.target.d
                └─( descr.conf; install-1.conf; install.conf )
           /etc/systemd/user/null.target.d
                └─( test.conf )
   Active: active since Пт 2013-04-05 18:59:13 EEST; 1min 10s ago
---
 src/systemctl/systemctl.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)

diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index a7c2eef..bcc284a 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -2225,6 +2225,8 @@ typedef struct UnitStatusInfo {
         const char *source_path;
         const char *default_control_group;
 
+        char **dropin_paths;
+
         const char *load_error;
         const char *result;
 
@@ -2331,6 +2333,48 @@ static void print_status_info(UnitStatusInfo *i) {
                 printf(" %*s: %s%s%s\n",
                        maxlen, "Loaded", on, strna(i->load_state), off);
 
+        if (strv_length(i->dropin_paths) > 0) {
+                char ** dropin;
+                char * last_dir = NULL;
+                bool last = false;
+
+                STRV_FOREACH(dropin, i->dropin_paths) {
+                        const char *dp;
+
+                        if (! last_dir || last) {
+                                char *dd;
+
+                                printf("  %*s ", maxlen, last_dir ? "" : "DropIn:");
+
+                                free(last_dir);
+                                last_dir = strdup(*dropin);
+
+                                if (! last_dir) {
+                                        log_oom();
+                                        return;
+                                }
+
+                                dd = strrchr(last_dir, '/');
+
+                                assert(dd);
+
+                                *dd = '\0';
+
+                                printf("%s\n %*s\t%s( ", last_dir, maxlen, "",
+                                       draw_special_char(DRAW_TREE_RIGHT));
+                        }
+
+                        last = ! (*(dropin + 1) && startswith(*(dropin + 1), last_dir));
+
+                        dp = strrchr(*dropin, '/');
+                        assert(dp);
+
+                        printf("%s%s", dp + 1, last ? " )\n" : "; ");
+                }
+
+                free(last_dir);
+        }
+
         ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state;
 
         if (streq_ptr(i->active_state, "failed")) {
@@ -2771,6 +2815,24 @@ static int status_property(const char *name, DBusMessageIter *iter, UnitStatusIn
 
                         return 0;
 
+                } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING && streq(name, "DropInPaths")) {
+
+                        DBusMessageIter sub;
+
+                        dbus_message_iter_recurse(iter, &sub);
+                        while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING) {
+                                const char *s;
+                                int r;
+
+                                dbus_message_iter_get_basic(&sub, &s);
+
+                                r = strv_extend(&i->dropin_paths, s);
+                                if (r < 0)
+                                        return r;
+
+                                dbus_message_iter_next(&sub);
+                        }
+
                 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING &&
                            streq(name, "Documentation")) {
 
@@ -3106,6 +3168,7 @@ static int show_one(const char *verb, DBusConnection *bus, const char *path, boo
         }
 
         strv_free(info.documentation);
+        strv_free(info.dropin_paths);
         strv_free(info.listen);
 
         if (!streq_ptr(info.active_state, "active") &&
-- 
1.8.1.2



More information about the systemd-devel mailing list