@opensumi/ide-task 2.12.1-next-079c1930
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.
- package/lib/browser/index.d.ts +6 -0
- package/lib/browser/index.d.ts.map +1 -0
- package/lib/browser/index.js +41 -0
- package/lib/browser/index.js.map +1 -0
- package/lib/browser/parser.d.ts +316 -0
- package/lib/browser/parser.d.ts.map +1 -0
- package/lib/browser/parser.js +481 -0
- package/lib/browser/parser.js.map +1 -0
- package/lib/browser/problem-collector.d.ts +27 -0
- package/lib/browser/problem-collector.d.ts.map +1 -0
- package/lib/browser/problem-collector.js +61 -0
- package/lib/browser/problem-collector.js.map +1 -0
- package/lib/browser/problem-line-matcher.d.ts +92 -0
- package/lib/browser/problem-line-matcher.d.ts.map +1 -0
- package/lib/browser/problem-line-matcher.js +378 -0
- package/lib/browser/problem-line-matcher.js.map +1 -0
- package/lib/browser/task-config.d.ts +385 -0
- package/lib/browser/task-config.d.ts.map +1 -0
- package/lib/browser/task-config.js +1427 -0
- package/lib/browser/task-config.js.map +1 -0
- package/lib/browser/task-preferences.contribution.d.ts +6 -0
- package/lib/browser/task-preferences.contribution.d.ts.map +1 -0
- package/lib/browser/task-preferences.contribution.js +17 -0
- package/lib/browser/task-preferences.contribution.js.map +1 -0
- package/lib/browser/task-preferences.d.ts +3 -0
- package/lib/browser/task-preferences.d.ts.map +1 -0
- package/lib/browser/task-preferences.js +15 -0
- package/lib/browser/task-preferences.js.map +1 -0
- package/lib/browser/task-preferences.provider.d.ts +6 -0
- package/lib/browser/task-preferences.provider.d.ts.map +1 -0
- package/lib/browser/task-preferences.provider.js +29 -0
- package/lib/browser/task-preferences.provider.js.map +1 -0
- package/lib/browser/task.contribution.d.ts +8 -0
- package/lib/browser/task.contribution.d.ts.map +1 -0
- package/lib/browser/task.contribution.js +35 -0
- package/lib/browser/task.contribution.js.map +1 -0
- package/lib/browser/task.schema.d.ts +4 -0
- package/lib/browser/task.schema.d.ts.map +1 -0
- package/lib/browser/task.schema.js +294 -0
- package/lib/browser/task.schema.js.map +1 -0
- package/lib/browser/task.service.d.ts +43 -0
- package/lib/browser/task.service.d.ts.map +1 -0
- package/lib/browser/task.service.js +354 -0
- package/lib/browser/task.service.js.map +1 -0
- package/lib/browser/terminal-task-system.d.ts +80 -0
- package/lib/browser/terminal-task-system.d.ts.map +1 -0
- package/lib/browser/terminal-task-system.js +391 -0
- package/lib/browser/terminal-task-system.js.map +1 -0
- package/lib/common/index.d.ts +130 -0
- package/lib/common/index.d.ts.map +1 -0
- package/lib/common/index.js +7 -0
- package/lib/common/index.js.map +1 -0
- package/lib/common/task.d.ts +572 -0
- package/lib/common/task.d.ts.map +1 -0
- package/lib/common/task.js +523 -0
- package/lib/common/task.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/lib/node/index.d.ts +6 -0
- package/lib/node/index.d.ts.map +1 -0
- package/lib/node/index.js +17 -0
- package/lib/node/index.js.map +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (C) 2019 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 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
import { ProblemLocationKind, ProblemPattern, ProblemMatcher, ProblemMatch } from '@opensumi/ide-core-common';
|
|
17
|
+
export interface ProblemData {
|
|
18
|
+
kind?: ProblemLocationKind;
|
|
19
|
+
file?: string;
|
|
20
|
+
location?: string;
|
|
21
|
+
line?: string;
|
|
22
|
+
character?: string;
|
|
23
|
+
endLine?: string;
|
|
24
|
+
endCharacter?: string;
|
|
25
|
+
message?: string;
|
|
26
|
+
severity?: string;
|
|
27
|
+
code?: string;
|
|
28
|
+
}
|
|
29
|
+
export declare abstract class AbstractLineMatcher {
|
|
30
|
+
protected matcher: ProblemMatcher;
|
|
31
|
+
protected patterns: ProblemPattern[];
|
|
32
|
+
protected activePatternIndex: number;
|
|
33
|
+
protected activePattern: ProblemPattern | undefined;
|
|
34
|
+
protected cachedProblemData: ProblemData;
|
|
35
|
+
constructor(matcher: ProblemMatcher);
|
|
36
|
+
/**
|
|
37
|
+
* Finds the problem identified by this line matcher.
|
|
38
|
+
*
|
|
39
|
+
* @param line the line of text to find the problem from
|
|
40
|
+
* @return the identified problem. If the problem is not found, `undefined` is returned.
|
|
41
|
+
*/
|
|
42
|
+
abstract match(line: string): ProblemMatch | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Number of problem patterns that the line matcher uses.
|
|
45
|
+
*/
|
|
46
|
+
get patternCount(): number;
|
|
47
|
+
protected getEmptyProblemData(): ProblemData;
|
|
48
|
+
protected fillProblemData(data: ProblemData | null, pattern: ProblemPattern, matches: RegExpExecArray): data is ProblemData;
|
|
49
|
+
private appendProperty;
|
|
50
|
+
private fillProperty;
|
|
51
|
+
protected getMarkerMatch(data: ProblemData): ProblemMatch | undefined;
|
|
52
|
+
private getLocation;
|
|
53
|
+
private parseLocationInfo;
|
|
54
|
+
private createRange;
|
|
55
|
+
private getZeroBasedRangeIndex;
|
|
56
|
+
private getSeverity;
|
|
57
|
+
private getResource;
|
|
58
|
+
protected resetActivePatternIndex(defaultIndex?: number): void;
|
|
59
|
+
protected nextProblemPattern(): void;
|
|
60
|
+
protected doOneLineMatch(line: string): boolean;
|
|
61
|
+
protected isUsingTheLastPattern(): boolean;
|
|
62
|
+
protected isLastPatternLoop(): boolean;
|
|
63
|
+
protected resetCachedProblemData(): void;
|
|
64
|
+
}
|
|
65
|
+
export declare class StartStopLineMatcher extends AbstractLineMatcher {
|
|
66
|
+
protected matcher: ProblemMatcher;
|
|
67
|
+
constructor(matcher: ProblemMatcher);
|
|
68
|
+
/**
|
|
69
|
+
* Finds the problem identified by this line matcher.
|
|
70
|
+
*
|
|
71
|
+
* @param line the line of text to find the problem from
|
|
72
|
+
* @return the identified problem. If the problem is not found, `undefined` is returned.
|
|
73
|
+
*/
|
|
74
|
+
match(line: string): ProblemMatch | undefined;
|
|
75
|
+
}
|
|
76
|
+
export declare class WatchModeLineMatcher extends StartStopLineMatcher {
|
|
77
|
+
protected matcher: ProblemMatcher;
|
|
78
|
+
private beginsPattern;
|
|
79
|
+
private endsPattern;
|
|
80
|
+
activeOnStart: boolean;
|
|
81
|
+
constructor(matcher: ProblemMatcher);
|
|
82
|
+
/**
|
|
83
|
+
* Finds the problem identified by this line matcher.
|
|
84
|
+
*
|
|
85
|
+
* @param line the line of text to find the problem from
|
|
86
|
+
* @return the identified problem. If the problem is not found, `undefined` is returned.
|
|
87
|
+
*/
|
|
88
|
+
match(line: string): ProblemMatch | undefined;
|
|
89
|
+
matchBegin(line: string): boolean;
|
|
90
|
+
matchEnd(line: string): boolean;
|
|
91
|
+
}
|
|
92
|
+
//# sourceMappingURL=problem-line-matcher.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"problem-line-matcher.d.ts","sourceRoot":"","sources":["../../src/browser/problem-line-matcher.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAGlF,OAAO,EAAa,mBAAmB,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAsE,MAAM,2BAA2B,CAAC;AAK7L,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,mBAAmB,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,8BAAsB,mBAAmB;IAQrC,SAAS,CAAC,OAAO,EAAE,cAAc;IANnC,SAAS,CAAC,QAAQ,EAAE,cAAc,EAAE,CAAM;IAC1C,SAAS,CAAC,kBAAkB,EAAE,MAAM,CAAK;IACzC,SAAS,CAAC,aAAa,EAAE,cAAc,GAAG,SAAS,CAAC;IACpD,SAAS,CAAC,iBAAiB,EAAE,WAAW,CAAC;gBAG7B,OAAO,EAAE,cAAc;IAenC;;;;;OAKG;IACH,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS;IAEtD;;OAEG;IACH,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED,SAAS,CAAC,mBAAmB,IAAI,WAAW;IAK5C,SAAS,CAAC,eAAe,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,IAAI,IAAI,WAAW;IAgB3H,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,YAAY;IAapB,SAAS,CAAC,cAAc,CAAC,IAAI,EAAE,WAAW,GAAG,YAAY,GAAG,SAAS;IA+BrE,OAAO,CAAC,WAAW;IAkBnB,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,WAAW;IAmBnB,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,WAAW;IA6BnB,OAAO,CAAC,WAAW;IA0BnB,SAAS,CAAC,uBAAuB,CAAC,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI;IAQ9D,SAAS,CAAC,kBAAkB,IAAI,IAAI;IASpC,SAAS,CAAC,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAe/C,SAAS,CAAC,qBAAqB,IAAI,OAAO;IAI1C,SAAS,CAAC,iBAAiB,IAAI,OAAO;IAItC,SAAS,CAAC,sBAAsB,IAAI,IAAI;CAGzC;AAED,qBAAa,oBAAqB,SAAQ,mBAAmB;IAGzD,SAAS,CAAC,OAAO,EAAE,cAAc;gBAAvB,OAAO,EAAE,cAAc;IAKnC;;;;;OAKG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS;CA8B9C;AAED,qBAAa,oBAAqB,SAAQ,oBAAoB;IAO1D,SAAS,CAAC,OAAO,EAAE,cAAc;IALnC,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,WAAW,CAAkB;IACrC,aAAa,EAAE,OAAO,CAAS;gBAGnB,OAAO,EAAE,cAAc;IASnC;;;;;OAKG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS;IAuB7C,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAWjC,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;CAShC"}
|
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (C) 2019 Ericsson and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
// Some code copued and modified from https://github.com/eclipse-theia/theia/tree/v1.14.0/packages/task/src/node/task-abstract-line-matcher.ts
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.WatchModeLineMatcher = exports.StartStopLineMatcher = exports.AbstractLineMatcher = void 0;
|
|
20
|
+
const ide_core_common_1 = require("@opensumi/ide-core-common");
|
|
21
|
+
const endOfLine = ide_core_common_1.isWindows ? '\r\n' : '\n';
|
|
22
|
+
class AbstractLineMatcher {
|
|
23
|
+
constructor(matcher) {
|
|
24
|
+
this.matcher = matcher;
|
|
25
|
+
this.patterns = [];
|
|
26
|
+
this.activePatternIndex = 0;
|
|
27
|
+
if (Array.isArray(matcher.pattern)) {
|
|
28
|
+
this.patterns = matcher.pattern;
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
this.patterns = [matcher.pattern];
|
|
32
|
+
}
|
|
33
|
+
this.cachedProblemData = this.getEmptyProblemData();
|
|
34
|
+
if (this.patterns.slice(0, this.patternCount - 1).some((p) => !!p.loop)) {
|
|
35
|
+
// tslint:disable-next-line:no-console
|
|
36
|
+
console.error('Problem Matcher: Only the last pattern can loop');
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Number of problem patterns that the line matcher uses.
|
|
41
|
+
*/
|
|
42
|
+
get patternCount() {
|
|
43
|
+
return this.patterns.length;
|
|
44
|
+
}
|
|
45
|
+
getEmptyProblemData() {
|
|
46
|
+
// eslint-disable-next-line no-null/no-null
|
|
47
|
+
return Object.create(null);
|
|
48
|
+
}
|
|
49
|
+
fillProblemData(data, pattern, matches) {
|
|
50
|
+
if (data) {
|
|
51
|
+
this.fillProperty(data, 'file', pattern, matches, true);
|
|
52
|
+
this.appendProperty(data, 'message', pattern, matches, true);
|
|
53
|
+
this.fillProperty(data, 'code', pattern, matches, true);
|
|
54
|
+
this.fillProperty(data, 'severity', pattern, matches, true);
|
|
55
|
+
this.fillProperty(data, 'location', pattern, matches, true);
|
|
56
|
+
this.fillProperty(data, 'line', pattern, matches);
|
|
57
|
+
this.fillProperty(data, 'character', pattern, matches);
|
|
58
|
+
this.fillProperty(data, 'endLine', pattern, matches);
|
|
59
|
+
this.fillProperty(data, 'endCharacter', pattern, matches);
|
|
60
|
+
return true;
|
|
61
|
+
}
|
|
62
|
+
return false;
|
|
63
|
+
}
|
|
64
|
+
appendProperty(data, property, pattern, matches, trim = false) {
|
|
65
|
+
const patternProperty = pattern[property];
|
|
66
|
+
if (data[property] === undefined) {
|
|
67
|
+
this.fillProperty(data, property, pattern, matches, trim);
|
|
68
|
+
}
|
|
69
|
+
else if (patternProperty !== undefined && patternProperty < matches.length) {
|
|
70
|
+
let value = matches[patternProperty];
|
|
71
|
+
if (trim) {
|
|
72
|
+
value = value.trim();
|
|
73
|
+
}
|
|
74
|
+
data[property] += endOfLine + value;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
fillProperty(data, property, pattern, matches, trim = false) {
|
|
78
|
+
const patternAtProperty = pattern[property];
|
|
79
|
+
if (data[property] === undefined && patternAtProperty !== undefined && patternAtProperty < matches.length) {
|
|
80
|
+
let value = matches[patternAtProperty];
|
|
81
|
+
if (value !== undefined) {
|
|
82
|
+
if (trim) {
|
|
83
|
+
value = value.trim();
|
|
84
|
+
}
|
|
85
|
+
data[property] = value;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
getMarkerMatch(data) {
|
|
90
|
+
try {
|
|
91
|
+
const location = this.getLocation(data);
|
|
92
|
+
if (data.file && location && data.message) {
|
|
93
|
+
const marker = {
|
|
94
|
+
severity: this.getSeverity(data),
|
|
95
|
+
range: location,
|
|
96
|
+
message: data.message,
|
|
97
|
+
};
|
|
98
|
+
if (data.code !== undefined) {
|
|
99
|
+
marker.code = data.code;
|
|
100
|
+
}
|
|
101
|
+
if (this.matcher.source !== undefined) {
|
|
102
|
+
marker.source = this.matcher.source;
|
|
103
|
+
}
|
|
104
|
+
return {
|
|
105
|
+
description: this.matcher,
|
|
106
|
+
resource: this.getResource(data.file, this.matcher),
|
|
107
|
+
marker,
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
return {
|
|
111
|
+
description: this.matcher,
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
catch (err) {
|
|
115
|
+
// tslint:disable-next-line:no-console
|
|
116
|
+
console.error(`Failed to convert problem data into match: ${JSON.stringify(data)}`);
|
|
117
|
+
}
|
|
118
|
+
return undefined;
|
|
119
|
+
}
|
|
120
|
+
getLocation(data) {
|
|
121
|
+
if (data.kind === ide_core_common_1.ProblemLocationKind.File) {
|
|
122
|
+
return this.createRange(0, 0, 0, 0);
|
|
123
|
+
}
|
|
124
|
+
if (data.location) {
|
|
125
|
+
return this.parseLocationInfo(data.location);
|
|
126
|
+
}
|
|
127
|
+
if (!data.line) {
|
|
128
|
+
// eslint-disable-next-line no-null/no-null
|
|
129
|
+
return null;
|
|
130
|
+
}
|
|
131
|
+
const startLine = parseInt(data.line, 10);
|
|
132
|
+
const startColumn = data.character ? parseInt(data.character, 10) : undefined;
|
|
133
|
+
const endLine = data.endLine ? parseInt(data.endLine, 10) : undefined;
|
|
134
|
+
const endColumn = data.endCharacter ? parseInt(data.endCharacter, 10) : undefined;
|
|
135
|
+
return this.createRange(startLine, startColumn, endLine, endColumn);
|
|
136
|
+
}
|
|
137
|
+
parseLocationInfo(value) {
|
|
138
|
+
if (!value || !value.match(/(\d+|\d+,\d+|\d+,\d+,\d+,\d+)/)) {
|
|
139
|
+
// eslint-disable-next-line no-null/no-null
|
|
140
|
+
return null;
|
|
141
|
+
}
|
|
142
|
+
const parts = value.split(',');
|
|
143
|
+
const startLine = parseInt(parts[0], 10);
|
|
144
|
+
const startColumn = parts.length > 1 ? parseInt(parts[1], 10) : undefined;
|
|
145
|
+
if (parts.length > 3) {
|
|
146
|
+
return this.createRange(startLine, startColumn, parseInt(parts[2], 10), parseInt(parts[3], 10));
|
|
147
|
+
}
|
|
148
|
+
else {
|
|
149
|
+
return this.createRange(startLine, startColumn, undefined, undefined);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
createRange(startLine, startColumn, endLine, endColumn) {
|
|
153
|
+
let range;
|
|
154
|
+
if (startColumn !== undefined) {
|
|
155
|
+
if (endColumn !== undefined) {
|
|
156
|
+
range = { start: { line: startLine, character: startColumn }, end: { line: endLine || startLine, character: endColumn } };
|
|
157
|
+
}
|
|
158
|
+
else {
|
|
159
|
+
range = { start: { line: startLine, character: startColumn }, end: { line: startLine, character: startColumn } };
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
else {
|
|
163
|
+
range = { start: { line: startLine, character: 1 }, end: { line: startLine, character: Number.MAX_VALUE } };
|
|
164
|
+
}
|
|
165
|
+
// range indexes should be zero-based
|
|
166
|
+
return {
|
|
167
|
+
start: { line: this.getZeroBasedRangeIndex(range.start.line), character: this.getZeroBasedRangeIndex(range.start.character) },
|
|
168
|
+
end: { line: this.getZeroBasedRangeIndex(range.end.line), character: this.getZeroBasedRangeIndex(range.end.character) },
|
|
169
|
+
};
|
|
170
|
+
}
|
|
171
|
+
getZeroBasedRangeIndex(ind) {
|
|
172
|
+
return ind === 0 ? ind : ind - 1;
|
|
173
|
+
}
|
|
174
|
+
getSeverity(data) {
|
|
175
|
+
// eslint-disable-next-line no-null/no-null
|
|
176
|
+
let result = null;
|
|
177
|
+
if (data.severity) {
|
|
178
|
+
const value = data.severity;
|
|
179
|
+
if (value) {
|
|
180
|
+
result = ide_core_common_1.Severity.fromValue(value);
|
|
181
|
+
if (result === ide_core_common_1.Severity.Ignore) {
|
|
182
|
+
if (value === 'E') {
|
|
183
|
+
result = ide_core_common_1.Severity.Error;
|
|
184
|
+
}
|
|
185
|
+
else if (value === 'W') {
|
|
186
|
+
result = ide_core_common_1.Severity.Warning;
|
|
187
|
+
}
|
|
188
|
+
else if (value === 'I') {
|
|
189
|
+
result = ide_core_common_1.Severity.Info;
|
|
190
|
+
}
|
|
191
|
+
else if (value.toLowerCase() === 'hint') {
|
|
192
|
+
result = ide_core_common_1.Severity.Info;
|
|
193
|
+
}
|
|
194
|
+
else if (value.toLowerCase() === 'note') {
|
|
195
|
+
result = ide_core_common_1.Severity.Info;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
// eslint-disable-next-line no-null/no-null
|
|
201
|
+
if (result === null || result === ide_core_common_1.Severity.Ignore) {
|
|
202
|
+
result = ide_core_common_1.Severity.fromValue(this.matcher.severity) || ide_core_common_1.Severity.Error;
|
|
203
|
+
}
|
|
204
|
+
return ide_core_common_1.Severity.toDiagnosticSeverity(result);
|
|
205
|
+
}
|
|
206
|
+
getResource(filename, matcher) {
|
|
207
|
+
const kind = matcher.fileLocation;
|
|
208
|
+
let fullPath;
|
|
209
|
+
if (kind === ide_core_common_1.FileLocationKind.Absolute) {
|
|
210
|
+
fullPath = filename;
|
|
211
|
+
}
|
|
212
|
+
else if ((kind === ide_core_common_1.FileLocationKind.Relative) && matcher.filePrefix) {
|
|
213
|
+
let relativeFileName = filename.replace(/\\/g, '/');
|
|
214
|
+
if (relativeFileName.startsWith('./')) {
|
|
215
|
+
relativeFileName = relativeFileName.slice(2);
|
|
216
|
+
}
|
|
217
|
+
fullPath = new ide_core_common_1.URI(matcher.filePrefix).resolve(relativeFileName).path.toString();
|
|
218
|
+
}
|
|
219
|
+
if (fullPath === undefined) {
|
|
220
|
+
throw new Error('FileLocationKind is not actionable. Does the matcher have a filePrefix? This should never happen.');
|
|
221
|
+
}
|
|
222
|
+
fullPath = fullPath.replace(/\\/g, '/');
|
|
223
|
+
if (fullPath[0] !== '/') {
|
|
224
|
+
fullPath = '/' + fullPath;
|
|
225
|
+
}
|
|
226
|
+
if (matcher.uriProvider !== undefined) {
|
|
227
|
+
return matcher.uriProvider(fullPath);
|
|
228
|
+
}
|
|
229
|
+
else {
|
|
230
|
+
return ide_core_common_1.URI.file(fullPath);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
resetActivePatternIndex(defaultIndex) {
|
|
234
|
+
if (defaultIndex === undefined) {
|
|
235
|
+
defaultIndex = 0;
|
|
236
|
+
}
|
|
237
|
+
this.activePatternIndex = defaultIndex;
|
|
238
|
+
this.activePattern = this.patterns[defaultIndex];
|
|
239
|
+
}
|
|
240
|
+
nextProblemPattern() {
|
|
241
|
+
this.activePatternIndex++;
|
|
242
|
+
if (this.activePatternIndex > this.patternCount - 1) {
|
|
243
|
+
this.resetActivePatternIndex();
|
|
244
|
+
}
|
|
245
|
+
else {
|
|
246
|
+
this.activePattern = this.patterns[this.activePatternIndex];
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
doOneLineMatch(line) {
|
|
250
|
+
if (this.activePattern) {
|
|
251
|
+
const regexp = new RegExp(this.activePattern.regexp);
|
|
252
|
+
const regexMatches = regexp.exec(line);
|
|
253
|
+
if (regexMatches) {
|
|
254
|
+
if (this.activePattern.kind !== undefined && this.cachedProblemData.kind !== undefined) {
|
|
255
|
+
this.cachedProblemData.kind = this.activePattern.kind;
|
|
256
|
+
}
|
|
257
|
+
return this.fillProblemData(this.cachedProblemData, this.activePattern, regexMatches);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
return false;
|
|
261
|
+
}
|
|
262
|
+
// check if active pattern is the last pattern
|
|
263
|
+
isUsingTheLastPattern() {
|
|
264
|
+
return this.patternCount > 0 && this.activePatternIndex === this.patternCount - 1;
|
|
265
|
+
}
|
|
266
|
+
isLastPatternLoop() {
|
|
267
|
+
return this.patternCount > 0 && !!this.patterns[this.patternCount - 1].loop;
|
|
268
|
+
}
|
|
269
|
+
resetCachedProblemData() {
|
|
270
|
+
this.cachedProblemData = this.getEmptyProblemData();
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
exports.AbstractLineMatcher = AbstractLineMatcher;
|
|
274
|
+
class StartStopLineMatcher extends AbstractLineMatcher {
|
|
275
|
+
constructor(matcher) {
|
|
276
|
+
super(matcher);
|
|
277
|
+
this.matcher = matcher;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Finds the problem identified by this line matcher.
|
|
281
|
+
*
|
|
282
|
+
* @param line the line of text to find the problem from
|
|
283
|
+
* @return the identified problem. If the problem is not found, `undefined` is returned.
|
|
284
|
+
*/
|
|
285
|
+
match(line) {
|
|
286
|
+
if (!this.activePattern) {
|
|
287
|
+
this.resetActivePatternIndex();
|
|
288
|
+
}
|
|
289
|
+
if (this.activePattern) {
|
|
290
|
+
const originalProblemData = Object.assign(this.getEmptyProblemData(), this.cachedProblemData);
|
|
291
|
+
const foundMatch = this.doOneLineMatch(line);
|
|
292
|
+
if (foundMatch) {
|
|
293
|
+
if (this.isUsingTheLastPattern()) {
|
|
294
|
+
const matchResult = this.getMarkerMatch(this.cachedProblemData);
|
|
295
|
+
if (this.isLastPatternLoop()) {
|
|
296
|
+
this.cachedProblemData = originalProblemData;
|
|
297
|
+
}
|
|
298
|
+
else {
|
|
299
|
+
this.resetCachedProblemData();
|
|
300
|
+
this.resetActivePatternIndex();
|
|
301
|
+
}
|
|
302
|
+
return matchResult;
|
|
303
|
+
}
|
|
304
|
+
else {
|
|
305
|
+
this.nextProblemPattern();
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
else {
|
|
309
|
+
this.resetCachedProblemData();
|
|
310
|
+
if (this.activePatternIndex !== 0) { // if no match, use the first pattern to parse the same line
|
|
311
|
+
this.resetActivePatternIndex();
|
|
312
|
+
return this.match(line);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
return undefined;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
exports.StartStopLineMatcher = StartStopLineMatcher;
|
|
320
|
+
class WatchModeLineMatcher extends StartStopLineMatcher {
|
|
321
|
+
constructor(matcher) {
|
|
322
|
+
super(matcher);
|
|
323
|
+
this.matcher = matcher;
|
|
324
|
+
this.activeOnStart = false;
|
|
325
|
+
this.beginsPattern = matcher.watching.beginsPattern;
|
|
326
|
+
this.endsPattern = matcher.watching.endsPattern;
|
|
327
|
+
this.activeOnStart = matcher.watching.activeOnStart === true;
|
|
328
|
+
this.resetActivePatternIndex(this.activeOnStart ? 0 : -1);
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* Finds the problem identified by this line matcher.
|
|
332
|
+
*
|
|
333
|
+
* @param line the line of text to find the problem from
|
|
334
|
+
* @return the identified problem. If the problem is not found, `undefined` is returned.
|
|
335
|
+
*/
|
|
336
|
+
match(line) {
|
|
337
|
+
if (this.activeOnStart) {
|
|
338
|
+
this.activeOnStart = false;
|
|
339
|
+
this.resetActivePatternIndex(0);
|
|
340
|
+
this.resetCachedProblemData();
|
|
341
|
+
return super.match(line);
|
|
342
|
+
}
|
|
343
|
+
if (this.matchBegin(line)) {
|
|
344
|
+
const beginsPatternMatch = this.getMarkerMatch(this.cachedProblemData);
|
|
345
|
+
this.resetCachedProblemData();
|
|
346
|
+
return beginsPatternMatch;
|
|
347
|
+
}
|
|
348
|
+
if (this.matchEnd(line)) {
|
|
349
|
+
this.resetCachedProblemData();
|
|
350
|
+
return undefined;
|
|
351
|
+
}
|
|
352
|
+
if (this.activePattern) {
|
|
353
|
+
return super.match(line);
|
|
354
|
+
}
|
|
355
|
+
return undefined;
|
|
356
|
+
}
|
|
357
|
+
matchBegin(line) {
|
|
358
|
+
const beginRegexp = new RegExp(this.beginsPattern.regexp);
|
|
359
|
+
const regexMatches = beginRegexp.exec(line);
|
|
360
|
+
if (regexMatches) {
|
|
361
|
+
this.fillProblemData(this.cachedProblemData, this.beginsPattern, regexMatches);
|
|
362
|
+
this.resetActivePatternIndex(0);
|
|
363
|
+
return true;
|
|
364
|
+
}
|
|
365
|
+
return false;
|
|
366
|
+
}
|
|
367
|
+
matchEnd(line) {
|
|
368
|
+
const endRegexp = new RegExp(this.endsPattern.regexp);
|
|
369
|
+
const match = endRegexp.exec(line);
|
|
370
|
+
if (match) {
|
|
371
|
+
this.resetActivePatternIndex(-1);
|
|
372
|
+
return true;
|
|
373
|
+
}
|
|
374
|
+
return false;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
exports.WatchModeLineMatcher = WatchModeLineMatcher;
|
|
378
|
+
//# sourceMappingURL=problem-line-matcher.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"problem-line-matcher.js","sourceRoot":"","sources":["../../src/browser/problem-line-matcher.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;AAClF,8IAA8I;;;AAE9I,+DAA6L;AAG7L,MAAM,SAAS,GAAW,2BAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC;AAepD,MAAsB,mBAAmB;IAOvC,YACY,OAAuB;QAAvB,YAAO,GAAP,OAAO,CAAgB;QANzB,aAAQ,GAAqB,EAAE,CAAC;QAChC,uBAAkB,GAAW,CAAC,CAAC;QAOvC,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;YAClC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,OAAO,CAAC;SACjC;aAAM;YACL,IAAI,CAAC,QAAQ,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;SACnC;QACD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC;QAEpD,IAAI,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;YACtE,sCAAsC;YACvC,OAAO,CAAC,KAAK,CAAC,iDAAiD,CAAC,CAAC;SAClE;IACH,CAAC;IAUD;;OAEG;IACH,IAAI,YAAY;QACd,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;IAC9B,CAAC;IAES,mBAAmB;QAC3B,2CAA2C;QAC3C,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAgB,CAAC;IAC5C,CAAC;IAES,eAAe,CAAC,IAAwB,EAAE,OAAuB,EAAE,OAAwB;QACnG,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;YACxD,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;YAC7D,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;YACxD,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;YAC5D,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;YAC5D,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YAClD,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YACvD,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YACrD,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YAC1D,OAAO,IAAI,CAAC;SACb;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAEO,cAAc,CAAC,IAAiB,EAAE,QAA2B,EAAE,OAAuB,EAAE,OAAwB,EAAE,OAAgB,KAAK;QAC7I,MAAM,eAAe,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC1C,IAAI,IAAI,CAAC,QAAQ,CAAC,KAAK,SAAS,EAAE;YAChC,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;SAC3D;aAAM,IAAI,eAAe,KAAK,SAAS,IAAI,eAAe,GAAG,OAAO,CAAC,MAAM,EAAE;YAC5E,IAAI,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;YACrC,IAAI,IAAI,EAAE;gBACR,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC;aACtB;YACA,IAAI,CAAC,QAAQ,CAAY,IAAI,SAAS,GAAG,KAAK,CAAC;SACjD;IACH,CAAC;IAEO,YAAY,CAAC,IAAiB,EAAE,QAA2B,EAAE,OAAuB,EAAE,OAAwB,EAAE,OAAgB,KAAK;QAC3I,MAAM,iBAAiB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC5C,IAAI,IAAI,CAAC,QAAQ,CAAC,KAAK,SAAS,IAAI,iBAAiB,KAAK,SAAS,IAAI,iBAAiB,GAAG,OAAO,CAAC,MAAM,EAAE;YACzG,IAAI,KAAK,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;YACvC,IAAI,KAAK,KAAK,SAAS,EAAE;gBACvB,IAAI,IAAI,EAAE;oBACR,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC;iBACtB;gBACA,IAAI,CAAC,QAAQ,CAAY,GAAG,KAAK,CAAC;aACpC;SACF;IACH,CAAC;IAES,cAAc,CAAC,IAAiB;QACxC,IAAI;YACF,MAAM,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;YACxC,IAAI,IAAI,CAAC,IAAI,IAAI,QAAQ,IAAI,IAAI,CAAC,OAAO,EAAE;gBACzC,MAAM,MAAM,GAAe;oBACzB,QAAQ,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC;oBAChC,KAAK,EAAE,QAAQ;oBACf,OAAO,EAAE,IAAI,CAAC,OAAO;iBACtB,CAAC;gBACF,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,EAAE;oBAC3B,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;iBACzB;gBACD,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,SAAS,EAAE;oBACrC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;iBACrC;gBACD,OAAO;oBACL,WAAW,EAAE,IAAI,CAAC,OAAO;oBACzB,QAAQ,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC;oBACnD,MAAM;iBACa,CAAC;aACvB;YACD,OAAO;gBACL,WAAW,EAAE,IAAI,CAAC,OAAO;aAC1B,CAAC;SACH;QAAC,OAAO,GAAG,EAAE;YACZ,sCAAsC;YACtC,OAAO,CAAC,KAAK,CAAC,8CAA8C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;SACrF;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;IAEO,WAAW,CAAC,IAAiB;QACnC,IAAI,IAAI,CAAC,IAAI,KAAK,qCAAmB,CAAC,IAAI,EAAE;YAC1C,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;SACrC;QACD,IAAI,IAAI,CAAC,QAAQ,EAAE;YACjB,OAAO,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SAC9C;QACD,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE;YACd,2CAA2C;YAC3C,OAAO,IAAI,CAAC;SACb;QACD,MAAM,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;QAC1C,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAC9E,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QACtE,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAClF,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,WAAW,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;IACtE,CAAC;IAEO,iBAAiB,CAAC,KAAa;QACrC,IAAI,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,+BAA+B,CAAC,EAAE;YAC3D,2CAA2C;YAC3C,OAAO,IAAI,CAAC;SACb;QACD,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAC/B,MAAM,SAAS,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;QACzC,MAAM,WAAW,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAC1E,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;YACpB,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;SACjG;aAAM;YACL,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,SAAS,CAAC,CAAC;SACvE;IACH,CAAC;IAEO,WAAW,CAAC,SAAiB,EAAE,WAA+B,EAAE,OAA2B,EAAE,SAA6B;QAChI,IAAI,KAAY,CAAC;QACjB,IAAI,WAAW,KAAK,SAAS,EAAE;YAC7B,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC3B,KAAK,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,OAAO,IAAI,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,EAAW,CAAC;aACpI;iBAAM;gBACL,KAAK,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,EAAW,CAAC;aAC3H;SACF;aAAM;YACL,KAAK,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,SAAS,EAAE,EAAW,CAAC;SACtH;QAED,qCAAqC;QACrC,OAAO;YACL,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,EAAE;YAC7H,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,SAAS,EAAG,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE;SAC/G,CAAC;IACd,CAAC;IAEO,sBAAsB,CAAC,GAAW;QACxC,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACnC,CAAC;IAEO,WAAW,CAAC,IAAiB;QACnC,2CAA2C;QAC3C,IAAI,MAAM,GAAoB,IAAI,CAAC;QACnC,IAAI,IAAI,CAAC,QAAQ,EAAE;YACjB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC;YAC5B,IAAI,KAAK,EAAE;gBACT,MAAM,GAAG,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;gBACnC,IAAI,MAAM,KAAK,0BAAQ,CAAC,MAAM,EAAE;oBAC9B,IAAI,KAAK,KAAK,GAAG,EAAE;wBACjB,MAAM,GAAG,0BAAQ,CAAC,KAAK,CAAC;qBACzB;yBAAM,IAAI,KAAK,KAAK,GAAG,EAAE;wBACxB,MAAM,GAAG,0BAAQ,CAAC,OAAO,CAAC;qBAC3B;yBAAM,IAAI,KAAK,KAAK,GAAG,EAAE;wBACxB,MAAM,GAAG,0BAAQ,CAAC,IAAI,CAAC;qBACxB;yBAAM,IAAI,KAAK,CAAC,WAAW,EAAE,KAAK,MAAM,EAAE;wBACzC,MAAM,GAAG,0BAAQ,CAAC,IAAI,CAAC;qBACxB;yBAAM,IAAI,KAAK,CAAC,WAAW,EAAE,KAAK,MAAM,EAAE;wBACzC,MAAM,GAAG,0BAAQ,CAAC,IAAI,CAAC;qBACxB;iBACF;aACF;SACF;QACD,2CAA2C;QAC3C,IAAI,MAAM,KAAK,IAAI,IAAI,MAAM,KAAK,0BAAQ,CAAC,MAAM,EAAE;YACjD,MAAM,GAAG,0BAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,QAAkB,CAAC,IAAI,0BAAQ,CAAC,KAAK,CAAC;SAChF;QACD,OAAO,0BAAQ,CAAC,oBAAoB,CAAC,MAAkB,CAAC,CAAC;IAC3D,CAAC;IAEO,WAAW,CAAC,QAAgB,EAAE,OAAuB;QAC3D,MAAM,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC;QAClC,IAAI,QAA4B,CAAC;QACjC,IAAI,IAAI,KAAK,kCAAgB,CAAC,QAAQ,EAAE;YACtC,QAAQ,GAAG,QAAQ,CAAC;SACrB;aAAM,IAAI,CAAC,IAAI,KAAK,kCAAgB,CAAC,QAAQ,CAAC,IAAI,OAAO,CAAC,UAAU,EAAE;YACrE,IAAI,gBAAgB,GAAG,QAAQ,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;YACpD,IAAI,gBAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;gBACrC,gBAAgB,GAAG,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;aAC9C;YACD,QAAQ,GAAG,IAAI,qBAAG,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;SAClF;QACD,IAAI,QAAQ,KAAK,SAAS,EAAE;YAC1B,MAAM,IAAI,KAAK,CAAC,mGAAmG,CAAC,CAAC;SACtH;QACD,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QACxC,IAAI,QAAQ,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;YACvB,QAAQ,GAAG,GAAG,GAAG,QAAQ,CAAC;SAC3B;QACD,IAAI,OAAO,CAAC,WAAW,KAAK,SAAS,EAAE;YACrC,OAAO,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;SACtC;aAAM;YACL,OAAO,qBAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SAC3B;IACH,CAAC;IAES,uBAAuB,CAAC,YAAqB;QACrD,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,YAAY,GAAG,CAAC,CAAC;SAClB;QACD,IAAI,CAAC,kBAAkB,GAAG,YAAY,CAAC;QACvC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IACnD,CAAC;IAES,kBAAkB;QAC1B,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,IAAI,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,YAAY,GAAG,CAAC,EAAE;YACnD,IAAI,CAAC,uBAAuB,EAAE,CAAC;SAChC;aAAM;YACL,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;SAC7D;IACH,CAAC;IAES,cAAc,CAAC,IAAY;QACnC,IAAI,IAAI,CAAC,aAAa,EAAE;YACtB,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,MAAO,CAAC,CAAC;YACtD,MAAM,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACvC,IAAI,YAAY,EAAE;gBAChB,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,KAAK,SAAS,IAAI,IAAI,CAAC,iBAAiB,CAAC,IAAI,KAAK,SAAS,EAAE;oBACtF,IAAI,CAAC,iBAAiB,CAAC,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC;iBACvD;gBACD,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;aACvF;SACF;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAED,8CAA8C;IACpC,qBAAqB;QAC7B,OAAO,IAAI,CAAC,YAAY,GAAG,CAAC,IAAI,IAAI,CAAC,kBAAkB,KAAK,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACpF,CAAC;IAES,iBAAiB;QACzB,OAAO,IAAI,CAAC,YAAY,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC;IAC9E,CAAC;IAES,sBAAsB;QAC9B,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC;IACtD,CAAC;CACF;AA9QD,kDA8QC;AAED,MAAa,oBAAqB,SAAQ,mBAAmB;IAE3D,YACY,OAAuB;QAEjC,KAAK,CAAC,OAAO,CAAC,CAAC;QAFL,YAAO,GAAP,OAAO,CAAgB;IAGnC,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,IAAY;QAChB,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;YACvB,IAAI,CAAC,uBAAuB,EAAE,CAAC;SAChC;QACD,IAAI,IAAI,CAAC,aAAa,EAAE;YACtB,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;YAC9F,MAAM,UAAU,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;YAC7C,IAAI,UAAU,EAAE;gBACd,IAAI,IAAI,CAAC,qBAAqB,EAAE,EAAE;oBAChC,MAAM,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;oBAChE,IAAI,IAAI,CAAC,iBAAiB,EAAE,EAAE;wBAC5B,IAAI,CAAC,iBAAiB,GAAG,mBAAmB,CAAC;qBAC9C;yBAAM;wBACL,IAAI,CAAC,sBAAsB,EAAE,CAAC;wBAC9B,IAAI,CAAC,uBAAuB,EAAE,CAAC;qBAChC;oBACD,OAAO,WAAW,CAAC;iBACpB;qBAAM;oBACL,IAAI,CAAC,kBAAkB,EAAE,CAAC;iBAC3B;aACF;iBAAM;gBACL,IAAI,CAAC,sBAAsB,EAAE,CAAC;gBAC9B,IAAI,IAAI,CAAC,kBAAkB,KAAK,CAAC,EAAE,EAAE,4DAA4D;oBAC/F,IAAI,CAAC,uBAAuB,EAAE,CAAC;oBAC/B,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;iBACzB;aACF;SACF;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;CACF;AA5CD,oDA4CC;AAED,MAAa,oBAAqB,SAAQ,oBAAoB;IAM5D,YACY,OAAuB;QAEjC,KAAK,CAAC,OAAO,CAAC,CAAC;QAFL,YAAO,GAAP,OAAO,CAAgB;QAHnC,kBAAa,GAAY,KAAK,CAAC;QAM7B,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,QAAS,CAAC,aAAa,CAAC;QACrD,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,QAAS,CAAC,WAAW,CAAC;QACjD,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,QAAS,CAAC,aAAa,KAAK,IAAI,CAAC;QAC9D,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC5D,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,IAAY;QAChB,IAAI,IAAI,CAAC,aAAa,EAAE;YACtB,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;YAC3B,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,sBAAsB,EAAE,CAAC;YAC9B,OAAO,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;SAC1B;QAED,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACzB,MAAM,kBAAkB,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;YACvE,IAAI,CAAC,sBAAsB,EAAE,CAAC;YAC9B,OAAO,kBAAkB,CAAC;SAC3B;QACD,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YACvB,IAAI,CAAC,sBAAsB,EAAE,CAAC;YAC9B,OAAO,SAAS,CAAC;SAClB;QACD,IAAI,IAAI,CAAC,aAAa,EAAE;YACtB,OAAO,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;SAC1B;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,UAAU,CAAC,IAAY;QACrB,MAAM,WAAW,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QAC1D,MAAM,YAAY,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC5C,IAAI,YAAY,EAAE;YAChB,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;YAC/E,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC;YAChC,OAAO,IAAI,CAAC;SACb;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAED,QAAQ,CAAC,IAAY;QACnB,MAAM,SAAS,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACtD,MAAM,KAAK,GAAG,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnC,IAAI,KAAK,EAAE;YACT,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC;YACjC,OAAO,IAAI,CAAC;SACb;QACD,OAAO,KAAK,CAAC;IACf,CAAC;CACF;AAjED,oDAiEC"}
|