summaryrefslogtreecommitdiffstats
path: root/tools/shmin.sh
blob: d4386c623c1cab2993d6b6f0c6df72becce245f5 (plain)
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/bin/sh
#
# Shell command language minifier
#
# Copyright (C) 2015  Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

set -u

VERSION='0.1.0'
HT='	'
LF='
'

c=
output=''

die()
{
	local fmt="${1}"
	shift 1

	printf "shmin: ${fmt}\n" "${@}" >&2
	exit 2
}

fgetc()
{
	# Damn command substitutions eat trailing whitespace.  Even if
	# whitespace is the /only/ thing printed and exactly what we want from
	# the command.
	c="$(dd bs=1 count=1 <&3 2>/dev/null; printf '.')"
	c="${c%.}"
}

parse()
{
	local buffer=''
	local escaped=false

	# Check for magic number or other first-line comment.
	fgetc
	if [ "x${c}" = 'x#' ]; then
		# Comment
		fgetc
		if [ "x${c}" = 'x!' ]; then
			# Magic number
			buffer="${buffer}#!"
			while :; do
				fgetc
				buffer="${buffer}${c}"
				if [ "x${c}" = "x${LF}" ]; then
					break
				fi
			done
		else
			while :; do
				if [ "x${c}" = "x${LF}" ]; then
					break
				fi
				fgetc
			done
		fi
	fi

	# Strip leading whitespace on the first line.
	while :; do
		case "${c}" in
			' ' | "${HT}" | "${LF}")
				;;
			*)
				break
				;;
		esac
		fgetc
	done

	# Parse the rest of the file.
	# Like any good parser, this is some very ugly and fragile code.
	# Whitespace code must come before comment code must come before newline
	# code must come before everything else.
	while :; do
		if [ "x${c}" = 'x' ]; then
			break
		fi
		if [ "x${c}" = 'x ' ] || [ "x${c}" = "x${HT}" ]; then
			# Whitespace
			while :; do
				fgetc
				case "${c}" in
					' ' | "${HT}")
						;;
					"${LF}" | '#')
						# Eat trailing whitespace.
						break
						;;
					'') return 1;;
					*)
						# Condense whitespace.
						buffer="${buffer} "
						break
						;;
				esac
			done
		fi
		if [ "x${c}" = 'x#' ]; then
			# Comment
			while :; do
				fgetc
				if [ "x${c}" = "x${LF}" ]; then
					break
				fi
				[ "x${c}" = 'x' ] && return 1
			done
		fi
		if [ "x${c}" = "x${LF}" ]; then
			# Strip empty lines and leading whitespace.
			while :; do
				fgetc
				case "${c}" in
					' ' | "${HT}" | "${LF}")
						;;
					*)
						buffer="${buffer}${LF}"
						break
						;;
				esac
			done
		fi
		if [ "x${c}" = 'x\' ]; then
			# Backslash
			buffer="${buffer}${c}"
			fgetc
			buffer="${buffer}${c}"
			[ "x${c}" = 'x' ] && return 1
			continue
		fi
		if [ "x${c}" = "x'" ]; then
			# Single quotes
			buffer="${buffer}${c}"
			while :; do
				fgetc
				buffer="${buffer}${c}"
				if [ "x${c}" = "x'" ]; then
					break
				fi
				[ "x${c}" = 'x' ] && return 1
			done
			fgetc
			continue
		fi
		if [ "x${c}" = 'x"' ]; then
			# Double quotes
			buffer="${buffer}${c}"
			while :; do
				fgetc
				buffer="${buffer}${c}"
				if ${escaped}; then
					escaped=false
					continue
				fi
				if [ "x${c}" = 'x\' ]; then
					escaped=true
					continue
				fi
				if [ "x${c}" = 'x"' ]; then
					break
				fi
				[ "x${c}" = 'x' ] && return 1
			done
			fgetc
			continue
		fi
		buffer="${buffer}${c}"
		fgetc
	done

	printf '%s' "${buffer}"
}

minify()
{
	local input="${1}"
	local buffer=''

	# Open input file.
	if ! exec 3<"${input}"; then
		die 'Cannot open file "%s"' "${input}"
	fi

	# Parse input.
	if ! buffer="$(parse)"; then
		die 'Syntax error in input'
		exec 3<&-
	fi

	# We made it.  Now close input file.
	if ! exec 3<&-; then
		die 'Cannot close file "%s"' "${input}"
	fi

	# Write the output.
	if [ "x${output}" = 'x-' ]; then
		printf '%s\n' "${buffer}"
	else
		if ! printf '%s\n' "${buffer}" >"${output}~"; then
			die 'Cannot write file "%s"' "${output}~"
		fi
		if ! cat "${output}~" >"${output}"; then
			die 'Cannot rename file to "%s"' "${output}"
		fi
		if ! rm "${output}~"; then
			die 'Cannot remove file "%s"' "${output}~"
		fi
	fi
}

usage()
{
	printf 'Usage: %s [option ...] <file>\n' "${0}"
}

help()
{
	usage
	cat <<EOF
Options:
  -h           Display this information
  -V           Display minifier version information
  -o <output>  Write the minified output to <output>, instead of replacing the
               existing file
EOF
}

version()
{
	cat <<EOF
shmin ${VERSION}
Copyright (C) 2015  Patrick "P. J." McDermott
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
EOF
}

main()
{
	local input=

	while getopts 'hVo:' opt; do
		case "${opt}" in
			'h')
				help
				exit
				;;
			'V')
				version
				exit
				;;
			'o')
				output="${OPTARG}"
				;;
		esac
	done
	shift $(($OPTIND - 1))

	if [ ${#} -ne 1 ]; then
		usage >&2
		exit 1
	fi
	input="${1}"

	if [ "x${output}" = 'x' ]; then
		output="${input}"
	fi

	minify "${input}"
}

main "${@}"