2019-07-02 06:01:09 +07:00
|
|
|
import * as cp from "child_process";
|
|
|
|
|
|
|
|
import { getPathFromAmdModule } from "vs/base/common/amd";
|
2019-06-28 05:34:33 +07:00
|
|
|
import { VSBuffer } from "vs/base/common/buffer";
|
2019-07-02 06:01:09 +07:00
|
|
|
import { Emitter } from "vs/base/common/event";
|
|
|
|
import { ISocket } from "vs/base/parts/ipc/common/ipc.net";
|
|
|
|
import { NodeSocket, WebSocketNodeSocket } from "vs/base/parts/ipc/node/ipc.net";
|
|
|
|
import { ILogService } from "vs/platform/log/common/log";
|
|
|
|
import { IExtHostReadyMessage, IExtHostSocketMessage } from "vs/workbench/services/extensions/common/extensionHostProtocol";
|
2019-06-28 05:34:33 +07:00
|
|
|
|
2019-07-12 05:12:52 +07:00
|
|
|
import { Protocol } from "vs/server/src/protocol";
|
|
|
|
import { uriTransformerPath } from "vs/server/src/util";
|
2019-06-29 05:37:23 +07:00
|
|
|
|
2019-06-28 05:34:33 +07:00
|
|
|
export abstract class Connection {
|
2019-06-29 05:37:23 +07:00
|
|
|
private readonly _onClose = new Emitter<void>();
|
2019-06-28 05:34:33 +07:00
|
|
|
public readonly onClose = this._onClose.event;
|
|
|
|
|
2019-06-29 05:37:23 +07:00
|
|
|
private timeout: NodeJS.Timeout | undefined;
|
2019-07-02 06:01:09 +07:00
|
|
|
private readonly wait = 1000 * 60;
|
|
|
|
|
|
|
|
private closed: boolean = false;
|
|
|
|
|
|
|
|
public constructor(protected protocol: Protocol) {
|
|
|
|
// onClose seems to mean we want to disconnect, so close immediately.
|
|
|
|
protocol.onClose(() => this.close());
|
|
|
|
|
|
|
|
// If the socket closes, we want to wait before closing so we can
|
|
|
|
// reconnect in the meantime.
|
|
|
|
protocol.onSocketClose(() => {
|
2019-06-29 05:37:23 +07:00
|
|
|
this.timeout = setTimeout(() => {
|
2019-07-02 06:01:09 +07:00
|
|
|
this.close();
|
2019-06-29 05:37:23 +07:00
|
|
|
}, this.wait);
|
2019-06-28 05:34:33 +07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-29 05:37:23 +07:00
|
|
|
/**
|
2019-07-02 06:01:09 +07:00
|
|
|
* Set up the connection on a new socket.
|
2019-06-29 05:37:23 +07:00
|
|
|
*/
|
2019-07-02 06:01:09 +07:00
|
|
|
public reconnect(protocol: Protocol, buffer: VSBuffer): void {
|
|
|
|
if (this.closed) {
|
|
|
|
throw new Error("Cannot reconnect to closed connection");
|
|
|
|
}
|
|
|
|
clearTimeout(this.timeout as any); // Not sure why the type doesn't work.
|
|
|
|
this.protocol = protocol;
|
|
|
|
this.connect(protocol.getSocket(), buffer);
|
2019-06-29 05:37:23 +07:00
|
|
|
}
|
|
|
|
|
2019-07-02 06:01:09 +07:00
|
|
|
/**
|
|
|
|
* Close and clean up connection. This will also kill the socket the
|
|
|
|
* connection is on. Probably not safe to reconnect once this has happened.
|
|
|
|
*/
|
|
|
|
protected close(): void {
|
|
|
|
if (!this.closed) {
|
|
|
|
this.closed = true;
|
|
|
|
this.protocol.sendDisconnect();
|
|
|
|
this.dispose();
|
|
|
|
this.protocol.dispose();
|
|
|
|
this._onClose.fire();
|
|
|
|
}
|
2019-06-28 05:34:33 +07:00
|
|
|
}
|
2019-07-02 06:01:09 +07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean up the connection.
|
|
|
|
*/
|
|
|
|
protected abstract dispose(): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to a new socket.
|
|
|
|
*/
|
|
|
|
protected abstract connect(socket: ISocket, buffer: VSBuffer): void;
|
2019-06-28 05:34:33 +07:00
|
|
|
}
|
|
|
|
|
2019-06-29 05:37:23 +07:00
|
|
|
/**
|
2019-07-02 06:01:09 +07:00
|
|
|
* Used for all the IPC channels.
|
2019-06-29 05:37:23 +07:00
|
|
|
*/
|
2019-06-28 05:34:33 +07:00
|
|
|
export class ManagementConnection extends Connection {
|
2019-07-02 06:01:09 +07:00
|
|
|
protected dispose(): void {
|
|
|
|
// Nothing extra to do here.
|
|
|
|
}
|
|
|
|
|
|
|
|
protected connect(socket: ISocket, buffer: VSBuffer): void {
|
|
|
|
this.protocol.beginAcceptReconnection(socket, buffer);
|
|
|
|
this.protocol.endAcceptReconnection();
|
2019-06-29 05:37:23 +07:00
|
|
|
}
|
2019-06-28 05:34:33 +07:00
|
|
|
}
|
|
|
|
|
2019-07-02 06:01:09 +07:00
|
|
|
/**
|
|
|
|
* Manage the extension host process.
|
|
|
|
*/
|
2019-06-28 05:34:33 +07:00
|
|
|
export class ExtensionHostConnection extends Connection {
|
2019-07-02 06:01:09 +07:00
|
|
|
private process: cp.ChildProcess;
|
|
|
|
|
|
|
|
public constructor(protocol: Protocol, private readonly log: ILogService) {
|
|
|
|
super(protocol);
|
|
|
|
const socket = this.protocol.getSocket();
|
|
|
|
const buffer = this.protocol.readEntireBuffer();
|
|
|
|
this.process = this.spawn(socket, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected dispose(): void {
|
|
|
|
this.process.kill();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected connect(socket: ISocket, buffer: VSBuffer): void {
|
|
|
|
this.sendInitMessage(socket, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
private sendInitMessage(nodeSocket: ISocket, buffer: VSBuffer): void {
|
|
|
|
const socket = nodeSocket instanceof NodeSocket
|
|
|
|
? nodeSocket.socket
|
|
|
|
: (nodeSocket as WebSocketNodeSocket).socket.socket;
|
|
|
|
|
|
|
|
socket.pause();
|
|
|
|
|
|
|
|
const initMessage: IExtHostSocketMessage = {
|
|
|
|
type: "VSCODE_EXTHOST_IPC_SOCKET",
|
|
|
|
initialDataChunk: (buffer.buffer as Buffer).toString("base64"),
|
|
|
|
skipWebSocketFrames: nodeSocket instanceof NodeSocket,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.process.send(initMessage, socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
private spawn(socket: ISocket, buffer: VSBuffer): cp.ChildProcess {
|
|
|
|
const proc = cp.fork(
|
|
|
|
getPathFromAmdModule(require, "bootstrap-fork"),
|
|
|
|
[
|
|
|
|
"--type=extensionHost",
|
2019-07-12 05:12:52 +07:00
|
|
|
`--uriTransformerPath=${uriTransformerPath()}`
|
2019-07-02 06:01:09 +07:00
|
|
|
],
|
|
|
|
{
|
|
|
|
env: {
|
|
|
|
...process.env,
|
|
|
|
AMD_ENTRYPOINT: "vs/workbench/services/extensions/node/extensionHostProcess",
|
|
|
|
PIPE_LOGGING: "true",
|
|
|
|
VERBOSE_LOGGING: "true",
|
|
|
|
VSCODE_EXTHOST_WILL_SEND_SOCKET: "true",
|
|
|
|
VSCODE_HANDLES_UNCAUGHT_ERRORS: "true",
|
|
|
|
VSCODE_LOG_STACK: "false",
|
|
|
|
},
|
|
|
|
silent: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
proc.on("error", (error) => {
|
|
|
|
console.error(error);
|
|
|
|
this.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
proc.on("exit", (code, signal) => {
|
|
|
|
console.error("Extension host exited", { code, signal });
|
|
|
|
this.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
proc.stdout.setEncoding("utf8");
|
|
|
|
proc.stderr.setEncoding("utf8");
|
|
|
|
proc.stdout.on("data", (data) => this.log.info("Extension host stdout", data));
|
|
|
|
proc.stderr.on("data", (data) => this.log.error("Extension host stderr", data));
|
|
|
|
proc.on("message", (event) => {
|
|
|
|
if (event && event.type === "__$console") {
|
|
|
|
const severity = this.log[event.severity] ? event.severity : "info";
|
|
|
|
this.log[severity]("Extension host", event.arguments);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const listen = (message: IExtHostReadyMessage) => {
|
|
|
|
if (message.type === "VSCODE_EXTHOST_IPC_READY") {
|
|
|
|
proc.removeListener("message", listen);
|
|
|
|
this.sendInitMessage(socket, buffer);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
proc.on("message", listen);
|
|
|
|
|
|
|
|
return proc;
|
|
|
|
}
|
2019-06-28 05:34:33 +07:00
|
|
|
}
|