mirror of
https://github.com/coder/code-server.git
synced 2026-05-06 04:25:19 +02:00
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { IChannel, IServerChannel, StaticRouter } from 'vs/base/parts/ipc/common/ipc';
|
|
import { Client as IPCElectronClient } from 'vs/base/parts/ipc/electron-sandbox/ipc.electron';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
|
import { Server as MessagePortServer } from 'vs/base/parts/ipc/electron-sandbox/ipc.mp';
|
|
|
|
export const IMainProcessService = createDecorator<IMainProcessService>('mainProcessService');
|
|
|
|
export interface IMainProcessService {
|
|
|
|
readonly _serviceBrand: undefined;
|
|
|
|
getChannel(channelName: string): IChannel;
|
|
|
|
registerChannel(channelName: string, channel: IServerChannel<string>): void;
|
|
}
|
|
|
|
/**
|
|
* An implementation of `IMainProcessService` that leverages Electron's IPC.
|
|
*/
|
|
export class ElectronIPCMainProcessService extends Disposable implements IMainProcessService {
|
|
|
|
declare readonly _serviceBrand: undefined;
|
|
|
|
private mainProcessConnection: IPCElectronClient;
|
|
|
|
constructor(
|
|
windowId: number
|
|
) {
|
|
super();
|
|
|
|
this.mainProcessConnection = this._register(new IPCElectronClient(`window:${windowId}`));
|
|
}
|
|
|
|
getChannel(channelName: string): IChannel {
|
|
return this.mainProcessConnection.getChannel(channelName);
|
|
}
|
|
|
|
registerChannel(channelName: string, channel: IServerChannel<string>): void {
|
|
this.mainProcessConnection.registerChannel(channelName, channel);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* An implementation of `IMainProcessService` that leverages MessagePorts.
|
|
*/
|
|
export class MessagePortMainProcessService implements IMainProcessService {
|
|
|
|
declare readonly _serviceBrand: undefined;
|
|
|
|
constructor(
|
|
private server: MessagePortServer,
|
|
private router: StaticRouter
|
|
) { }
|
|
|
|
getChannel(channelName: string): IChannel {
|
|
return this.server.getChannel(channelName, this.router);
|
|
}
|
|
|
|
registerChannel(channelName: string, channel: IServerChannel<string>): void {
|
|
this.server.registerChannel(channelName, channel);
|
|
}
|
|
}
|