-
Notifications
You must be signed in to change notification settings - Fork 392
/
build.awk
executable file
·368 lines (303 loc) · 11.4 KB
/
build.awk
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#!/usr/bin/gawk -f
# Not all 4.x versions of gawk can handle @include without ".awk" extension
# But the build.awk script and the single build should support gawk 4.0+.
@include "include/Commons.awk"
@include "include/Utils.awk"
@include "include/LanguageData.awk"
@include "include/LanguageHelper.awk"
@include "metainfo.awk"
function init() {
BuildPath = "build/"
Trans = BuildPath Command
TransAwk = Trans ".awk"
ManPath = "man/"
Man = ManPath Command ".1"
ManTemplate = Man ".template.md"
ManMarkdown = Man ".md"
ManHtmlTemplate = Man ".template.html"
ManHtml = Man ".html"
PagesPath = "gh-pages/"
BadgeDownload = PagesPath "images/badge-download"
BadgeRelease = PagesPath "images/badge-release"
Index = PagesPath "index.md"
ReadmePath = "./"
ReadmeTemplate = ReadmePath "README.template.md"
Readme = ReadmePath "README.md"
WikiPath = "wiki/"
WikiHome = WikiPath "Home.md"
WikiLanguages = WikiPath "Languages.md"
WikiLanguagesHtml = WikiLanguages ".html"
RegistryPath = "registry/"
MainRegistryTemplate = RegistryPath "index.template.trans"
MainRegistry = RegistryPath "index.trans"
}
function man( text) {
text = readFrom(ManTemplate)
gsub(/\$Version\$/, Version, text)
gsub(/\$ReleaseDate\$/, ReleaseDate, text)
writeTo(text, ManMarkdown)
if (fileExists(ManHtmlTemplate))
system("pandoc -s -f markdown-smart -t html --toc --toc-depth 1 --template " ManHtmlTemplate " " ManMarkdown " -o " ManHtml)
return system("pandoc -s -f markdown-smart -t man " ManMarkdown " -o " Man)
}
function readme( code, col, cols, content, group, i, iso, j, num, r, rows, text) {
text = readFrom(ReadmeTemplate)
content = getOutput("gawk -f translate.awk -- -no-ansi -h")
gsub(/\$usage\$/, content, text)
initBiDi(); initLocale()
# number of language codes with stable support
num = 0
for (code in Locale)
if (Locale[code]["support"] != "unstable")
num++
rows = int(num / 3) + (num % 3 ? 1 : 0)
cols[0][0] = cols[1][0] = cols[2][0] = NULLSTR
i = 0
saveSortedIn = PROCINFO["sorted_in"]
PROCINFO["sorted_in"] = "compName"
for (code in Locale) {
# Ignore unstable languages
if (Locale[code]["support"] == "unstable") continue
col = int(i / rows)
append(cols[col], code)
i++
}
PROCINFO["sorted_in"] = saveSortedIn
r = "| Language | Code | Language | Code | Language | Code |" RS \
"| :------: | :--: | :------: | :--: | :------: | :--: |" RS
for (i = 0; i < rows; i++) {
r = r "| "
for (j = 0; j < 3; j++)
if (cols[j][i]) {
split(getISO(cols[j][i]), group, "-")
iso = group[1]
r = r "**[" getName(cols[j][i]) "](" "http://en.wikipedia.org/wiki/ISO_639:" iso \
")** <br/> **" getEndonym(cols[j][i]) "** | **`" cols[j][i] "`** | "
}
r = r RS
}
gsub(/\$code-list\$/, r, text)
content = readFrom(WikiHome)
gsub(/\$wiki-home\$/, content, text)
writeTo(text, Readme)
return 0
}
function wiki( code, group, iso, language, saveSortedIn) {
initBiDi(); initLocale()
#print "***" length(Locale) "*** *languages in total. "
print "*Generated from the source code of Translate Shell " Version ".*\n" > WikiLanguages
print "*Version: [English](https://github.com/soimort/translate-shell/wiki/Languages) " \
"| [Chinese Simplified](https://github.com/soimort/translate-shell/wiki/Languages-%28%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%29)*\n" > WikiLanguages
print "| Code | Name | Family | [Writing system](https://github.com/soimort/translate-shell/wiki/Writing-Systems-and-Fonts) | Is [RTL](http://en.wikipedia.org/wiki/Right-to-left)? | Has dictionary? |" > WikiLanguages
print "| :--: | ---: | -----: | :------------: | :---------------------------------------------------: | :-------------: |" > WikiLanguages
saveSortedIn = PROCINFO["sorted_in"]
PROCINFO["sorted_in"] = "@ind_num_asc"
for (code in Locale) {
# Ignore unstable languages and non-languages
if (Locale[code]["support"] == "unstable") continue
if (Locale[code]["status"] == "non-language") continue
split(getISO(code), group, "-")
iso = group[1]
#split(getName(code), group, " ")
#language = length(group) == 1 ? group[1] "_language" :
# group[2] ~ /^\(.*\)$/ ? group[1] "_language" : join(group, "_")
print sprintf("| **`%s`** <br/> [`%s`](%s) | **[%s](%s)** <br/> **%s** | %s | `%s` | %s | %s |",
getCode(code), iso, "http://www.ethnologue.com/language/" iso,
getName(code), "http://en.wikipedia.org/wiki/ISO_639:" iso, getEndonym(code),
getFamily(code), getScript(code),
isRTL(code) ? "✓" : NULLSTR,
hasDictionary(code) ? "✓" : NULLSTR) > WikiLanguages
}
PROCINFO["sorted_in"] = saveSortedIn
return system("pandoc -s -t html " WikiLanguages " -o " WikiLanguagesHtml)
}
function doc() {
man()
readme()
wiki()
return 0
}
function readSqueezed(fileName, squeezed, group, line, ret) {
if (fileName ~ /\*$/ || fileName ~ /_$/) # glob simulation
return readSqueezed(fileName ".awk", squeezed)
ret = NULLSTR
if (fileExists(fileName))
while (getline line < fileName) {
match(line, /^[[:space:]]*@include[[:space:]]*"(.*)"$/, group)
if (RSTART) { # @include
if (group[1] ~ /\.awk$/)
append(Includes, group[1])
if (ret) ret = ret RS
ret = ret readSqueezed(group[1], squeezed)
} else if (!squeezed || line = squeeze(line)) { # effective LOC
if (ret) ret = ret RS
ret = ret line
}
}
return ret
}
function build(target, type, i, group, inline, line, temp) {
# Default target: bash
if (!target) target = "bash"
("mkdir -p " parameterize(BuildPath)) | getline
if (target == "bash" || target == "zsh") {
print "#!/usr/bin/env " target > Trans
if (fileExists("DISCLAIMER")) {
print "#" > Trans
while (getline line < "DISCLAIMER")
print "# " line > Trans
print "#" > Trans
}
print "export TRANS_ENTRY=\"$0\"" > Trans
print "if [[ ! $LANG =~ (UTF|utf)-?8$ ]]; then export LANG=en_US.UTF-8; fi" > Trans
print "read -r -d '' TRANS_PROGRAM << 'EOF'" > Trans
print readSqueezed(EntryPoint, TRUE) > Trans
print "EOF" > Trans
print "read -r -d '' TRANS_MANPAGE << 'EOF'" > Trans
if (fileExists(Man))
while (getline line < Man)
print line > Trans
print "EOF" > Trans
print "export TRANS_MANPAGE" > Trans
if (type == "release")
print "export TRANS_BUILD=release" temp > Trans
else {
temp = getGitHead()
if (temp)
print "export TRANS_BUILD=git:" temp > Trans
}
print "gawk -f <(echo -E \"$TRANS_PROGRAM\") - \"$@\"" > Trans
("chmod +x " parameterize(Trans)) | getline
# Rebuild EntryScript
print "#!/bin/sh" > EntryScript
print "export TRANS_DIR=`dirname $0`" > EntryScript
print "gawk \\" > EntryScript
for (i = 0; i < length(Includes) - 1; i++)
print "-i \"${TRANS_DIR}/" Includes[i] "\" \\" > EntryScript
print "-f \"${TRANS_DIR}/" Includes[i] "\" -- \"$@\"" > EntryScript
("chmod +x " parameterize(EntryScript)) | getline
return 0
} else if (target == "awk" || target == "gawk") {
"uname -s" | getline temp
print (temp == "Darwin" ?
"#!/usr/bin/env gawk -f" : # macOS
"#!/usr/bin/gawk -f") > TransAwk
print readSqueezed(EntryPoint, TRUE) > TransAwk
("chmod +x " parameterize(TransAwk)) | getline
return 0
} else {
w("[FAILED] Unknown target: " ansi("underline", target))
w(" Supported targets: " \
ansi("underline", "bash") ", " \
ansi("underline", "zsh") ", " \
ansi("underline", "gawk"))
return 1
}
}
function clean() {
("rm -f " BuildPath Command "*") | getline
return 0
}
function release( content, group, sha1, size, temp, text) {
d("Updating registry ...")
# Update registry
text = readFrom(MainRegistryTemplate)
gsub(/\$Version\$/, Version, text)
writeTo(text, MainRegistry)
d("Updating gh-pages/images ...")
# Update gh-pages/images/badge-release
text = readFrom(BadgeRelease ".temp")
gsub(/\$Version\$/, Version, text)
writeTo(text, BadgeRelease)
system("save-to-png " BadgeRelease)
# Update gh-pages/images/badge-download
("wc -c " Trans) | getline temp
split(temp, group)
size = int(group[1] / 1000)
text = readFrom(BadgeDownload ".temp")
gsub(/\$Size\$/, size, text)
writeTo(text, BadgeDownload)
system("save-to-png " BadgeDownload)
d("Updating gh-pages/index.md ...")
# Update gh-pages/index.md
("sha1sum " Trans) | getline temp
split(temp, group)
sha1 = group[1]
content = readFrom(Readme)
text = readFrom(Index ".temp")
gsub(/\$sha1\$/, sha1, text)
gsub(/\$Version\$/, Version, text)
gsub(/\$readme\$/, content, text)
writeTo(text, Index)
return 0
}
function test() {
return 0
}
BEGIN {
init()
pos = 0
while (ARGV[++pos]) {
# -target TARGET
match(ARGV[pos], /^--?target(=(.*)?)?$/, group)
if (RSTART) {
target = tolower(group[2] ? group[2] : ARGV[++pos])
continue
}
# -type TYPE
match(ARGV[pos], /^--?type(=(.*)?)?$/, group)
if (RSTART) {
type = tolower(group[2] ? group[2] : ARGV[++pos])
continue
}
# TASK
match(ARGV[pos], /^[^\-]/, group)
if (RSTART) {
append(tasks, ARGV[pos])
continue
}
}
# Default task: build
if (!anything(tasks)) tasks[0] = "build"
for (i = 0; i < length(tasks); i++) {
task = tasks[i]
status = 0
switch (task) {
case "man":
status = man()
break
case "readme":
status = readme()
break
case "wiki":
status = wiki()
break
case "doc":
status = doc()
break
case "build":
status = build(target, type)
break
case "clean":
status = clean()
break
case "release":
status = release()
break
case "test":
status = test()
break
default: # unknown task
status = -1
}
if (status == 0) {
d("[OK] Task " ansi("bold", task) " completed.")
} else if (status < 0) {
w("[FAILED] Unknown task: " ansi("bold", task))
exit 1
} else {
w("[FAILED] Task " ansi("bold", task) " failed.")
exit 1
}
}
}