// ***************************************************************************** // Copyright (C) 2017 Ericsson 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 { ContainerModule } from '@theia/core/shared/inversify'; import { bindRootContributionProvider } from '@theia/core'; import { ConnectionHandler, RpcConnectionHandler } from '@theia/core/lib/common/messaging'; import { BackendApplicationContribution } from '@theia/core/lib/node'; import { bindProcessTaskRunnerModule } from './process/process-task-runner-backend-module'; import { bindCustomTaskRunnerModule } from './custom/custom-task-runner-backend-module'; import { TaskBackendApplicationContribution } from './task-backend-application-contribution'; import { TaskManager } from './task-manager'; import { TaskRunnerContribution, TaskRunnerRegistry } from './task-runner'; import { TaskServerImpl } from './task-server'; import { createCommonBindings } from '../common/task-common-module'; import { TaskClient, TaskServer, taskPath } from '../common'; import { bindTaskPreferences } from '../common/task-preferences'; export default new ContainerModule(bind => { bind(TaskManager).toSelf().inSingletonScope(); bind(BackendApplicationContribution).toService(TaskManager); bind(TaskServer).to(TaskServerImpl).inSingletonScope(); bind(ConnectionHandler).toDynamicValue(ctx => new RpcConnectionHandler(taskPath, client => { const taskServer = ctx.container.get(TaskServer); taskServer.setClient(client); // when connection closes, cleanup that client of task-server client.onDidCloseConnection(() => { taskServer.disconnectClient(client); }); return taskServer; }) ).inSingletonScope(); createCommonBindings(bind); bind(TaskRunnerRegistry).toSelf().inSingletonScope(); bindRootContributionProvider(bind, TaskRunnerContribution); bind(TaskBackendApplicationContribution).toSelf().inSingletonScope(); bind(BackendApplicationContribution).toService(TaskBackendApplicationContribution); bindProcessTaskRunnerModule(bind); bindCustomTaskRunnerModule(bind); bindTaskPreferences(bind); });