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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
--[[
File l3build-file-functions.lua Copyright (C) 2018 The LaTeX3 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 pairs = pairs
local print = print
local open = io.open
local attributes = lfs.attributes
local currentdir = lfs.currentdir
local chdir = lfs.chdir
local lfs_dir = lfs.dir
local execute = os.execute
local getenv = os.getenv
local remove = os.remove
local os_time = os.time
local os_type = os.type
local luatex_revision = status.luatex_revision
local luatex_version = status.luatex_version
local match = string.match
local sub = string.sub
local gmatch = string.gmatch
local gsub = string.gsub
local insert = table.insert
-- Convert a file glob into a pattern for use by e.g. string.gub
-- Based on https://github.com/davidm/lua-glob-pattern
-- Simplified substantially: "[...]" syntax not supported as is not
-- required by the file patterns used by the team. Also note style
-- changes to match coding approach in rest of this file.
--
-- License for original globtopattern
--[[
(c) 2008-2011 David Manura. Licensed under the same terms as Lua (MIT).
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
(end license)
--]]
local function glob_to_pattern(glob)
local pattern = "^" -- pattern being built
local i = 0 -- index in glob
local char -- char at index i in glob
-- escape pattern char
local function escape(char)
return match(char, "^%w$") and char or "%" .. char
end
-- remove a leading "\" if one is present:
-- this can simple be discarded
local function unescape()
if char == "\\" then
i = i + 1
char = sub(glob,i,i)
if char == "" then
pattern = "[^]"
return false
end
end
return true
end
-- look for the body of a set:
-- char is already the first token
local function collect_set()
while true do
if char == "" then
pattern = "[^]"
return false
elseif char == "]" then
pattern = pattern .. "]"
break
else
if not unescape(char) then break end
local char_one = char
i = i + 1
char = sub(glob,i,i)
if char == "" then
pattern = "[^]"
return false
elseif char == "-" then
i = i + 1
char = sub(glob,i,i)
if char == "" then
pattern = "[^]"
return false
elseif char == "]" then
-- Not a range
pattern = pattern .. escape(char_one) .. "%-]"
return true
else
if not unescape(char) then break end
pattern = pattern .. escape(char_one) .. "-" .. escape(char)
end
elseif char == "]" then
-- Successfully done
pattern = pattern .. escape(char_one) .. "]"
return true
else
pattern = pattern .. escape(char_one)
i = i - 1 -- Back up one
end
end
i = i + 1
char = sub(glob,i,i)
end
return true
end
-- Convert tokens.
while true do
i = i + 1
char = sub(glob, i, i)
if char == "" then
pattern = pattern .. "$"
break
elseif char == "?" then
pattern = pattern .. "."
elseif char == "*" then
pattern = pattern .. ".*"
elseif char == "[" then
-- Search inside a charset
i = i + 1
char = sub(glob,i,i)
if char == "" or char == "]" then -- Matches nothing
pattern = "[^]"
break
elseif char == "^" or char == "!" then
i = i + 1
char = sub(glob,i,i)
if char ~= "]" then -- Matches anything so ignore
pattern = pattern .. "[^"
if not collect_set() then break end
end
else
pattern = pattern .. "["
if not collect_set() then break end
end
elseif char == "\\" then -- Discarded
i = i + 1
char = sub(glob, i, i)
if char == "" then
pattern = pattern .. "\\$"
break
end
pattern = pattern .. escape(char)
else
pattern = pattern .. escape(char)
end
end
return pattern
end
-- Detect the operating system in use
-- Support items are defined here for cases where a single string can cover
-- both Windows and Unix cases: more complex situations are handled inside
-- the support functions
os_concat = ";"
os_null = "/dev/null"
os_pathsep = ":"
os_setenv = "export"
os_yes = "printf 'y\\n%.0s' {1..200}"
os_ascii = "echo \"\""
os_diffext = getenv("diffext") or ".diff"
os_diffexe = getenv("diffexe") or "diff -c --strip-trailing-cr"
os_grepexe = "grep"
os_newline = "\n"
if os_type == "windows" then
os_ascii = "@echo."
os_concat = "&"
os_diffext = getenv("diffext") or ".fc"
os_diffexe = getenv("diffexe") or "fc /n"
os_grepexe = "findstr /r"
os_newline = "\n"
if tonumber(luatex_version) < 100 or
(tonumber(luatex_version) == 100
and tonumber(luatex_revision) < 4) then
os_newline = "\r\n"
end
os_null = "nul"
os_pathsep = ";"
os_setenv = "set"
os_yes = "for /l %I in (1,1,200) do @echo y"
end
-- Deal with the fact that Windows and Unix use different path separators
local function unix_to_win(path)
return gsub(path, "/", "\\")
end
function normalize_path(path)
if os_type == "windows" then
return unix_to_win(path)
end
return path
end
-- Return an absolute path from a relative one
function abspath(path)
local oldpwd = currentdir()
chdir(path)
local result = currentdir()
chdir(oldpwd)
return gsub(result, "\\", "/")
end
-- For cleaning out a directory, which also ensures that it exists
function cleandir(dir)
local errorlevel = mkdir(dir)
if errorlevel ~= 0 then
return errorlevel
end
return rm(dir, "*")
end
-- Copy files 'quietly'
function cp(glob, source, dest)
local errorlevel
for i,_ in pairs(tree(source, glob)) do
local source = source .. "/" .. i
if os_type == "windows" then
if attributes(source)["mode"] == "directory" then
errorlevel = execute(
'xcopy /y /e /i "' .. unix_to_win(source) .. '" "'
.. unix_to_win(dest .. '/' .. i) .. '" > nul'
)
else
errorlevel = execute(
'xcopy /y "' .. unix_to_win(source) .. '" "'
.. unix_to_win(dest .. '/') .. '" > nul'
)
end
else
errorlevel = execute("cp -RLf '" .. source .. "' '" .. dest .. "'")
end
if errorlevel ~=0 then
return errorlevel
end
end
return 0
end
-- OS-dependent test for a directory
function direxists(dir)
local errorlevel
if os_type == "windows" then
errorlevel =
execute("if not exist \"" .. unix_to_win(dir) .. "\" exit 1")
else
errorlevel = execute("[ -d " .. dir .. " ]")
end
if errorlevel ~= 0 then
return false
end
return true
end
function fileexists(file)
local f = open(file, "r")
if f ~= nil then
f:close()
return true
else
return false
end
end
-- Generate a table containing all file names of the given glob or all files
-- if absent
function filelist(path, glob)
local files = { }
local pattern
if glob then
pattern = glob_to_pattern(glob)
end
if direxists(path) then
for entry in lfs_dir(path) do
if pattern then
if match(entry, pattern) then
insert(files, entry)
end
else
if entry ~= "." and entry ~= ".." then
insert(files, entry)
end
end
end
end
return files
end
-- Does what filelist does, but can also glob subdirectories. In the returned
-- table, the keys are paths relative to the given starting path, the values
-- are their counterparts relative to the current working directory.
function tree(path, glob)
local function cropdots(path)
return gsub(gsub(path, "^%./", ""), "/%./", "/")
end
local function always_true()
return true
end
local function is_dir(file)
return attributes(file)["mode"] == "directory"
end
local dirs = {["."] = cropdots(path)}
for pattern, criterion in gmatch(cropdots(glob), "([^/]+)(/?)") do
local criterion = criterion == "/" and is_dir or always_true
function fill(path, dir, table)
for _, file in ipairs(filelist(dir, pattern)) do
local fullpath = path .. "/" .. file
if file ~= "." and file ~= ".." and
fullpath ~= builddir
then
local fulldir = dir .. "/" .. file
if criterion(fulldir) then
table[fullpath] = fulldir
end
end
end
end
local newdirs = {}
if pattern == "**" then
while true do
path, dir = next(dirs)
if not path then
break
end
dirs[path] = nil
newdirs[path] = dir
fill(path, dir, dirs)
end
else
for path, dir in pairs(dirs) do
fill(path, dir, newdirs)
end
end
dirs = newdirs
end
return dirs
end
function remove_duplicates(a)
-- Return array with duplicate entries removed from input array `a`.
local uniq = {}
local hash = {}
for _,v in ipairs(a) do
if (not hash[v]) then
hash[v] = true
uniq[#uniq+1] = v
end
end
return uniq
end
function mkdir(dir)
if os_type == "windows" then
-- Windows (with the extensions) will automatically make directory trees
-- but issues a warning if the dir already exists: avoid by including a test
local dir = unix_to_win(dir)
return execute(
"if not exist " .. dir .. "\\nul " .. "mkdir " .. dir
)
else
return execute("mkdir -p " .. dir)
end
end
-- Rename
function ren(dir, source, dest)
local dir = dir .. "/"
if os_type == "windows" then
local source = gsub(source, "^%.+/", "")
local dest = gsub(dest, "^%.+/", "")
return execute("ren " .. unix_to_win(dir) .. source .. " " .. dest)
else
return execute("mv " .. dir .. source .. " " .. dir .. dest)
end
end
-- Remove file(s) based on a glob
function rm(source, glob)
for _,i in ipairs(filelist(source, glob)) do
rmfile(source,i)
end
-- os.remove doesn't give a sensible errorlevel
return 0
end
-- Remove file
function rmfile(source, file)
remove(source .. "/" .. file)
-- os.remove doesn't give a sensible errorlevel
return 0
end
-- Remove a directory tree
function rmdir(dir)
-- First, make sure it exists to avoid any errors
mkdir(dir)
if os_type == "windows" then
return execute("rmdir /s /q " .. unix_to_win(dir))
else
return execute("rm -r " .. dir)
end
end
-- Run a command in a given directory
function run(dir, cmd)
return execute("cd " .. dir .. os_concat .. cmd)
end
-- Split a path into file and directory component
function splitpath(file)
local path, name = match(file, "^(.*)/([^/]*)$")
if path then
return path, name
else
return ".", file
end
end
-- Arguably clearer names
function basename(file)
return(select(2, splitpath(file)))
end
function dirname(file)
return(select(1, splitpath(file)))
end
-- Strip the extension from a file name (if present)
function jobname(file)
local name = match(basename(file), "^(.*)%.")
return name or file
end
-- Look for files, directory by directory, and return the first existing
function locate(dirs, names)
for _,i in ipairs(dirs) do
for _,j in ipairs(names) do
local path = i .. "/" .. j
if fileexists(path) then
return path
end
end
end
end
|