cd26f84bc6
The "Starting watch-client" string no longer appears in the latest build output. We could look for "Finished compilation with" to avoid restarting when other tasks restart (since they also include the name i.e. "Finished compilation extensions with 0 errors") but I figure we might as well restart code-server when any compilation task completes in case other tasks include changes that need to be reloaded.
141 lines
3.7 KiB
TypeScript
141 lines
3.7 KiB
TypeScript
import * as cp from "child_process"
|
|
import * as path from "path"
|
|
import { onLine } from "../../src/node/util"
|
|
|
|
async function main(): Promise<void> {
|
|
try {
|
|
const watcher = new Watcher()
|
|
await watcher.watch()
|
|
} catch (error: any) {
|
|
console.error(error.message)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
class Watcher {
|
|
private readonly rootPath = path.resolve(__dirname, "../..")
|
|
private readonly vscodeSourcePath = path.join(this.rootPath, "vendor/modules/code-oss-dev")
|
|
|
|
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 vscodeWebExtensions = cp.spawn("yarn", ["watch-web"], { cwd: this.vscodeSourcePath })
|
|
|
|
const tsc = cp.spawn("tsc", ["--watch", "--pretty", "--preserveWatchOutput"], { cwd: this.rootPath })
|
|
const plugin = process.env.PLUGIN_DIR
|
|
? cp.spawn("yarn", ["build", "--watch"], { cwd: process.env.PLUGIN_DIR })
|
|
: undefined
|
|
|
|
const cleanup = (code?: number | null): void => {
|
|
Watcher.log("killing vs code watcher")
|
|
vscode.removeAllListeners()
|
|
vscode.kill()
|
|
|
|
Watcher.log("killing vs code web extension watcher")
|
|
vscodeWebExtensions.removeAllListeners()
|
|
vscodeWebExtensions.kill()
|
|
|
|
Watcher.log("killing tsc")
|
|
tsc.removeAllListeners()
|
|
tsc.kill()
|
|
|
|
if (plugin) {
|
|
Watcher.log("killing plugin")
|
|
plugin.removeAllListeners()
|
|
plugin.kill()
|
|
}
|
|
|
|
if (server) {
|
|
Watcher.log("killing server")
|
|
server.removeAllListeners()
|
|
server.kill()
|
|
}
|
|
|
|
Watcher.log("killing watch")
|
|
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)
|
|
})
|
|
|
|
vscodeWebExtensions.on("exit", (code) => {
|
|
Watcher.log("vs code extension watcher terminated unexpectedly")
|
|
cleanup(code)
|
|
})
|
|
|
|
tsc.on("exit", (code) => {
|
|
Watcher.log("tsc terminated unexpectedly")
|
|
cleanup(code)
|
|
})
|
|
|
|
if (plugin) {
|
|
plugin.on("exit", (code) => {
|
|
Watcher.log("plugin terminated unexpectedly")
|
|
cleanup(code)
|
|
})
|
|
}
|
|
|
|
vscodeWebExtensions.stderr.on("data", (d) => process.stderr.write(d))
|
|
vscode.stderr.on("data", (d) => process.stderr.write(d))
|
|
tsc.stderr.on("data", (d) => process.stderr.write(d))
|
|
|
|
if (plugin) {
|
|
plugin.stderr.on("data", (d) => process.stderr.write(d))
|
|
}
|
|
|
|
onLine(vscode, (line, original) => {
|
|
console.log("[vscode]", original)
|
|
if (line.includes("Finished compilation")) {
|
|
restartServer()
|
|
}
|
|
})
|
|
|
|
onLine(tsc, (line, original) => {
|
|
// tsc outputs blank lines; skip them.
|
|
if (line !== "") {
|
|
console.log("[tsc]", original)
|
|
}
|
|
if (line.includes("Watching for file changes")) {
|
|
restartServer()
|
|
}
|
|
})
|
|
|
|
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")) {
|
|
restartServer()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
main()
|