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
|
module util;
import std.ascii;
import std.array;
import std.stdio;
import std.string;
import std.process;
import std.algorithm;
import std.file;
import std.path;
import std.conv : to;
/// MAXCOLS refers to terminal width
enum byte MAXCOLS = 80;
/**
Print a wordwrapped string encapsulated by `ch`
Params:
ch = ASCII character to create border
s = string to print
*/
void banner(const char ch, string s) {
string ruler;
byte i = 0;
while (i < MAXCOLS) {
ruler ~= ch;
i++;
}
string result;
string[] tmpstr = splitLines(wrap(s, MAXCOLS - 2, ch ~ " ", ch ~ " "));
foreach (idx, line; tmpstr) {
if (idx < tmpstr.length - 1) {
line ~= " \\";
}
result ~= line ~ "\n";
}
writeln(ruler);
write(result);
writeln(ruler);
}
/**
Dump the parent shell runtime environment and convert it into an associative
array
Params:
base = use an existing mapping as the base environment
preface = command to execute prior to dumping the environment
Returns:
an associative array containing the runtime environment
Example:
---
import std.stdio;
import util;
void main()
{
string exfile = "example.sh";
File(exfile, "w+").write("export EXAMPLE_FILE=parsed\n");
scope(exit) exfile.remove;
auto myenv = getenv();
myenv["EXAMPLE"] = "works";
auto myenv2 = getenv(myenv);
writeln(myenv2["EXAMPLE"]);
auto myenv3 = getenv(myenv2, "source example.sh");
writeln(myenv3["EXAMPLE"]);
writeln(myenv3["EXAMPLE_FILE"]);
}
---
*/
string[string] getenv(string[string] base=null, string preface=null) {
const char delim = '=';
char delim_line = '\n';
string[string] env;
string cmd = "env";
/// Under GNU we have the option to use nul-terminated strings, which means
/// we can safely parse awful pairs generated by `env-modules`
version (linux) {
cmd ~= " -0";
delim_line = '\0';
}
/// Untested
version (Windows) {
cmd = "set";
delim_line = "\r\n";
}
// Execute a command before dumping the environment
if (preface !is null) {
cmd = preface ~ " && " ~ cmd;
}
auto env_sh = executeShell(cmd, env=base);
if (env_sh.status) {
throw new Exception("Unable to read shell environment:" ~ env_sh.output);
}
foreach (string line; split(env_sh.output, delim_line)) {
if (line.empty) {
continue;
}
auto data = split(line, delim);
// Recombine extra '=' chars
if (data.length > 2) {
data[1] = join(data[1 .. $], delim);
}
env[data[0]] = data[1];
}
return env;
}
/**
Produce a single-quoted string
Params:
s = string to quote
Returns:
single-quoted string
Example:
---
import std.stdio;
import util;
void main()
{
writeln(safe_spec("single-quoted"));
// 'single-quoted'
}
---
*/
string safe_spec(string s) {
return "'" ~ s ~ "'";
}
/**
Produces conda/pip compatible installation arguments
Params:
specs = array of string arguments
Returns:
string of single-quoted arguments
Example:
---
import std.stdio;
import util;
void main()
{
string[] arguments = ["a", "b", "c"];
writeln(safe_install(arguments));
// 'a' 'b' 'c'
}
---
*/
string safe_install(string[] specs) {
string[] result;
foreach (record; specs) {
result ~= safe_spec(record);
}
return result.join(" ");
}
/**
Produces `conda`/`pip` compatible installation arguments by splitting on white
space
Params:
specs = a string containing arguments
Returns:
string of single quoted arguments
Example:
---
import std.stdio;
import util;
void main()
{
string arguments = "a b c";
writeln(safe_install(arguments));
// 'a' 'b' 'c'
}
---
*/
string safe_install(string specs) {
string[] result;
foreach (record; specs.split(" ")) {
result ~= safe_spec(record);
}
return result.join(" ");
}
/**
pytest emits invalid junit, so this rewrites the local configuration
file (i.e. `setup.cfg`, `pytest.ini`, etc) to include the proper
`junit_family` settings.
Params:
filename = path to configuration file
Returns:
new configuration file contents as string
*/
string pytest_xunit2(string filename) {
// Generate the requested file if need be
if (!filename.exists) {
auto dummy = File(filename, "w+");
dummy.write("");
dummy.flush();
dummy.close();
}
string _data = readText(filename);
string data;
string result;
bool inject = false;
bool inject_wait = false;
bool has_section = false;
bool has_junit_family = false;
string section;
immutable string key = "junit_family";
immutable string cfgitem = key ~ " = xunit2";
if (filename.baseName == "setup.cfg") {
section = "[tool:pytest]";
} else if (filename.baseName == "pytest.ini") {
section = "[pytest]";
}
foreach (line; splitLines(_data)) {
string tmp = line.to!string;
if (canFind(tmp, section)) {
has_section = true;
}
if (canFind(tmp, key)) {
has_junit_family = true;
}
data ~= tmp ~ "\n";
}
if (!has_section) {
return data ~ format("\n%s\n%s\n", section, cfgitem);
}
// figure out when/where we should write our revisions to the config
foreach (rec; splitLines(data)) {
if (!has_section) {
break;
} else if (rec.strip == section && !has_junit_family) {
inject = true;
} else if (has_junit_family) {
inject_wait = true;
} else if (inject_wait) {
if (canFind(rec, key)) {
rec = cfgitem ~ "\n";
inject_wait = false;
}
} else if (inject) {
result ~= cfgitem ~ "\n";
inject = false;
}
result ~= rec ~ "\n";
}
return result;
}
/**
Find all occurences of character in a string
Params:
s = string to read
ch = character to find
Returns:
array of offsets
*/
ulong[] indexOfAll(string s, char ch) {
ulong[] result;
for (ulong i = 0; i < s.length; i++) {
if (s[i] == ch) {
result ~= i;
}
}
return result;
}
/// Unused
string expander(string[string] aa, string name, char delim = '$') {
string s = aa[name].dup;
ulong[] needles = indexOfAll(s, delim);
string[string] found;
foreach (needle; needles) {
string tmp = "";
for (ulong i = needle; i < s.length; i++) {
if (s[i] == delim) continue;
else if (s[i] == '{' || s[i] == '}') continue;
else if (!s[i].isAlphaNum && s[i] != '_' ) break;
tmp ~= s[i];
}
writeln(tmp);
found[tmp] = aa.get(tmp, "");
}
foreach (pair; found.byPair) {
s = s.replace(delim ~ pair.key, pair.value)
.replace(format("%c{%s}", delim, pair.key), pair.value);
}
return s;
}
/**
Perform variable interpolation on a string given a named environment
Params:
aa = assoc. array to use (i.e. runtime environment)
str = string to scan for variables
delim = character to trigger parsing variable
Returns:
string with variables replaced
Note:
When a variable cannot be mapped the variable text in the string is not
modified.
Example:
---
import std.stdio;
import util;
void main()
{
string[string] aa = ["my_var": "example"];
string my_str = "This is the ${my_var}.";
writeln(interpolate(aa, my_str));
}
---
*/
string interpolate(string[string]aa, string str, char delim = '$') {
import std.ascii;
string s = str.dup;
ulong[] needles = indexOfAll(s, delim);
string[] found;
// scan any indicies we've found
foreach (needle; needles) {
string tmp = "";
// trigger variable parsing on delimiter
for (ulong i = needle; i < s.length; i++) {
if (s[i] == delim) continue;
else if (s[i] == '{' || s[i] == '}') // ${} also supported
continue;
else if (!s[i].isAlphaNum && s[i] != '_') // unusable, die
break;
tmp ~= s[i];
}
found ~= tmp;
}
// rewrite string with substitutions
foreach (match; found) {
foreach (pair; aa.byPair) {
if (pair.key != match)
continue;
s = s.replace(delim ~ pair.key, pair.value)
.replace(format("%c{%s}", delim, pair.key), pair.value);
}
}
return s;
}
/**
Produce a short/compact version
Params:
vrs = version string
Returns:
shortened version string
Example:
---
import std.stdio;
import util;
void main()
{
writeln(short_version("3.6.8"));
// 36
writeln(short_version("2.7.66"));
// 27
}
---
*/
string short_version(string vrs) {
string tmp = vrs.dup;
tmp = tmp.replace(".", "");
if (tmp.length > 2) {
tmp = tmp[0 .. 2];
}
return tmp;
}
|