1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
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.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
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/>.
22 #include "cycript.hpp"
25 #include "JavaScript.hpp"
33 #ifdef HAVE_READLINE_H
36 #include <readline/readline.h>
42 #include <readline/history.h>
51 #include <sys/socket.h>
52 #include <sys/types.h>
57 #include <sys/ioctl.h>
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <netinet/in.h>
68 #include <mach/mach_time.h>
73 #include "Highlight.hpp"
76 extern "C" int rl_display_fixed
;
77 extern "C" int _rl_vis_botlin
;
78 extern "C" int _rl_last_c_pos
;
79 extern "C" int _rl_last_v_pos
;
81 typedef std::complex<int> CYCursor
;
83 static CYCursor current_
;
87 unsigned CYDisplayWidth() {
89 if (ioctl(1, TIOCGWINSZ
, &info
) != -1)
91 return tgetnum(const_cast<char *>("co"));
94 void CYDisplayOutput_(bool display
, const char *&data
) {
97 if (next
== '\0' || next
== CYIgnoreEnd
)
104 CYCursor
CYDisplayOutput(bool display
, int width
, const char *data
, ssize_t offset
= 0) {
105 CYCursor
point(current_
);
110 switch (char next
= *data
++) {
116 CYDisplayOutput_(display
, data
);
124 current_
+= CYCursor(0, 1);
125 if (current_
.imag() != width
)
127 current_
= CYCursor(current_
.real() + 1, 0);
133 current_
= CYCursor(current_
.real() + 1, 4);
148 void CYDisplayMove_(char *negative
, char *positive
, int offset
) {
150 putp(tparm(negative
, -offset
));
152 putp(tparm(positive
, offset
));
155 void CYDisplayMove(CYCursor target
) {
156 CYCursor
offset(target
- current_
);
158 CYDisplayMove_(parm_up_cursor
, parm_down_cursor
, offset
.real());
160 if (char *parm
= tparm(column_address
, target
.imag()))
163 CYDisplayMove_(parm_left_cursor
, parm_right_cursor
, offset
.imag());
168 void CYDisplayUpdate() {
169 current_
= CYCursor(_rl_last_v_pos
, _rl_last_c_pos
);
171 const char *prompt(rl_display_prompt
);
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());
178 int width(CYDisplayWidth());
179 if (width_
!= width
) {
180 current_
= CYCursor();
181 CYDisplayOutput(false, width
, prompt
);
182 current_
= CYDisplayOutput(false, width
, buffer
, point_
);
185 CYDisplayMove(CYCursor());
186 CYDisplayOutput(true, width
, prompt
);
187 CYCursor
target(CYDisplayOutput(true, width
, stream
.str().c_str(), rl_point
));
189 _rl_vis_botlin
= current_
.real();
191 if (current_
.imag() == 0)
192 CYDisplayOutput(true, width
, " ");
195 CYDisplayMove(target
);
198 _rl_last_v_pos
= current_
.real();
199 _rl_last_c_pos
= current_
.imag();
205 static volatile enum {
213 static jmp_buf ctrlc_
;
215 static void sigint(int) {
238 void Setup(CYDriver
&driver
) {
242 driver
.strict_
= true;
245 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
, bool lower
) {
246 out
.pretty_
= pretty_
;
248 driver
.Replace(options
);
251 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
258 json
= CYExecute(CYGetJSContext(), pool
, code
);
270 _assert(CYSendAll(client
, &size
, sizeof(size
)));
271 _assert(CYSendAll(client
, code
.data
, code
.size
));
273 _assert(CYRecvAll(client
, &size
, sizeof(size
)));
274 if (size
== _not(uint32_t))
277 char *temp(new(pool
) char[size
+ 1]);
278 _assert(CYRecvAll(client
, temp
, size
));
285 return CYUTF8String(json
, size
);
288 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
289 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
292 static std::ostream
*out_
;
294 static void Output(CYUTF8String json
, std::ostream
*out
, bool expand
= false) {
295 const char *data(json
.data
);
296 size_t size(json
.size
);
298 if (data
== NULL
|| out
== NULL
)
302 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
303 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
305 CYLexerHighlight(data
, size
, *out
);
306 else for (size_t i(0); i
!= size
; ++i
)
309 else switch(data
[++i
]) {
310 case '\0': goto done
;
311 case '\\': *out
<< '\\'; break;
312 case '\'': *out
<< '\''; break;
313 case '"': *out
<< '"'; break;
314 case 'b': *out
<< '\b'; break;
315 case 'f': *out
<< '\f'; break;
316 case 'n': *out
<< '\n'; break;
317 case 'r': *out
<< '\r'; break;
318 case 't': *out
<< '\t'; break;
319 case 'v': *out
<< '\v'; break;
320 default: *out
<< '\\'; --i
; break;
327 int (*append_history$
)(int, const char *);
329 static std::string command_
;
333 static CYUTF8String
Run(CYPool
&pool
, const std::string
&code
) {
334 return Run(pool
, client_
, code
);
337 static char **Complete(const char *word
, int start
, int end
) {
338 rl_attempted_completion_over
= ~0;
339 std::string
line(rl_line_buffer
, start
);
340 char **values(CYComplete(word
, command_
+ line
, &Run
));
345 // need char *, not const char *
346 static char name_
[] = "cycript";
347 static char break_
[] = " \t\n\"\\'`@><=;|&{(" ")}" ".:[]";
351 std::string histfile_
;
355 History(std::string histfile
) :
359 read_history(histfile_
.c_str());
361 for (HIST_ENTRY
*history((history_set_pos(0), current_history())); history
; history
= next_history())
362 for (char *character(history
->line
); *character
; ++character
)
363 if (*character
== '\x01') *character
= '\n';
367 for (HIST_ENTRY
*history((history_set_pos(0), current_history())); history
; history
= next_history())
368 for (char *character(history
->line
); *character
; ++character
)
369 if (*character
== '\n') *character
= '\x01';
371 if (append_history$
!= NULL
) {
372 int fd(_syscall(open(histfile_
.c_str(), O_CREAT
| O_WRONLY
, 0600)));
374 _assert((*append_history$
)(histlines_
, histfile_
.c_str()) == 0);
376 _assert(write_history(histfile_
.c_str()) == 0);
380 void operator +=(std::string command
) {
381 add_history(command
.c_str());
386 template <typename Type_
>
387 static Type_
*CYmemrchr(Type_
*data
, Type_ value
, size_t size
) {
389 if (data
[--size
] == value
)
394 static void _lblcall(int (*command
)(int, int), int count
, int key
) {
395 int last(_rl_last_c_pos
);
396 // rl_rubout crashes in _rl_erase_at_end_of_line if _rl_last_c_pos != 0
397 if (command
== &rl_rubout
)
399 for (int i(0); i
!= count
; ++i
)
400 if (command(1, key
) != 0)
402 _rl_last_c_pos
= last
;
405 static int CYConsoleKeyReturn(int count
, int key
) {
406 if (rl_point
!= rl_end
) {
407 if (memchr(rl_line_buffer
, '\n', rl_end
) == NULL
) {
408 _lblcall(&rl_newline
, count
, key
);
413 char *before(CYmemrchr(rl_line_buffer
, '\n', rl_point
));
415 before
= rl_line_buffer
;
417 int space(before
+ 1 - rl_line_buffer
);
418 while (space
!= rl_point
&& rl_line_buffer
[space
] == ' ')
421 int adjust(rl_line_buffer
+ space
- 1 - before
);
422 if (space
== rl_point
&& adjust
!= 0)
423 _lblcall(&rl_rubout
, adjust
, '\b');
425 _lblcall(&rl_insert
, count
, '\n');
427 _lblcall(&rl_insert
, adjust
, ' ');
433 if (rl_line_buffer
[0] == '?')
436 std::string
command(rl_line_buffer
, rl_end
);
438 std::stringbuf
stream(command
);
440 size_t last(std::string::npos
);
441 for (size_t i(0); i
!= std::string::npos
; i
= command
.find('\n', i
+ 1))
445 CYDriver
driver(pool
, stream
);
446 if (driver
.Parse() || !driver
.errors_
.empty())
447 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
448 if (error
->location_
.begin
.line
!= last
+ 1)
457 _lblcall(&rl_newline
, count
, key
);
461 // XXX: this was the most obvious fix, but is seriously dumb
465 static int CYConsoleKeyUp(int count
, int key
) {
466 for (; count
!= 0; --count
) {
467 char *after(CYmemrchr(rl_line_buffer
, '\n', rl_point
));
469 if (int value
= rl_get_previous_history(1, key
))
474 char *before(CYmemrchr(rl_line_buffer
, '\n', after
- rl_line_buffer
));
476 before
= rl_line_buffer
- 1;
478 ptrdiff_t offset(rl_line_buffer
+ rl_point
- after
);
479 if (offset
> after
- before
)
480 rl_point
= after
- rl_line_buffer
;
482 rl_point
= before
+ offset
- rl_line_buffer
;
488 static int CYConsoleKeyDown(int count
, int key
) {
489 for (; count
!= 0; --count
) {
490 char *after(static_cast<char *>(memchr(rl_line_buffer
+ rl_point
, '\n', rl_end
- rl_point
)));
492 int where(where_history());
493 if (int value
= rl_get_next_history(1, key
))
495 if (where
!= where_history()) {
496 char *first(static_cast<char *>(memchr(rl_line_buffer
, '\n', rl_end
)));
498 rl_point
= first
- 1 - rl_line_buffer
;
503 char *before(CYmemrchr(rl_line_buffer
, '\n', rl_point
));
505 before
= rl_line_buffer
- 1;
507 char *next(static_cast<char *>(memchr(after
+ 1, '\n', rl_line_buffer
+ rl_end
- after
- 1)));
509 next
= rl_line_buffer
+ rl_end
;
511 ptrdiff_t offset(rl_line_buffer
+ rl_point
- before
);
512 if (offset
> next
- after
)
513 rl_point
= next
- rl_line_buffer
;
515 rl_point
= after
+ offset
- rl_line_buffer
;
521 static int CYConsoleLineBegin(int count
, int key
) {
522 while (rl_point
!= 0 && rl_line_buffer
[rl_point
- 1] != '\n')
527 static int CYConsoleLineEnd(int count
, int key
) {
528 while (rl_point
!= rl_end
&& rl_line_buffer
[rl_point
] != '\n')
530 if (rl_point
!= rl_end
&& rl_editing_mode
== 0)
535 static int CYConsoleKeyBack(int count
, int key
) {
536 for (; count
!= 0; --count
) {
540 char *before(CYmemrchr(rl_line_buffer
, '\n', rl_point
));
541 if (before
== NULL
) {
542 int adjust(std::min(count
, rl_point
));
543 _lblcall(&rl_rubout
, adjust
, key
);
548 int start(before
+ 1 - rl_line_buffer
);
549 if (start
== rl_point
) rubout
: {
550 _lblcall(&rl_rubout
, 1, key
);
554 for (int i(start
); i
!= rl_point
; ++i
)
555 if (rl_line_buffer
[i
] != ' ')
557 _lblcall(&rl_rubout
, (rl_point
- start
) % 4 ?: 4, key
);
563 static int CYConsoleKeyTab(int count
, int key
) {
564 char *before(CYmemrchr(rl_line_buffer
, '\n', rl_point
));
565 if (before
== NULL
) complete
:
566 return rl_complete_internal(rl_completion_mode(&CYConsoleKeyTab
));
567 int start(before
+ 1 - rl_line_buffer
);
568 for (int i(start
); i
!= rl_point
; ++i
)
569 if (rl_line_buffer
[i
] != ' ')
571 _lblcall(&rl_insert
, 4 - (rl_point
- start
) % 4, ' ');
575 static void CYConsoleRemapBind(Keymap map
, rl_command_func_t
*from
, rl_command_func_t
*to
) {
576 char **keyseqs(rl_invoking_keyseqs_in_map(from
, map
));
579 for (char **keyseq(keyseqs
); *keyseq
!= NULL
; ++keyseq
) {
580 rl_bind_keyseq_in_map(*keyseq
, to
, map
);
586 static void CYConsoleRemapKeys(Keymap map
) {
587 CYConsoleRemapBind(map
, &rl_beg_of_line
, &CYConsoleLineBegin
);
588 CYConsoleRemapBind(map
, &rl_end_of_line
, &CYConsoleLineEnd
);
590 CYConsoleRemapBind(map
, &rl_get_previous_history
, &CYConsoleKeyUp
);
591 CYConsoleRemapBind(map
, &rl_get_next_history
, &CYConsoleKeyDown
);
593 CYConsoleRemapBind(map
, &rl_rubout
, &CYConsoleKeyBack
);
594 CYConsoleRemapBind(map
, &rl_complete
, &CYConsoleKeyTab
);
597 static void CYConsolePrepTerm(int meta
) {
598 rl_prep_terminal(meta
);
600 CYConsoleRemapKeys(emacs_standard_keymap
);
601 CYConsoleRemapKeys(emacs_meta_keymap
);
602 CYConsoleRemapKeys(emacs_ctlx_keymap
);
603 CYConsoleRemapKeys(vi_insertion_keymap
);
604 CYConsoleRemapKeys(vi_movement_keymap
);
607 static void Console(CYOptions
&options
) {
609 if (const char *home
= getenv("HOME"))
613 if (const char *username
= getenv("LOGNAME"))
614 passwd
= getpwnam(username
);
616 passwd
= getpwuid(getuid());
617 basedir
= passwd
->pw_dir
;
620 basedir
+= "/.cycript";
621 mkdir(basedir
.c_str(), 0700);
624 rl_readline_name
= name_
;
626 History
history(basedir
+ "/history");
635 rl_completer_word_break_characters
= break_
;
636 rl_attempted_completion_function
= &Complete
;
638 rl_redisplay_function
= CYDisplayUpdate
;
639 rl_prep_term_function
= CYConsolePrepTerm
;
641 struct sigaction action
;
642 sigemptyset(&action
.sa_mask
);
643 action
.sa_handler
= &sigint
;
645 sigaction(SIGINT
, &action
, NULL
);
648 if (setjmp(ctrlc_
) != 0) {
655 rl_bind_key('\r', &rl_newline
);
656 rl_bind_key('\n', &rl_newline
);
658 rl_bind_key('\r', &CYConsoleKeyReturn
);
659 rl_bind_key('\n', &CYConsoleKeyReturn
);
663 char *line(readline("cy# "));
671 std::string
command(line
);
677 if (command
[0] == '?') {
678 std::string
data(command
.substr(1));
679 if (data
== "bypass") {
681 *out_
<< "bypass == " << (bypass
? "true" : "false") << std::endl
;
682 } else if (data
== "debug") {
684 *out_
<< "debug == " << (debug
? "true" : "false") << std::endl
;
685 } else if (data
== "destroy") {
687 } else if (data
== "gc") {
688 *out_
<< "collecting... " << std::flush
;
689 CYGarbageCollect(CYGetJSContext());
690 *out_
<< "done." << std::endl
;
691 } else if (data
== "exit") {
693 } else if (data
== "expand") {
695 *out_
<< "expand == " << (expand
? "true" : "false") << std::endl
;
696 } else if (data
== "lower") {
698 *out_
<< "lower == " << (lower
? "true" : "false") << std::endl
;
708 std::stringbuf
stream(command
);
711 CYDriver
driver(pool
, stream
);
714 if (driver
.Parse() || !driver
.errors_
.empty()) {
715 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
716 CYPosition
begin(error
->location_
.begin
);
717 CYPosition
end(error
->location_
.end
);
719 /*if (begin.line != lines2.size()) {
721 std::cerr << lines2[begin.line - 1] << std::endl;
725 for (size_t i(0); i
!= begin
.column
; ++i
)
727 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
729 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
731 std::cerr
<< std::endl
;
734 std::cerr
<< error
->message_
<< std::endl
;
742 if (driver
.script_
== NULL
)
746 CYOutput
out(str
, options
);
747 Setup(out
, driver
, options
, lower
);
748 out
<< *driver
.script_
;
750 } catch (const CYException
&error
) {
752 std::cout
<< error
.PoolCString(pool
) << std::endl
;
758 CYLexerHighlight(code
.c_str(), code
.size(), std::cout
);
759 std::cout
<< std::endl
;
763 Output(Run(pool
, client_
, code
), &std::cout
, expand
);
767 void InjectLibrary(pid_t
, int, const char *const []);
769 static uint64_t CYGetTime() {
771 return mach_absolute_time();
773 struct timespec spec
;
774 clock_gettime(CLOCK_MONOTONIC
, &spec
);
775 return spec
.tv_sec
* UINT64_C(1000000000) + spec
.tv_nsec
;
779 int Main(int argc
, char * const argv
[], char const * const envp
[]) {
780 bool tty(isatty(STDIN_FILENO
));
785 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
788 pid_t
pid(_not(pid_t
));
791 const char *host(NULL
);
792 const char *port(NULL
);
797 int option(getopt_long(argc
, argv
,
806 , (const struct option
[]) {
807 {NULL
, no_argument
, NULL
, 'c'},
808 {NULL
, required_argument
, NULL
, 'g'},
809 {NULL
, required_argument
, NULL
, 'n'},
811 {NULL
, required_argument
, NULL
, 'p'},
813 {NULL
, required_argument
, NULL
, 'r'},
814 {NULL
, no_argument
, NULL
, 's'},
815 {0, 0, 0, 0}}, NULL
));
824 "usage: cycript [-c]"
829 " [<script> [<arg>...]]\n"
837 fprintf(stderr
, "only one of -[c"
841 "r] may be used at a time\n");
852 else if (strcmp(optarg
, "rename") == 0)
853 options
.verbose_
= true;
854 else if (strcmp(optarg
, "bison") == 0)
856 else if (strcmp(optarg
, "timing") == 0)
859 fprintf(stderr
, "invalid name for -g\n");
866 else if (strcmp(optarg
, "minify") == 0)
869 fprintf(stderr
, "invalid name for -n\n");
876 size_t size(strlen(optarg
));
879 pid
= strtoul(optarg
, &end
, 0);
880 if (optarg
+ size
!= end
) {
881 // XXX: arg needs to be escaped in some horrendous way of doom
882 // XXX: this is a memory leak now because I just don't care enough
884 int writ(asprintf(&command
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", optarg
));
887 if (FILE *pids
= popen(command
, "r")) {
892 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
897 if (size
== sizeof(value
))
905 if (value
[size
- 1] == '\n') {
911 size
= strlen(value
);
912 pid
= strtoul(value
, &end
, 0);
913 if (value
+ size
!= end
) fail
:
915 _syscall(pclose(pids
));
918 if (pid
== _not(pid_t
)) {
919 fprintf(stderr
, "unable to find process `%s' using ps\n", optarg
);
927 //size_t size(strlen(optarg));
929 char *colon(strrchr(optarg
, ':'));
931 fprintf(stderr
, "missing colon in hostspec\n");
936 port = strtoul(colon + 1, &end, 10);
937 if (end != optarg + size) {
938 fprintf(stderr, "invalid port in hostspec\n");
963 if (pid
!= _not(pid_t
) && argc
> 1) {
964 fprintf(stderr
, "-p cannot set argv\n");
973 // XXX: const_cast?! wtf gcc :(
974 CYSetArgs(argc
- 1, const_cast<const char **>(argv
+ 1));
977 if (strcmp(script
, "-") == 0)
982 if (pid
== _not(pid_t
))
1000 } server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0)));
1002 struct sockaddr_un address
;
1003 memset(&address
, 0, sizeof(address
));
1004 address
.sun_family
= AF_UNIX
;
1007 #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
1008 tmp
= "/Library/Caches";
1013 sprintf(address
.sun_path
, "%s/.s.cy.%u", tmp
, getpid());
1014 unlink(address
.sun_path
);
1019 File(const char *path
) :
1027 } file(address
.sun_path
);
1029 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), sizeof(address
)));
1030 _syscall(chmod(address
.sun_path
, 0777));
1032 _syscall(listen(server
, 1));
1033 const char *const argv
[] = {address
.sun_path
, NULL
};
1034 InjectLibrary(pid
, 1, argv
);
1035 client_
= _syscall(accept(server
, NULL
, NULL
));
1041 if (client_
== -1 && host
!= NULL
&& port
!= NULL
) {
1042 struct addrinfo hints
;
1043 memset(&hints
, 0, sizeof(hints
));
1044 hints
.ai_family
= AF_UNSPEC
;
1045 hints
.ai_socktype
= SOCK_STREAM
;
1046 hints
.ai_protocol
= 0;
1049 struct addrinfo
*infos
;
1050 _syscall(getaddrinfo(host
, port
, &hints
, &infos
));
1052 _assert(infos
!= NULL
); try {
1053 for (struct addrinfo
*info(infos
); info
!= NULL
; info
= info
->ai_next
) {
1054 int client(_syscall(socket(info
->ai_family
, info
->ai_socktype
, info
->ai_protocol
))); try {
1055 _syscall(connect(client
, info
->ai_addr
, info
->ai_addrlen
));
1059 _syscall(close(client
));
1064 freeaddrinfo(infos
);
1069 if (script
== NULL
&& tty
)
1072 std::istream
*stream
;
1073 if (script
== NULL
) {
1077 stream
= new std::fstream(script
, std::ios::in
| std::ios::binary
);
1078 _assert(!stream
->fail());
1082 std::stringbuf buffer
;
1083 stream
->get(buffer
, '\0');
1084 _assert(!stream
->fail());
1088 uint64_t start(CYGetTime());
1091 stream
= new std::istringstream(buffer
.str());
1094 CYDriver
driver(pool
, *stream
->rdbuf(), script
);
1097 uint64_t begin(CYGetTime());
1099 uint64_t end(CYGetTime());
1103 average
+= (end
- begin
- average
) / ++samples
;
1105 uint64_t now(CYGetTime());
1108 else if ((now
- start
) / 1000000000 >= 1)
1109 std::cout
<< std::fixed
<< average
<< '\t' << (end
- begin
) << '\t' << samples
<< std::endl
;
1115 stream
= new std::istringstream(buffer
.str());
1120 CYDriver
driver(pool
, *stream
->rdbuf(), script
);
1123 bool failed(driver
.Parse());
1125 if (failed
|| !driver
.errors_
.empty()) {
1126 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
1127 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
1129 } else if (driver
.script_
!= NULL
) {
1131 CYOutput
out(str
, options
);
1132 Setup(out
, driver
, options
, true);
1133 out
<< *driver
.script_
;
1134 std::string
code(str
.str());
1138 CYUTF8String
json(Run(pool
, client_
, code
));
1139 if (CYStartsWith(json
, "throw ")) {
1140 CYLexerHighlight(json
.data
, json
.size
, std::cerr
);
1141 std::cerr
<< std::endl
;
1151 int main(int argc
, char * const argv
[], char const * const envp
[]) {
1153 return Main(argc
, argv
, envp
);
1154 } catch (const CYException
&error
) {
1156 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));