-
Notifications
You must be signed in to change notification settings - Fork 0
/
bs.js
executable file
·288 lines (271 loc) · 9.64 KB
/
bs.js
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
#!/usr/bin/env node
"use strict";
const // global functions/utils
{ log, format }= require("css-in-console"),
{ readFileSync, existsSync, mkdirSync, writeFileSync, statSync }= require("node:fs"),
{ join }= require("node:path"),
{ pipe,
linesToMaxLength, passBuildArgs,
listExecutables, isExecutable }= require("./src/utils.js"),
{ cwd: pwd }= require("node:process");
/** @type {()=> void} */
let error;
const // global consts
headline= "bs: Build system based on executables",
css= log.css`
.error { color: lightred; }
.code { color: blue; }
.code::before, .code::after { content: "\`"; }
.tab::before { content: " "; }
.info {}
.headline { color: magenta; }
.highlight { color: lightyellow; }
.script::before { content: "λ "; }
.cwd::before { content: "⌂ "; }
`,
{ version, name, homepage, description }= pipe( readFileSync, JSON.parse )(__dirname+"/package.json");
let // bs folder
folder_root;
const fc= (code, ...rest)=> format("%c"+( !Array.isArray(code) ? code : String.raw(code, ...rest) ), css.code); //format as code
const catchError= a=> { if(!error) return a; error(a); };
const api= require("sade")(name)
.version(version)
.describe([
headline,
"",
"This script allows you to create build scripts using simple executables¹:",
"",
`1. Create a ${fc(name)} directory in your repository root`,
"2. Implement commands just by adding shell scripts or any other executable (using shellbang¹)",
"3. Now, you can run build scrip like:",
...[ "bs/build", "./bs/build", "bs build", "bs .run build" ]
/* fromat as code */.map(c=> format("%c"+c, css.code+css.tab))
/* join with "or" */.reverse().map((s, i)=> i ? s+" or" : s).reverse(),
"",
"So, this script is not neccessary, but it provides some helpers:",
`1. You can call executables without extensions (for example ${fc`${name}/test.py`} ⇔ ${fc`${name} test`})`,
`2. You can use completion, see ${fc`.completion`} command`,
`3. This utility can find current or any parent folder containing ${fc(name)} directory`,
"",
"To point out:",
`1. To prevent colision all ${fc(name)} commands starts with ${fc`.`}c (e.g. ${fc`.ls`})`,
`2. It is a good practice to distinc non-commands from commands (eg. with preposition ${fc`.`}, ${fc`_`}, …)`,
"",
"Known pitfalls:",
`1. The ${fc(name)} tries to find root folder and uses it as cwd, so ${fc`${name} command ./file`} can works unexpectedly!`,
"",
"Notes:",
`[1] use ${fc`chmod +x`} and shebang² like ${fc`#!/usr/bin/env node`} (similarly for bash, …)`,
"[2] https://en.wikipedia.org/wiki/Shebang_(Unix)"
].map(linesToMaxLength(65)))
.command(
".run [script]",
"Run the given build executable "+format("%c (default when `bs [script]`)", css.highlight),
{ default: true }
)
.action(run)
.command(
".ls",
"Lists all available executables"+format("%c (default when only `bs`)", css.highlight),
)
.action(()=> {
const list= ls({ is_out: true });
if(!list.length){
if(!folder_root){
log("%cNo `bs` for current directory: %c%s", css.error, css.unset, pwd());
log("You may want to run %cbs .mkdir%c", css.code, css.unset);
} else
log(`No executables found in '${folder_root}'.`);
log(`Run %c${name} --help%c for more info.`, css.code, css.unset);
return process.exit(1);
}
list.forEach(lsPrintNth);
log("\nFor more info use %cbs .cat%c", css.code, css.unset);
return process.exit(0);
})
.command(".mkdir [root]", [ "This initializes the projects bs directory",
`With ${fc`root`} folder defaults to ${fc`.`}.` ])
.action(init)
.command(".readme", "This is primarly used for update current bs/README.md content.")
.action(init)
.command(".cat", "This prints bs/README.md content")
.action(cat)
.command(".completion <shell>", [ "Register a completions for the given shell",
`This provides completions for ${fc`bs`} itself and available executables`,
"and argumnets for executables if specify in corresponding config file.",
"",
"To allow completions:",
`Just add ${fc`eval "$(${name} .completion bash)"`} to your ${fc`.bashrc`}` ])
.action(completion);
api.parse(passBuildArgs());
function readReadme(path_bs){
const path= join(path_bs, "README.md");
const content= existsSync(path) ? readFileSync(path, "utf8").split("\n") : [
"# "+headline,
`This project uses [${homepage.slice("https://github.com/".length)}: ${description}](${homepage}).`,
"",
"## Available executables",
"",
];
let h_level= 3; // defaults to ###
const found= content
.flatMap((line, i)=> line.match(/^#+ `?(.\/)?bs\/(.*)/) ? [ [ content[i], i ] ] : []) //`
.map(function([ l, i ]){
h_level= l.indexOf(" ");
const script_start= l.indexOf("bs/")+3;
// index of space or ` or line end
const script_end= /( |`|$)/g.exec(l.slice(script_start));
const end_adjust= script_start + ( script_end[0]!=="" ? 0 : 1 );
const key= l.slice(script_start, script_end.index+end_adjust);
return [ key, i ];
});
return { path, content, found: Object.fromEntries(found), h_level };
}
function init(root= pwd()){
const is_init= process.argv.slice(2)[0]===".mkdir";
const folder_root_local= is_init ? join(root, name) : ( loadBS(), folder_root );
if(!existsSync(folder_root_local)) mkdirSync(folder_root_local);
console.log("Folder: "+folder_root_local);
const readme= readReadme(folder_root_local);
const execs= listExecutables(folder_root_local, 0).map(e=> e.replace(folder_root_local+"/", ""));
const execs_known= Object.keys(readme.found);
console.log("Executables: "+execs.join(", "));
const execs_add= execs
.filter(e=> !execs_known.includes(e))
.map(e=> "#".repeat(readme.h_level)+" bs/"+e);
writeFileSync(readme.path, readme.content.join("\n"));
if(execs_add.length)
console.log("Missing in README: \n```markdown\n"+execs_add.join("\n")+"\n```");
console.log("Readme: "+readme.path);
process.exit(0);
}
function cat(){
loadBS();
if(!folder_root){
log("%cNo `bs` directory found", css.error);
return process.exit(1);
}
log("%c"+folder_root, css.cwd);
const readme= join(folder_root, "README.md");
const readme_content= existsSync(readme) ? readFileSync(readme, "utf8") : "";
if(!readme_content){
log("%cNo `README.md` (content) found in `bs` directory", css.error);
return process.exit(1);
}
readme_content.split("\n")
.forEach(function echoLine(line){
if(line.trim().startsWith("#"))
return log("%c"+line, css.headline);
log(line);
});
process.exit(0);
}
function ls({ is_out= false }= {}){
loadBS();
if(!folder_root) return [];
if(is_out) log("%c"+folder_root, css.cwd);
const { content, found }= readReadme(folder_root);
return listExecutables(folder_root, 0)
.map(pipe(
f=> f.slice(folder_root.length+1),
function(script){
const name= script.replace(/\.[^/.]+$/, "");
const readme= Reflect.has(found, script) ? found[script] : -2;
return { script, name, docs: content[readme+1] };
}
))
.sort(function({ script: a }, { script: b }){
const deep= [ a, b ].reduce((acc, curr, i)=>
acc + (-1)**i * (curr.match(new RegExp("/", "g")) || []).length, 0);
if(deep) return deep;
return a.localeCompare(b);
});
}
function lsPrintNth({ script, docs }){
let out= fc(script);
if(docs) out+= ": "+docs+"…";
log("%c"+out, css.script);
}
function run(script){
loadBS();
const args= process.argv.slice(2);
if(args[0]===".run") args.shift();
if(!args.length) return api.tree[".ls"].handler();
else args.shift();
catchError();
// TODO: what about `./` in args when cwd≠folder_root/..
process.chdir(folder_root.replace(/\/bs$/, ""));
script= "bs/"+script;
if(!existsSync(script) || !statSync(script).isFile()){
const candidate= listExecutables(script.slice(0, script.lastIndexOf("/")), 0)
.find(f=> f.startsWith(script) && f[script.length]===".");
if(candidate)
script= candidate;
}
log("%c%s", css.cwd, folder_root);
if(!isExecutable(script)){
log(`%c'${script}' doesn't exist or is not executable`, css.error);
return process.exit(1);
}
lsPrintNth({ script });
const { spawn }= require("node:child_process");
return spawn(script, args, { stdio: "inherit" })
.on("exit", function onexit(exit_code, signal){
if(typeof exit_code === 'number')
return process.exit(exit_code);
log("%cUnknown error", css.error);
process.kill(process.pid, signal)
});
}
function completion(shell){
const { completionBash, completionRegisterBash }= require("./src/completion.js");
if("bash"===shell)
return completionRegisterBash(name);
if("bash--complete"===shell)
return completionBash(
{ api, completionScript, ls: ()=> ls().map(r=> r.name) },
process.argv.slice(4)
);
log("Unknown shell: "+shell);
process.exit(1);
}
function completionScript(name){
let bsrc;
if(!folder_root) loadBS();
const end_empty= { "subcommands": [] };
if(!folder_root) return end_empty;
const { readdirSync }= require("node:fs");
for(const file of readdirSync(folder_root)){
if(!file.startsWith(".bsrc")) continue;
bsrc= join(folder_root, file);
break;
}
if(!bsrc || !isExecutable(bsrc)) return end_empty;
const { script }= ls().find(f=> f.name===name) || {};
if(!script) return end_empty;
const { spawnSync }= require("node:child_process");
try {
return JSON.parse(spawnSync(bsrc, [ "completion", script ]).stdout);
} catch(e){
return end_empty;
}
}
function loadBS(){
if(!folder_root) folder_root= findBS();
}
function findBS(cwd= pwd()){
const folder_root= "/bs"; // allow change?
let candidate= cwd.replace(/\/$/, "");
while(!existsSync(candidate+folder_root)){
const last_slash= candidate.lastIndexOf("/");
if(last_slash < 0){
error= ()=> {
log("%cNo `bs` for current directory: %c%s", css.error, css.unset, cwd);
return process.exit(1);
};
return null;
}
candidate= candidate.slice(0, last_slash);
}
return candidate+folder_root;
}