status: Import systemd bits to use UTF-8 circle

It's slightly prettier, but this is just laying some
groundwork/precedent for importing more systemd code and using it for
our formatting.

Closes: #295
Approved by: jlebon
This commit is contained in:
Colin Walters 2016-05-29 14:15:29 -04:00 committed by Atomic Bot
parent d99df468c7
commit 20e69a9692
4 changed files with 105 additions and 2 deletions

View File

@ -39,6 +39,8 @@ librpmostreepriv_la_SOURCES = \
src/libpriv/rpmostree-unpacker.h \
src/libpriv/rpmostree-output.c \
src/libpriv/rpmostree-output.h \
src/libpriv/libsd-locale-util.c \
src/libpriv/libsd-locale-util.h \
$(NULL)
librpmostreepriv_la_CFLAGS = \

View File

@ -25,6 +25,7 @@
#include "rpmostree-builtins.h"
#include "rpmostree-dbus-helpers.h"
#include "libsd-locale-util.h"
#include <libglnx.h>
@ -246,8 +247,8 @@ rpmostree_builtin_status (int argc,
/* print deployment info column */
if (!opt_pretty)
{
g_print ("%c %-*s",
is_booted ? '*' : ' ',
g_print ("%s %-*s",
is_booted ? libsd_special_glyph (BLACK_CIRCLE) : " ",
max_timestamp_len+buffer, timestamp_string);
if (max_version_len)

View File

@ -0,0 +1,64 @@
/*** -*- indent-tabs-mode: nil; tab-width: 8 -*-
This file was originally part of systemd.
Copyright 2014 Lennart Poettering
Copyright 2016 Red Hat, Inc.
systemd is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <langinfo.h>
#include <libintl.h>
#include <locale.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include "libsd-locale-util.h"
const char *libsd_special_glyph(SpecialGlyph code) {
static const char* const draw_table_ascii[_SPECIAL_GLYPH_MAX] = {
[TREE_VERTICAL] = "| ",
[TREE_BRANCH] = "|-",
[TREE_RIGHT] = "`-",
[TREE_SPACE] = " ",
[TRIANGULAR_BULLET] = ">",
[BLACK_CIRCLE] = "*",
[ARROW] = "->",
[MDASH] = "-",
};
static const char* const draw_table_utf8[_SPECIAL_GLYPH_MAX] = {
[TREE_VERTICAL] = "\342\224\202 ", /* │ */
[TREE_BRANCH] = "\342\224\234\342\224\200", /* ├─ */
[TREE_RIGHT] = "\342\224\224\342\224\200", /* └─ */
[TREE_SPACE] = " ", /* */
[TRIANGULAR_BULLET] = "\342\200\243", /* ‣ */
[BLACK_CIRCLE] = "\342\227\217", /* ● */
[ARROW] = "\342\206\222", /* → */
[MDASH] = "\342\200\223", /* */
};
gboolean locale_is_utf8 = g_get_charset (NULL);
if (locale_is_utf8)
return draw_table_utf8[code];
return draw_table_ascii[code];
}

View File

@ -0,0 +1,36 @@
#pragma once
/***
This file was originally part of systemd.
Copyright 2014 Lennart Poettering
systemd is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <glib.h>
typedef enum {
TREE_VERTICAL,
TREE_BRANCH,
TREE_RIGHT,
TREE_SPACE,
TRIANGULAR_BULLET,
BLACK_CIRCLE,
ARROW,
MDASH,
_SPECIAL_GLYPH_MAX
} SpecialGlyph;
const char *libsd_special_glyph(SpecialGlyph code) __attribute__ ((const));