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