forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.ts
191 lines (156 loc) · 6.48 KB
/
Parser.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
import {Suggestion, styles, style} from "./plugins/autocompletion_providers/Suggestions";
import * as _ from "lodash";
import {compose} from "./utils/Common";
import Environment from "./Environment";
export enum InputMethod {
Typed,
Autocompleted,
}
export interface Context {
input: string;
directory: string;
historicalCurrentDirectoriesStack: string[];
environment: Environment;
inputMethod: InputMethod;
}
export enum Progress {
Failed,
OnStart,
InProgress,
Finished,
}
export type Parser = (context: Context) => Promise<Array<Result>>;
export interface Result {
parser: Parser;
context: Context;
parse: string;
progress: Progress;
suggestions: Suggestion[];
}
function getProgress(input: string, expected: string) {
if (expected.length === 0) {
return Progress.Finished;
}
if (input.length === 0) {
return Progress.OnStart;
}
if (input.startsWith(expected)) {
return Progress.Finished;
}
if (expected.length <= input.length) {
return Progress.Failed;
}
if (expected.startsWith(input)) {
return Progress.InProgress;
}
return Progress.Failed;
}
export const string = (expected: string) => {
const parser = async (context: Context): Promise<Array<Result>> => {
const progress = getProgress(context.input, expected);
return [{
parser: parser,
context: context,
parse: progress === Progress.Finished ? expected : "",
progress: progress,
suggestions: (progress === Progress.Finished)
? (context.inputMethod === InputMethod.Autocompleted ? [] : [new Suggestion().withDisplayValue(expected).withValue("")])
: [new Suggestion().withValue(expected)],
}];
};
return parser;
};
export const bind = (left: Parser, rightGenerator: (result: Result) => Promise<Parser>) => async (context: Context): Promise<Array<Result>> => {
const leftResults = await left(context);
const results: Result[] = [];
for (const leftResult of leftResults) {
const rightInput = context.input.slice(leftResult.parse.length);
if (leftResult.progress === Progress.Finished && (rightInput.length || leftResult.suggestions.length === 0)) {
const right = await rightGenerator(leftResult);
const rightResults = await right(Object.assign({}, leftResult.context, { input: rightInput }));
for (const rightResult of rightResults) {
if (rightResult.progress !== Progress.Failed) {
results.push({
parser: rightResult.parser,
context: rightResult.context,
parse: leftResult.parse + rightResult.parse,
progress: rightResult.progress,
suggestions: rightResult.suggestions,
});
}
}
} else {
if (leftResult.progress !== Progress.Failed) {
results.push(leftResult);
}
}
}
return results;
};
export const sequence = (left: Parser, right: Parser) => bind(left, async () => right);
export const choice = (parsers: Parser[]) => async (context: Context): Promise<Array<Result>> => {
const results: Result[] = [];
for (const parser of parsers) {
const parserResults = await parser(context);
for (const result of parserResults) {
if (result.progress !== Progress.Failed) {
results.push(result);
}
}
}
return results;
};
export const many1 = (parser: Parser): Parser => choice([parser, bind(parser, async () => many1(parser))]);
export const decorate = (parser: Parser, decorator: (s: Suggestion) => Suggestion) => async (context: Context): Promise<Array<Result>> => {
const results = await parser(context);
return results.map(result => ({
parser: decorate(result.parser, decorator),
context: result.context,
parse: result.parse,
progress: result.progress,
suggestions: result.suggestions.map(decorator),
}));
};
export const decorateResult = (parser: Parser, decorator: (c: Result) => Result) => async (context: Context): Promise<Array<Result>> => {
return (await parser(context)).map(decorator);
};
export const withoutSuggestions = (parser: Parser) => decorateResult(parser, result => Object.assign({}, result, {suggestions: []}));
export const optional = (parser: Parser) => choice([withoutSuggestions(string("")), parser]);
export const many = compose(many1, optional);
/**
* Display suggestions only if a person has already input at least one character of the expected value.
* Used to display easy and popular suggestions, which would add noise to the autocompletion box.
*
* @example cd ../
* @example cd -
*/
export const noisySuggestions = (parser: Parser) => decorateResult(
parser,
result => Object.assign(
{},
result,
{
suggestions: (result.progress !== Progress.OnStart && result.progress !== Progress.Failed) ? result.suggestions : [],
}
)
);
export const spacesWithoutSuggestion = withoutSuggestions(many1(string(" ")));
export const runtime = (producer: (context: Context) => Promise<Parser>) => async (context: Context): Promise<Array<Result>> => {
const parser = await producer(context);
return parser(context);
};
export const optionalContinuation = (parser: Parser) => optional(sequence(spacesWithoutSuggestion, parser));
export const append = (suffix: string, parser: Parser) => decorate(sequence(parser, withoutSuggestions(string(suffix))), suggestion => suggestion.withValue(suggestion.value + suffix));
export const token = (parser: Parser) => decorate(sequence(parser, spacesWithoutSuggestion), suggestion => suggestion.withValue(suggestion.value + " "));
export const executable = (name: string) => decorate(token(string(name)), style(styles.executable));
export const commandSwitch = (value: string) => decorate(string(`--${value}`), style(styles.option));
export const option = (value: string) => decorate(string(`--${value}=`), style(styles.option));
export const debug = (parser: Parser, tag = "debugged") => async (context: Context) => {
window.DEBUG = true;
const results = await decorate(parser, suggestion => suggestion.withDebugTag(tag))(context);
if (_.some(results, result => result.suggestions.length !== 0)) {
/* tslint:disable:no-debugger */
debugger;
}
return results;
};