]> git.saurik.com Git - cycript.git/blame - Console.cpp
Use variadic templates to better organize Classes.
[cycript.git] / Console.cpp
CommitLineData
b3378a02 1/* Cycript - Optimizing JavaScript Compiler/Runtime
c1d3e52e 2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
b4aa79af
JF
3*/
4
f95d2598 5/* GNU Affero General Public License, Version 3 {{{ */
b4aa79af 6/*
f95d2598
JF
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c15969fd 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598
JF
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
b3378a02 19**/
b4aa79af
JF
20/* }}} */
21
30ddc20c 22#include "cycript.hpp"
057f943f 23
9cad30fa
JF
24#ifdef CY_EXECUTE
25#include "JavaScript.hpp"
26#endif
27
057f943f 28#include <cstdio>
51b2dc6b 29#include <complex>
0df6a201 30#include <fstream>
057f943f
JF
31#include <sstream>
32
aff87425
DWT
33#ifdef HAVE_READLINE_H
34#include <readline.h>
35#else
057f943f 36#include <readline/readline.h>
aff87425
DWT
37#endif
38
39#ifdef HAVE_HISTORY_H
40#include <history.h>
41#else
057f943f 42#include <readline/history.h>
aff87425 43#endif
057f943f 44
b09da87b 45#include <errno.h>
10d0e915 46#include <getopt.h>
51b2dc6b 47#include <setjmp.h>
10d0e915 48#include <signal.h>
b09da87b
JF
49#include <unistd.h>
50
666eedb9 51#include <sys/socket.h>
b09da87b
JF
52#include <sys/types.h>
53#include <sys/stat.h>
54#include <fcntl.h>
666eedb9 55#include <netdb.h>
b09da87b 56
51b2dc6b 57#include <sys/ioctl.h>
967067aa
JF
58#include <sys/types.h>
59#include <sys/socket.h>
60#include <netinet/in.h>
61#include <sys/un.h>
62
da858962 63#include <dlfcn.h>
51b2dc6b
JF
64#include <pwd.h>
65#include <term.h>
da858962 66
341d1456
JF
67#ifdef __APPLE__
68#include <mach/mach_time.h>
69#endif
70
b12a9965 71#include "Driver.hpp"
e66ced89 72#include "Error.hpp"
d9c91152 73#include "Highlight.hpp"
20052ff7 74#include "Syntax.hpp"
7e5391fd 75
51b2dc6b
JF
76extern "C" int rl_display_fixed;
77extern "C" int _rl_vis_botlin;
78extern "C" int _rl_last_c_pos;
79extern "C" int _rl_last_v_pos;
80
81typedef std::complex<int> CYCursor;
82
83static CYCursor current_;
84static int width_;
85static size_t point_;
86
87unsigned CYDisplayWidth() {
88 struct winsize info;
89 if (ioctl(1, TIOCGWINSZ, &info) != -1)
90 return info.ws_col;
91 return tgetnum(const_cast<char *>("co"));
92}
93
94void CYDisplayOutput_(bool display, const char *&data) {
95 for (;; ++data) {
96 char next(*data);
97 if (next == '\0' || next == CYIgnoreEnd)
98 return;
99 if (display)
100 putchar(next);
101 }
102}
103
104CYCursor CYDisplayOutput(bool display, int width, const char *data, ssize_t offset = 0) {
105 CYCursor point(current_);
106
107 for (;;) {
108 if (offset-- == 0)
109 point = current_;
110 switch (char next = *data++) {
111 case '\0':
112 return point;
113 break;
114
115 case CYIgnoreStart:
116 CYDisplayOutput_(display, data);
117 case CYIgnoreEnd:
118 ++offset;
119 break;
120
121 default:
122 if (display)
123 putchar(next);
124 current_ += CYCursor(0, 1);
125 if (current_.imag() != width)
126 break;
127 current_ = CYCursor(current_.real() + 1, 0);
128 if (display)
129 putp(clr_eos);
130 break;
131
132 case '\n':
133 current_ = CYCursor(current_.real() + 1, 4);
134 if (display) {
135 putp(clr_eol);
136 putchar('\n');
137 putchar(' ');
138 putchar(' ');
139 putchar(' ');
140 putchar(' ');
141 }
142 break;
143
144 }
145 }
146}
147
148void CYDisplayMove_(char *negative, char *positive, int offset) {
149 if (offset < 0)
150 putp(tparm(negative, -offset));
151 else if (offset > 0)
152 putp(tparm(positive, offset));
153}
154
155void CYDisplayMove(CYCursor target) {
156 CYCursor offset(target - current_);
157
158 CYDisplayMove_(parm_up_cursor, parm_down_cursor, offset.real());
159
160 if (char *parm = tparm(column_address, target.imag()))
161 putp(parm);
162 else
163 CYDisplayMove_(parm_left_cursor, parm_right_cursor, offset.imag());
164
165 current_ = target;
166}
167
168void CYDisplayUpdate() {
169 current_ = CYCursor(_rl_last_v_pos, _rl_last_c_pos);
170
171 const char *prompt(rl_display_prompt);
172
173 std::ostringstream stream;
174 CYLexerHighlight(rl_line_buffer, rl_end, stream, true);
175 std::string string(stream.str());
176 const char *buffer(string.c_str());
177
178 int width(CYDisplayWidth());
179 if (width_ != width) {
180 current_ = CYCursor();
181 CYDisplayOutput(false, width, prompt);
182 current_ = CYDisplayOutput(false, width, buffer, point_);
183 }
184
185 CYDisplayMove(CYCursor());
186 CYDisplayOutput(true, width, prompt);
187 CYCursor target(CYDisplayOutput(true, width, stream.str().c_str(), rl_point));
188
189 _rl_vis_botlin = current_.real();
190
191 if (current_.imag() == 0)
192 CYDisplayOutput(true, width, " ");
193 putp(clr_eos);
194
195 CYDisplayMove(target);
196 fflush(stdout);
197
198 _rl_last_v_pos = current_.real();
199 _rl_last_c_pos = current_.imag();
200
201 width_ = width;
202 point_ = rl_point;
203}
204
4e39dc0b
JF
205static volatile enum {
206 Working,
207 Parsing,
208 Running,
209 Sending,
210 Waiting,
211} mode_;
212
057f943f
JF
213static jmp_buf ctrlc_;
214
579ed526 215static void sigint(int) {
4e39dc0b
JF
216 switch (mode_) {
217 case Working:
218 return;
219 case Parsing:
220 longjmp(ctrlc_, 1);
221 case Running:
b0ba908c
JF
222 CYCancel();
223 return;
4e39dc0b
JF
224 case Sending:
225 return;
226 case Waiting:
227 return;
228 }
057f943f
JF
229}
230
cac61857 231static bool bison_;
341d1456 232static bool timing_;
b10bd496 233static bool strict_;
11c1cc16 234static bool pretty_;
cac61857 235
d9c91152 236void Setup(CYDriver &driver) {
cac61857 237 if (bison_)
d9c91152 238 driver.debug_ = 1;
b10bd496
JF
239 if (strict_)
240 driver.strict_ = true;
cac61857
JF
241}
242
2c1d569a 243void Setup(CYOutput &out, CYDriver &driver, CYOptions &options, bool lower) {
11c1cc16 244 out.pretty_ = pretty_;
36bf49c4 245 if (lower)
2c1d569a 246 driver.Replace(options);
11c1cc16
JF
247}
248
7e5391fd 249static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
967067aa 250 const char *json;
9d79cefc 251 uint32_t size;
7e5391fd 252
b166b11b 253 if (client == -1) {
4e39dc0b 254 mode_ = Running;
2aa77fd8 255#ifdef CY_EXECUTE
89d16b11 256 json = CYExecute(CYGetJSContext(), pool, code);
2aa77fd8
JF
257#else
258 json = NULL;
259#endif
4e39dc0b 260 mode_ = Working;
dd221c6b
JF
261 if (json == NULL)
262 size = 0;
263 else
6ec85c5b
JF
264 size = strlen(json);
265 } else {
4e39dc0b 266 mode_ = Sending;
0ced2e47 267 size = code.size;
a1f3555e
JF
268 _assert(CYSendAll(client, &size, sizeof(size)));
269 _assert(CYSendAll(client, code.data, code.size));
4e39dc0b 270 mode_ = Waiting;
a1f3555e 271 _assert(CYRecvAll(client, &size, sizeof(size)));
9d79cefc 272 if (size == _not(uint32_t))
967067aa
JF
273 json = NULL;
274 else {
275 char *temp(new(pool) char[size + 1]);
a1f3555e 276 _assert(CYRecvAll(client, temp, size));
967067aa
JF
277 temp[size] = '\0';
278 json = temp;
279 }
4e39dc0b 280 mode_ = Working;
4cf49641 281 }
b09da87b 282
7e5391fd
JF
283 return CYUTF8String(json, size);
284}
285
286static CYUTF8String Run(CYPool &pool, int client, const std::string &code) {
287 return Run(pool, client, CYUTF8String(code.c_str(), code.size()));
288}
289
2e2ed904 290static std::ostream *out_;
a3f4a8e1 291
e66ced89 292static void Output(CYUTF8String json, std::ostream *out, bool expand = false) {
a3f4a8e1
JF
293 const char *data(json.data);
294 size_t size(json.size);
295
2e2ed904 296 if (data == NULL || out == NULL)
a3f4a8e1
JF
297 return;
298
0881deb5
JF
299 if (!expand ||
300 data[0] != '@' && data[0] != '"' && data[0] != '\'' ||
301 data[0] == '@' && data[1] != '"' && data[1] != '\''
302 )
e66ced89 303 CYLexerHighlight(data, size, *out);
a3f4a8e1
JF
304 else for (size_t i(0); i != size; ++i)
305 if (data[i] != '\\')
2e2ed904 306 *out << data[i];
a3f4a8e1
JF
307 else switch(data[++i]) {
308 case '\0': goto done;
2e2ed904
JF
309 case '\\': *out << '\\'; break;
310 case '\'': *out << '\''; break;
311 case '"': *out << '"'; break;
312 case 'b': *out << '\b'; break;
313 case 'f': *out << '\f'; break;
314 case 'n': *out << '\n'; break;
315 case 'r': *out << '\r'; break;
316 case 't': *out << '\t'; break;
317 case 'v': *out << '\v'; break;
318 default: *out << '\\'; --i; break;
a3f4a8e1 319 }
6ec85c5b 320
a3f4a8e1 321 done:
2e2ed904 322 *out << std::endl;
a3f4a8e1
JF
323}
324
da858962
JF
325int (*append_history$)(int, const char *);
326
7e5391fd
JF
327static std::string command_;
328
d9c91152 329static int client_;
b0385401 330
d9c91152
JF
331static CYUTF8String Run(CYPool &pool, const std::string &code) {
332 return Run(pool, client_, code);
7e5391fd
JF
333}
334
7e5391fd 335static char **Complete(const char *word, int start, int end) {
10d0e915 336 rl_attempted_completion_over = ~0;
7e5391fd 337 std::string line(rl_line_buffer, start);
51b2dc6b 338 char **values(CYComplete(word, command_ + line, &Run));
5569e998 339 mode_ = Parsing;
51b2dc6b 340 return values;
7e5391fd
JF
341}
342
343// need char *, not const char *
344static char name_[] = "cycript";
87450281 345static char break_[] = " \t\n\"\\'`@><=;|&{(" ")}" ".:[]";
7e5391fd 346
da136f88
JF
347class History {
348 private:
349 std::string histfile_;
350 size_t histlines_;
351
352 public:
353 History(std::string histfile) :
354 histfile_(histfile),
355 histlines_(0)
356 {
357 read_history(histfile_.c_str());
51b2dc6b
JF
358
359 for (HIST_ENTRY *history((history_set_pos(0), current_history())); history; history = next_history())
360 for (char *character(history->line); *character; ++character)
361 if (*character == '\x01') *character = '\n';
da136f88
JF
362 }
363
364 ~History() {
51b2dc6b
JF
365 for (HIST_ENTRY *history((history_set_pos(0), current_history())); history; history = next_history())
366 for (char *character(history->line); *character; ++character)
367 if (*character == '\n') *character = '\x01';
368
da136f88 369 if (append_history$ != NULL) {
f61fec22
JF
370 int fd(_syscall(open(histfile_.c_str(), O_CREAT | O_WRONLY, 0600)));
371 _syscall(close(fd));
da136f88
JF
372 _assert((*append_history$)(histlines_, histfile_.c_str()) == 0);
373 } else {
374 _assert(write_history(histfile_.c_str()) == 0);
375 }
376 }
377
51b2dc6b 378 void operator +=(std::string command) {
6265f0de 379 add_history(command.c_str());
da136f88
JF
380 ++histlines_;
381 }
382};
383
61c71121
JF
384template <typename Type_>
385static Type_ *CYmemrchr(Type_ *data, Type_ value, size_t size) {
386 while (size != 0)
387 if (data[--size] == value)
388 return data + size;
389 return NULL;
390}
391
db2cc900
JF
392static void _lblcall(int (*command)(int, int), int count, int key) {
393 int last(_rl_last_c_pos);
394 // rl_rubout crashes in _rl_erase_at_end_of_line if _rl_last_c_pos != 0
395 if (command == &rl_rubout)
396 _rl_last_c_pos = 0;
397 for (int i(0); i != count; ++i)
398 if (command(1, key) != 0)
399 _assert(false);
400 _rl_last_c_pos = last;
401}
402
51b2dc6b 403static int CYConsoleKeyReturn(int count, int key) {
f66ec41a 404 if (rl_point != rl_end) {
db2cc900
JF
405 if (memchr(rl_line_buffer, '\n', rl_end) == NULL) {
406 _lblcall(&rl_newline, count, key);
407 return 0;
408 }
61c71121 409
14bb86e8 410 insert:
61c71121
JF
411 char *before(CYmemrchr(rl_line_buffer, '\n', rl_point));
412 if (before == NULL)
413 before = rl_line_buffer;
414
415 int space(before + 1 - rl_line_buffer);
416 while (space != rl_point && rl_line_buffer[space] == ' ')
417 ++space;
418
419 int adjust(rl_line_buffer + space - 1 - before);
420 if (space == rl_point && adjust != 0)
db2cc900 421 _lblcall(&rl_rubout, adjust, '\b');
61c71121 422
db2cc900 423 _lblcall(&rl_insert, count, '\n');
61c71121 424 if (adjust != 0)
db2cc900 425 _lblcall(&rl_insert, adjust, ' ');
61c71121 426
f66ec41a
JF
427 return 0;
428 }
429
a664a58a 430 bool done(false);
f66ec41a 431 if (rl_line_buffer[0] == '?')
a664a58a 432 done = true;
f66ec41a 433 else {
51b2dc6b 434 std::string command(rl_line_buffer, rl_end);
66c347f0 435 command += '\n';
c3d9dbc7 436 std::stringbuf stream(command);
51b2dc6b
JF
437
438 size_t last(std::string::npos);
439 for (size_t i(0); i != std::string::npos; i = command.find('\n', i + 1))
440 ++last;
441
442 CYPool pool;
443 CYDriver driver(pool, stream);
444 if (driver.Parse() || !driver.errors_.empty())
445 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
446 if (error->location_.begin.line != last + 1)
a664a58a 447 done = true;
51b2dc6b
JF
448 break;
449 }
450 else
a664a58a 451 done = true;
51b2dc6b
JF
452 }
453
db2cc900
JF
454 if (done) {
455 _lblcall(&rl_newline, count, key);
456 return 0;
457 }
66c347f0 458
14bb86e8
JF
459 // XXX: this was the most obvious fix, but is seriously dumb
460 goto insert;
51b2dc6b
JF
461}
462
61c71121 463static int CYConsoleKeyUp(int count, int key) {
db2cc900 464 for (; count != 0; --count) {
61c71121
JF
465 char *after(CYmemrchr(rl_line_buffer, '\n', rl_point));
466 if (after == NULL) {
467 if (int value = rl_get_previous_history(1, key))
468 return value;
469 continue;
470 }
471
472 char *before(CYmemrchr(rl_line_buffer, '\n', after - rl_line_buffer));
473 if (before == NULL)
474 before = rl_line_buffer - 1;
475
476 ptrdiff_t offset(rl_line_buffer + rl_point - after);
477 if (offset > after - before)
478 rl_point = after - rl_line_buffer;
479 else
480 rl_point = before + offset - rl_line_buffer;
481 }
482
483 return 0;
b1b144d1
JF
484}
485
61c71121 486static int CYConsoleKeyDown(int count, int key) {
db2cc900 487 for (; count != 0; --count) {
61c71121
JF
488 char *after(static_cast<char *>(memchr(rl_line_buffer + rl_point, '\n', rl_end - rl_point)));
489 if (after == NULL) {
490 int where(where_history());
491 if (int value = rl_get_next_history(1, key))
492 return value;
493 if (where != where_history()) {
494 char *first(static_cast<char *>(memchr(rl_line_buffer, '\n', rl_end)));
495 if (first != NULL)
496 rl_point = first - 1 - rl_line_buffer;
497 }
498 continue;
499 }
500
501 char *before(CYmemrchr(rl_line_buffer, '\n', rl_point));
502 if (before == NULL)
503 before = rl_line_buffer - 1;
504
505 char *next(static_cast<char *>(memchr(after + 1, '\n', rl_line_buffer + rl_end - after - 1)));
506 if (next == NULL)
507 next = rl_line_buffer + rl_end;
508
509 ptrdiff_t offset(rl_line_buffer + rl_point - before);
510 if (offset > next - after)
511 rl_point = next - rl_line_buffer;
512 else
513 rl_point = after + offset - rl_line_buffer;
b1b144d1
JF
514 }
515
61c71121
JF
516 return 0;
517}
b1b144d1 518
61c71121
JF
519static int CYConsoleLineBegin(int count, int key) {
520 while (rl_point != 0 && rl_line_buffer[rl_point - 1] != '\n')
521 --rl_point;
522 return 0;
523}
b1b144d1 524
61c71121
JF
525static int CYConsoleLineEnd(int count, int key) {
526 while (rl_point != rl_end && rl_line_buffer[rl_point] != '\n')
527 ++rl_point;
2447e531
JF
528 if (rl_point != rl_end && rl_editing_mode == 0)
529 --rl_point;
b1b144d1
JF
530 return 0;
531}
532
61c71121 533static int CYConsoleKeyBack(int count, int key) {
db2cc900
JF
534 for (; count != 0; --count) {
535 if (rl_point == 0)
536 return 1;
537
61c71121 538 char *before(CYmemrchr(rl_line_buffer, '\n', rl_point));
db2cc900
JF
539 if (before == NULL) {
540 int adjust(std::min(count, rl_point));
541 _lblcall(&rl_rubout, adjust, key);
542 count -= adjust - 1;
543 continue;
544 }
61c71121
JF
545
546 int start(before + 1 - rl_line_buffer);
547 if (start == rl_point) rubout: {
db2cc900 548 _lblcall(&rl_rubout, 1, key);
61c71121
JF
549 continue;
550 }
551
552 for (int i(start); i != rl_point; ++i)
553 if (rl_line_buffer[i] != ' ')
554 goto rubout;
db2cc900 555 _lblcall(&rl_rubout, (rl_point - start) % 4 ?: 4, key);
b1b144d1
JF
556 }
557
61c71121
JF
558 return 0;
559}
560
561static int CYConsoleKeyTab(int count, int key) {
b1b144d1 562 char *before(CYmemrchr(rl_line_buffer, '\n', rl_point));
61c71121
JF
563 if (before == NULL) complete:
564 return rl_complete_internal(rl_completion_mode(&CYConsoleKeyTab));
565 int start(before + 1 - rl_line_buffer);
566 for (int i(start); i != rl_point; ++i)
567 if (rl_line_buffer[i] != ' ')
568 goto complete;
db2cc900
JF
569 _lblcall(&rl_insert, 4 - (rl_point - start) % 4, ' ');
570 return 0;
61c71121 571}
b1b144d1 572
2447e531
JF
573static void CYConsoleRemapBind(Keymap map, rl_command_func_t *from, rl_command_func_t *to) {
574 char **keyseqs(rl_invoking_keyseqs_in_map(from, map));
61c71121
JF
575 if (keyseqs == NULL)
576 return;
577 for (char **keyseq(keyseqs); *keyseq != NULL; ++keyseq) {
2447e531 578 rl_bind_keyseq_in_map(*keyseq, to, map);
61c71121
JF
579 free(*keyseq);
580 }
581 free(keyseqs);
582}
b1b144d1 583
2447e531
JF
584static void CYConsoleRemapKeys(Keymap map) {
585 CYConsoleRemapBind(map, &rl_beg_of_line, &CYConsoleLineBegin);
586 CYConsoleRemapBind(map, &rl_end_of_line, &CYConsoleLineEnd);
587
588 CYConsoleRemapBind(map, &rl_get_previous_history, &CYConsoleKeyUp);
589 CYConsoleRemapBind(map, &rl_get_next_history, &CYConsoleKeyDown);
590
591 CYConsoleRemapBind(map, &rl_rubout, &CYConsoleKeyBack);
592 CYConsoleRemapBind(map, &rl_complete, &CYConsoleKeyTab);
593}
594
61c71121
JF
595static void CYConsolePrepTerm(int meta) {
596 rl_prep_terminal(meta);
597
2447e531
JF
598 CYConsoleRemapKeys(emacs_standard_keymap);
599 CYConsoleRemapKeys(emacs_meta_keymap);
600 CYConsoleRemapKeys(emacs_ctlx_keymap);
601 CYConsoleRemapKeys(vi_insertion_keymap);
602 CYConsoleRemapKeys(vi_movement_keymap);
b1b144d1
JF
603}
604
2eb8215d 605static void Console(CYOptions &options) {
1210260f
JF
606 std::string basedir;
607 if (const char *home = getenv("HOME"))
608 basedir = home;
609 else {
610 passwd *passwd;
611 if (const char *username = getenv("LOGNAME"))
612 passwd = getpwnam(username);
613 else
614 passwd = getpwuid(getuid());
615 basedir = passwd->pw_dir;
616 }
b1589845 617
da136f88
JF
618 basedir += "/.cycript";
619 mkdir(basedir.c_str(), 0700);
b1589845 620
7e5391fd
JF
621 rl_initialize();
622 rl_readline_name = name_;
623
da136f88 624 History history(basedir + "/history");
b1589845 625
1f8eae40
JF
626 bool bypass(false);
627 bool debug(false);
6ec85c5b 628 bool expand(false);
36bf49c4 629 bool lower(true);
1f8eae40 630
2e2ed904 631 out_ = &std::cout;
057f943f 632
bc1e87aa 633 rl_completer_word_break_characters = break_;
7e5391fd 634 rl_attempted_completion_function = &Complete;
61c71121 635
e66ced89 636 rl_redisplay_function = CYDisplayUpdate;
61c71121 637 rl_prep_term_function = CYConsolePrepTerm;
e66ced89 638
057f943f
JF
639 struct sigaction action;
640 sigemptyset(&action.sa_mask);
641 action.sa_handler = &sigint;
642 action.sa_flags = 0;
643 sigaction(SIGINT, &action, NULL);
644
51b2dc6b 645 for (;;) {
057f943f 646 if (setjmp(ctrlc_) != 0) {
4e39dc0b 647 mode_ = Working;
2e2ed904 648 *out_ << std::endl;
51b2dc6b 649 continue;
057f943f
JF
650 }
651
f66ec41a 652 if (bypass) {
66c347f0
JF
653 rl_bind_key('\r', &rl_newline);
654 rl_bind_key('\n', &rl_newline);
f66ec41a 655 } else {
51b2dc6b 656 rl_bind_key('\r', &CYConsoleKeyReturn);
f66ec41a
JF
657 rl_bind_key('\n', &CYConsoleKeyReturn);
658 }
51b2dc6b 659
4e39dc0b 660 mode_ = Parsing;
51b2dc6b 661 char *line(readline("cy# "));
4e39dc0b 662 mode_ = Working;
cd98d280 663
79357996
JF
664 if (line == NULL) {
665 *out_ << std::endl;
057f943f 666 break;
931b816a
JF
667 }
668
51b2dc6b
JF
669 std::string command(line);
670 free(line);
51b2dc6b
JF
671 if (command.empty())
672 continue;
311fe5f3 673 history += command;
51b2dc6b
JF
674
675 if (command[0] == '?') {
676 std::string data(command.substr(1));
677 if (data == "bypass") {
678 bypass = !bypass;
679 *out_ << "bypass == " << (bypass ? "true" : "false") << std::endl;
680 } else if (data == "debug") {
681 debug = !debug;
682 *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
683 } else if (data == "destroy") {
684 CYDestroyContext();
685 } else if (data == "gc") {
686 *out_ << "collecting... " << std::flush;
687 CYGarbageCollect(CYGetJSContext());
688 *out_ << "done." << std::endl;
689 } else if (data == "exit") {
690 return;
691 } else if (data == "expand") {
692 expand = !expand;
693 *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
694 } else if (data == "lower") {
695 lower = !lower;
696 *out_ << "lower == " << (lower ? "true" : "false") << std::endl;
697 }
e818f0e0 698
51b2dc6b 699 continue;
e818f0e0
JF
700 }
701
1f8eae40 702 std::string code;
1f8eae40 703 if (bypass)
51b2dc6b 704 code = command;
311fe5f3 705 else try {
c3d9dbc7 706 std::stringbuf stream(command);
d3b63265 707
d9c91152 708 CYPool pool;
2c1d569a
JF
709 CYDriver driver(pool, stream);
710 Setup(driver);
711
51b2dc6b 712 if (driver.Parse() || !driver.errors_.empty()) {
f0360d51 713 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
58afc6aa 714 CYPosition begin(error->location_.begin);
51b2dc6b 715 CYPosition end(error->location_.end);
48e3be8a 716
51b2dc6b 717 /*if (begin.line != lines2.size()) {
f0360d51 718 std::cerr << " | ";
51b2dc6b
JF
719 std::cerr << lines2[begin.line - 1] << std::endl;
720 }*/
721
722 std::cerr << "....";
723 for (size_t i(0); i != begin.column; ++i)
724 std::cerr << '.';
725 if (begin.line != end.line || begin.column == end.column)
726 std::cerr << '^';
727 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
728 std::cerr << '^';
729 std::cerr << std::endl;
730
731 std::cerr << " | ";
732 std::cerr << error->message_ << std::endl;
733
51b2dc6b 734 break;
1f8eae40 735 }
057f943f 736
51b2dc6b 737 continue;
057f943f
JF
738 }
739
a7d8b413 740 if (driver.script_ == NULL)
51b2dc6b 741 continue;
057f943f 742
efd689d8 743 std::stringbuf str;
0df6a201 744 CYOutput out(str, options);
2c1d569a 745 Setup(out, driver, options, lower);
a7d8b413 746 out << *driver.script_;
0df6a201 747 code = str.str();
311fe5f3
JF
748 } catch (const CYException &error) {
749 CYPool pool;
750 std::cout << error.PoolCString(pool) << std::endl;
751 continue;
057f943f
JF
752 }
753
82a02ede 754 if (debug) {
f43fcb85 755 std::cout << "cy= ";
e66ced89 756 CYLexerHighlight(code.c_str(), code.size(), std::cout);
82a02ede
JF
757 std::cout << std::endl;
758 }
057f943f 759
e66ced89
JF
760 CYPool pool;
761 Output(Run(pool, client_, code), &std::cout, expand);
b09da87b 762 }
b09da87b 763}
057f943f 764
ccb4e34c 765void InjectLibrary(pid_t, int, const char *const []);
06edab7d 766
341d1456
JF
767static uint64_t CYGetTime() {
768#ifdef __APPLE__
769 return mach_absolute_time();
770#else
771 struct timespec spec;
772 clock_gettime(CLOCK_MONOTONIC, &spec);
773 return spec.tv_sec * UINT64_C(1000000000) + spec.tv_nsec;
774#endif
775}
776
10d0e915 777int Main(int argc, char * const argv[], char const * const envp[]) {
48e3be8a 778 bool tty(isatty(STDIN_FILENO));
75b0a457 779 bool compile(false);
96746747 780 bool target(false);
de9fc71b 781 CYOptions options;
967067aa 782
e4676127 783 append_history$ = (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT, "append_history"));
da858962 784
2aa77fd8
JF
785#ifdef CY_ATTACH
786 pid_t pid(_not(pid_t));
787#endif
788
666eedb9
JF
789 const char *host(NULL);
790 const char *port(NULL);
791
10d0e915 792 optind = 1;
06edab7d
JF
793
794 for (;;) {
10d0e915
JF
795 int option(getopt_long(argc, argv,
796 "c"
797 "g:"
798 "n:"
2aa77fd8 799#ifdef CY_ATTACH
10d0e915 800 "p:"
2aa77fd8 801#endif
10d0e915
JF
802 "r:"
803 "s"
f61fec22 804 , (const struct option[]) {
10d0e915
JF
805 {NULL, no_argument, NULL, 'c'},
806 {NULL, required_argument, NULL, 'g'},
807 {NULL, required_argument, NULL, 'n'},
808#ifdef CY_ATTACH
809 {NULL, required_argument, NULL, 'p'},
810#endif
811 {NULL, required_argument, NULL, 'r'},
812 {NULL, no_argument, NULL, 's'},
813 {0, 0, 0, 0}}, NULL));
06edab7d 814
10d0e915
JF
815 switch (option) {
816 case -1:
06edab7d 817 goto getopt;
10d0e915
JF
818
819 case ':':
820 case '?':
06edab7d
JF
821 fprintf(stderr,
822 "usage: cycript [-c]"
2aa77fd8 823#ifdef CY_ATTACH
69caa5be 824 " [-p <pid|name>]"
2aa77fd8 825#endif
666eedb9 826 " [-r <host:port>]"
06edab7d
JF
827 " [<script> [<arg>...]]\n"
828 );
829 return 1;
967067aa 830
96746747
JF
831 target:
832 if (!target)
833 target = true;
834 else {
835 fprintf(stderr, "only one of -[c"
836#ifdef CY_ATTACH
837 "p"
838#endif
839 "r] may be used at a time\n");
840 return 1;
841 }
842 break;
843
06edab7d
JF
844 case 'c':
845 compile = true;
96746747 846 goto target;
75b0a457 847
06edab7d
JF
848 case 'g':
849 if (false);
10d0e915 850 else if (strcmp(optarg, "rename") == 0)
de9fc71b 851 options.verbose_ = true;
10d0e915 852 else if (strcmp(optarg, "bison") == 0)
06edab7d 853 bison_ = true;
341d1456
JF
854 else if (strcmp(optarg, "timing") == 0)
855 timing_ = true;
06edab7d
JF
856 else {
857 fprintf(stderr, "invalid name for -g\n");
858 return 1;
859 }
860 break;
cac61857 861
06edab7d
JF
862 case 'n':
863 if (false);
10d0e915 864 else if (strcmp(optarg, "minify") == 0)
06edab7d
JF
865 pretty_ = true;
866 else {
867 fprintf(stderr, "invalid name for -n\n");
868 return 1;
869 }
870 break;
11c1cc16 871
2aa77fd8 872#ifdef CY_ATTACH
06edab7d 873 case 'p': {
10d0e915 874 size_t size(strlen(optarg));
06edab7d 875 char *end;
69caa5be 876
10d0e915
JF
877 pid = strtoul(optarg, &end, 0);
878 if (optarg + size != end) {
69caa5be 879 // XXX: arg needs to be escaped in some horrendous way of doom
10d0e915
JF
880 // XXX: this is a memory leak now because I just don't care enough
881 char *command;
ccb4e34c
JF
882 int writ(asprintf(&command, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", optarg));
883 _assert(writ != -1);
69caa5be
JF
884
885 if (FILE *pids = popen(command, "r")) {
886 char value[32];
887 size = 0;
888
889 for (;;) {
890 size_t read(fread(value + size, 1, sizeof(value) - size, pids));
891 if (read == 0)
892 break;
893 else {
894 size += read;
04aa6240 895 if (size == sizeof(value))
b166b11b 896 goto fail;
69caa5be
JF
897 }
898 }
899
900 size:
901 if (size == 0)
b166b11b 902 goto fail;
69caa5be
JF
903 if (value[size - 1] == '\n') {
904 --size;
905 goto size;
906 }
907
908 value[size] = '\0';
909 size = strlen(value);
910 pid = strtoul(value, &end, 0);
b166b11b 911 if (value + size != end) fail:
69caa5be 912 pid = _not(pid_t);
69caa5be
JF
913 _syscall(pclose(pids));
914 }
915
916 if (pid == _not(pid_t)) {
10d0e915 917 fprintf(stderr, "unable to find process `%s' using ps\n", optarg);
69caa5be
JF
918 return 1;
919 }
06edab7d 920 }
96746747 921 } goto target;
2aa77fd8 922#endif
b10bd496 923
666eedb9 924 case 'r': {
10d0e915 925 //size_t size(strlen(optarg));
666eedb9 926
10d0e915 927 char *colon(strrchr(optarg, ':'));
666eedb9
JF
928 if (colon == NULL) {
929 fprintf(stderr, "missing colon in hostspec\n");
930 return 1;
931 }
932
933 /*char *end;
934 port = strtoul(colon + 1, &end, 10);
10d0e915 935 if (end != optarg + size) {
666eedb9
JF
936 fprintf(stderr, "invalid port in hostspec\n");
937 return 1;
938 }*/
939
10d0e915 940 host = optarg;
666eedb9
JF
941 *colon = '\0';
942 port = colon + 1;
96746747 943 } goto target;
666eedb9 944
06edab7d
JF
945 case 's':
946 strict_ = true;
947 break;
10d0e915
JF
948
949 default:
950 _assert(false);
06edab7d 951 }
10d0e915
JF
952 }
953
954 getopt:
955 argc -= optind;
956 argv += optind;
967067aa 957
b09da87b
JF
958 const char *script;
959
2aa77fd8 960#ifdef CY_ATTACH
10d0e915 961 if (pid != _not(pid_t) && argc > 1) {
fcc64bb5
JF
962 fprintf(stderr, "-p cannot set argv\n");
963 return 1;
964 }
2aa77fd8 965#endif
75b0a457 966
10d0e915 967 if (argc == 0)
b09da87b
JF
968 script = NULL;
969 else {
9185d5ef 970#ifdef CY_EXECUTE
967067aa 971 // XXX: const_cast?! wtf gcc :(
10d0e915 972 CYSetArgs(argc - 1, const_cast<const char **>(argv + 1));
9185d5ef 973#endif
10d0e915 974 script = argv[0];
967067aa
JF
975 if (strcmp(script, "-") == 0)
976 script = NULL;
b09da87b
JF
977 }
978
2aa77fd8 979#ifdef CY_ATTACH
967067aa 980 if (pid == _not(pid_t))
7e5391fd 981 client_ = -1;
967067aa 982 else {
46d13f4c
JF
983 struct Socket {
984 int fd_;
b166b11b 985
46d13f4c
JF
986 Socket(int fd) :
987 fd_(fd)
988 {
989 }
96cc7967 990
46d13f4c
JF
991 ~Socket() {
992 close(fd_);
993 }
96cc7967 994
46d13f4c
JF
995 operator int() {
996 return fd_;
997 }
998 } server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0)));
96cc7967 999
46d13f4c
JF
1000 struct sockaddr_un address;
1001 memset(&address, 0, sizeof(address));
1002 address.sun_family = AF_UNIX;
b166b11b 1003
f8d45a20
JF
1004 const char *tmp;
1005#if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
1006 tmp = "/Library/Caches";
1007#else
1008 tmp = "/tmp";
1009#endif
1010
1011 sprintf(address.sun_path, "%s/.s.cy.%u", tmp, getpid());
46d13f4c 1012 unlink(address.sun_path);
b166b11b 1013
46d13f4c
JF
1014 struct File {
1015 const char *path_;
1016
1017 File(const char *path) :
1018 path_(path)
1019 {
1020 }
1021
1022 ~File() {
1023 unlink(path_);
1024 }
1025 } file(address.sun_path);
1026
1027 _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
1028 _syscall(chmod(address.sun_path, 0777));
1029
1030 _syscall(listen(server, 1));
ccb4e34c
JF
1031 const char *const argv[] = {address.sun_path, NULL};
1032 InjectLibrary(pid, 1, argv);
46d13f4c 1033 client_ = _syscall(accept(server, NULL, NULL));
967067aa 1034 }
2aa77fd8 1035#else
7e5391fd 1036 client_ = -1;
2aa77fd8 1037#endif
579ed526 1038
666eedb9
JF
1039 if (client_ == -1 && host != NULL && port != NULL) {
1040 struct addrinfo hints;
1041 memset(&hints, 0, sizeof(hints));
1042 hints.ai_family = AF_UNSPEC;
1043 hints.ai_socktype = SOCK_STREAM;
1044 hints.ai_protocol = 0;
1045 hints.ai_flags = 0;
1046
1047 struct addrinfo *infos;
1048 _syscall(getaddrinfo(host, port, &hints, &infos));
1049
1050 _assert(infos != NULL); try {
1051 for (struct addrinfo *info(infos); info != NULL; info = info->ai_next) {
1052 int client(_syscall(socket(info->ai_family, info->ai_socktype, info->ai_protocol))); try {
1053 _syscall(connect(client, info->ai_addr, info->ai_addrlen));
1054 client_ = client;
1055 break;
1056 } catch (...) {
1057 _syscall(close(client));
1058 throw;
1059 }
1060 }
1061 } catch (...) {
1062 freeaddrinfo(infos);
1063 throw;
1064 }
1065 }
1066
48e3be8a 1067 if (script == NULL && tty)
2eb8215d 1068 Console(options);
b09da87b 1069 else {
0df6a201 1070 std::istream *stream;
48e3be8a 1071 if (script == NULL) {
0df6a201
JF
1072 stream = &std::cin;
1073 script = "<stdin>";
48e3be8a 1074 } else {
0df6a201
JF
1075 stream = new std::fstream(script, std::ios::in | std::ios::binary);
1076 _assert(!stream->fail());
48e3be8a 1077 }
62ca2b82 1078
341d1456
JF
1079 if (timing_) {
1080 std::stringbuf buffer;
1081 stream->get(buffer, '\0');
1082 _assert(!stream->fail());
1083
1084 double average(0);
1085 int samples(-50);
1086 uint64_t start(CYGetTime());
1087
1088 for (;;) {
1089 stream = new std::istringstream(buffer.str());
1090
1091 CYPool pool;
c3d9dbc7 1092 CYDriver driver(pool, *stream->rdbuf(), script);
341d1456
JF
1093 Setup(driver);
1094
1095 uint64_t begin(CYGetTime());
1096 driver.Parse();
1097 uint64_t end(CYGetTime());
1098
1099 delete stream;
1100
1101 average += (end - begin - average) / ++samples;
1102
1103 uint64_t now(CYGetTime());
1104 if (samples == 0)
1105 average = 0;
1106 else if ((now - start) / 1000000000 >= 1)
1107 std::cout << std::fixed << average << '\t' << (end - begin) << '\t' << samples << std::endl;
1108 else continue;
1109
1110 start = now;
1111 }
1112
1113 stream = new std::istringstream(buffer.str());
1114 std::cin.get();
1115 }
1116
2c1d569a 1117 CYPool pool;
c3d9dbc7 1118 CYDriver driver(pool, *stream->rdbuf(), script);
d9c91152
JF
1119 Setup(driver);
1120
2c1d569a 1121 bool failed(driver.Parse());
d3b63265 1122
d9c91152 1123 if (failed || !driver.errors_.empty()) {
b09da87b
JF
1124 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
1125 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
311fe5f3 1126 return 1;
a7d8b413 1127 } else if (driver.script_ != NULL) {
efd689d8 1128 std::stringbuf str;
0df6a201 1129 CYOutput out(str, options);
2c1d569a 1130 Setup(out, driver, options, true);
a7d8b413 1131 out << *driver.script_;
0df6a201
JF
1132 std::string code(str.str());
1133 if (compile)
1134 std::cout << code;
e66ced89
JF
1135 else {
1136 CYUTF8String json(Run(pool, client_, code));
1137 if (CYStartsWith(json, "throw ")) {
1138 CYLexerHighlight(json.data, json.size, std::cerr);
1139 std::cerr << std::endl;
1140 return 1;
1141 }
1142 }
0df6a201 1143 }
057f943f 1144 }
62ca2b82 1145
057f943f 1146 return 0;
62ca2b82 1147}
b6961e53 1148
10d0e915
JF
1149int main(int argc, char * const argv[], char const * const envp[]) {
1150 try {
b6961e53
JF
1151 return Main(argc, argv, envp);
1152 } catch (const CYException &error) {
1153 CYPool pool;
1154 fprintf(stderr, "%s\n", error.PoolCString(pool));
1155 return 1;
1156 }
1157}