@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
66 lines (53 loc) • 2.8 kB
text/typescript
// *****************************************************************************
// Copyright (C) 2018 TypeFox and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { injectable, interfaces } from 'inversify';
import { RpcProxy } from '../../common/messaging';
import { AbstractChannel, Channel, Emitter, Event, MaybePromise, WriteBuffer } from '../../common';
import { Uint8ArrayReadBuffer, Uint8ArrayWriteBuffer } from '../../common/message-rpc/uint8-array-message-buffer';
import { ServiceConnectionProvider } from '../../browser/messaging/service-connection-provider';
import { ConnectionSource } from '../../browser/messaging/connection-source';
import { FrontendApplicationContribution } from '../../browser';
export interface ElectronIpcOptions {
}
export const ElectronMainConnectionProvider = Symbol('ElectronMainConnectionProvider');
/**
* Connection provider between the Theia frontend and the electron-main process via IPC.
*/
export namespace ElectronIpcConnectionProvider {
export function createProxy<T extends object>(container: interfaces.Container, path: string, arg?: object): RpcProxy<T> {
return container.get<ServiceConnectionProvider>(ElectronMainConnectionProvider).createProxy<T>(path, arg);
}
}
()
export class ElectronIpcConnectionSource implements ConnectionSource, FrontendApplicationContribution {
protected readonly onConnectionDidOpenEmitter: Emitter<Channel> = new Emitter();
onConnectionDidOpen: Event<Channel> = this.onConnectionDidOpenEmitter.event;
onStart(): MaybePromise<void> {
const channel = new ElectronIpcRendererChannel();
this.onConnectionDidOpenEmitter.fire(channel);
}
}
export class ElectronIpcRendererChannel extends AbstractChannel {
constructor() {
super();
this.toDispose.push(window.electronTheiaCore.onData(data => this.onMessageEmitter.fire(() => new Uint8ArrayReadBuffer(data))));
}
getWriteBuffer(): WriteBuffer {
const writer = new Uint8ArrayWriteBuffer();
writer.onCommit(buffer => window.electronTheiaCore.sendData(buffer));
return writer;
}
}