]> git.saurik.com Git - cycript.git/blob - Console.cpp
57c38e6d6b28ae715f713846283db4a97abf0a05
[cycript.git] / Console.cpp
1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 #include "cycript.hpp"
23
24 #ifdef CY_EXECUTE
25 #include "JavaScript.hpp"
26 #endif
27
28 #include <cstdio>
29 #include <sstream>
30
31 #include <setjmp.h>
32
33 #ifdef HAVE_READLINE_H
34 #include <readline.h>
35 #else
36 #include <readline/readline.h>
37 #endif
38
39 #ifdef HAVE_HISTORY_H
40 #include <history.h>
41 #else
42 #include <readline/history.h>
43 #endif
44
45 #include <sys/mman.h>
46
47 #include <errno.h>
48 #include <unistd.h>
49
50 #include <sys/socket.h>
51 #include <sys/types.h>
52 #include <sys/stat.h>
53 #include <fcntl.h>
54 #include <netdb.h>
55
56 #include <sys/types.h>
57 #include <sys/socket.h>
58 #include <netinet/in.h>
59 #include <sys/un.h>
60 #include <pwd.h>
61
62 #include <apr_getopt.h>
63 #include <apr_pools.h>
64 #include <apr_strings.h>
65
66 #include <dlfcn.h>
67
68 #include "Display.hpp"
69 #include "Replace.hpp"
70
71 #include "Cycript.tab.hh"
72 #include "Driver.hpp"
73
74 static volatile enum {
75 Working,
76 Parsing,
77 Running,
78 Sending,
79 Waiting,
80 } mode_;
81
82 static jmp_buf ctrlc_;
83
84 static void sigint(int) {
85 switch (mode_) {
86 case Working:
87 return;
88 case Parsing:
89 longjmp(ctrlc_, 1);
90 case Running:
91 throw "*** Ctrl-C";
92 case Sending:
93 return;
94 case Waiting:
95 return;
96 }
97 }
98
99 #if YYDEBUG
100 static bool bison_;
101 #endif
102 static bool strict_;
103 static bool pretty_;
104
105 void Setup(CYDriver &driver, cy::parser &parser) {
106 #if YYDEBUG
107 if (bison_)
108 parser.set_debug_level(1);
109 #endif
110 if (strict_)
111 driver.strict_ = true;
112 }
113
114 void Setup(CYOutput &out, CYDriver &driver, CYOptions &options) {
115 out.pretty_ = pretty_;
116 CYContext context(options);
117 driver.program_->Replace(context);
118 }
119
120 static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
121 const char *json;
122 uint32_t size;
123
124 if (client == -1) {
125 mode_ = Running;
126 #ifdef CY_EXECUTE
127 json = CYExecute(pool, code);
128 #else
129 json = NULL;
130 #endif
131 mode_ = Working;
132 if (json == NULL)
133 size = 0;
134 else
135 size = strlen(json);
136 } else {
137 mode_ = Sending;
138 size = code.size;
139 _assert(CYSendAll(client, &size, sizeof(size)));
140 _assert(CYSendAll(client, code.data, code.size));
141 mode_ = Waiting;
142 _assert(CYRecvAll(client, &size, sizeof(size)));
143 if (size == _not(uint32_t))
144 json = NULL;
145 else {
146 char *temp(new(pool) char[size + 1]);
147 _assert(CYRecvAll(client, temp, size));
148 temp[size] = '\0';
149 json = temp;
150 }
151 mode_ = Working;
152 }
153
154 return CYUTF8String(json, size);
155 }
156
157 static CYUTF8String Run(CYPool &pool, int client, const std::string &code) {
158 return Run(pool, client, CYUTF8String(code.c_str(), code.size()));
159 }
160
161 static std::ostream *out_;
162
163 static void Write(bool syntax, const char *data, size_t size, std::ostream &out) {
164 if (syntax)
165 CYLexerHighlight(data, size, out);
166 else
167 out.write(data, size);
168 }
169
170 static void Output(bool syntax, CYUTF8String json, std::ostream *out, bool expand = false) {
171 const char *data(json.data);
172 size_t size(json.size);
173
174 if (data == NULL || out == NULL)
175 return;
176
177 if (!expand ||
178 data[0] != '@' && data[0] != '"' && data[0] != '\'' ||
179 data[0] == '@' && data[1] != '"' && data[1] != '\''
180 )
181 Write(syntax, data, size, *out);
182 else for (size_t i(0); i != size; ++i)
183 if (data[i] != '\\')
184 *out << data[i];
185 else switch(data[++i]) {
186 case '\0': goto done;
187 case '\\': *out << '\\'; break;
188 case '\'': *out << '\''; break;
189 case '"': *out << '"'; break;
190 case 'b': *out << '\b'; break;
191 case 'f': *out << '\f'; break;
192 case 'n': *out << '\n'; break;
193 case 'r': *out << '\r'; break;
194 case 't': *out << '\t'; break;
195 case 'v': *out << '\v'; break;
196 default: *out << '\\'; --i; break;
197 }
198
199 done:
200 *out << std::endl;
201 }
202
203 static void Run(int client, bool syntax, const char *data, size_t size, std::ostream *out = NULL, bool expand = false) {
204 CYPool pool;
205 Output(syntax, Run(pool, client, CYUTF8String(data, size)), out, expand);
206 }
207
208 static void Run(int client, bool syntax, std::string &code, std::ostream *out = NULL, bool expand = false) {
209 Run(client, syntax, code.c_str(), code.size(), out, expand);
210 }
211
212 int (*append_history$)(int, const char *);
213
214 static std::string command_;
215
216 static CYExpression *ParseExpression(CYUTF8String code) {
217 std::stringstream stream;
218 stream << '(' << code << ')';
219 CYDriver driver(stream);
220
221 cy::parser parser(driver);
222 Setup(driver, parser);
223
224 if (parser.parse() != 0 || !driver.errors_.empty())
225 return NULL;
226
227 CYOptions options;
228 CYContext context(options);
229
230 // XXX: this could be replaced with a CYStatement::Primitive()
231 if (CYExpress *express = dynamic_cast<CYExpress *>(driver.program_->statements_))
232 return express->expression_->Primitive(context);
233
234 return NULL;
235 }
236
237 static int client_;
238
239 static char **Complete(const char *word, int start, int end) {
240 rl_attempted_completion_over = TRUE;
241
242 CYLocalPool pool;
243
244 std::string line(rl_line_buffer, start);
245 std::istringstream stream(command_ + line);
246 CYDriver driver(stream);
247
248 driver.auto_ = true;
249
250 cy::parser parser(driver);
251 Setup(driver, parser);
252
253 if (parser.parse() != 0 || !driver.errors_.empty())
254 return NULL;
255
256 if (driver.mode_ == CYDriver::AutoNone)
257 return NULL;
258
259 CYExpression *expression;
260
261 CYOptions options;
262 CYContext context(options);
263
264 std::ostringstream prefix;
265
266 switch (driver.mode_) {
267 case CYDriver::AutoPrimary:
268 expression = $ CYThis();
269 break;
270
271 case CYDriver::AutoDirect:
272 expression = driver.context_;
273 break;
274
275 case CYDriver::AutoIndirect:
276 expression = $ CYIndirect(driver.context_);
277 break;
278
279 case CYDriver::AutoMessage: {
280 CYDriver::Context &thing(driver.contexts_.back());
281 expression = $M($C1($V("object_getClass"), thing.context_), $S("messages"));
282 for (CYDriver::Context::Words::const_iterator part(thing.words_.begin()); part != thing.words_.end(); ++part)
283 prefix << (*part)->word_ << ':';
284 } break;
285
286 default:
287 _assert(false);
288 }
289
290 std::string begin(prefix.str());
291
292 driver.program_ = $ CYProgram($ CYExpress($C3(ParseExpression(
293 " function(object, prefix, word) {\n"
294 " var names = [];\n"
295 " var before = prefix.length;\n"
296 " prefix += word;\n"
297 " var entire = prefix.length;\n"
298 " for (name in object)\n"
299 " if (name.substring(0, entire) == prefix)\n"
300 " names.push(name.substr(before));\n"
301 " return names;\n"
302 " }\n"
303 ), expression, $S(begin.c_str()), $S(word))));
304
305 driver.program_->Replace(context);
306
307 std::ostringstream str;
308 CYOutput out(str, options);
309 out << *driver.program_;
310
311 std::string code(str.str());
312 CYUTF8String json(Run(pool, client_, code));
313 // XXX: if this fails we should not try to parse it
314
315 CYExpression *result(ParseExpression(json));
316 if (result == NULL)
317 return NULL;
318
319 CYArray *array(dynamic_cast<CYArray *>(result));
320
321 if (array == NULL) {
322 *out_ << '\n';
323 Output(false, json, out_);
324 rl_forced_update_display();
325 return NULL;
326 }
327
328 // XXX: use an std::set?
329 typedef std::vector<std::string> Completions;
330 Completions completions;
331
332 std::string common;
333 bool rest(false);
334
335 CYForEach (element, array->elements_) {
336 CYString *string(dynamic_cast<CYString *>(element->value_));
337 _assert(string != NULL);
338
339 std::string completion;
340 if (string->size_ != 0)
341 completion.assign(string->value_, string->size_);
342 else if (driver.mode_ == CYDriver::AutoMessage)
343 completion = "]";
344 else
345 continue;
346
347 completions.push_back(completion);
348
349 if (!rest) {
350 common = completion;
351 rest = true;
352 } else {
353 size_t limit(completion.size()), size(common.size());
354 if (size > limit)
355 common = common.substr(0, limit);
356 else
357 limit = size;
358 for (limit = 0; limit != size; ++limit)
359 if (common[limit] != completion[limit])
360 break;
361 if (limit != size)
362 common = common.substr(0, limit);
363 }
364 }
365
366 size_t count(completions.size());
367 if (count == 0)
368 return NULL;
369
370 size_t colon(common.find(':'));
371 if (colon != std::string::npos)
372 common = common.substr(0, colon + 1);
373 if (completions.size() == 1)
374 common += ' ';
375
376 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count + 2))));
377
378 results[0] = strdup(common.c_str());
379 size_t index(0);
380 for (Completions::const_iterator i(completions.begin()); i != completions.end(); ++i)
381 results[++index] = strdup(i->c_str());
382 results[count + 1] = NULL;
383
384 return results;
385 }
386
387 // need char *, not const char *
388 static char name_[] = "cycript";
389 static char break_[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]";
390
391 class History {
392 private:
393 std::string histfile_;
394 size_t histlines_;
395
396 public:
397 History(std::string histfile) :
398 histfile_(histfile),
399 histlines_(0)
400 {
401 read_history(histfile_.c_str());
402 }
403
404 ~History() {
405 if (append_history$ != NULL) {
406 _syscall(close(_syscall(open(histfile_.c_str(), O_CREAT | O_WRONLY, 0600))));
407 _assert((*append_history$)(histlines_, histfile_.c_str()) == 0);
408 } else {
409 _assert(write_history(histfile_.c_str()) == 0);
410 }
411 }
412
413 void operator +=(const std::string &command) {
414 add_history(command_.c_str());
415 ++histlines_;
416 }
417 };
418
419 static void Console(CYOptions &options) {
420 CYPool pool;
421
422 passwd *passwd;
423 if (const char *username = getenv("LOGNAME"))
424 passwd = getpwnam(username);
425 else
426 passwd = getpwuid(getuid());
427
428 std::string basedir(passwd->pw_dir);
429 basedir += "/.cycript";
430 mkdir(basedir.c_str(), 0700);
431
432 rl_initialize();
433 rl_readline_name = name_;
434
435 History history(basedir + "/history");
436
437 bool bypass(false);
438 bool debug(false);
439 bool expand(false);
440 bool syntax(true);
441
442 out_ = &std::cout;
443
444 // rl_completer_word_break_characters is broken in libedit
445 rl_basic_word_break_characters = break_;
446
447 rl_completer_word_break_characters = break_;
448 rl_attempted_completion_function = &Complete;
449 rl_bind_key('\t', rl_complete);
450
451 struct sigaction action;
452 sigemptyset(&action.sa_mask);
453 action.sa_handler = &sigint;
454 action.sa_flags = 0;
455 sigaction(SIGINT, &action, NULL);
456
457 restart: for (;;) {
458 command_.clear();
459 std::vector<std::string> lines;
460
461 bool extra(false);
462 const char *prompt("cy# ");
463
464 if (setjmp(ctrlc_) != 0) {
465 mode_ = Working;
466 *out_ << std::endl;
467 goto restart;
468 }
469
470 read:
471
472 #if RL_READLINE_VERSION >= 0x0600
473 if (syntax) {
474 rl_prep_term_function = CYDisplayStart;
475 rl_redisplay_function = CYDisplayUpdate;
476 rl_deprep_term_function = CYDisplayFinish;
477 } else {
478 rl_prep_term_function = rl_prep_terminal;
479 rl_redisplay_function = rl_redisplay;
480 rl_deprep_term_function = rl_deprep_terminal;
481 }
482 #endif
483
484 mode_ = Parsing;
485 char *line(readline(prompt));
486 mode_ = Working;
487
488 if (line == NULL) {
489 *out_ << std::endl;
490 break;
491 } else if (line[0] == '\0')
492 goto read;
493
494 if (!extra) {
495 extra = true;
496 if (line[0] == '?') {
497 std::string data(line + 1);
498 if (data == "bypass") {
499 bypass = !bypass;
500 *out_ << "bypass == " << (bypass ? "true" : "false") << std::endl;
501 } else if (data == "debug") {
502 debug = !debug;
503 *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
504 } else if (data == "expand") {
505 expand = !expand;
506 *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
507 } else if (data == "syntax") {
508 syntax = !syntax;
509 *out_ << "syntax == " << (syntax ? "true" : "false") << std::endl;
510 }
511 command_ = line;
512 history += command_;
513 goto restart;
514 }
515 }
516
517 command_ += line;
518
519 char *begin(line), *end(line + strlen(line));
520 while (char *nl = reinterpret_cast<char *>(memchr(begin, '\n', end - begin))) {
521 *nl = '\0';
522 lines.push_back(begin);
523 begin = nl + 1;
524 }
525
526 lines.push_back(begin);
527
528 free(line);
529
530 std::string code;
531
532 if (bypass)
533 code = command_;
534 else {
535 CYLocalPool pool;
536
537 std::istringstream stream(command_);
538 CYDriver driver(stream);
539
540 cy::parser parser(driver);
541 Setup(driver, parser);
542
543 if (parser.parse() != 0 || !driver.errors_.empty()) {
544 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
545 cy::position begin(error->location_.begin);
546 if (begin.line != lines.size() || begin.column < lines.back().size() || error->warning_) {
547 cy::position end(error->location_.end);
548
549 if (begin.line != lines.size()) {
550 std::cerr << " | ";
551 std::cerr << lines[begin.line - 1] << std::endl;
552 }
553
554 std::cerr << "....";
555 for (size_t i(0); i != begin.column; ++i)
556 std::cerr << '.';
557 if (begin.line != end.line || begin.column == end.column)
558 std::cerr << '^';
559 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
560 std::cerr << '^';
561 std::cerr << std::endl;
562
563 std::cerr << " | ";
564 std::cerr << error->message_ << std::endl;
565
566 history += command_;
567 goto restart;
568 }
569 }
570
571 driver.errors_.clear();
572
573 command_ += '\n';
574 prompt = "cy> ";
575 goto read;
576 }
577
578 if (driver.program_ == NULL)
579 goto restart;
580
581 if (client_ != -1)
582 code = command_;
583 else {
584 std::ostringstream str;
585 CYOutput out(str, options);
586 Setup(out, driver, options);
587 out << *driver.program_;
588 code = str.str();
589 }
590 }
591
592 history += command_;
593
594 if (debug) {
595 Write(syntax, code.c_str(), code.size(), std::cout);
596 std::cout << std::endl;
597 }
598
599 Run(client_, syntax, code, out_, expand);
600 }
601 }
602
603 static void *Map(const char *path, size_t *psize) {
604 int fd;
605 _syscall(fd = open(path, O_RDONLY));
606
607 struct stat stat;
608 _syscall(fstat(fd, &stat));
609 size_t size(stat.st_size);
610
611 *psize = size;
612
613 void *base;
614 _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0));
615
616 _syscall(close(fd));
617 return base;
618 }
619
620 void InjectLibrary(pid_t pid);
621
622 int Main(int argc, char const * const argv[], char const * const envp[]) {
623 _aprcall(apr_initialize());
624
625 apr_pool_t *pool;
626 apr_pool_create(&pool, NULL);
627
628 bool tty(isatty(STDIN_FILENO));
629 bool compile(false);
630 CYOptions options;
631
632 append_history$ = (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT, "append_history"));
633
634 #ifdef CY_ATTACH
635 pid_t pid(_not(pid_t));
636 #endif
637
638 const char *host(NULL);
639 const char *port(NULL);
640
641 apr_getopt_t *state;
642 _aprcall(apr_getopt_init(&state, pool, argc, argv));
643
644 for (;;) {
645 char opt;
646 const char *arg;
647
648 apr_status_t status(apr_getopt(state,
649 "cg:n:"
650 #ifdef CY_ATTACH
651 "p:"
652 #endif
653 "r:"
654 "s"
655 , &opt, &arg));
656
657 switch (status) {
658 case APR_EOF:
659 goto getopt;
660 case APR_BADCH:
661 case APR_BADARG:
662 fprintf(stderr,
663 "usage: cycript [-c]"
664 #ifdef CY_ATTACH
665 " [-p <pid|name>]"
666 #endif
667 " [-r <host:port>]"
668 " [<script> [<arg>...]]\n"
669 );
670 return 1;
671 default:
672 _aprcall(status);
673 }
674
675 switch (opt) {
676 case 'c':
677 compile = true;
678 break;
679
680 case 'g':
681 if (false);
682 else if (strcmp(arg, "rename") == 0)
683 options.verbose_ = true;
684 #if YYDEBUG
685 else if (strcmp(arg, "bison") == 0)
686 bison_ = true;
687 #endif
688 else {
689 fprintf(stderr, "invalid name for -g\n");
690 return 1;
691 }
692 break;
693
694 case 'n':
695 if (false);
696 else if (strcmp(arg, "minify") == 0)
697 pretty_ = true;
698 else {
699 fprintf(stderr, "invalid name for -n\n");
700 return 1;
701 }
702 break;
703
704 #ifdef CY_ATTACH
705 case 'p': {
706 size_t size(strlen(arg));
707 char *end;
708
709 pid = strtoul(arg, &end, 0);
710 if (arg + size != end) {
711 // XXX: arg needs to be escaped in some horrendous way of doom
712 const char *command(apr_pstrcat(pool, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^", arg, " /{s/^[^ ]* //;q;};};d'", NULL));
713
714 if (FILE *pids = popen(command, "r")) {
715 char value[32];
716 size = 0;
717
718 for (;;) {
719 size_t read(fread(value + size, 1, sizeof(value) - size, pids));
720 if (read == 0)
721 break;
722 else {
723 size += read;
724 if (size == sizeof(value)) {
725 pid = _not(pid_t);
726 goto fail;
727 }
728 }
729 }
730
731 size:
732 if (size == 0)
733 goto fail;
734 if (value[size - 1] == '\n') {
735 --size;
736 goto size;
737 }
738
739 value[size] = '\0';
740 size = strlen(value);
741 pid = strtoul(value, &end, 0);
742 if (value + size != end) fail:
743 pid = _not(pid_t);
744 _syscall(pclose(pids));
745 }
746
747 if (pid == _not(pid_t)) {
748 fprintf(stderr, "invalid pid for -p\n");
749 return 1;
750 }
751 }
752 } break;
753 #endif
754
755 case 'r': {
756 //size_t size(strlen(arg));
757
758 char *colon(strrchr(arg, ':'));
759 if (colon == NULL) {
760 fprintf(stderr, "missing colon in hostspec\n");
761 return 1;
762 }
763
764 /*char *end;
765 port = strtoul(colon + 1, &end, 10);
766 if (end != arg + size) {
767 fprintf(stderr, "invalid port in hostspec\n");
768 return 1;
769 }*/
770
771 host = arg;
772 *colon = '\0';
773 port = colon + 1;
774 } break;
775
776 case 's':
777 strict_ = true;
778 break;
779 }
780 } getopt:;
781
782 const char *script;
783 int ind(state->ind);
784
785 #ifdef CY_ATTACH
786 if (pid != _not(pid_t) && ind < argc - 1) {
787 fprintf(stderr, "-p cannot set argv\n");
788 return 1;
789 }
790
791 if (pid != _not(pid_t) && compile) {
792 fprintf(stderr, "-p conflicts with -c\n");
793 return 1;
794 }
795 #endif
796
797 if (ind == argc)
798 script = NULL;
799 else {
800 #ifdef CY_EXECUTE
801 // XXX: const_cast?! wtf gcc :(
802 CYSetArgs(argc - ind - 1, const_cast<const char **>(argv + ind + 1));
803 #endif
804 script = argv[ind];
805 if (strcmp(script, "-") == 0)
806 script = NULL;
807 }
808
809 #ifdef CY_ATTACH
810 if (pid != _not(pid_t) && script == NULL && !tty) {
811 fprintf(stderr, "non-terminal attaching to remote console\n");
812 return 1;
813 }
814 #endif
815
816 #ifdef CY_ATTACH
817 if (pid == _not(pid_t))
818 client_ = -1;
819 else {
820 int server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0))); try {
821 struct sockaddr_un address;
822 memset(&address, 0, sizeof(address));
823 address.sun_family = AF_UNIX;
824
825 sprintf(address.sun_path, "/tmp/.s.cy.%u", getpid());
826
827 _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
828 _syscall(chmod(address.sun_path, 0777));
829
830 try {
831 _syscall(listen(server, 1));
832 InjectLibrary(pid);
833 client_ = _syscall(accept(server, NULL, NULL));
834 } catch (...) {
835 // XXX: exception?
836 unlink(address.sun_path);
837 throw;
838 }
839 } catch (...) {
840 _syscall(close(server));
841 throw;
842 }
843 }
844 #else
845 client_ = -1;
846 #endif
847
848 if (client_ == -1 && host != NULL && port != NULL) {
849 struct addrinfo hints;
850 memset(&hints, 0, sizeof(hints));
851 hints.ai_family = AF_UNSPEC;
852 hints.ai_socktype = SOCK_STREAM;
853 hints.ai_protocol = 0;
854 hints.ai_flags = 0;
855
856 struct addrinfo *infos;
857 _syscall(getaddrinfo(host, port, &hints, &infos));
858
859 _assert(infos != NULL); try {
860 for (struct addrinfo *info(infos); info != NULL; info = info->ai_next) {
861 int client(_syscall(socket(info->ai_family, info->ai_socktype, info->ai_protocol))); try {
862 _syscall(connect(client, info->ai_addr, info->ai_addrlen));
863 client_ = client;
864 break;
865 } catch (...) {
866 _syscall(close(client));
867 throw;
868 }
869 }
870 } catch (...) {
871 freeaddrinfo(infos);
872 throw;
873 }
874 }
875
876 if (script == NULL && tty)
877 Console(options);
878 else {
879 CYLocalPool pool;
880
881 char *start, *end;
882 std::istream *indirect;
883
884 if (script == NULL) {
885 start = NULL;
886 end = NULL;
887 indirect = &std::cin;
888 } else {
889 size_t size;
890 start = reinterpret_cast<char *>(Map(script, &size));
891 end = start + size;
892
893 if (size >= 2 && start[0] == '#' && start[1] == '!') {
894 start += 2;
895
896 if (void *line = memchr(start, '\n', end - start))
897 start = reinterpret_cast<char *>(line);
898 else
899 start = end;
900 }
901
902 indirect = NULL;
903 }
904
905 CYStream direct(start, end);
906 std::istream &stream(indirect == NULL ? direct : *indirect);
907 CYDriver driver(stream, script ?: "<stdin>");
908
909 cy::parser parser(driver);
910 Setup(driver, parser);
911
912 if (parser.parse() != 0 || !driver.errors_.empty()) {
913 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
914 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
915 } else if (driver.program_ != NULL)
916 if (client_ != -1) {
917 // XXX: this code means that you can't pipe to another process
918 std::string code(start, end-start);
919 Run(client_, false, code, &std::cout);
920 } else {
921 std::ostringstream str;
922 CYOutput out(str, options);
923 Setup(out, driver, options);
924 out << *driver.program_;
925 std::string code(str.str());
926 if (compile)
927 std::cout << code;
928 else
929 Run(client_, false, code, &std::cout);
930 }
931 }
932
933 apr_pool_destroy(pool);
934
935 return 0;
936 }
937
938 int main(int argc, char const * const argv[], char const * const envp[]) {
939 apr_status_t status(apr_app_initialize(&argc, &argv, &envp));
940
941 if (status != APR_SUCCESS) {
942 fprintf(stderr, "apr_app_initialize() != APR_SUCCESS\n");
943 return 1;
944 } else try {
945 return Main(argc, argv, envp);
946 } catch (const CYException &error) {
947 CYPool pool;
948 fprintf(stderr, "%s\n", error.PoolCString(pool));
949 return 1;
950 }
951 }