forked from facebook/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.cpp
More file actions
441 lines (386 loc) · 13.1 KB
/
repl.cpp
File metadata and controls
441 lines (386 loc) · 13.1 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "repl.h"
#include "llvh/ADT/SmallString.h"
#include "llvh/Support/CommandLine.h"
#include "llvh/Support/FileSystem.h"
#include "llvh/Support/Path.h"
#include "llvh/Support/PrettyStackTrace.h"
#include "llvh/Support/Signals.h"
#include "llvh/Support/raw_ostream.h"
#include "hermes/ConsoleHost/ConsoleHost.h"
#include "hermes/Parser/JSLexer.h"
#include "hermes/Support/OSCompat.h"
#include "hermes/VM/Callable.h"
#include "hermes/VM/JSError.h"
#include "hermes/VM/JSObject.h"
#include "hermes/VM/Operations.h"
#include "hermes/VM/Runtime.h"
#include "hermes/VM/SmallXString.h"
#include "hermes/VM/StringView.h"
#include "ReplConfig.h"
#if HAVE_LIBREADLINE
#include <readline/history.h>
#include <readline/readline.h>
#endif
#ifndef _WINDOWS
#include <unistd.h>
#endif
#include <csetjmp>
#include <csignal>
#include <iostream>
#include <stack>
#define C_STRING(x) #x
#if HAVE_LIBREADLINE
static const std::string kHistoryFileBaseName = ".hermes_history";
static const int kHistoryMaxEntries = 500;
#endif
using namespace hermes;
static llvh::cl::opt<std::string> PromptString(
"prompt",
llvh::cl::init(">> "),
llvh::cl::desc("Prompt string for the REPL."));
static llvh::cl::opt<std::string> Prompt2String(
"prompt2",
llvh::cl::init("... "),
llvh::cl::desc("Prompt string for continuation lines in the REPL."));
namespace {
enum class ReadResult {
SUCCESS,
FAILURE,
INTERRUPT,
};
}
/// Print the prompt \p prompt and read a line from stdin with editing, storing
/// it in \p line.
/// When the user sends SIGINT instead of providing input to the REPL,
/// we return ReadResult::INTERRUPT directly from readInputLine.
/// This works because readline allows longjmps out of it without breaking
/// (it has a signal handler that cleans up and rethrows the signal).
/// \return SUCCESS if it worked, INTERRUPT on SIGINT, FAILURE on EOF.
static ReadResult readInputLine(const char *prompt, std::string &line);
#ifdef _WINDOWS
static ReadResult readInputLine(const char *prompt, std::string &line) {
llvh::outs() << prompt;
std::string current{};
bool success = !!std::getline(std::cin, current);
if (!success) {
return ReadResult::FAILURE;
}
line.append(current);
return ReadResult::SUCCESS;
}
#else
static std::jmp_buf readlineJmpBuf;
/// Store the last sigaction so we can restore it.
static struct sigaction oldAction;
/// Handler for SIGINT in readline.
/// Clears the signal handler and longjmps to early return from readInputLine.
static void handleSignal(int sig) {
if (sig == SIGINT) {
struct sigaction action;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
action.sa_handler = oldAction.sa_handler;
::sigaction(SIGINT, &action, &oldAction);
::longjmp(readlineJmpBuf, 1);
}
}
static ReadResult readInputLine(const char *prompt, std::string &line) {
#ifndef __EMSCRIPTEN__
struct sigaction action;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
if (setjmp(readlineJmpBuf) != 0) {
return ReadResult::INTERRUPT;
}
action.sa_handler = handleSignal;
::sigaction(SIGINT, &action, &oldAction);
#if HAVE_LIBREADLINE
if (oscompat::isatty(STDIN_FILENO)) {
char *rl = ::readline(prompt);
action.sa_handler = oldAction.sa_handler;
::sigaction(SIGINT, &action, &oldAction);
if (!rl)
return ReadResult::FAILURE;
line.append(rl);
::add_history(rl);
::free(rl);
return ReadResult::SUCCESS;
}
#endif
#else
// Avoid unused function warnings.
(void)handleSignal;
#endif
llvh::outs() << prompt;
std::string current{};
bool success = !!std::getline(std::cin, current);
#ifndef __EMSCRIPTEN__
action.sa_handler = oldAction.sa_handler;
::sigaction(SIGINT, &action, &oldAction);
#endif
if (!success) {
return ReadResult::FAILURE;
}
line.append(current);
return ReadResult::SUCCESS;
}
#endif
/// Checks if the provided input needs another line to become valid.
/// Currently, this only checks if there's open delimiter tokens
/// that haven't been closed, and that the preceding closing delimiter tokens
/// are actually valid.
/// Otherwise, simply returns false, and the line is fed as-is to eval().
static bool needsAnotherLine(llvh::StringRef input) {
SourceErrorManager sm;
SourceErrorManager::SaveAndSuppressMessages suppress(&sm);
hermes::BumpPtrAllocator allocator{};
parser::JSLexer lexer(input, sm, allocator, nullptr, false);
std::stack<parser::TokenKind> stack{};
if (input.empty()) {
return false;
}
if (input.back() == '\\') {
return true;
}
// Given a right delimiter token kind, get the corresponding left one.
auto getLeft = [](const parser::TokenKind kind) {
switch (kind) {
case parser::TokenKind::r_brace:
return parser::TokenKind::l_brace;
case parser::TokenKind::r_paren:
return parser::TokenKind::l_paren;
case parser::TokenKind::r_square:
return parser::TokenKind::l_square;
default:
llvm_unreachable("getLeft executed with unsupported kind");
}
};
// Look at the previous token to see if the next token could possibly be the
// beginning of a regular expression.
// https://github.com/mikesamuel/es5-lexer/blob/master/src/guess_is_regexp.js
auto isRegexPossible = [](OptValue<parser::TokenKind> previousTokenKind) {
if (!previousTokenKind) {
return true;
}
switch (*previousTokenKind) {
case parser::TokenKind::rw_break:
case parser::TokenKind::rw_case:
case parser::TokenKind::rw_continue:
case parser::TokenKind::rw_delete:
case parser::TokenKind::rw_do:
case parser::TokenKind::rw_else:
case parser::TokenKind::rw_finally:
case parser::TokenKind::rw_in:
case parser::TokenKind::rw_instanceof:
case parser::TokenKind::rw_return:
case parser::TokenKind::rw_throw:
case parser::TokenKind::rw_try:
case parser::TokenKind::rw_typeof:
case parser::TokenKind::rw_void:
case parser::TokenKind::plus:
case parser::TokenKind::minus:
case parser::TokenKind::period:
case parser::TokenKind::slash:
case parser::TokenKind::comma:
case parser::TokenKind::star:
case parser::TokenKind::exclaim:
case parser::TokenKind::percent:
case parser::TokenKind::amp:
case parser::TokenKind::l_paren:
case parser::TokenKind::colon:
case parser::TokenKind::semi:
case parser::TokenKind::less:
case parser::TokenKind::equal:
case parser::TokenKind::greater:
case parser::TokenKind::question:
case parser::TokenKind::l_square:
case parser::TokenKind::caret:
case parser::TokenKind::l_brace:
case parser::TokenKind::pipe:
case parser::TokenKind::r_brace:
case parser::TokenKind::tilde:
return true;
default:
return false;
}
};
OptValue<parser::TokenKind> previousTokenKind;
// Use AllowRegExp when a regular expression is possible and use AllowDiv
// otherwise so that division is correctly parsed.
while (const parser::Token *token = lexer.advance(
isRegexPossible(previousTokenKind)
? parser::JSLexer::GrammarContext::AllowRegExp
: parser::JSLexer::GrammarContext::AllowDiv)) {
if (token->getKind() == parser::TokenKind::eof) {
break;
}
switch (token->getKind()) {
case parser::TokenKind::l_brace:
case parser::TokenKind::l_paren:
case parser::TokenKind::l_square:
// Push any left side delimiters.
stack.push(token->getKind());
break;
case parser::TokenKind::r_brace:
case parser::TokenKind::r_paren:
case parser::TokenKind::r_square: {
// Try to match the right delimiter, and if it can't be matched,
// the failure is unrecoverable.
auto left = getLeft(token->getKind());
if (!stack.empty() && stack.top() == left) {
// Matched the delimiter, pop it off and continue.
stack.pop();
} else {
// Failed to match, so we can't be recoverable.
return false;
}
break;
}
default:
// Do nothing for the other tokens.
break;
}
previousTokenKind = token->getKind();
}
// If the stack is empty, then we can't recover from the error,
// because there was some other problem besides mismatched delimiters.
// TODO: Handle other classes of recoverable errors.
return !stack.empty();
}
#if HAVE_LIBREADLINE
// Load history file or create it
static std::error_code loadHistoryFile(llvh::SmallString<128> &historyFile) {
if (!llvh::sys::path::home_directory(historyFile)) {
// Use ENOENT here since it could not found a home directory
return std::error_code(ENOENT, std::system_category());
}
llvh::sys::path::append(historyFile, kHistoryFileBaseName);
auto err = ::read_history(historyFile.c_str());
if (err != 0) {
// Return a error_code object from a errno enum
return std::error_code(err, std::system_category());
}
return std::error_code();
}
#endif
// This is the vm driver.
int repl(const vm::RuntimeConfig &config) {
auto runtime = vm::Runtime::create(config);
vm::GCScope gcScope(runtime.get());
installConsoleBindings(runtime.get());
std::string code;
code.reserve(256);
auto global = runtime->getGlobal();
auto propRes = vm::JSObject::getNamed_RJS(
global, runtime.get(), vm::Predefined::getSymbolID(vm::Predefined::eval));
if (propRes == vm::ExecutionStatus::EXCEPTION) {
runtime->printException(
llvh::outs(), runtime->makeHandle(runtime->getThrownValue()));
return 1;
}
auto evalFn = runtime->makeHandle<vm::Callable>(std::move(*propRes));
llvh::StringRef evaluateLineString =
#include "evaluate-line.js"
;
bool hasColors = oscompat::should_color(STDOUT_FILENO);
auto callRes = evalFn->executeCall1(
evalFn,
runtime.get(),
global,
vm::StringPrimitive::createNoThrow(runtime.get(), evaluateLineString)
.getHermesValue());
if (callRes == vm::ExecutionStatus::EXCEPTION) {
llvh::raw_ostream &errs = hasColors
? llvh::errs().changeColor(llvh::raw_ostream::Colors::RED)
: llvh::errs();
llvh::raw_ostream &outs = hasColors
? llvh::outs().changeColor(llvh::raw_ostream::Colors::RED)
: llvh::outs();
errs << "Unable to get REPL util function: evaluateLine.\n";
runtime->printException(
outs, runtime->makeHandle(runtime->getThrownValue()));
return 1;
}
auto evaluateLineFn =
runtime->makeHandle<vm::JSFunction>(std::move(*callRes));
runtime->getHeap().runtimeWillExecute();
#if HAVE_LIBREADLINE
llvh::SmallString<128> historyFile{};
auto historyErr = loadHistoryFile(historyFile);
if (historyErr && historyErr.value() != ENOENT) {
llvh::errs() << "Could not load history file: " << historyErr.message()
<< '\n';
}
#endif
// SetUnbuffered because there is no explicit flush after prompt (>>).
// There is also no explicitly flush at end of line. (An automatic flush
// mechanism is not guaranteed to be present, from my experiment on Windows)
llvh::outs().SetUnbuffered();
while (true) {
// Main loop
auto readResult = readInputLine(
code.empty() ? PromptString.c_str() : Prompt2String.c_str(), code);
if (readResult == ReadResult::FAILURE ||
(readResult == ReadResult::INTERRUPT && code.empty())) {
// EOF or user exit on non-continuation line.
llvh::outs() << '\n';
#if HAVE_LIBREADLINE
if (history_length > 0) {
::stifle_history(kHistoryMaxEntries);
::write_history(historyFile.c_str());
}
#endif
return 0;
}
if (readResult == ReadResult::INTERRUPT) {
// Interrupt the continuation line.
code.clear();
llvh::outs() << '\n';
continue;
}
if (needsAnotherLine(code)) {
code += '\n';
continue;
}
// Ensure we don't keep accumulating handles.
vm::GCScopeMarkerRAII gcMarker{runtime.get()};
if ((callRes = evaluateLineFn->executeCall2(
evaluateLineFn,
runtime.get(),
global,
vm::StringPrimitive::createNoThrow(runtime.get(), code)
.getHermesValue(),
vm::HermesValue::encodeBoolValue(hasColors))) ==
vm::ExecutionStatus::EXCEPTION) {
runtime->printException(
hasColors ? llvh::outs().changeColor(llvh::raw_ostream::Colors::RED)
: llvh::outs(),
runtime->makeHandle(runtime->getThrownValue()));
llvh::outs().resetColor();
code.clear();
continue;
}
if ((*callRes)->isUndefined()) {
code.clear();
continue;
}
// Operator resolution in the vm namespace.
vm::SmallU16String<32> tmp;
vm::operator<<(
llvh::outs(),
vm::StringPrimitive::createStringView(
runtime.get(),
vm::Handle<vm::StringPrimitive>::vmcast(
runtime->makeHandle(std::move(*callRes))))
.getUTF16Ref(tmp))
<< "\n";
code.clear();
}
return 0;
}