2021-06-24 00:19:50 +07:00
|
|
|
import browserify from "browserify"
|
2020-04-30 18:52:54 +07:00
|
|
|
import * as cp from "child_process"
|
2021-06-24 00:19:50 +07:00
|
|
|
import * as fs from "fs"
|
2020-04-30 18:52:54 +07:00
|
|
|
import * as path from "path"
|
|
|
|
|
|
|
|
async function main(): Promise<void> {
|
|
|
|
try {
|
|
|
|
const watcher = new Watcher()
|
|
|
|
await watcher.watch()
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error.message)
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Watcher {
|
|
|
|
private readonly rootPath = path.resolve(__dirname, "../..")
|
|
|
|
private readonly vscodeSourcePath = path.join(this.rootPath, "lib/vscode")
|
|
|
|
|
|
|
|
private static log(message: string, skipNewline = false): void {
|
|
|
|
process.stdout.write(message)
|
|
|
|
if (!skipNewline) {
|
|
|
|
process.stdout.write("\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async watch(): Promise<void> {
|
|
|
|
let server: cp.ChildProcess | undefined
|
|
|
|
const restartServer = (): void => {
|
|
|
|
if (server) {
|
|
|
|
server.kill()
|
|
|
|
}
|
|
|
|
const s = cp.fork(path.join(this.rootPath, "out/node/entry.js"), process.argv.slice(2))
|
|
|
|
console.log(`[server] spawned process ${s.pid}`)
|
|
|
|
s.on("exit", () => console.log(`[server] process ${s.pid} exited`))
|
|
|
|
server = s
|
|
|
|
}
|
|
|
|
|
|
|
|
const vscode = cp.spawn("yarn", ["watch"], { cwd: this.vscodeSourcePath })
|
|
|
|
const tsc = cp.spawn("tsc", ["--watch", "--pretty", "--preserveWatchOutput"], { cwd: this.rootPath })
|
2020-08-19 00:03:49 +07:00
|
|
|
const plugin = process.env.PLUGIN_DIR
|
|
|
|
? cp.spawn("yarn", ["build", "--watch"], { cwd: process.env.PLUGIN_DIR })
|
|
|
|
: undefined
|
2020-04-30 18:52:54 +07:00
|
|
|
|
|
|
|
const cleanup = (code?: number | null): void => {
|
|
|
|
Watcher.log("killing vs code watcher")
|
|
|
|
vscode.removeAllListeners()
|
|
|
|
vscode.kill()
|
|
|
|
|
|
|
|
Watcher.log("killing tsc")
|
|
|
|
tsc.removeAllListeners()
|
|
|
|
tsc.kill()
|
|
|
|
|
2020-08-19 00:03:49 +07:00
|
|
|
if (plugin) {
|
|
|
|
Watcher.log("killing plugin")
|
|
|
|
plugin.removeAllListeners()
|
|
|
|
plugin.kill()
|
|
|
|
}
|
2020-08-01 04:27:32 +07:00
|
|
|
|
2020-04-30 18:52:54 +07:00
|
|
|
if (server) {
|
|
|
|
Watcher.log("killing server")
|
|
|
|
server.removeAllListeners()
|
|
|
|
server.kill()
|
|
|
|
}
|
|
|
|
|
2021-06-24 00:19:50 +07:00
|
|
|
Watcher.log("killing watch")
|
2020-04-30 18:52:54 +07:00
|
|
|
process.exit(code || 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
process.on("SIGINT", () => cleanup())
|
|
|
|
process.on("SIGTERM", () => cleanup())
|
|
|
|
|
|
|
|
vscode.on("exit", (code) => {
|
|
|
|
Watcher.log("vs code watcher terminated unexpectedly")
|
|
|
|
cleanup(code)
|
|
|
|
})
|
|
|
|
tsc.on("exit", (code) => {
|
|
|
|
Watcher.log("tsc terminated unexpectedly")
|
|
|
|
cleanup(code)
|
|
|
|
})
|
2020-08-19 00:03:49 +07:00
|
|
|
if (plugin) {
|
|
|
|
plugin.on("exit", (code) => {
|
|
|
|
Watcher.log("plugin terminated unexpectedly")
|
|
|
|
cleanup(code)
|
|
|
|
})
|
|
|
|
}
|
2020-04-30 18:52:54 +07:00
|
|
|
|
|
|
|
vscode.stderr.on("data", (d) => process.stderr.write(d))
|
|
|
|
tsc.stderr.on("data", (d) => process.stderr.write(d))
|
2020-08-19 00:03:49 +07:00
|
|
|
if (plugin) {
|
|
|
|
plugin.stderr.on("data", (d) => process.stderr.write(d))
|
|
|
|
}
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2021-06-24 00:19:50 +07:00
|
|
|
const browserFiles = [
|
|
|
|
path.join(this.rootPath, "out/browser/register.js"),
|
|
|
|
path.join(this.rootPath, "out/browser/pages/login.js"),
|
|
|
|
path.join(this.rootPath, "out/browser/pages/vscode.js"),
|
|
|
|
]
|
|
|
|
|
2020-04-30 18:52:54 +07:00
|
|
|
// From https://github.com/chalk/ansi-regex
|
|
|
|
const pattern = [
|
|
|
|
"[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)",
|
|
|
|
"(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))",
|
|
|
|
].join("|")
|
|
|
|
const re = new RegExp(pattern, "g")
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Split stdout on newlines and strip ANSI codes.
|
|
|
|
*/
|
|
|
|
const onLine = (proc: cp.ChildProcess, callback: (strippedLine: string, originalLine: string) => void): void => {
|
|
|
|
let buffer = ""
|
|
|
|
if (!proc.stdout) {
|
|
|
|
throw new Error("no stdout")
|
|
|
|
}
|
|
|
|
proc.stdout.setEncoding("utf8")
|
|
|
|
proc.stdout.on("data", (d) => {
|
|
|
|
const data = buffer + d
|
|
|
|
const split = data.split("\n")
|
|
|
|
const last = split.length - 1
|
|
|
|
|
|
|
|
for (let i = 0; i < last; ++i) {
|
|
|
|
callback(split[i].replace(re, ""), split[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
// The last item will either be an empty string (the data ended with a
|
|
|
|
// newline) or a partial line (did not end with a newline) and we must
|
|
|
|
// wait to parse it until we get a full line.
|
|
|
|
buffer = split[last]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let startingVscode = false
|
|
|
|
let startedVscode = false
|
|
|
|
onLine(vscode, (line, original) => {
|
|
|
|
console.log("[vscode]", original)
|
|
|
|
// Wait for watch-client since "Finished compilation" will appear multiple
|
|
|
|
// times before the client starts building.
|
|
|
|
if (!startingVscode && line.includes("Starting watch-client")) {
|
|
|
|
startingVscode = true
|
|
|
|
} else if (startingVscode && line.includes("Finished compilation")) {
|
|
|
|
if (startedVscode) {
|
2021-06-24 00:19:50 +07:00
|
|
|
restartServer()
|
2020-04-30 18:52:54 +07:00
|
|
|
}
|
|
|
|
startedVscode = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
onLine(tsc, (line, original) => {
|
|
|
|
// tsc outputs blank lines; skip them.
|
|
|
|
if (line !== "") {
|
|
|
|
console.log("[tsc]", original)
|
|
|
|
}
|
|
|
|
if (line.includes("Watching for file changes")) {
|
2021-06-24 00:19:50 +07:00
|
|
|
bundleBrowserCode(browserFiles)
|
|
|
|
restartServer()
|
2020-04-30 18:52:54 +07:00
|
|
|
}
|
|
|
|
})
|
2020-08-01 04:27:32 +07:00
|
|
|
|
2020-08-19 00:03:49 +07:00
|
|
|
if (plugin) {
|
|
|
|
onLine(plugin, (line, original) => {
|
|
|
|
// tsc outputs blank lines; skip them.
|
|
|
|
if (line !== "") {
|
|
|
|
console.log("[plugin]", original)
|
|
|
|
}
|
|
|
|
if (line.includes("Watching for file changes")) {
|
2021-06-24 00:19:50 +07:00
|
|
|
restartServer()
|
2020-08-19 00:03:49 +07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-04-30 18:52:54 +07:00
|
|
|
}
|
2021-06-24 00:19:50 +07:00
|
|
|
}
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2021-06-24 00:19:50 +07:00
|
|
|
function bundleBrowserCode(inputFiles: string[]) {
|
|
|
|
console.log(`[browser] bundling...`)
|
|
|
|
inputFiles.forEach(async (path: string) => {
|
|
|
|
const outputPath = path.replace(".js", ".browserified.js")
|
|
|
|
browserify()
|
|
|
|
.add(path)
|
|
|
|
.bundle()
|
|
|
|
.on("error", function (error: Error) {
|
|
|
|
console.error(error.toString())
|
|
|
|
})
|
|
|
|
.pipe(fs.createWriteStream(outputPath))
|
|
|
|
})
|
|
|
|
console.log(`[browser] done bundling`)
|
2020-04-30 18:52:54 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main()
|