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
|
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;
enum byte MAXCOLS = 80;
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);
}
static auto getenv(string[string] base=null, string preface=null) {
const char delim = '=';
char delim_line = '\n';
string[string] env;
string cmd = "env";
version (linux) {
cmd ~= " -0";
delim_line = '\0';
}
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;
}
string safe_spec(string s) {
return "'" ~ s ~ "'";
}
string safe_install(string[] specs) {
string[] result;
foreach (record; specs) {
result ~= safe_spec(record);
}
return result.join(" ");
}
string safe_install(string specs) {
string[] result;
foreach (record; specs.split(" ")) {
result ~= safe_spec(record);
}
return result.join(" ");
}
string pytest_xunit2(string filename) {
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);
}
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;
}
ulong[] indexOfAll(string s, char ch) {
ulong[] result;
for (ulong i = 0; i < s.length; i++) {
if (s[i] == ch) {
result ~= i;
}
}
return result;
}
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;
}
string short_version(string vrs) {
string tmp = vrs.dup;
tmp = tmp.replace(".", "");
if (tmp.length > 2) {
tmp = tmp[0 .. 2];
}
return tmp;
}
|