unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Christopher Allan Webber <cwebber@dustycloud.org>
To: guix-devel@gnu.org
Subject: [herd] Have status display services as a bulleted list.
Date: Wed, 23 Nov 2016 15:03:49 -0600	[thread overview]
Message-ID: <87oa15j4cq.fsf@dustycloud.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 2716 bytes --]

I don't know about you, but I am totally unable to read the
"herd status" line as it exists in the current state.  I mean, I love
sexps, but even I don't like a completely flat and ungreppable list
printed to stdout.

*** Previous output ***

cwebber@oolong:~/devel/shepherd$ sudo herd -s /var/run/shepherd/socket status
Started: (file-system-/run/systemd xorg-server file-system-/sys/fs/cgroup/cpuacct file-system-/mnt/debian syslogd term-tty1 root-file-system file-system-/sys/fs/cgroup/blkio avahi-daemon file-system-/sys/fs/cgroup upower-daemon console-font-tty6 console-font-tty3 nscd file-system-/run/user file-system-/sys/fs/cgroup/memory file-system-/dev/pts loopback term-tty2 user-processes term-tty4 postgres file-system-/sys/fs/cgroup/perf_event file-system-/sys/fs/cgroup/cpuset device-mapping-home-luks guix-daemon file-system-/sys/fs/cgroup/elogind file-system-/sys/fs/cgroup/devices file-system-/dev/shm dbus-system console-font-tty5 term-tty6 host-name term-tty3 file-system-/sys/fs/cgroup/hugetlb file-system-/sys/fs/cgroup/cpu file-system-/home networking ntpd console-font-tty4 urandom-seed user-file-
 systems file-system-/sys/fs/cgroup/freezer file-system-/gnu/store root console-font-tty2 term-tty5 console-font-tty1 udev)
Stopped: (ssh-daemon)

*** New output ***

cwebber@oolong:~/devel/shepherd$ sudo ./herd -s /var/run/shepherd/socket status
Started:
 + file-system-/run/systemd
 + xorg-server
 + file-system-/sys/fs/cgroup/cpuacct
 + file-system-/mnt/debian
 + syslogd
 + term-tty1
 + root-file-system
 + file-system-/sys/fs/cgroup/blkio
 + avahi-daemon
 + file-system-/sys/fs/cgroup
 + upower-daemon
 + console-font-tty6
 + console-font-tty3
 + nscd
 + file-system-/run/user
 + file-system-/sys/fs/cgroup/memory
 + file-system-/dev/pts
 + loopback
 + term-tty2
 + user-processes
 + term-tty4
 + postgres
 + file-system-/sys/fs/cgroup/perf_event
 + file-system-/sys/fs/cgroup/cpuset
 + device-mapping-home-luks
 + guix-daemon
 + file-system-/sys/fs/cgroup/elogind
 + file-system-/sys/fs/cgroup/devices
 + file-system-/dev/shm
 + dbus-system
 + console-font-tty5
 + term-tty6
 + host-name
 + term-tty3
 + file-system-/sys/fs/cgroup/hugetlb
 + file-system-/sys/fs/cgroup/cpu
 + file-system-/home
 + networking
 + ntpd
 + console-font-tty4
 + urandom-seed
 + user-file-systems
 + file-system-/sys/fs/cgroup/freezer
 + file-system-/gnu/store
 + root
 + console-font-tty2
 + term-tty5
 + console-font-tty1
 + udev
Stopped:
 - ssh-daemon

Whew!  I can read that finally.  And grep it too!

Speaking of grepping, the new bulleted behavior uses a "+" for services
enabled, and a "-" for disabled services.  That way if you do a grep,
you'll still know whether it was enabled/disabled.

 - Chris


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-herd-Have-status-display-services-as-a-bulleted-list.patch --]
[-- Type: text/x-patch, Size: 1685 bytes --]

From d9391382286b1dc5a0719c9e1e6ac1e5941bbb87 Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Wed, 23 Nov 2016 14:53:18 -0600
Subject: [PATCH] herd: Have status display services as a bulleted list.

* modules/shepherd/scripts/herd.scm (display-status-summary): Display
services as an ascii bulleted list.
---
 modules/shepherd/scripts/herd.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/modules/shepherd/scripts/herd.scm b/modules/shepherd/scripts/herd.scm
index 0ad52b2..06256c1 100644
--- a/modules/shepherd/scripts/herd.scm
+++ b/modules/shepherd/scripts/herd.scm
@@ -46,6 +46,11 @@ of pairs."
 
 (define (display-status-summary services)
   "Display a summary of the status of all of SERVICES."
+  (define (display-services header bullet services)
+    (display header)
+    (for-each (lambda (service)
+                (format #t " ~a ~a~%" bullet (service-canonical-name service)))
+              services))
   (call-with-values
       (lambda ()
         (partition (match-lambda
@@ -53,10 +58,10 @@ of pairs."
                       (car (assoc-ref properties 'running))))
                    services))
     (lambda (started stopped)
-      (format #t (l10n "Started: ~a~%")
-              (map service-canonical-name started))
-      (format #t (l10n "Stopped: ~a~%")
-              (map service-canonical-name stopped)))))
+      (display-services (l10n "Started:\n") "+"
+                        started)
+      (display-services (l10n "Stopped:\n") "-"
+                        stopped))))
 
 (define (display-detailed-status services)
   "Display the detailed status of SERVICES."
-- 
2.10.2


             reply	other threads:[~2016-11-23 21:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-23 21:03 Christopher Allan Webber [this message]
2016-11-24  8:28 ` [herd] Have status display services as a bulleted list Hartmut Goebel
2016-11-24  9:00   ` Alex Sassmannshausen
2016-11-24 16:16 ` Ludovic Courtès
2016-11-25  4:55   ` Christopher Allan Webber
2016-11-25 23:08     ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87oa15j4cq.fsf@dustycloud.org \
    --to=cwebber@dustycloud.org \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).