-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchead
executable file
·178 lines (133 loc) · 4.08 KB
/
chead
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#!/bin/bash
set -euo pipefail
# Prints a Centered HEADer. i.e: the function header bellow.
# Dependencies:
# rev
# -------------------------------- Functions -------------------------------- #
Usage()
{
while read -r; do
printf '%s\n' "$REPLY"
done <<-EOF
Usage: chead [OPTS] TEXT
-h, --help - Display this help information.
-l N, --max-length=N - The max length of the header. (DEFAULT: 80)
-m, --mirror-start - If the start header char should be mirror to the end.
-p, --padding - If the header elements should be padded with a space.
-s C, --start=C - The character(s) that starts the header. (DEFAULT: #)
-z C, --separator=C - The character(s) used to separate elements. (DEFAULT: -)
The use of '--' to ignore proceeding options is supported.
Examples:
Default behaviour:
'''
$ chead -- Hello World
#----------------------------------Hello World----------------------------------
'''
Change max length:
'''
$ chead -l 40 'Hello World'
#--------------Hello World--------------
'''
Mirror the start character:
'''
$ chead -m 'Hello World'
#---------------------------------Hello World---------------------------------#
'''
Include padding between header elements:
'''
$ chead -p 'Hello World'
# -------------------------------- Hello World --------------------------------
'''
Change the start or separator character(s):
'''
$ chead -s '|' -z = 'Hello World'
|==================================Hello World==================================
'''
EOF
}
Err()
{
printf "Err: %s\n" "$2" 1>&2
# shellcheck disable=2086
(($1 > 0)) && exit $1
}
IsDigit()
{
[[ $2 =~ ^[[:digit:]]+$ ]] || Err 1 "Option '$1' requires an positive integer."
}
# ----------------------------- Input Processing ----------------------------- #
(($# == 0)) && Err 1 "Argument(s) required."
MirrorStart=false
MaxLength=80
Margin=false
SeparatorChar="-"
StartChar="#"
while [[ -n $1 ]]; do
case $1 in
--)
shift
break
;;
--help | -h)
Usage
exit 0
;;
--mirror-start | -m) MirrorStart=true ;;
--max-length=*)
IsDigit "${1%%=*}" "${1#*=}"
MaxLength=${1#*=}
;;
-l)
IsDigit "$1" "$2"
MaxLength=$2
shift
;;
--padding | -p) Margin=true ;;
--start=*) StartChar="${1#*=}" ;;
-s)
StartChar="$2"
shift
;;
--separator=*) SeparatorChar="${1#*=}" ;;
-z)
SeparatorChar="$2"
shift
;;
-*) Err 1 "Incorrect option(s) specified." ;;
*) break ;;
esac
shift
done
[[ -z $SeparatorChar ]] && Err 1 "The character used as separator cannot be empty."
HeaderText="$*"
[[ -z $HeaderText ]] && Err 1 "Header TEXT is required."
if [[ $Margin == true ]]; then
StartChar="$StartChar "
HeaderText=" $HeaderText "
fi
StartCharCount=${#StartChar}
if [[ $MirrorStart == true ]]; then
StartCharCount=$((${#StartChar} * 2))
fi
# TODO: Add better error message ( include the actual elements ).
((${#HeaderText} + StartCharCount + ${#SeparatorChar} * 2 > MaxLength)) \
&& Err 1 "The combination of all elements is higher than '$MaxLength'"
# ----------------------------------- Main ----------------------------------- #
SeparatorLength=$((MaxLength - ${#HeaderText} - ${#StartChar}))
if [[ $MirrorStart == true ]]; then
SeparatorLength=$((SeparatorLength - ${#StartChar}))
fi
SeparatorLength=$((SeparatorLength / 2 / ${#SeparatorChar} - 1))
for ((I = 0; I <= SeparatorLength; I++)); do
Separator+="$SeparatorChar"
done
printf -v Result "%s%s%s%s" "$StartChar" "$Separator" "$HeaderText" "$Separator"
# TODO: Rename MAX_LENGTH to TARGET_LENGTH, and if string doesn't equal to
# TARGET_LENGTH, repeat 'PADDING' until 'Result' >= TARGET_LENGTH, then
# truncate it if bigger. I could also just add a new flag to achieve that
# instead, and keep both behaviours.
if [[ $MirrorStart == true ]]; then
printf "%s%s\n" "$Result" "$(rev <<<"$StartChar")"
else
echo "$Result"
fi