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
|
--[[
File l3build-arguments.lua Copyright (C) 2018-2020 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
license or (at your option) any later version. The latest version
of this license is in the file
http://www.latex-project.org/lppl.txt
This file is part of the "l3build bundle" (The Work in LPPL)
and all files in that bundle must be distributed together.
-----------------------------------------------------------------------
The development version of the bundle can be found at
https://github.com/latex3/l3build
for those people who are interested.
--]]
local exit = os.exit
local stderr = io.stderr
local find = string.find
local gmatch = string.gmatch
local match = string.match
local sub = string.sub
local insert = table.insert
-- Parse command line options
option_list =
{
config =
{
desc = "Sets the config(s) used for running tests",
short = "c",
type = "table"
},
date =
{
desc = "Sets the date to insert into sources",
type = "string"
},
debug =
{
desc = "Runs target in debug mode (not supported by all targets)",
type = "boolean"
},
dirty =
{
desc = "Skip cleaning up the test area",
type = "boolean"
},
["dry-run"] =
{
desc = "Dry run for install",
type = "boolean"
},
email =
{
desc = "Email address of CTAN uploader",
type = "string"
},
engine =
{
desc = "Sets the engine(s) to use for running test",
short = "e",
type = "table"
},
epoch =
{
desc = "Sets the epoch for tests and typesetting",
type = "string"
},
file =
{
desc = "Take the upload announcement from the given file",
short = "F",
type = "string"
},
first =
{
desc = "Name of first test to run",
type = "string"
},
force =
{
desc = "Force tests to run if engine is not set up",
short = "f",
type = "boolean"
},
full =
{
desc = "Install all files",
type = "boolean"
},
["halt-on-error"] =
{
desc = "Stops running tests after the first failure",
short = "H",
type = "boolean"
},
help =
{
desc = "Print this message and exit",
short = "h",
type = "boolean"
},
last =
{
desc = "Name of last test to run",
type = "string"
},
message =
{
desc = "Text for upload announcement message",
short = "m",
type = "string"
},
quiet =
{
desc = "Suppresses TeX output when unpacking",
short = "q",
type = "boolean"
},
rerun =
{
desc = "Skip setup: simply rerun tests",
type = "boolean"
},
["show-log-on-error"] =
{
desc = "If 'halt-on-error' stops, show the full log of the failure",
type = "boolean"
},
shuffle =
{
desc = "Shuffle order of tests",
type = "boolean"
},
texmfhome =
{
desc = "Location of user texmf tree",
type = "string"
},
version =
{
desc = "Print version information and exit",
type = "boolean"
}
}
-- This is done as a function (rather than do ... end) as it allows early
-- termination (break)
local function argparse()
local result = { }
local names = { }
local long_options = { }
local short_options = { }
-- Turn long/short options into two lookup tables
for k,v in pairs(option_list) do
if v["short"] then
short_options[v["short"]] = k
end
long_options[k] = k
end
local arg = arg
-- arg[1] is a special case: must be a command or "-h"/"--help"
-- Deal with this by assuming help and storing only apparently-valid
-- input
local a = arg[1]
result["target"] = "help"
if a then
-- No options are allowed in position 1, so filter those out
if a == "--version" then
result["target"] = "version"
elseif not match(a, "^%-") then
result["target"] = a
end
end
-- Stop here if help or version is required
if result["target"] == "help" or result["target"] == "version" then
return result
end
-- An auxiliary to grab all file names into a table
local function remainder(num)
local names = { }
for i = num, #arg do
insert(names, arg[i])
end
return names
end
-- Examine all other arguments
-- Use a while loop rather than for as this makes it easier
-- to grab arg for optionals where appropriate
local i = 2
while i <= #arg do
local a = arg[i]
-- Terminate search for options
if a == "--" then
names = remainder(i + 1)
break
end
-- Look for optionals
local opt
local optarg
local opts
-- Look for and option and get it into a variable
if match(a, "^%-") then
if match(a, "^%-%-") then
opts = long_options
local pos = find(a, "=", 1, true)
if pos then
opt = sub(a, 3, pos - 1)
optarg = sub(a, pos + 1)
else
opt = sub(a, 3)
end
else
opts = short_options
opt = sub(a, 2, 2)
-- Only set optarg if it is there
if #a > 2 then
optarg = sub(a, 3)
end
end
-- Now check that the option is valid and sort out the argument
-- if required
local optname = opts[opt]
if optname then
-- Tidy up arguments
if option_list[optname]["type"] == "boolean" then
if optarg then
local opt = "-" .. (match(a, "^%-%-") and "-" or "") .. opt
stderr:write("Value not allowed for option " .. opt .."\n")
return { target = "help" }
end
else
if not optarg then
optarg = arg[i + 1]
if not optarg then
stderr:write("Missing value for option " .. a .."\n")
return { target = "help" }
end
i = i + 1
end
end
else
stderr:write("Unknown option " .. a .."\n")
return { target = "help" }
end
-- Store the result
if optarg then
if option_list[optname]["type"] == "string" then
result[optname] = optarg
else
local opts = result[optname] or { }
for hit in gmatch(optarg, "([^,%s]+)") do
insert(opts, hit)
end
result[optname] = opts
end
else
result[optname] = true
end
i = i + 1
end
if not opt then
names = remainder(i)
break
end
end
if next(names) then
result["names"] = names
end
return result
end
options = argparse()
-- Sanity check
function check_engines()
if options["engine"] and not options["force"] then
-- Make a lookup table
local t = { }
for _, engine in pairs(checkengines) do
t[engine] = true
end
for _, engine in pairs(options["engine"]) do
if not t[engine] then
print("\n! Error: Engine \"" .. engine .. "\" not set up for testing!")
print("\n Valid values are:")
for _, engine in ipairs(checkengines) do
print(" - " .. engine)
end
print("")
exit(1)
end
end
end
end
|