@theia/task 1.53.0-next.4 → 1.53.0-next.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/README.md +193 -193
  2. package/lib/browser/task-schema-updater.js +1 -1
  3. package/package.json +13 -13
  4. package/src/browser/index.ts +22 -22
  5. package/src/browser/process/process-task-contribution.ts +31 -31
  6. package/src/browser/process/process-task-frontend-module.ts +27 -27
  7. package/src/browser/process/process-task-resolver.ts +89 -89
  8. package/src/browser/provided-task-configurations.spec.ts +46 -46
  9. package/src/browser/provided-task-configurations.ts +213 -213
  10. package/src/browser/quick-open-task.ts +831 -831
  11. package/src/browser/style/index.css +19 -19
  12. package/src/browser/task-configuration-manager.ts +256 -256
  13. package/src/browser/task-configuration-model.ts +101 -101
  14. package/src/browser/task-configurations.ts +508 -508
  15. package/src/browser/task-contribution.ts +266 -266
  16. package/src/browser/task-definition-registry.spec.ts +203 -203
  17. package/src/browser/task-definition-registry.ts +131 -131
  18. package/src/browser/task-frontend-contribution.ts +402 -402
  19. package/src/browser/task-frontend-module.ts +86 -86
  20. package/src/browser/task-name-resolver.ts +55 -55
  21. package/src/browser/task-node.ts +37 -37
  22. package/src/browser/task-preferences.ts +40 -40
  23. package/src/browser/task-problem-matcher-registry.ts +308 -308
  24. package/src/browser/task-problem-pattern-registry.ts +196 -196
  25. package/src/browser/task-schema-updater.ts +701 -701
  26. package/src/browser/task-service.ts +1164 -1164
  27. package/src/browser/task-source-resolver.ts +36 -36
  28. package/src/browser/task-templates.ts +168 -168
  29. package/src/browser/task-terminal-widget-manager.ts +224 -224
  30. package/src/browser/tasks-monaco-contribution.ts +27 -27
  31. package/src/common/index.ts +20 -20
  32. package/src/common/problem-matcher-protocol.ts +234 -234
  33. package/src/common/process/task-protocol.ts +97 -97
  34. package/src/common/task-common-module.ts +34 -34
  35. package/src/common/task-protocol.ts +317 -317
  36. package/src/common/task-util.ts +43 -43
  37. package/src/common/task-watcher.ts +78 -78
  38. package/src/node/custom/custom-task-runner-backend-module.ts +37 -37
  39. package/src/node/custom/custom-task-runner-contribution.ts +30 -30
  40. package/src/node/custom/custom-task-runner.ts +60 -60
  41. package/src/node/custom/custom-task.ts +73 -73
  42. package/src/node/index.ts +19 -19
  43. package/src/node/process/process-task-runner-backend-module.ts +37 -37
  44. package/src/node/process/process-task-runner-contribution.ts +31 -31
  45. package/src/node/process/process-task-runner.ts +371 -371
  46. package/src/node/process/process-task.spec.ts +30 -30
  47. package/src/node/process/process-task.ts +144 -144
  48. package/src/node/task-abstract-line-matcher.ts +312 -312
  49. package/src/node/task-backend-application-contribution.ts +36 -36
  50. package/src/node/task-backend-module.ts +57 -57
  51. package/src/node/task-line-matchers.ts +127 -127
  52. package/src/node/task-manager.ts +129 -129
  53. package/src/node/task-problem-collector.spec.ts +338 -338
  54. package/src/node/task-problem-collector.ts +62 -62
  55. package/src/node/task-runner-protocol.ts +33 -33
  56. package/src/node/task-runner.ts +96 -96
  57. package/src/node/task-server.slow-spec.ts +444 -444
  58. package/src/node/task-server.ts +263 -263
  59. package/src/node/task.ts +103 -103
  60. package/src/node/test/task-test-container.ts +63 -63
@@ -1,129 +1,129 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2017 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
- import { inject, injectable, named } from '@theia/core/shared/inversify';
17
- import { Emitter, Event, ILogger } from '@theia/core/lib/common';
18
- import { BackendApplicationContribution } from '@theia/core/lib/node';
19
- import { Task } from './task';
20
- import { ManagedTaskManager } from '../common';
21
-
22
- // inspired by process-manager.ts
23
-
24
- /**
25
- * The {@link TaskManager} is the common component responsible for managing running tasks.
26
- */
27
- @injectable()
28
- export class TaskManager implements BackendApplicationContribution, ManagedTaskManager<Task> {
29
-
30
- /** contains all running tasks */
31
- protected readonly tasks: Map<number, Task> = new Map();
32
- /** contains running tasks per context */
33
- protected readonly tasksPerCtx: Map<string, Task[]> = new Map();
34
- /** each task has this unique task id, for this back-end */
35
- protected id: number = -1;
36
- /**
37
- * Emit when a registered task is deleted.
38
- */
39
- protected readonly deleteEmitter = new Emitter<number>();
40
-
41
- constructor(
42
- @inject(ILogger) @named('task') protected readonly logger: ILogger
43
- ) { }
44
-
45
- /**
46
- * Registers a new task (in the given context if present). Each registered
47
- * task is considered to be currently running.
48
- * @param task the new task.
49
- * @param ctx the provided context.
50
- *
51
- * @returns the registration id for the given task.
52
- */
53
- register(task: Task, ctx?: string): number {
54
- const id = ++this.id;
55
- this.tasks.set(id, task);
56
-
57
- if (ctx) {
58
- let tks = this.tasksPerCtx.get(ctx);
59
- if (tks === undefined) {
60
- tks = [];
61
- }
62
- tks.push(task);
63
- this.tasksPerCtx.set(ctx, tks);
64
- }
65
-
66
- return id;
67
- }
68
-
69
- /**
70
- * Try to retrieve the registered task for the given id.
71
- * @param id the task registration id.
72
- *
73
- * @returns the task or `undefined` if no task was registered for the given id.
74
- */
75
- get(id: number): Task | undefined {
76
- return this.tasks.get(id);
77
- }
78
-
79
- /**
80
- * Returns all running tasks. If a context is provided, filter-down to
81
- * only tasks started from that context.
82
- * @param ctx the task execution context.
83
- *
84
- * @returns all running tasks for the given context or `undefined` if no tasks are registered for the given context.
85
- */
86
- getTasks(ctx?: string): Task[] | undefined {
87
- if (!ctx) {
88
- return [...this.tasks.values()];
89
- } else {
90
- if (this.tasksPerCtx.has(ctx)) {
91
- return this.tasksPerCtx.get(ctx);
92
- }
93
- }
94
- }
95
-
96
- /**
97
- * Delete the given task from the task manager.
98
- * @param task the task to delete.
99
- */
100
- delete(task: Task): void {
101
- this.tasks.delete(task.id);
102
-
103
- const ctx = task.context;
104
- if (ctx && this.tasksPerCtx.has(ctx)) {
105
- const tasksForWS = this.tasksPerCtx.get(ctx);
106
- if (tasksForWS !== undefined) {
107
- const idx = tasksForWS.indexOf(task);
108
- if (idx !== -1) {
109
- tasksForWS.splice(idx, 1);
110
- }
111
- }
112
- }
113
- this.deleteEmitter.fire(task.id);
114
- }
115
-
116
- get onDelete(): Event<number> {
117
- return this.deleteEmitter.event;
118
- }
119
-
120
- /**
121
- * Is triggered on application stop to cleanup all ongoing tasks.
122
- */
123
- onStop(): void {
124
- this.tasks.forEach((task: Task, id: number) => {
125
- this.logger.debug(`Task Backend application: onStop(): cleaning task id: ${id}`);
126
- this.delete(task);
127
- });
128
- }
129
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2017 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+ import { inject, injectable, named } from '@theia/core/shared/inversify';
17
+ import { Emitter, Event, ILogger } from '@theia/core/lib/common';
18
+ import { BackendApplicationContribution } from '@theia/core/lib/node';
19
+ import { Task } from './task';
20
+ import { ManagedTaskManager } from '../common';
21
+
22
+ // inspired by process-manager.ts
23
+
24
+ /**
25
+ * The {@link TaskManager} is the common component responsible for managing running tasks.
26
+ */
27
+ @injectable()
28
+ export class TaskManager implements BackendApplicationContribution, ManagedTaskManager<Task> {
29
+
30
+ /** contains all running tasks */
31
+ protected readonly tasks: Map<number, Task> = new Map();
32
+ /** contains running tasks per context */
33
+ protected readonly tasksPerCtx: Map<string, Task[]> = new Map();
34
+ /** each task has this unique task id, for this back-end */
35
+ protected id: number = -1;
36
+ /**
37
+ * Emit when a registered task is deleted.
38
+ */
39
+ protected readonly deleteEmitter = new Emitter<number>();
40
+
41
+ constructor(
42
+ @inject(ILogger) @named('task') protected readonly logger: ILogger
43
+ ) { }
44
+
45
+ /**
46
+ * Registers a new task (in the given context if present). Each registered
47
+ * task is considered to be currently running.
48
+ * @param task the new task.
49
+ * @param ctx the provided context.
50
+ *
51
+ * @returns the registration id for the given task.
52
+ */
53
+ register(task: Task, ctx?: string): number {
54
+ const id = ++this.id;
55
+ this.tasks.set(id, task);
56
+
57
+ if (ctx) {
58
+ let tks = this.tasksPerCtx.get(ctx);
59
+ if (tks === undefined) {
60
+ tks = [];
61
+ }
62
+ tks.push(task);
63
+ this.tasksPerCtx.set(ctx, tks);
64
+ }
65
+
66
+ return id;
67
+ }
68
+
69
+ /**
70
+ * Try to retrieve the registered task for the given id.
71
+ * @param id the task registration id.
72
+ *
73
+ * @returns the task or `undefined` if no task was registered for the given id.
74
+ */
75
+ get(id: number): Task | undefined {
76
+ return this.tasks.get(id);
77
+ }
78
+
79
+ /**
80
+ * Returns all running tasks. If a context is provided, filter-down to
81
+ * only tasks started from that context.
82
+ * @param ctx the task execution context.
83
+ *
84
+ * @returns all running tasks for the given context or `undefined` if no tasks are registered for the given context.
85
+ */
86
+ getTasks(ctx?: string): Task[] | undefined {
87
+ if (!ctx) {
88
+ return [...this.tasks.values()];
89
+ } else {
90
+ if (this.tasksPerCtx.has(ctx)) {
91
+ return this.tasksPerCtx.get(ctx);
92
+ }
93
+ }
94
+ }
95
+
96
+ /**
97
+ * Delete the given task from the task manager.
98
+ * @param task the task to delete.
99
+ */
100
+ delete(task: Task): void {
101
+ this.tasks.delete(task.id);
102
+
103
+ const ctx = task.context;
104
+ if (ctx && this.tasksPerCtx.has(ctx)) {
105
+ const tasksForWS = this.tasksPerCtx.get(ctx);
106
+ if (tasksForWS !== undefined) {
107
+ const idx = tasksForWS.indexOf(task);
108
+ if (idx !== -1) {
109
+ tasksForWS.splice(idx, 1);
110
+ }
111
+ }
112
+ }
113
+ this.deleteEmitter.fire(task.id);
114
+ }
115
+
116
+ get onDelete(): Event<number> {
117
+ return this.deleteEmitter.event;
118
+ }
119
+
120
+ /**
121
+ * Is triggered on application stop to cleanup all ongoing tasks.
122
+ */
123
+ onStop(): void {
124
+ this.tasks.forEach((task: Task, id: number) => {
125
+ this.logger.debug(`Task Backend application: onStop(): cleaning task id: ${id}`);
126
+ this.delete(task);
127
+ });
128
+ }
129
+ }