1 # Pretty printing macros.
3 # Author: Philippe Proulx <pproulx@efficios.com>
7 # PPRINT_INIT(): initializes the pretty printing system.
9 # Use this macro before using any other PPRINT_* macro.
10 AC_DEFUN([PPRINT_INIT], [
11 m4_define([PPRINT_CONFIG_TS], [50])
12 m4_define([PPRINT_CONFIG_INDENT], [2])
16 # find tput, which tells us if colors are supported and gives us color codes
17 AC_PATH_PROG([pprint_tput], [tput])
19 AS_IF([test -n "$pprint_tput"], [
20 AS_IF([test -n "$PS1" && test `"$pprint_tput" colors` -eq 256 && test -t 1], [
21 # interactive shell and colors supported and standard output
22 # file descriptor is opened on a terminal
23 PPRINT_COLOR_TXTBLK="`"$pprint_tput" setaf 0`"
24 PPRINT_COLOR_TXTBLU="`"$pprint_tput" setaf 4`"
25 PPRINT_COLOR_TXTGRN="`"$pprint_tput" setaf 2`"
26 PPRINT_COLOR_TXTCYN="`"$pprint_tput" setaf 6`"
27 PPRINT_COLOR_TXTRED="`"$pprint_tput" setaf 1`"
28 PPRINT_COLOR_TXTPUR="`"$pprint_tput" setaf 5`"
29 PPRINT_COLOR_TXTYLW="`"$pprint_tput" setaf 3`"
30 PPRINT_COLOR_TXTWHT="`"$pprint_tput" setaf 7`"
31 PPRINT_COLOR_BLD=`"$pprint_tput" bold`
32 PPRINT_COLOR_BLDBLK="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTBLK"
33 PPRINT_COLOR_BLDBLU="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTBLU"
34 PPRINT_COLOR_BLDGRN="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTGRN"
35 PPRINT_COLOR_BLDCYN="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTCYN"
36 PPRINT_COLOR_BLDRED="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTRED"
37 PPRINT_COLOR_BLDPUR="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTPUR"
38 PPRINT_COLOR_BLDYLW="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTYLW"
39 PPRINT_COLOR_BLDWHT="$PPRINT_COLOR_BLD$PPRINT_COLOR_TXTWHT"
40 PPRINT_COLOR_RST="`"$pprint_tput" sgr0`"
43 PPRINT_YES_MSG="$PPRINT_COLOR_BLDGRN$PPRINT_YES_MSG$PPRINT_COLOR_RST"
44 PPRINT_NO_MSG="$PPRINT_COLOR_BLDRED$PPRINT_NO_MSG$PPRINT_COLOR_RST"
47 PPRINT_COLOR_SUBTITLE="$PPRINT_COLOR_BLDCYN"
52 # PPRINT_SET_INDENT(indent): sets the current indentation.
54 # Use PPRINT_INIT() before using this macro.
55 AC_DEFUN([PPRINT_SET_INDENT], [
56 m4_define([PPRINT_CONFIG_INDENT], [$1])
59 # PPRINT_SET_TS(ts): sets the current tab stop.
61 # Use PPRINT_INIT() before using this macro.
62 AC_DEFUN([PPRINT_SET_TS], [
63 m4_define([PPRINT_CONFIG_TS], [$1])
66 # PPRINT_SUBTITLE(subtitle): pretty prints a subtitle.
68 # The subtitle is put as is in a double-quoted shell string so the user
71 # Use PPRINT_INIT() before using this macro.
72 AC_DEFUN([PPRINT_SUBTITLE], [
73 AS_ECHO(["${PPRINT_COLOR_SUBTITLE}$1$PPRINT_COLOR_RST"])
76 AC_DEFUN([_PPRINT_INDENT], [
77 m4_if(PPRINT_CONFIG_INDENT, 0, [
79 m4_for([pprint_i], [0], m4_eval(PPRINT_CONFIG_INDENT * 2 - 1), [1], [
85 # PPRINT_PROP_STRING(title, value, title_color?): pretty prints a
88 # The title is put as is in a double-quoted shell string so the user
91 # The $PPRINT_CONFIG_INDENT variable must be set to the desired indentation
94 # Use PPRINT_INIT() before using this macro.
95 AC_DEFUN([PPRINT_PROP_STRING], [
96 m4_pushdef([pprint_title], [$1])
97 m4_pushdef([pprint_value], [$2])
98 m4_pushdef([pprint_title_color], m4_default([$3], []))
99 m4_pushdef([pprint_title_len], m4_len(pprint_title))
100 m4_pushdef([pprint_spaces_cnt], m4_eval(PPRINT_CONFIG_TS - pprint_title_len - (PPRINT_CONFIG_INDENT * 2) - 1))
102 m4_if(m4_eval(pprint_spaces_cnt <= 0), [1], [
103 m4_define([pprint_spaces_cnt], [1])
106 m4_pushdef([pprint_spaces], [])
108 m4_for([pprint_i], 0, m4_eval(pprint_spaces_cnt - 1), [1], [
109 m4_append([pprint_spaces], [ ])
114 AS_ECHO_N(["pprint_title_color""pprint_title$PPRINT_COLOR_RST:pprint_spaces"])
115 AS_ECHO(["${PPRINT_COLOR_BLD}pprint_value$PPRINT_COLOR_RST"])
117 m4_popdef([pprint_spaces])
118 m4_popdef([pprint_spaces_cnt])
119 m4_popdef([pprint_title_len])
120 m4_popdef([pprint_title_color])
121 m4_popdef([pprint_value])
122 m4_popdef([pprint_title])
125 # PPRINT_PROP_BOOL(title, value, title_color?): pretty prints a boolean
128 # The title is put as is in a double-quoted shell string so the user
131 # The value is evaluated at shell runtime. Its evaluation must be
132 # 0 (false) or 1 (true).
134 # Uses the PPRINT_PROP_STRING() with the "yes" or "no" string.
136 # Use PPRINT_INIT() before using this macro.
137 AC_DEFUN([PPRINT_PROP_BOOL], [
138 m4_pushdef([pprint_title], [$1])
139 m4_pushdef([pprint_value], [$2])
141 test pprint_value -eq 0 && pprint_msg="$PPRINT_NO_MSG" || pprint_msg="$PPRINT_YES_MSG"
144 PPRINT_PROP_STRING(pprint_title, [$pprint_msg], $3)
146 PPRINT_PROP_STRING(pprint_title, [$pprint_msg])
149 m4_popdef([pprint_value])
150 m4_popdef([pprint_title])
153 # PPRINT_PROP_BOOL_CUSTOM(title, value, no_msg, title_color?): pretty prints a boolean
156 # The title is put as is in a double-quoted shell string so the user
159 # The value is evaluated at shell runtime. Its evaluation must be
160 # 0 (false) or 1 (true).
162 # Uses the PPRINT_PROP_STRING() with the "yes" or "no" string.
164 # Use PPRINT_INIT() before using this macro.
165 AC_DEFUN([PPRINT_PROP_BOOL_CUSTOM], [
166 m4_pushdef([pprint_title], [$1])
167 m4_pushdef([pprint_value], [$2])
168 m4_pushdef([pprint_value_no_msg], [$3])
170 test pprint_value -eq 0 && pprint_msg="$PPRINT_NO_MSG (pprint_value_no_msg)" || pprint_msg="$PPRINT_YES_MSG"
173 PPRINT_PROP_STRING(pprint_title, [$pprint_msg], $4)
175 PPRINT_PROP_STRING(pprint_title, [$pprint_msg])
178 m4_popdef([pprint_value_no_msg])
179 m4_popdef([pprint_value])
180 m4_popdef([pprint_title])
183 # PPRINT_WARN(msg): pretty prints a warning message.
185 # The message is put as is in a double-quoted shell string so the user
188 # Use PPRINT_INIT() before using this macro.
189 AC_DEFUN([PPRINT_WARN], [
190 m4_pushdef([pprint_msg], [$1])
193 AS_ECHO(["${PPRINT_COLOR_TXTYLW}WARNING:$PPRINT_COLOR_RST ${PPRINT_COLOR_BLDYLW}pprint_msg$PPRINT_COLOR_RST"])
195 m4_popdef([pprint_msg])
198 # PPRINT_ERROR(msg): pretty prints an error message and exits.
200 # The message is put as is in a double-quoted shell string so the user
203 # Use PPRINT_INIT() before using this macro.
204 AC_DEFUN([PPRINT_ERROR], [
205 m4_pushdef([pprint_msg], [$1])
207 AC_MSG_ERROR([${PPRINT_COLOR_BLDRED}pprint_msg$PPRINT_COLOR_RST])
209 m4_popdef([pprint_msg])