forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler_messages.ts
109 lines (98 loc) · 2.89 KB
/
compiler_messages.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
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Any modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*/
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* Message sent when a compiler encouters an unresolvable error.
* The worker will be shut down following this message.
*/
export interface CompilerErrorMsg {
type: 'compiler error';
id: string;
errorMsg: string;
errorStack?: string;
}
/**
* Message sent when a compiler starts running, either for the first
* time or because of changes detected when watching.
*/
export interface CompilerRunningMsg {
type: 'running';
bundleId: string;
}
/**
* Message sent when a compiler encounters an error that
* prevents the bundle from building correctly. When in
* watch mode these issues can be fixed by the user.
* (ie. unresolved import, syntax error, etc.)
*/
export interface CompilerIssueMsg {
type: 'compiler issue';
bundleId: string;
failure: string;
}
/**
* Message sent when a compiler completes successfully and
* the bundle has been written to disk or updated on disk.
*/
export interface CompilerSuccessMsg {
type: 'compiler success';
bundleId: string;
moduleCount: number;
}
export type CompilerMsg = CompilerRunningMsg | CompilerIssueMsg | CompilerSuccessMsg;
export class CompilerMsgs {
constructor(private bundle: string) {}
running(): CompilerRunningMsg {
return {
bundleId: this.bundle,
type: 'running',
};
}
compilerFailure(options: { failure: string }): CompilerIssueMsg {
return {
bundleId: this.bundle,
type: 'compiler issue',
failure: options.failure,
};
}
compilerSuccess(options: { moduleCount: number }): CompilerSuccessMsg {
return {
bundleId: this.bundle,
type: 'compiler success',
moduleCount: options.moduleCount,
};
}
error(error: Error): CompilerErrorMsg {
return {
id: this.bundle,
type: 'compiler error',
errorMsg: error.message,
errorStack: error.stack,
};
}
}