-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathtasks.ts
252 lines (220 loc) · 9.76 KB
/
tasks.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// *****************************************************************************
// Copyright (C) 2018 Red Hat, Inc. 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 {
PLUGIN_RPC_CONTEXT,
TasksExt,
TasksMain,
TaskDto,
TaskExecutionDto
} from '../../common/plugin-api-rpc';
import * as theia from '@theia/plugin';
import * as converter from '../type-converters';
import { CustomExecution, Disposable } from '../types-impl';
import { RPCProtocol } from '../../common/rpc-protocol';
import { TaskProviderAdapter } from './task-provider';
import { Emitter, Event } from '@theia/core/lib/common/event';
import { TerminalServiceExtImpl } from '../terminal-ext';
import { UUID } from '@theia/core/shared/@phosphor/coreutils';
import { CancellationToken } from '@theia/core/lib/common/cancellation';
type ExecutionCallback = (resolvedDefinition: theia.TaskDefinition) => Thenable<theia.Pseudoterminal>;
export class TasksExtImpl implements TasksExt {
private proxy: TasksMain;
private callId = 0;
private adaptersMap = new Map<number, TaskProviderAdapter>();
private executions = new Map<number, theia.TaskExecution>();
protected callbackIdBase: string = UUID.uuid4();
protected callbackId: number;
protected customExecutionIds: Map<ExecutionCallback, string> = new Map();
protected customExecutionFunctions: Map<string, ExecutionCallback> = new Map();
protected lastStartedTask: number | undefined;
private readonly onDidExecuteTask: Emitter<theia.TaskStartEvent> = new Emitter<theia.TaskStartEvent>();
private readonly onDidTerminateTask: Emitter<theia.TaskEndEvent> = new Emitter<theia.TaskEndEvent>();
private readonly onDidExecuteTaskProcess: Emitter<theia.TaskProcessStartEvent> = new Emitter<theia.TaskProcessStartEvent>();
private readonly onDidTerminateTaskProcess: Emitter<theia.TaskProcessEndEvent> = new Emitter<theia.TaskProcessEndEvent>();
constructor(rpc: RPCProtocol, readonly terminalExt: TerminalServiceExtImpl) {
this.proxy = rpc.getProxy(PLUGIN_RPC_CONTEXT.TASKS_MAIN);
}
get taskExecutions(): ReadonlyArray<theia.TaskExecution> {
return [...this.executions.values()];
}
get onDidStartTask(): Event<theia.TaskStartEvent> {
return this.onDidExecuteTask.event;
}
async $onDidStartTask(execution: TaskExecutionDto, terminalId: number): Promise<void> {
const customExecution = this.customExecutionFunctions.get(execution.task.executionId || '');
if (customExecution) {
const taskDefinition = converter.toTask(execution.task).definition;
const pty = await customExecution(taskDefinition);
this.terminalExt.attachPtyToTerminal(terminalId, pty);
if (pty.onDidClose) {
const disposable = pty.onDidClose((e: number | void = undefined) => {
disposable.dispose();
// eslint-disable-next-line no-void
this.proxy.$customExecutionComplete(execution.id, e === void 0 ? undefined : e);
});
}
}
this.lastStartedTask = execution.id;
this.onDidExecuteTask.fire({
execution: this.getTaskExecution(execution)
});
}
get onDidEndTask(): Event<theia.TaskEndEvent> {
return this.onDidTerminateTask.event;
}
$onDidEndTask(id: number): void {
const taskExecution = this.executions.get(id);
if (!taskExecution) {
throw new Error(`Task execution with id ${id} is not found`);
}
this.executions.delete(id);
this.onDidTerminateTask.fire({
execution: taskExecution
});
}
get onDidStartTaskProcess(): Event<theia.TaskProcessStartEvent> {
return this.onDidExecuteTaskProcess.event;
}
$onDidStartTaskProcess(processId: number, executionDto: TaskExecutionDto): void {
this.onDidExecuteTaskProcess.fire({
processId,
execution: this.getTaskExecution(executionDto)
});
}
get onDidEndTaskProcess(): Event<theia.TaskProcessEndEvent> {
return this.onDidTerminateTaskProcess.event;
}
$onDidEndTaskProcess(exitCode: number, taskId: number): void {
const taskExecution = this.executions.get(taskId);
if (!taskExecution) {
throw new Error(`Task execution with id ${taskId} is not found`);
}
this.onDidTerminateTaskProcess.fire({
execution: taskExecution,
exitCode
});
}
registerTaskProvider(type: string, provider: theia.TaskProvider): theia.Disposable {
const callId = this.addNewAdapter(new TaskProviderAdapter(provider));
this.proxy.$registerTaskProvider(callId, type);
return this.createDisposable(callId);
}
async fetchTasks(filter?: theia.TaskFilter): Promise<theia.Task[]> {
const taskVersion = filter ? filter.version : undefined;
const taskType = filter ? filter.type : undefined;
const taskDtos = await this.proxy.$fetchTasks(taskVersion, taskType);
return taskDtos.map(dto => converter.toTask(dto));
}
async executeTask(task: theia.Task): Promise<theia.TaskExecution> {
const taskDto = converter.fromTask(task);
if (taskDto) {
// If this task is a custom execution, then we need to save it away
// in the provided custom execution map that is cleaned up after the
// task is executed.
if (CustomExecution.is(task.execution!)) {
taskDto.executionId = this.addCustomExecution(task.execution!.callback);
}
const executionDto = await this.proxy.$executeTask(taskDto);
if (executionDto) {
const taskExecution = this.getTaskExecution(executionDto);
return taskExecution;
}
throw new Error('Run task config does not return after being started');
}
throw new Error('Task was not successfully transformed into a task config');
}
async $provideTasks(handle: number): Promise<TaskDto[]> {
const adapter = this.adaptersMap.get(handle);
if (adapter) {
return adapter.provideTasks(CancellationToken.None).then(tasks => {
for (const task of tasks) {
if (task.taskType === 'customExecution') {
this.applyCustomExecution(task);
}
}
return tasks;
});
} else {
throw new Error('No adapter found to provide tasks');
}
}
async $resolveTask(handle: number, task: TaskDto, token: theia.CancellationToken): Promise<TaskDto> {
const adapter = this.adaptersMap.get(handle);
if (adapter) {
return adapter.resolveTask(task, token).then(resolvedTask => {
// ensure we do not lose task type and execution id during resolution as we need it for custom execution
resolvedTask.taskType = resolvedTask.taskType ?? task.taskType;
if (resolvedTask.taskType === 'customExecution') {
this.applyCustomExecution(resolvedTask);
}
return resolvedTask;
});
} else {
throw new Error('No adapter found to resolve task');
}
}
private applyCustomExecution(task: TaskDto): void {
if (task.callback) {
task.executionId = this.addCustomExecution(task.callback);
task.callback = undefined;
}
}
private addNewAdapter(adapter: TaskProviderAdapter): number {
const callId = this.nextCallId();
this.adaptersMap.set(callId, adapter);
return callId;
}
private nextCallId(): number {
return this.callId++;
}
private createDisposable(callId: number): theia.Disposable {
return new Disposable(() => {
this.adaptersMap.delete(callId);
this.proxy.$unregister(callId);
});
}
// Initial `this.executions` map with the running tasks from the previous session
async $initLoadedTasks(taskExecutions: TaskExecutionDto[]): Promise<void> {
taskExecutions.forEach(execution => this.getTaskExecution(execution));
}
private getTaskExecution(execution: TaskExecutionDto): theia.TaskExecution {
const executionId = execution.id;
let result: theia.TaskExecution | undefined = this.executions.get(executionId);
if (result) {
return result;
}
result = {
task: converter.toTask(execution.task),
terminate: () => {
this.proxy.$terminateTask(executionId);
}
};
this.executions.set(executionId, result);
return result;
}
private addCustomExecution(callback: ExecutionCallback): string {
let id = this.customExecutionIds.get(callback);
if (!id) {
id = this.nextCallbackId();
this.customExecutionIds.set(callback, id);
this.customExecutionFunctions.set(id, callback);
}
return id;
}
private nextCallbackId(): string {
return this.callbackIdBase + this.callbackId++;
}
}