]>
Commit | Line | Data |
---|---|---|
e91fbe93 | 1 | /* Cycript - Inlining/Optimizing JavaScript Compiler |
b4aa79af JF |
2 | * Copyright (C) 2009 Jay Freeman (saurik) |
3 | */ | |
4 | ||
5 | /* Modified BSD License {{{ */ | |
6 | /* | |
7 | * Redistribution and use in source and binary | |
8 | * forms, with or without modification, are permitted | |
9 | * provided that the following conditions are met: | |
10 | * | |
11 | * 1. Redistributions of source code must retain the | |
12 | * above copyright notice, this list of conditions | |
13 | * and the following disclaimer. | |
14 | * 2. Redistributions in binary form must reproduce the | |
15 | * above copyright notice, this list of conditions | |
16 | * and the following disclaimer in the documentation | |
17 | * and/or other materials provided with the | |
18 | * distribution. | |
19 | * 3. The name of the author may not be used to endorse | |
20 | * or promote products derived from this software | |
21 | * without specific prior written permission. | |
22 | * | |
23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' | |
24 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, | |
25 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
26 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE | |
28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
29 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | |
30 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
31 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
32 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | |
33 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | |
34 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
35 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
36 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
37 | */ | |
38 | /* }}} */ | |
39 | ||
30ddc20c | 40 | #include "cycript.hpp" |
057f943f JF |
41 | |
42 | #include <cstdio> | |
43 | #include <sstream> | |
44 | ||
45 | #include <setjmp.h> | |
46 | ||
47 | #include <readline/readline.h> | |
48 | #include <readline/history.h> | |
49 | ||
b09da87b JF |
50 | #include <sys/mman.h> |
51 | ||
52 | #include <errno.h> | |
53 | #include <unistd.h> | |
54 | ||
55 | #include <sys/types.h> | |
56 | #include <sys/stat.h> | |
57 | #include <fcntl.h> | |
58 | ||
057f943f JF |
59 | #include "Cycript.tab.hh" |
60 | ||
967067aa JF |
61 | #include <sys/types.h> |
62 | #include <sys/socket.h> | |
63 | #include <netinet/in.h> | |
64 | #include <sys/un.h> | |
b1589845 | 65 | #include <pwd.h> |
967067aa | 66 | |
06edab7d JF |
67 | #include <apr_getopt.h> |
68 | ||
da858962 JF |
69 | #include <dlfcn.h> |
70 | ||
4e39dc0b JF |
71 | static volatile enum { |
72 | Working, | |
73 | Parsing, | |
74 | Running, | |
75 | Sending, | |
76 | Waiting, | |
77 | } mode_; | |
78 | ||
057f943f JF |
79 | static jmp_buf ctrlc_; |
80 | ||
579ed526 | 81 | static void sigint(int) { |
4e39dc0b JF |
82 | switch (mode_) { |
83 | case Working: | |
84 | return; | |
85 | case Parsing: | |
86 | longjmp(ctrlc_, 1); | |
87 | case Running: | |
88 | throw "*** Ctrl-C"; | |
89 | case Sending: | |
90 | return; | |
91 | case Waiting: | |
92 | return; | |
93 | } | |
057f943f JF |
94 | } |
95 | ||
cac61857 JF |
96 | #if YYDEBUG |
97 | static bool bison_; | |
98 | #endif | |
b10bd496 | 99 | static bool strict_; |
11c1cc16 | 100 | static bool pretty_; |
cac61857 | 101 | |
b10bd496 | 102 | void Setup(CYDriver &driver, cy::parser &parser) { |
cac61857 JF |
103 | #if YYDEBUG |
104 | if (bison_) | |
105 | parser.set_debug_level(1); | |
106 | #endif | |
b10bd496 JF |
107 | if (strict_) |
108 | driver.strict_ = true; | |
cac61857 JF |
109 | } |
110 | ||
3b52fd1a | 111 | void Setup(CYOutput &out, CYDriver &driver) { |
11c1cc16 | 112 | out.pretty_ = pretty_; |
3b52fd1a JF |
113 | |
114 | CYContext context(driver.pool_); | |
115 | driver.program_->Replace(context); | |
11c1cc16 JF |
116 | } |
117 | ||
b166b11b | 118 | void Run(int client, const char *data, size_t size, FILE *fout = NULL, bool expand = false) { |
967067aa | 119 | CYPool pool; |
b09da87b | 120 | |
967067aa | 121 | const char *json; |
b166b11b | 122 | if (client == -1) { |
4e39dc0b | 123 | mode_ = Running; |
2aa77fd8 | 124 | #ifdef CY_EXECUTE |
fcc64bb5 | 125 | json = CYExecute(pool, data); |
2aa77fd8 JF |
126 | #else |
127 | json = NULL; | |
128 | #endif | |
4e39dc0b | 129 | mode_ = Working; |
6ec85c5b JF |
130 | if (json != NULL) |
131 | size = strlen(json); | |
132 | } else { | |
4e39dc0b | 133 | mode_ = Sending; |
b166b11b JF |
134 | CYSendAll(client, &size, sizeof(size)); |
135 | CYSendAll(client, data, size); | |
4e39dc0b | 136 | mode_ = Waiting; |
b166b11b | 137 | CYRecvAll(client, &size, sizeof(size)); |
967067aa JF |
138 | if (size == _not(size_t)) |
139 | json = NULL; | |
140 | else { | |
141 | char *temp(new(pool) char[size + 1]); | |
b166b11b | 142 | CYRecvAll(client, temp, size); |
967067aa JF |
143 | temp[size] = '\0'; |
144 | json = temp; | |
145 | } | |
4e39dc0b | 146 | mode_ = Working; |
4cf49641 | 147 | } |
b09da87b | 148 | |
967067aa | 149 | if (json != NULL && fout != NULL) { |
6ec85c5b JF |
150 | if (!expand || json[0] != '"' && json[0] != '\'') |
151 | fputs(json, fout); | |
152 | else for (size_t i(0); i != size; ++i) | |
153 | if (json[i] != '\\') | |
154 | fputc(json[i], fout); | |
155 | else switch(json[++i]) { | |
156 | case '\0': goto done; | |
157 | case '\\': fputc('\\', fout); break; | |
158 | case '\'': fputc('\'', fout); break; | |
159 | case '"': fputc('"', fout); break; | |
160 | case 'b': fputc('\b', fout); break; | |
161 | case 'f': fputc('\f', fout); break; | |
162 | case 'n': fputc('\n', fout); break; | |
163 | case 'r': fputc('\r', fout); break; | |
164 | case 't': fputc('\t', fout); break; | |
165 | case 'v': fputc('\v', fout); break; | |
166 | default: fputc('\\', fout); --i; break; | |
167 | } | |
168 | ||
169 | done: | |
967067aa JF |
170 | fputs("\n", fout); |
171 | fflush(fout); | |
b09da87b JF |
172 | } |
173 | } | |
174 | ||
b166b11b JF |
175 | void Run(int client, std::string &code, FILE *fout = NULL, bool expand = false) { |
176 | Run(client, code.c_str(), code.size(), fout, expand); | |
fcc64bb5 JF |
177 | } |
178 | ||
da858962 JF |
179 | int (*append_history$)(int, const char *); |
180 | ||
b166b11b | 181 | static void Console(apr_pool_t *pool, int client) { |
b1589845 JF |
182 | passwd *passwd; |
183 | if (const char *username = getenv("LOGNAME")) | |
184 | passwd = getpwnam(username); | |
185 | else | |
186 | passwd = getpwuid(getuid()); | |
187 | ||
188 | const char *basedir(apr_psprintf(pool, "%s/.cycript", passwd->pw_dir)); | |
189 | const char *histfile(apr_psprintf(pool, "%s/history", basedir)); | |
190 | size_t histlines(0); | |
191 | ||
192 | mkdir(basedir, 0700); | |
193 | read_history(histfile); | |
194 | ||
1f8eae40 JF |
195 | bool bypass(false); |
196 | bool debug(false); | |
6ec85c5b | 197 | bool expand(false); |
1f8eae40 | 198 | |
057f943f JF |
199 | FILE *fout(stdout); |
200 | ||
201 | rl_bind_key('\t', rl_insert); | |
202 | ||
203 | struct sigaction action; | |
204 | sigemptyset(&action.sa_mask); | |
205 | action.sa_handler = &sigint; | |
206 | action.sa_flags = 0; | |
207 | sigaction(SIGINT, &action, NULL); | |
208 | ||
209 | restart: for (;;) { | |
210 | std::string command; | |
211 | std::vector<std::string> lines; | |
212 | ||
931b816a JF |
213 | bool extra(false); |
214 | const char *prompt("cy# "); | |
215 | ||
057f943f | 216 | if (setjmp(ctrlc_) != 0) { |
4e39dc0b | 217 | mode_ = Working; |
057f943f JF |
218 | fputs("\n", fout); |
219 | fflush(fout); | |
220 | goto restart; | |
221 | } | |
222 | ||
057f943f | 223 | read: |
4e39dc0b | 224 | mode_ = Parsing; |
057f943f | 225 | char *line(readline(prompt)); |
4e39dc0b | 226 | mode_ = Working; |
057f943f JF |
227 | if (line == NULL) |
228 | break; | |
67f1fc6b JF |
229 | if (line[0] == '\0') |
230 | goto read; | |
931b816a JF |
231 | |
232 | if (!extra) { | |
233 | extra = true; | |
6ec85c5b | 234 | if (line[0] == '?') { |
1f8eae40 JF |
235 | std::string data(line + 1); |
236 | if (data == "bypass") { | |
237 | bypass = !bypass; | |
238 | fprintf(fout, "bypass == %s\n", bypass ? "true" : "false"); | |
239 | fflush(fout); | |
240 | } else if (data == "debug") { | |
241 | debug = !debug; | |
242 | fprintf(fout, "debug == %s\n", debug ? "true" : "false"); | |
243 | fflush(fout); | |
6ec85c5b JF |
244 | } else if (data == "expand") { |
245 | expand = !expand; | |
246 | fprintf(fout, "expand == %s\n", expand ? "true" : "false"); | |
247 | fflush(fout); | |
1f8eae40 | 248 | } |
d35a3b07 | 249 | add_history(line); |
b1589845 | 250 | ++histlines; |
931b816a JF |
251 | goto restart; |
252 | } | |
253 | } | |
254 | ||
057f943f | 255 | command += line; |
e818f0e0 JF |
256 | |
257 | char *begin(line), *end(line + strlen(line)); | |
258 | while (char *nl = reinterpret_cast<char *>(memchr(begin, '\n', end - begin))) { | |
259 | *nl = '\0'; | |
260 | lines.push_back(begin); | |
261 | begin = nl + 1; | |
262 | } | |
263 | ||
264 | lines.push_back(begin); | |
265 | ||
057f943f JF |
266 | free(line); |
267 | ||
1f8eae40 JF |
268 | std::string code; |
269 | ||
270 | if (bypass) | |
271 | code = command; | |
272 | else { | |
273 | CYDriver driver(""); | |
274 | cy::parser parser(driver); | |
b10bd496 | 275 | Setup(driver, parser); |
1f8eae40 JF |
276 | |
277 | driver.data_ = command.c_str(); | |
278 | driver.size_ = command.size(); | |
279 | ||
280 | if (parser.parse() != 0 || !driver.errors_.empty()) { | |
f0360d51 JF |
281 | for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) { |
282 | cy::position begin(error->location_.begin); | |
b10bd496 | 283 | if (begin.line != lines.size() || begin.column - 1 != lines.back().size() || error->warning_) { |
f0360d51 | 284 | cy::position end(error->location_.end); |
48e3be8a | 285 | |
f0360d51 JF |
286 | if (begin.line != lines.size()) { |
287 | std::cerr << " | "; | |
288 | std::cerr << lines[begin.line - 1] << std::endl; | |
289 | } | |
48e3be8a | 290 | |
c52a09b8 | 291 | std::cerr << "...."; |
f0360d51 JF |
292 | for (size_t i(0); i != begin.column - 1; ++i) |
293 | std::cerr << '.'; | |
48e3be8a | 294 | if (begin.line != end.line || begin.column == end.column) |
f0360d51 JF |
295 | std::cerr << '^'; |
296 | else for (size_t i(0), e(end.column - begin.column); i != e; ++i) | |
297 | std::cerr << '^'; | |
298 | std::cerr << std::endl; | |
48e3be8a | 299 | |
f0360d51 JF |
300 | std::cerr << " | "; |
301 | std::cerr << error->message_ << std::endl; | |
48e3be8a | 302 | |
1f8eae40 | 303 | add_history(command.c_str()); |
b1589845 | 304 | ++histlines; |
1f8eae40 JF |
305 | goto restart; |
306 | } | |
307 | } | |
057f943f | 308 | |
1f8eae40 | 309 | driver.errors_.clear(); |
057f943f | 310 | |
1f8eae40 JF |
311 | command += '\n'; |
312 | prompt = "cy> "; | |
313 | goto read; | |
057f943f JF |
314 | } |
315 | ||
b10bd496 | 316 | if (driver.program_ == NULL) |
1f8eae40 | 317 | goto restart; |
057f943f | 318 | |
b166b11b | 319 | if (client != -1) |
967067aa JF |
320 | code = command; |
321 | else { | |
322 | std::ostringstream str; | |
652ec1ba | 323 | CYOutput out(str); |
3b52fd1a JF |
324 | Setup(out, driver); |
325 | out << *driver.program_; | |
967067aa JF |
326 | code = str.str(); |
327 | } | |
057f943f JF |
328 | } |
329 | ||
057f943f | 330 | add_history(command.c_str()); |
b1589845 | 331 | ++histlines; |
057f943f | 332 | |
1f8eae40 JF |
333 | if (debug) |
334 | std::cout << code << std::endl; | |
4dc2cd21 JF |
335 | if (!bypass) |
336 | code = "with(Cycript.all){" + code + "}"; | |
057f943f | 337 | |
b166b11b | 338 | Run(client, code, fout, expand); |
b09da87b | 339 | } |
057f943f | 340 | |
da858962 JF |
341 | if (append_history$ != NULL) { |
342 | _syscall(close(_syscall(open(histfile, O_CREAT | O_WRONLY, 0600)))); | |
343 | (*append_history$)(histlines, histfile); | |
344 | } else { | |
345 | write_history(histfile); | |
346 | } | |
b1589845 | 347 | |
b09da87b JF |
348 | fputs("\n", fout); |
349 | fflush(fout); | |
350 | } | |
057f943f | 351 | |
579ed526 | 352 | static void *Map(const char *path, size_t *psize) { |
b09da87b JF |
353 | int fd; |
354 | _syscall(fd = open(path, O_RDONLY)); | |
057f943f | 355 | |
b09da87b JF |
356 | struct stat stat; |
357 | _syscall(fstat(fd, &stat)); | |
358 | size_t size(stat.st_size); | |
057f943f | 359 | |
b09da87b | 360 | *psize = size; |
057f943f | 361 | |
b09da87b JF |
362 | void *base; |
363 | _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0)); | |
057f943f | 364 | |
b09da87b JF |
365 | _syscall(close(fd)); |
366 | return base; | |
367 | } | |
057f943f | 368 | |
b6961e53 | 369 | void InjectLibrary(pid_t pid); |
06edab7d | 370 | |
b6961e53 | 371 | int Main(int argc, char const * const argv[], char const * const envp[]) { |
48e3be8a | 372 | bool tty(isatty(STDIN_FILENO)); |
75b0a457 | 373 | bool compile(false); |
967067aa | 374 | |
da858962 JF |
375 | append_history$ = reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT, "append_history")); |
376 | ||
2aa77fd8 JF |
377 | #ifdef CY_ATTACH |
378 | pid_t pid(_not(pid_t)); | |
379 | #endif | |
380 | ||
06edab7d JF |
381 | CYPool pool; |
382 | apr_getopt_t *state; | |
383 | _aprcall(apr_getopt_init(&state, pool, argc, argv)); | |
384 | ||
385 | for (;;) { | |
386 | char opt; | |
387 | const char *arg; | |
388 | ||
389 | apr_status_t status(apr_getopt(state, | |
390 | "cg:n:" | |
2aa77fd8 | 391 | #ifdef CY_ATTACH |
06edab7d | 392 | "p:" |
2aa77fd8 | 393 | #endif |
06edab7d JF |
394 | "s" |
395 | , &opt, &arg)); | |
396 | ||
397 | switch (status) { | |
398 | case APR_EOF: | |
399 | goto getopt; | |
400 | case APR_BADCH: | |
401 | case APR_BADARG: | |
402 | fprintf(stderr, | |
403 | "usage: cycript [-c]" | |
2aa77fd8 | 404 | #ifdef CY_ATTACH |
69caa5be | 405 | " [-p <pid|name>]" |
2aa77fd8 | 406 | #endif |
06edab7d JF |
407 | " [<script> [<arg>...]]\n" |
408 | ); | |
409 | return 1; | |
410 | default: | |
411 | _aprcall(status); | |
412 | } | |
967067aa | 413 | |
06edab7d JF |
414 | switch (opt) { |
415 | case 'c': | |
416 | compile = true; | |
417 | break; | |
75b0a457 | 418 | |
06edab7d JF |
419 | case 'g': |
420 | if (false); | |
cac61857 | 421 | #if YYDEBUG |
5ef46cc0 | 422 | else if (strcmp(arg, "bison") == 0) |
06edab7d | 423 | bison_ = true; |
cac61857 | 424 | #endif |
06edab7d JF |
425 | else { |
426 | fprintf(stderr, "invalid name for -g\n"); | |
427 | return 1; | |
428 | } | |
429 | break; | |
cac61857 | 430 | |
06edab7d JF |
431 | case 'n': |
432 | if (false); | |
5ef46cc0 | 433 | else if (strcmp(arg, "minify") == 0) |
06edab7d JF |
434 | pretty_ = true; |
435 | else { | |
436 | fprintf(stderr, "invalid name for -n\n"); | |
437 | return 1; | |
438 | } | |
439 | break; | |
11c1cc16 | 440 | |
2aa77fd8 | 441 | #ifdef CY_ATTACH |
06edab7d | 442 | case 'p': { |
5ef46cc0 | 443 | size_t size(strlen(arg)); |
06edab7d | 444 | char *end; |
69caa5be | 445 | |
5ef46cc0 JF |
446 | pid = strtoul(arg, &end, 0); |
447 | if (arg + size != end) { | |
69caa5be JF |
448 | // XXX: arg needs to be escaped in some horrendous way of doom |
449 | const char *command(apr_psprintf(pool, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg)); | |
450 | ||
451 | if (FILE *pids = popen(command, "r")) { | |
452 | char value[32]; | |
453 | size = 0; | |
454 | ||
455 | for (;;) { | |
456 | size_t read(fread(value + size, 1, sizeof(value) - size, pids)); | |
457 | if (read == 0) | |
458 | break; | |
459 | else { | |
460 | size += read; | |
461 | if (size == sizeof(value)) { | |
462 | pid = _not(pid_t); | |
b166b11b | 463 | goto fail; |
69caa5be JF |
464 | } |
465 | } | |
466 | } | |
467 | ||
468 | size: | |
469 | if (size == 0) | |
b166b11b | 470 | goto fail; |
69caa5be JF |
471 | if (value[size - 1] == '\n') { |
472 | --size; | |
473 | goto size; | |
474 | } | |
475 | ||
476 | value[size] = '\0'; | |
477 | size = strlen(value); | |
478 | pid = strtoul(value, &end, 0); | |
b166b11b | 479 | if (value + size != end) fail: |
69caa5be | 480 | pid = _not(pid_t); |
69caa5be JF |
481 | _syscall(pclose(pids)); |
482 | } | |
483 | ||
484 | if (pid == _not(pid_t)) { | |
485 | fprintf(stderr, "invalid pid for -p\n"); | |
486 | return 1; | |
487 | } | |
06edab7d JF |
488 | } |
489 | } break; | |
2aa77fd8 | 490 | #endif |
b10bd496 | 491 | |
06edab7d JF |
492 | case 's': |
493 | strict_ = true; | |
494 | break; | |
495 | } | |
967067aa JF |
496 | } getopt:; |
497 | ||
b09da87b | 498 | const char *script; |
5ef46cc0 | 499 | int ind(state->ind); |
b09da87b | 500 | |
2aa77fd8 | 501 | #ifdef CY_ATTACH |
5ef46cc0 | 502 | if (pid != _not(pid_t) && ind < argc - 1) { |
fcc64bb5 JF |
503 | fprintf(stderr, "-p cannot set argv\n"); |
504 | return 1; | |
505 | } | |
506 | ||
75b0a457 JF |
507 | if (pid != _not(pid_t) && compile) { |
508 | fprintf(stderr, "-p conflicts with -c\n"); | |
509 | return 1; | |
510 | } | |
2aa77fd8 | 511 | #endif |
75b0a457 | 512 | |
5ef46cc0 | 513 | if (ind == argc) |
b09da87b JF |
514 | script = NULL; |
515 | else { | |
9185d5ef | 516 | #ifdef CY_EXECUTE |
967067aa | 517 | // XXX: const_cast?! wtf gcc :( |
5ef46cc0 | 518 | CYSetArgs(argc - ind - 1, const_cast<const char **>(argv + ind + 1)); |
9185d5ef | 519 | #endif |
5ef46cc0 | 520 | script = argv[ind]; |
967067aa JF |
521 | if (strcmp(script, "-") == 0) |
522 | script = NULL; | |
b09da87b JF |
523 | } |
524 | ||
2aa77fd8 JF |
525 | #ifdef CY_ATTACH |
526 | if (pid != _not(pid_t) && script == NULL && !tty) { | |
527 | fprintf(stderr, "non-terminal attaching to remote console\n"); | |
48e3be8a JF |
528 | return 1; |
529 | } | |
2aa77fd8 | 530 | #endif |
48e3be8a | 531 | |
b166b11b | 532 | int client; |
967067aa | 533 | |
2aa77fd8 | 534 | #ifdef CY_ATTACH |
967067aa | 535 | if (pid == _not(pid_t)) |
b166b11b | 536 | client = -1; |
967067aa | 537 | else { |
b166b11b JF |
538 | int server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0))); try { |
539 | struct sockaddr_un address; | |
540 | memset(&address, 0, sizeof(address)); | |
541 | address.sun_family = AF_UNIX; | |
542 | ||
543 | sprintf(address.sun_path, "/tmp/.s.cy.%u", getpid()); | |
544 | ||
545 | _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address))); | |
546 | _syscall(chmod(address.sun_path, 0777)); | |
547 | ||
548 | try { | |
549 | _syscall(listen(server, 1)); | |
550 | InjectLibrary(pid); | |
551 | client = _syscall(accept(server, NULL, NULL)); | |
552 | } catch (...) { | |
553 | // XXX: exception? | |
554 | unlink(address.sun_path); | |
555 | throw; | |
556 | } | |
557 | } catch (...) { | |
558 | _syscall(close(server)); | |
95678376 | 559 | throw; |
b166b11b | 560 | } |
967067aa | 561 | } |
2aa77fd8 | 562 | #else |
b166b11b | 563 | client = -1; |
2aa77fd8 | 564 | #endif |
579ed526 | 565 | |
48e3be8a | 566 | if (script == NULL && tty) |
b166b11b | 567 | Console(pool, client); |
b09da87b | 568 | else { |
48e3be8a | 569 | CYDriver driver(script ?: "<stdin>"); |
b09da87b | 570 | cy::parser parser(driver); |
b10bd496 | 571 | Setup(driver, parser); |
b09da87b | 572 | |
48e3be8a | 573 | char *start, *end; |
b09da87b | 574 | |
48e3be8a JF |
575 | if (script == NULL) { |
576 | start = NULL; | |
577 | end = NULL; | |
2b1245e4 | 578 | |
48e3be8a JF |
579 | driver.file_ = stdin; |
580 | } else { | |
581 | size_t size; | |
582 | start = reinterpret_cast<char *>(Map(script, &size)); | |
583 | end = start + size; | |
584 | ||
585 | if (size >= 2 && start[0] == '#' && start[1] == '!') { | |
586 | start += 2; | |
057f943f | 587 | |
48e3be8a JF |
588 | if (void *line = memchr(start, '\n', end - start)) |
589 | start = reinterpret_cast<char *>(line); | |
590 | else | |
591 | start = end; | |
592 | } | |
593 | ||
594 | driver.data_ = start; | |
595 | driver.size_ = end - start; | |
596 | } | |
62ca2b82 | 597 | |
b09da87b JF |
598 | if (parser.parse() != 0 || !driver.errors_.empty()) { |
599 | for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i) | |
600 | std::cerr << i->location_.begin << ": " << i->message_ << std::endl; | |
b10bd496 | 601 | } else if (driver.program_ != NULL) |
e934f827 JF |
602 | if (client != -1) { |
603 | std::string code(start, end-start); | |
604 | code = "with(Cycript.all){" + code + "}"; | |
34fc459c | 605 | Run(client, code, stdout); |
e934f827 | 606 | } else { |
fcc64bb5 | 607 | std::ostringstream str; |
652ec1ba | 608 | CYOutput out(str); |
3b52fd1a JF |
609 | Setup(out, driver); |
610 | out << *driver.program_; | |
fcc64bb5 | 611 | std::string code(str.str()); |
75b0a457 JF |
612 | if (compile) |
613 | std::cout << code; | |
d2742118 JF |
614 | else { |
615 | code = "with(Cycript.all){" + code + "}"; | |
b166b11b | 616 | Run(client, code, stdout); |
d2742118 | 617 | } |
fcc64bb5 | 618 | } |
057f943f | 619 | } |
62ca2b82 | 620 | |
057f943f | 621 | return 0; |
62ca2b82 | 622 | } |
b6961e53 JF |
623 | |
624 | int main(int argc, char const * const argv[], char const * const envp[]) { | |
625 | apr_status_t status(apr_app_initialize(&argc, &argv, &envp)); | |
da858962 | 626 | |
b6961e53 JF |
627 | if (status != APR_SUCCESS) { |
628 | fprintf(stderr, "apr_app_initialize() != APR_SUCCESS\n"); | |
629 | return 1; | |
630 | } else try { | |
631 | return Main(argc, argv, envp); | |
632 | } catch (const CYException &error) { | |
633 | CYPool pool; | |
634 | fprintf(stderr, "%s\n", error.PoolCString(pool)); | |
635 | return 1; | |
636 | } | |
637 | } |