teknoraver / rpms / systemd

Forked from rpms/systemd a month ago
Clone

Blame SOURCES/0267-glyph-util-add-new-glyphs-for-up-down-arrows.patch

594167
From 65038051854a48ed8c86bfcfdddfee9122fc2cab Mon Sep 17 00:00:00 2001
594167
From: Lennart Poettering <lennart@poettering.net>
594167
Date: Wed, 16 Feb 2022 14:53:34 +0100
594167
Subject: [PATCH] glyph-util: add new glyphs for up/down arrows
594167
594167
(cherry picked from commit fc03e80c6b19521ecf4f3af06865b2054e685f9a)
594167
594167
Related: #2118297
594167
---
594167
 src/analyze/analyze-security.c |  2 +-
594167
 src/basic/chase-symlinks.c     |  2 +-
594167
 src/basic/glyph-util.c         | 10 ++++++++--
594167
 src/basic/glyph-util.h         |  5 ++++-
594167
 src/delta/delta.c              | 20 ++++++++++----------
594167
 src/partition/repart.c         |  4 ++--
594167
 src/portable/portable.c        |  6 +++---
594167
 src/portable/portablectl.c     |  4 ++--
594167
 src/shared/cgroup-show.c       |  2 +-
594167
 src/shared/install.c           |  2 +-
594167
 src/test/test-locale-util.c    |  5 ++++-
594167
 11 files changed, 37 insertions(+), 25 deletions(-)
594167
594167
diff --git a/src/analyze/analyze-security.c b/src/analyze/analyze-security.c
594167
index e112922cbf..522d443f8a 100644
594167
--- a/src/analyze/analyze-security.c
594167
+++ b/src/analyze/analyze-security.c
594167
@@ -1902,7 +1902,7 @@ static int assess(const SecurityInfo *info,
594167
                         name = info->id;
594167
 
594167
                 printf("\n%s %sOverall exposure level for %s%s: %s%" PRIu64 ".%" PRIu64 " %s%s %s\n",
594167
-                       special_glyph(SPECIAL_GLYPH_ARROW),
594167
+                       special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                        ansi_highlight(),
594167
                        name,
594167
                        ansi_normal(),
594167
diff --git a/src/basic/chase-symlinks.c b/src/basic/chase-symlinks.c
594167
index 344e7e1bb7..61f8b3351b 100644
594167
--- a/src/basic/chase-symlinks.c
594167
+++ b/src/basic/chase-symlinks.c
594167
@@ -41,7 +41,7 @@ static int log_unsafe_transition(int a, int b, const char *path, unsigned flags)
594167
 
594167
         return log_warning_errno(SYNTHETIC_ERRNO(ENOLINK),
594167
                                  "Detected unsafe path transition %s (owned by %s) %s %s (owned by %s) during canonicalization of %s.",
594167
-                                 strna(n1), strna(user_a), special_glyph(SPECIAL_GLYPH_ARROW), strna(n2), strna(user_b), path);
594167
+                                 strna(n1), strna(user_a), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), strna(n2), strna(user_b), path);
594167
 }
594167
 
594167
 static int log_autofs_mount_point(int fd, const char *path, unsigned flags) {
594167
diff --git a/src/basic/glyph-util.c b/src/basic/glyph-util.c
594167
index 8810738fc3..4583b7412c 100644
594167
--- a/src/basic/glyph-util.c
594167
+++ b/src/basic/glyph-util.c
594167
@@ -39,6 +39,7 @@ const char *special_glyph(SpecialGlyph code) {
594167
                         [SPECIAL_GLYPH_TREE_BRANCH]             = "|-",
594167
                         [SPECIAL_GLYPH_TREE_RIGHT]              = "`-",
594167
                         [SPECIAL_GLYPH_TREE_SPACE]              = "  ",
594167
+                        [SPECIAL_GLYPH_TREE_TOP]                = ",-",
594167
                         [SPECIAL_GLYPH_TRIANGULAR_BULLET]       = ">",
594167
                         [SPECIAL_GLYPH_BLACK_CIRCLE]            = "*",
594167
                         [SPECIAL_GLYPH_WHITE_CIRCLE]            = "*",
594167
@@ -51,7 +52,9 @@ const char *special_glyph(SpecialGlyph code) {
594167
                         [SPECIAL_GLYPH_LIGHT_SHADE]             = "-",
594167
                         [SPECIAL_GLYPH_DARK_SHADE]              = "X",
594167
                         [SPECIAL_GLYPH_SIGMA]                   = "S",
594167
-                        [SPECIAL_GLYPH_ARROW]                   = "->",
594167
+                        [SPECIAL_GLYPH_ARROW_RIGHT]             = "->",
594167
+                        [SPECIAL_GLYPH_ARROW_UP]                = "^",
594167
+                        [SPECIAL_GLYPH_ARROW_DOWN]              = "v",
594167
                         [SPECIAL_GLYPH_ELLIPSIS]                = "...",
594167
                         [SPECIAL_GLYPH_EXTERNAL_LINK]           = "[LNK]",
594167
                         [SPECIAL_GLYPH_ECSTATIC_SMILEY]         = ":-]",
594167
@@ -75,6 +78,7 @@ const char *special_glyph(SpecialGlyph code) {
594167
                         [SPECIAL_GLYPH_TREE_BRANCH]             = "\342\224\234\342\224\200", /* ├─ */
594167
                         [SPECIAL_GLYPH_TREE_RIGHT]              = "\342\224\224\342\224\200", /* └─ */
594167
                         [SPECIAL_GLYPH_TREE_SPACE]              = "  ",                       /*    */
594167
+                        [SPECIAL_GLYPH_TREE_TOP]                = "\u250C\342\224\200",       /* ┌─ */
594167
 
594167
                         /* Single glyphs in both cases */
594167
                         [SPECIAL_GLYPH_TRIANGULAR_BULLET]       = "\342\200\243",             /* ‣ */
594167
@@ -89,9 +93,11 @@ const char *special_glyph(SpecialGlyph code) {
594167
                         [SPECIAL_GLYPH_LIGHT_SHADE]             = "\342\226\221",             /* ░ */
594167
                         [SPECIAL_GLYPH_DARK_SHADE]              = "\342\226\223",             /* ▒ */
594167
                         [SPECIAL_GLYPH_SIGMA]                   = "\316\243",                 /* Σ */
594167
+                        [SPECIAL_GLYPH_ARROW_UP]                = "\u2191",                   /* ↑ (actually called: UPWARDS ARROW) */
594167
+                        [SPECIAL_GLYPH_ARROW_DOWN]              = "\u2193",                   /* ↓ (actually called: DOWNWARDS ARROW) */
594167
 
594167
                         /* Single glyph in Unicode, two in ASCII */
594167
-                        [SPECIAL_GLYPH_ARROW]                   = "\342\206\222",             /* → (actually called: RIGHTWARDS ARROW) */
594167
+                        [SPECIAL_GLYPH_ARROW_RIGHT]             = "\342\206\222",             /* → (actually called: RIGHTWARDS ARROW) */
594167
 
594167
                         /* Single glyph in Unicode, three in ASCII */
594167
                         [SPECIAL_GLYPH_ELLIPSIS]                = "\342\200\246",             /* … (actually called: HORIZONTAL ELLIPSIS) */
594167
diff --git a/src/basic/glyph-util.h b/src/basic/glyph-util.h
594167
index ddee210041..7e0a73842a 100644
594167
--- a/src/basic/glyph-util.h
594167
+++ b/src/basic/glyph-util.h
594167
@@ -11,6 +11,7 @@ typedef enum SpecialGlyph {
594167
         SPECIAL_GLYPH_TREE_BRANCH,
594167
         SPECIAL_GLYPH_TREE_RIGHT,
594167
         SPECIAL_GLYPH_TREE_SPACE,
594167
+        SPECIAL_GLYPH_TREE_TOP,
594167
         SPECIAL_GLYPH_TRIANGULAR_BULLET,
594167
         SPECIAL_GLYPH_BLACK_CIRCLE,
594167
         SPECIAL_GLYPH_WHITE_CIRCLE,
594167
@@ -20,7 +21,9 @@ typedef enum SpecialGlyph {
594167
         SPECIAL_GLYPH_MU,
594167
         SPECIAL_GLYPH_CHECK_MARK,
594167
         SPECIAL_GLYPH_CROSS_MARK,
594167
-        SPECIAL_GLYPH_ARROW,
594167
+        SPECIAL_GLYPH_ARROW_RIGHT,
594167
+        SPECIAL_GLYPH_ARROW_UP,
594167
+        SPECIAL_GLYPH_ARROW_DOWN,
594167
         SPECIAL_GLYPH_ELLIPSIS,
594167
         SPECIAL_GLYPH_LIGHT_SHADE,
594167
         SPECIAL_GLYPH_DARK_SHADE,
594167
diff --git a/src/delta/delta.c b/src/delta/delta.c
594167
index eafe1c05c4..aa5a546bce 100644
594167
--- a/src/delta/delta.c
594167
+++ b/src/delta/delta.c
594167
@@ -91,7 +91,7 @@ static int notify_override_masked(const char *top, const char *bottom) {
594167
 
594167
         printf("%s%s%s     %s %s %s\n",
594167
                ansi_highlight_red(), "[MASKED]", ansi_normal(),
594167
-               top, special_glyph(SPECIAL_GLYPH_ARROW), bottom);
594167
+               top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom);
594167
         return 1;
594167
 }
594167
 
594167
@@ -101,7 +101,7 @@ static int notify_override_equivalent(const char *top, const char *bottom) {
594167
 
594167
         printf("%s%s%s %s %s %s\n",
594167
                ansi_highlight_green(), "[EQUIVALENT]", ansi_normal(),
594167
-               top, special_glyph(SPECIAL_GLYPH_ARROW), bottom);
594167
+               top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom);
594167
         return 1;
594167
 }
594167
 
594167
@@ -111,7 +111,7 @@ static int notify_override_redirected(const char *top, const char *bottom) {
594167
 
594167
         printf("%s%s%s %s %s %s\n",
594167
                ansi_highlight(), "[REDIRECTED]", ansi_normal(),
594167
-               top, special_glyph(SPECIAL_GLYPH_ARROW), bottom);
594167
+               top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom);
594167
         return 1;
594167
 }
594167
 
594167
@@ -121,7 +121,7 @@ static int notify_override_overridden(const char *top, const char *bottom) {
594167
 
594167
         printf("%s%s%s %s %s %s\n",
594167
                ansi_highlight(), "[OVERRIDDEN]", ansi_normal(),
594167
-               top, special_glyph(SPECIAL_GLYPH_ARROW), bottom);
594167
+               top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom);
594167
         return 1;
594167
 }
594167
 
594167
@@ -131,7 +131,7 @@ static int notify_override_extended(const char *top, const char *bottom) {
594167
 
594167
         printf("%s%s%s   %s %s %s\n",
594167
                ansi_highlight(), "[EXTENDED]", ansi_normal(),
594167
-               top, special_glyph(SPECIAL_GLYPH_ARROW), bottom);
594167
+               top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom);
594167
         return 1;
594167
 }
594167
 
594167
@@ -235,7 +235,7 @@ static int enumerate_dir_d(
594167
                         return -ENOMEM;
594167
                 d = p + strlen(toppath) + 1;
594167
 
594167
-                log_debug("Adding at top: %s %s %s", d, special_glyph(SPECIAL_GLYPH_ARROW), p);
594167
+                log_debug("Adding at top: %s %s %s", d, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
                 k = ordered_hashmap_put(top, d, p);
594167
                 if (k >= 0) {
594167
                         p = strdup(p);
594167
@@ -247,7 +247,7 @@ static int enumerate_dir_d(
594167
                         return k;
594167
                 }
594167
 
594167
-                log_debug("Adding at bottom: %s %s %s", d, special_glyph(SPECIAL_GLYPH_ARROW), p);
594167
+                log_debug("Adding at bottom: %s %s %s", d, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
                 free(ordered_hashmap_remove(bottom, d));
594167
                 k = ordered_hashmap_put(bottom, d, p);
594167
                 if (k < 0) {
594167
@@ -271,7 +271,7 @@ static int enumerate_dir_d(
594167
                         return -ENOMEM;
594167
 
594167
                 log_debug("Adding to drops: %s %s %s %s %s",
594167
-                          unit, special_glyph(SPECIAL_GLYPH_ARROW), basename(p), special_glyph(SPECIAL_GLYPH_ARROW), p);
594167
+                          unit, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), basename(p), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
                 k = ordered_hashmap_put(h, basename(p), p);
594167
                 if (k < 0) {
594167
                         free(p);
594167
@@ -347,7 +347,7 @@ static int enumerate_dir(
594167
                 if (!p)
594167
                         return -ENOMEM;
594167
 
594167
-                log_debug("Adding at top: %s %s %s", basename(p), special_glyph(SPECIAL_GLYPH_ARROW), p);
594167
+                log_debug("Adding at top: %s %s %s", basename(p), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
                 r = ordered_hashmap_put(top, basename(p), p);
594167
                 if (r >= 0) {
594167
                         p = strdup(p);
594167
@@ -356,7 +356,7 @@ static int enumerate_dir(
594167
                 } else if (r != -EEXIST)
594167
                         return r;
594167
 
594167
-                log_debug("Adding at bottom: %s %s %s", basename(p), special_glyph(SPECIAL_GLYPH_ARROW), p);
594167
+                log_debug("Adding at bottom: %s %s %s", basename(p), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), p);
594167
                 free(ordered_hashmap_remove(bottom, basename(p)));
594167
                 r = ordered_hashmap_put(bottom, basename(p), p);
594167
                 if (r < 0)
594167
diff --git a/src/partition/repart.c b/src/partition/repart.c
594167
index 67e379be55..9f95713130 100644
594167
--- a/src/partition/repart.c
594167
+++ b/src/partition/repart.c
594167
@@ -1968,9 +1968,9 @@ static int format_size_change(uint64_t from, uint64_t to, char **ret) {
594167
                 if (from == to || to == UINT64_MAX)
594167
                         t = strdup(FORMAT_BYTES(from));
594167
                 else
594167
-                        t = strjoin(FORMAT_BYTES(from), " ", special_glyph(SPECIAL_GLYPH_ARROW), " ", FORMAT_BYTES(to));
594167
+                        t = strjoin(FORMAT_BYTES(from), " ", special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), " ", FORMAT_BYTES(to));
594167
         } else if (to != UINT64_MAX)
594167
-                t = strjoin(special_glyph(SPECIAL_GLYPH_ARROW), " ", FORMAT_BYTES(to));
594167
+                t = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), " ", FORMAT_BYTES(to));
594167
         else {
594167
                 *ret = NULL;
594167
                 return 0;
594167
diff --git a/src/portable/portable.c b/src/portable/portable.c
594167
index 4c75dc0e0c..c1e253061f 100644
594167
--- a/src/portable/portable.c
594167
+++ b/src/portable/portable.c
594167
@@ -1011,14 +1011,14 @@ static int install_profile_dropin(
594167
 
594167
                 r = copy_file_atomic(from, dropin, 0644, 0, 0, COPY_REFLINK);
594167
                 if (r < 0)
594167
-                        return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
594167
+                        return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dropin);
594167
 
594167
                 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, dropin, from);
594167
 
594167
         } else {
594167
 
594167
                 if (symlink(from, dropin) < 0)
594167
-                        return log_debug_errno(errno, "Failed to link %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
594167
+                        return log_debug_errno(errno, "Failed to link %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dropin);
594167
 
594167
                 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, dropin, from);
594167
         }
594167
@@ -1188,7 +1188,7 @@ static int install_image_symlink(
594167
         (void) mkdir_parents(sl, 0755);
594167
 
594167
         if (symlink(image_path, sl) < 0)
594167
-                return log_debug_errno(errno, "Failed to link %s %s %s: %m", image_path, special_glyph(SPECIAL_GLYPH_ARROW), sl);
594167
+                return log_debug_errno(errno, "Failed to link %s %s %s: %m", image_path, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), sl);
594167
 
594167
         (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, sl, image_path);
594167
         return 0;
594167
diff --git a/src/portable/portablectl.c b/src/portable/portablectl.c
594167
index f4c57e14ae..585568acc1 100644
594167
--- a/src/portable/portablectl.c
594167
+++ b/src/portable/portablectl.c
594167
@@ -433,12 +433,12 @@ static int print_changes(sd_bus_message *m) {
594167
                         break;
594167
 
594167
                 if (streq(type, "symlink"))
594167
-                        log_info("Created symlink %s %s %s.", path, special_glyph(SPECIAL_GLYPH_ARROW), source);
594167
+                        log_info("Created symlink %s %s %s.", path, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), source);
594167
                 else if (streq(type, "copy")) {
594167
                         if (isempty(source))
594167
                                 log_info("Copied %s.", path);
594167
                         else
594167
-                                log_info("Copied %s %s %s.", source, special_glyph(SPECIAL_GLYPH_ARROW), path);
594167
+                                log_info("Copied %s %s %s.", source, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), path);
594167
                 } else if (streq(type, "unlink"))
594167
                         log_info("Removed %s.", path);
594167
                 else if (streq(type, "write"))
594167
diff --git a/src/shared/cgroup-show.c b/src/shared/cgroup-show.c
594167
index 48dd4d8001..f18420c1b6 100644
594167
--- a/src/shared/cgroup-show.c
594167
+++ b/src/shared/cgroup-show.c
594167
@@ -228,7 +228,7 @@ static int show_cgroup_name(
594167
                         printf("%s%s%s %s%s%s: %s\n",
594167
                                prefix,
594167
                                glyph == SPECIAL_GLYPH_TREE_BRANCH ? special_glyph(SPECIAL_GLYPH_TREE_VERTICAL) : "  ",
594167
-                               special_glyph(SPECIAL_GLYPH_ARROW),
594167
+                               special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                                ansi_blue(), x, ansi_normal(),
594167
                                y);
594167
                 }
594167
diff --git a/src/shared/install.c b/src/shared/install.c
594167
index eb5c3d5f91..4c7d0d6cad 100644
594167
--- a/src/shared/install.c
594167
+++ b/src/shared/install.c
594167
@@ -335,7 +335,7 @@ void unit_file_dump_changes(int r, const char *verb, const UnitFileChange *chang
594167
                         if (!quiet)
594167
                                 log_info("Created symlink %s %s %s.",
594167
                                          changes[i].path,
594167
-                                         special_glyph(SPECIAL_GLYPH_ARROW),
594167
+                                         special_glyph(SPECIAL_GLYPH_ARROW_RIGHT),
594167
                                          changes[i].source);
594167
                         break;
594167
                 case UNIT_FILE_UNLINK:
594167
diff --git a/src/test/test-locale-util.c b/src/test/test-locale-util.c
594167
index 3243e3c567..6ec3f7f00b 100644
594167
--- a/src/test/test-locale-util.c
594167
+++ b/src/test/test-locale-util.c
594167
@@ -91,13 +91,16 @@ TEST(dump_special_glyphs) {
594167
         dump_glyph(SPECIAL_GLYPH_TREE_BRANCH);
594167
         dump_glyph(SPECIAL_GLYPH_TREE_RIGHT);
594167
         dump_glyph(SPECIAL_GLYPH_TREE_SPACE);
594167
+        dump_glyph(SPECIAL_GLYPH_TREE_TOP);
594167
         dump_glyph(SPECIAL_GLYPH_TRIANGULAR_BULLET);
594167
         dump_glyph(SPECIAL_GLYPH_BLACK_CIRCLE);
594167
         dump_glyph(SPECIAL_GLYPH_WHITE_CIRCLE);
594167
         dump_glyph(SPECIAL_GLYPH_MULTIPLICATION_SIGN);
594167
         dump_glyph(SPECIAL_GLYPH_CIRCLE_ARROW);
594167
         dump_glyph(SPECIAL_GLYPH_BULLET);
594167
-        dump_glyph(SPECIAL_GLYPH_ARROW);
594167
+        dump_glyph(SPECIAL_GLYPH_ARROW_RIGHT);
594167
+        dump_glyph(SPECIAL_GLYPH_ARROW_UP);
594167
+        dump_glyph(SPECIAL_GLYPH_ARROW_DOWN);
594167
         dump_glyph(SPECIAL_GLYPH_ELLIPSIS);
594167
         dump_glyph(SPECIAL_GLYPH_MU);
594167
         dump_glyph(SPECIAL_GLYPH_CHECK_MARK);