]> git.saurik.com Git - cycript.git/blame - Console.cpp
Provide a new ?destroy to release the JSContext.
[cycript.git] / Console.cpp
CommitLineData
b3378a02 1/* Cycript - Optimizing JavaScript Compiler/Runtime
c15969fd 2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
b4aa79af
JF
3*/
4
c15969fd 5/* GNU General Public License, Version 3 {{{ */
b4aa79af 6/*
c15969fd
JF
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.
b4aa79af 11 *
c15969fd
JF
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.
b4aa79af 16 *
c15969fd 17 * You should have received a copy of the GNU General Public License
b3378a02
JF
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
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>
0df6a201 29#include <fstream>
057f943f
JF
30#include <sstream>
31
32#include <setjmp.h>
33
aff87425
DWT
34#ifdef HAVE_READLINE_H
35#include <readline.h>
36#else
057f943f 37#include <readline/readline.h>
aff87425
DWT
38#endif
39
40#ifdef HAVE_HISTORY_H
41#include <history.h>
42#else
057f943f 43#include <readline/history.h>
aff87425 44#endif
057f943f 45
b09da87b
JF
46#include <errno.h>
47#include <unistd.h>
48
666eedb9 49#include <sys/socket.h>
b09da87b
JF
50#include <sys/types.h>
51#include <sys/stat.h>
52#include <fcntl.h>
666eedb9 53#include <netdb.h>
b09da87b 54
967067aa
JF
55#include <sys/types.h>
56#include <sys/socket.h>
57#include <netinet/in.h>
58#include <sys/un.h>
b1589845 59#include <pwd.h>
967067aa 60
06edab7d 61#include <apr_getopt.h>
0cbeddf8
JF
62#include <apr_pools.h>
63#include <apr_strings.h>
06edab7d 64
da858962
JF
65#include <dlfcn.h>
66
74296173 67#include "Display.hpp"
b12a9965
JF
68#include "Replace.hpp"
69
70#include "Cycript.tab.hh"
71#include "Driver.hpp"
7e5391fd 72
4e39dc0b
JF
73static volatile enum {
74 Working,
75 Parsing,
76 Running,
77 Sending,
78 Waiting,
79} mode_;
80
057f943f
JF
81static jmp_buf ctrlc_;
82
579ed526 83static void sigint(int) {
4e39dc0b
JF
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 }
057f943f
JF
96}
97
cac61857
JF
98#if YYDEBUG
99static bool bison_;
100#endif
b10bd496 101static bool strict_;
11c1cc16 102static bool pretty_;
cac61857 103
b10bd496 104void Setup(CYDriver &driver, cy::parser &parser) {
cac61857
JF
105#if YYDEBUG
106 if (bison_)
107 parser.set_debug_level(1);
108#endif
b10bd496
JF
109 if (strict_)
110 driver.strict_ = true;
cac61857
JF
111}
112
36bf49c4 113void Setup(CYOutput &out, CYDriver &driver, CYOptions &options, bool lower) {
11c1cc16 114 out.pretty_ = pretty_;
2eb8215d 115 CYContext context(options);
36bf49c4
JF
116 if (lower)
117 driver.program_->Replace(context);
11c1cc16
JF
118}
119
7e5391fd 120static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
967067aa 121 const char *json;
9d79cefc 122 uint32_t size;
7e5391fd 123
b166b11b 124 if (client == -1) {
4e39dc0b 125 mode_ = Running;
2aa77fd8 126#ifdef CY_EXECUTE
89d16b11 127 json = CYExecute(CYGetJSContext(), pool, code);
2aa77fd8
JF
128#else
129 json = NULL;
130#endif
4e39dc0b 131 mode_ = Working;
dd221c6b
JF
132 if (json == NULL)
133 size = 0;
134 else
6ec85c5b
JF
135 size = strlen(json);
136 } else {
4e39dc0b 137 mode_ = Sending;
0ced2e47 138 size = code.size;
a1f3555e
JF
139 _assert(CYSendAll(client, &size, sizeof(size)));
140 _assert(CYSendAll(client, code.data, code.size));
4e39dc0b 141 mode_ = Waiting;
a1f3555e 142 _assert(CYRecvAll(client, &size, sizeof(size)));
9d79cefc 143 if (size == _not(uint32_t))
967067aa
JF
144 json = NULL;
145 else {
146 char *temp(new(pool) char[size + 1]);
a1f3555e 147 _assert(CYRecvAll(client, temp, size));
967067aa
JF
148 temp[size] = '\0';
149 json = temp;
150 }
4e39dc0b 151 mode_ = Working;
4cf49641 152 }
b09da87b 153
7e5391fd
JF
154 return CYUTF8String(json, size);
155}
156
157static CYUTF8String Run(CYPool &pool, int client, const std::string &code) {
158 return Run(pool, client, CYUTF8String(code.c_str(), code.size()));
159}
160
2e2ed904 161static std::ostream *out_;
a3f4a8e1 162
82a02ede
JF
163static 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
170static void Output(bool syntax, CYUTF8String json, std::ostream *out, bool expand = false) {
a3f4a8e1
JF
171 const char *data(json.data);
172 size_t size(json.size);
173
2e2ed904 174 if (data == NULL || out == NULL)
a3f4a8e1
JF
175 return;
176
0881deb5
JF
177 if (!expand ||
178 data[0] != '@' && data[0] != '"' && data[0] != '\'' ||
179 data[0] == '@' && data[1] != '"' && data[1] != '\''
180 )
82a02ede 181 Write(syntax, data, size, *out);
a3f4a8e1
JF
182 else for (size_t i(0); i != size; ++i)
183 if (data[i] != '\\')
2e2ed904 184 *out << data[i];
a3f4a8e1
JF
185 else switch(data[++i]) {
186 case '\0': goto done;
2e2ed904
JF
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;
a3f4a8e1 197 }
6ec85c5b 198
a3f4a8e1 199 done:
2e2ed904 200 *out << std::endl;
a3f4a8e1
JF
201}
202
82a02ede 203static void Run(int client, bool syntax, const char *data, size_t size, std::ostream *out = NULL, bool expand = false) {
a3f4a8e1 204 CYPool pool;
82a02ede 205 Output(syntax, Run(pool, client, CYUTF8String(data, size)), out, expand);
b09da87b
JF
206}
207
82a02ede
JF
208static 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);
fcc64bb5
JF
210}
211
da858962
JF
212int (*append_history$)(int, const char *);
213
7e5391fd
JF
214static std::string command_;
215
2eb8215d 216static CYExpression *ParseExpression(CYUTF8String code) {
d3b63265
JF
217 std::stringstream stream;
218 stream << '(' << code << ')';
219 CYDriver driver(stream);
7e5391fd
JF
220
221 cy::parser parser(driver);
222 Setup(driver, parser);
223
224 if (parser.parse() != 0 || !driver.errors_.empty())
df24434f 225 return NULL;
7e5391fd 226
e06e5ee1
JF
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;
7e5391fd
JF
235}
236
237static int client_;
238
239static char **Complete(const char *word, int start, int end) {
240 rl_attempted_completion_over = TRUE;
241
2eb8215d 242 CYLocalPool pool;
7e5391fd
JF
243
244 std::string line(rl_line_buffer, start);
d3b63265
JF
245 std::istringstream stream(command_ + line);
246 CYDriver driver(stream);
7e5391fd
JF
247
248 driver.auto_ = true;
249
d3b63265
JF
250 cy::parser parser(driver);
251 Setup(driver, parser);
252
7e5391fd
JF
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;
2eb8215d 262 CYContext context(options);
7e5391fd
JF
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());
aa926c8b 281 expression = $M($C1($V("object_getClass"), thing.context_), $S("messages"));
7e5391fd
JF
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
2a18313c 290 std::string begin(prefix.str());
7e5391fd 291
2eb8215d 292 driver.program_ = $ CYProgram($ CYExpress($C3(ParseExpression(
2a18313c 293 " function(object, prefix, word) {\n"
7e5391fd 294 " var names = [];\n"
5a3f7a01
JF
295 " var before = prefix.length;\n"
296 " prefix += word;\n"
297 " var entire = prefix.length;\n"
7e5391fd 298 " for (name in object)\n"
5a3f7a01
JF
299 " if (name.substring(0, entire) == prefix)\n"
300 " names.push(name.substr(before));\n"
7e5391fd
JF
301 " return names;\n"
302 " }\n"
2a18313c 303 ), expression, $S(begin.c_str()), $S(word))));
7e5391fd
JF
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));
1b2613d3 313 // XXX: if this fails we should not try to parse it
7e5391fd 314
2eb8215d 315 CYExpression *result(ParseExpression(json));
df24434f
JF
316 if (result == NULL)
317 return NULL;
318
7e5391fd 319 CYArray *array(dynamic_cast<CYArray *>(result));
a3f4a8e1
JF
320
321 if (array == NULL) {
2e2ed904 322 *out_ << '\n';
82a02ede 323 Output(false, json, out_);
a3f4a8e1
JF
324 rl_forced_update_display();
325 return NULL;
326 }
7e5391fd
JF
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
c2c9f509 335 CYForEach (element, array->elements_) {
7e5391fd
JF
336 CYString *string(dynamic_cast<CYString *>(element->value_));
337 _assert(string != NULL);
338
763aa499
JF
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
7e5391fd
JF
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
c41590b2
JF
370 size_t colon(common.find(':'));
371 if (colon != std::string::npos)
372 common = common.substr(0, colon + 1);
6dccefa9
JF
373 if (completions.size() == 1)
374 common += ' ';
c41590b2 375
7e5391fd
JF
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 *
388static char name_[] = "cycript";
108c5fc8 389static char break_[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]";
7e5391fd 390
da136f88
JF
391class 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
2eb8215d
JF
419static void Console(CYOptions &options) {
420 CYPool pool;
421
b1589845
JF
422 passwd *passwd;
423 if (const char *username = getenv("LOGNAME"))
424 passwd = getpwnam(username);
425 else
426 passwd = getpwuid(getuid());
427
da136f88
JF
428 std::string basedir(passwd->pw_dir);
429 basedir += "/.cycript";
430 mkdir(basedir.c_str(), 0700);
b1589845 431
7e5391fd
JF
432 rl_initialize();
433 rl_readline_name = name_;
434
da136f88 435 History history(basedir + "/history");
b1589845 436
1f8eae40
JF
437 bool bypass(false);
438 bool debug(false);
6ec85c5b 439 bool expand(false);
36bf49c4 440 bool lower(true);
cd98d280 441 bool syntax(true);
1f8eae40 442
2e2ed904 443 out_ = &std::cout;
057f943f 444
7e5391fd
JF
445 // rl_completer_word_break_characters is broken in libedit
446 rl_basic_word_break_characters = break_;
bc1e87aa
JF
447
448 rl_completer_word_break_characters = break_;
7e5391fd
JF
449 rl_attempted_completion_function = &Complete;
450 rl_bind_key('\t', rl_complete);
057f943f
JF
451
452 struct sigaction action;
453 sigemptyset(&action.sa_mask);
454 action.sa_handler = &sigint;
455 action.sa_flags = 0;
456 sigaction(SIGINT, &action, NULL);
457
458 restart: for (;;) {
7e5391fd 459 command_.clear();
057f943f
JF
460 std::vector<std::string> lines;
461
931b816a
JF
462 bool extra(false);
463 const char *prompt("cy# ");
464
057f943f 465 if (setjmp(ctrlc_) != 0) {
4e39dc0b 466 mode_ = Working;
2e2ed904 467 *out_ << std::endl;
057f943f
JF
468 goto restart;
469 }
470
057f943f 471 read:
cd98d280
JF
472
473#if RL_READLINE_VERSION >= 0x0600
8a81192b 474 if (syntax)
cd98d280 475 rl_redisplay_function = CYDisplayUpdate;
8a81192b 476 else
cd98d280 477 rl_redisplay_function = rl_redisplay;
cd98d280
JF
478#endif
479
4e39dc0b 480 mode_ = Parsing;
057f943f 481 char *line(readline(prompt));
4e39dc0b 482 mode_ = Working;
cd98d280 483
79357996
JF
484 if (line == NULL) {
485 *out_ << std::endl;
057f943f 486 break;
79357996 487 } else if (line[0] == '\0')
67f1fc6b 488 goto read;
931b816a
JF
489
490 if (!extra) {
491 extra = true;
6ec85c5b 492 if (line[0] == '?') {
1f8eae40
JF
493 std::string data(line + 1);
494 if (data == "bypass") {
495 bypass = !bypass;
2e2ed904 496 *out_ << "bypass == " << (bypass ? "true" : "false") << std::endl;
1f8eae40
JF
497 } else if (data == "debug") {
498 debug = !debug;
2e2ed904 499 *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
8fab8594
JF
500 } else if (data == "destroy") {
501 CYDestroyContext();
6ec85c5b
JF
502 } else if (data == "expand") {
503 expand = !expand;
2e2ed904 504 *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
36bf49c4
JF
505 } else if (data == "lower") {
506 lower = !lower;
507 *out_ << "lower == " << (lower ? "true" : "false") << std::endl;
82a02ede
JF
508 } else if (data == "syntax") {
509 syntax = !syntax;
510 *out_ << "syntax == " << (syntax ? "true" : "false") << std::endl;
1f8eae40 511 }
be8c2078
JF
512 command_ = line;
513 history += command_;
931b816a
JF
514 goto restart;
515 }
516 }
517
7e5391fd 518 command_ += line;
e818f0e0
JF
519
520 char *begin(line), *end(line + strlen(line));
521 while (char *nl = reinterpret_cast<char *>(memchr(begin, '\n', end - begin))) {
522 *nl = '\0';
523 lines.push_back(begin);
524 begin = nl + 1;
525 }
526
527 lines.push_back(begin);
528
057f943f
JF
529 free(line);
530
1f8eae40
JF
531 std::string code;
532
533 if (bypass)
7e5391fd 534 code = command_;
1f8eae40 535 else {
2eb8215d 536 CYLocalPool pool;
d3b63265
JF
537
538 std::istringstream stream(command_);
539 CYDriver driver(stream);
540
1f8eae40 541 cy::parser parser(driver);
b10bd496 542 Setup(driver, parser);
1f8eae40 543
1f8eae40 544 if (parser.parse() != 0 || !driver.errors_.empty()) {
f0360d51
JF
545 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
546 cy::position begin(error->location_.begin);
c247172c 547 if (begin.line != lines.size() || begin.column < lines.back().size() || error->warning_) {
f0360d51 548 cy::position end(error->location_.end);
48e3be8a 549
f0360d51
JF
550 if (begin.line != lines.size()) {
551 std::cerr << " | ";
552 std::cerr << lines[begin.line - 1] << std::endl;
553 }
48e3be8a 554
c52a09b8 555 std::cerr << "....";
97c8a8fc 556 for (size_t i(0); i != begin.column; ++i)
f0360d51 557 std::cerr << '.';
48e3be8a 558 if (begin.line != end.line || begin.column == end.column)
f0360d51
JF
559 std::cerr << '^';
560 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
561 std::cerr << '^';
562 std::cerr << std::endl;
48e3be8a 563
f0360d51
JF
564 std::cerr << " | ";
565 std::cerr << error->message_ << std::endl;
48e3be8a 566
da136f88 567 history += command_;
1f8eae40
JF
568 goto restart;
569 }
570 }
057f943f 571
1f8eae40 572 driver.errors_.clear();
057f943f 573
7e5391fd 574 command_ += '\n';
1f8eae40
JF
575 prompt = "cy> ";
576 goto read;
057f943f
JF
577 }
578
b10bd496 579 if (driver.program_ == NULL)
1f8eae40 580 goto restart;
057f943f 581
0df6a201
JF
582 std::ostringstream str;
583 CYOutput out(str, options);
36bf49c4 584 Setup(out, driver, options, lower);
0df6a201
JF
585 out << *driver.program_;
586 code = str.str();
057f943f
JF
587 }
588
da136f88 589 history += command_;
057f943f 590
82a02ede 591 if (debug) {
f43fcb85 592 std::cout << "cy= ";
82a02ede
JF
593 Write(syntax, code.c_str(), code.size(), std::cout);
594 std::cout << std::endl;
595 }
057f943f 596
82a02ede 597 Run(client_, syntax, code, out_, expand);
b09da87b 598 }
b09da87b 599}
057f943f 600
b6961e53 601void InjectLibrary(pid_t pid);
06edab7d 602
b6961e53 603int Main(int argc, char const * const argv[], char const * const envp[]) {
0cbeddf8
JF
604 _aprcall(apr_initialize());
605
606 apr_pool_t *pool;
607 apr_pool_create(&pool, NULL);
608
48e3be8a 609 bool tty(isatty(STDIN_FILENO));
75b0a457 610 bool compile(false);
de9fc71b 611 CYOptions options;
967067aa 612
e4676127 613 append_history$ = (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT, "append_history"));
da858962 614
2aa77fd8
JF
615#ifdef CY_ATTACH
616 pid_t pid(_not(pid_t));
617#endif
618
666eedb9
JF
619 const char *host(NULL);
620 const char *port(NULL);
621
06edab7d
JF
622 apr_getopt_t *state;
623 _aprcall(apr_getopt_init(&state, pool, argc, argv));
624
625 for (;;) {
626 char opt;
627 const char *arg;
628
629 apr_status_t status(apr_getopt(state,
630 "cg:n:"
2aa77fd8 631#ifdef CY_ATTACH
06edab7d 632 "p:"
2aa77fd8 633#endif
666eedb9 634 "r:"
06edab7d
JF
635 "s"
636 , &opt, &arg));
637
638 switch (status) {
639 case APR_EOF:
640 goto getopt;
641 case APR_BADCH:
642 case APR_BADARG:
643 fprintf(stderr,
644 "usage: cycript [-c]"
2aa77fd8 645#ifdef CY_ATTACH
69caa5be 646 " [-p <pid|name>]"
2aa77fd8 647#endif
666eedb9 648 " [-r <host:port>]"
06edab7d
JF
649 " [<script> [<arg>...]]\n"
650 );
651 return 1;
652 default:
653 _aprcall(status);
654 }
967067aa 655
06edab7d
JF
656 switch (opt) {
657 case 'c':
658 compile = true;
659 break;
75b0a457 660
06edab7d
JF
661 case 'g':
662 if (false);
de9fc71b
JF
663 else if (strcmp(arg, "rename") == 0)
664 options.verbose_ = true;
cac61857 665#if YYDEBUG
5ef46cc0 666 else if (strcmp(arg, "bison") == 0)
06edab7d 667 bison_ = true;
cac61857 668#endif
06edab7d
JF
669 else {
670 fprintf(stderr, "invalid name for -g\n");
671 return 1;
672 }
673 break;
cac61857 674
06edab7d
JF
675 case 'n':
676 if (false);
5ef46cc0 677 else if (strcmp(arg, "minify") == 0)
06edab7d
JF
678 pretty_ = true;
679 else {
680 fprintf(stderr, "invalid name for -n\n");
681 return 1;
682 }
683 break;
11c1cc16 684
2aa77fd8 685#ifdef CY_ATTACH
06edab7d 686 case 'p': {
5ef46cc0 687 size_t size(strlen(arg));
06edab7d 688 char *end;
69caa5be 689
5ef46cc0
JF
690 pid = strtoul(arg, &end, 0);
691 if (arg + size != end) {
69caa5be 692 // XXX: arg needs to be escaped in some horrendous way of doom
0cbeddf8 693 const char *command(apr_pstrcat(pool, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^", arg, " /{s/^[^ ]* //;q;};};d'", NULL));
69caa5be
JF
694
695 if (FILE *pids = popen(command, "r")) {
696 char value[32];
697 size = 0;
698
699 for (;;) {
700 size_t read(fread(value + size, 1, sizeof(value) - size, pids));
701 if (read == 0)
702 break;
703 else {
704 size += read;
04aa6240 705 if (size == sizeof(value))
b166b11b 706 goto fail;
69caa5be
JF
707 }
708 }
709
710 size:
711 if (size == 0)
b166b11b 712 goto fail;
69caa5be
JF
713 if (value[size - 1] == '\n') {
714 --size;
715 goto size;
716 }
717
718 value[size] = '\0';
719 size = strlen(value);
720 pid = strtoul(value, &end, 0);
b166b11b 721 if (value + size != end) fail:
69caa5be 722 pid = _not(pid_t);
69caa5be
JF
723 _syscall(pclose(pids));
724 }
725
726 if (pid == _not(pid_t)) {
04aa6240 727 fprintf(stderr, "unable to find process `%s' using ps\n", arg);
69caa5be
JF
728 return 1;
729 }
06edab7d
JF
730 }
731 } break;
2aa77fd8 732#endif
b10bd496 733
666eedb9
JF
734 case 'r': {
735 //size_t size(strlen(arg));
736
737 char *colon(strrchr(arg, ':'));
738 if (colon == NULL) {
739 fprintf(stderr, "missing colon in hostspec\n");
740 return 1;
741 }
742
743 /*char *end;
744 port = strtoul(colon + 1, &end, 10);
745 if (end != arg + size) {
746 fprintf(stderr, "invalid port in hostspec\n");
747 return 1;
748 }*/
749
750 host = arg;
751 *colon = '\0';
752 port = colon + 1;
753 } break;
754
06edab7d
JF
755 case 's':
756 strict_ = true;
757 break;
758 }
967067aa
JF
759 } getopt:;
760
b09da87b 761 const char *script;
5ef46cc0 762 int ind(state->ind);
b09da87b 763
2aa77fd8 764#ifdef CY_ATTACH
5ef46cc0 765 if (pid != _not(pid_t) && ind < argc - 1) {
fcc64bb5
JF
766 fprintf(stderr, "-p cannot set argv\n");
767 return 1;
768 }
769
75b0a457
JF
770 if (pid != _not(pid_t) && compile) {
771 fprintf(stderr, "-p conflicts with -c\n");
772 return 1;
773 }
2aa77fd8 774#endif
75b0a457 775
5ef46cc0 776 if (ind == argc)
b09da87b
JF
777 script = NULL;
778 else {
9185d5ef 779#ifdef CY_EXECUTE
967067aa 780 // XXX: const_cast?! wtf gcc :(
5ef46cc0 781 CYSetArgs(argc - ind - 1, const_cast<const char **>(argv + ind + 1));
9185d5ef 782#endif
5ef46cc0 783 script = argv[ind];
967067aa
JF
784 if (strcmp(script, "-") == 0)
785 script = NULL;
b09da87b
JF
786 }
787
2aa77fd8
JF
788#ifdef CY_ATTACH
789 if (pid != _not(pid_t) && script == NULL && !tty) {
790 fprintf(stderr, "non-terminal attaching to remote console\n");
48e3be8a
JF
791 return 1;
792 }
2aa77fd8 793#endif
48e3be8a 794
2aa77fd8 795#ifdef CY_ATTACH
967067aa 796 if (pid == _not(pid_t))
7e5391fd 797 client_ = -1;
967067aa 798 else {
b166b11b
JF
799 int server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0))); try {
800 struct sockaddr_un address;
801 memset(&address, 0, sizeof(address));
802 address.sun_family = AF_UNIX;
803
804 sprintf(address.sun_path, "/tmp/.s.cy.%u", getpid());
805
806 _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
807 _syscall(chmod(address.sun_path, 0777));
808
809 try {
810 _syscall(listen(server, 1));
811 InjectLibrary(pid);
7e5391fd 812 client_ = _syscall(accept(server, NULL, NULL));
b166b11b
JF
813 } catch (...) {
814 // XXX: exception?
815 unlink(address.sun_path);
816 throw;
817 }
818 } catch (...) {
819 _syscall(close(server));
95678376 820 throw;
b166b11b 821 }
967067aa 822 }
2aa77fd8 823#else
7e5391fd 824 client_ = -1;
2aa77fd8 825#endif
579ed526 826
666eedb9
JF
827 if (client_ == -1 && host != NULL && port != NULL) {
828 struct addrinfo hints;
829 memset(&hints, 0, sizeof(hints));
830 hints.ai_family = AF_UNSPEC;
831 hints.ai_socktype = SOCK_STREAM;
832 hints.ai_protocol = 0;
833 hints.ai_flags = 0;
834
835 struct addrinfo *infos;
836 _syscall(getaddrinfo(host, port, &hints, &infos));
837
838 _assert(infos != NULL); try {
839 for (struct addrinfo *info(infos); info != NULL; info = info->ai_next) {
840 int client(_syscall(socket(info->ai_family, info->ai_socktype, info->ai_protocol))); try {
841 _syscall(connect(client, info->ai_addr, info->ai_addrlen));
842 client_ = client;
843 break;
844 } catch (...) {
845 _syscall(close(client));
846 throw;
847 }
848 }
849 } catch (...) {
850 freeaddrinfo(infos);
851 throw;
852 }
853 }
854
48e3be8a 855 if (script == NULL && tty)
2eb8215d 856 Console(options);
b09da87b 857 else {
2eb8215d 858 CYLocalPool pool;
b09da87b 859
0df6a201 860 std::istream *stream;
48e3be8a 861 if (script == NULL) {
0df6a201
JF
862 stream = &std::cin;
863 script = "<stdin>";
48e3be8a 864 } else {
0df6a201
JF
865 stream = new std::fstream(script, std::ios::in | std::ios::binary);
866 _assert(!stream->fail());
48e3be8a 867 }
62ca2b82 868
0df6a201 869 CYDriver driver(*stream, script);
d3b63265
JF
870 cy::parser parser(driver);
871 Setup(driver, parser);
872
b09da87b
JF
873 if (parser.parse() != 0 || !driver.errors_.empty()) {
874 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
875 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
0df6a201
JF
876 } else if (driver.program_ != NULL) {
877 std::ostringstream str;
878 CYOutput out(str, options);
36bf49c4 879 Setup(out, driver, options, true);
0df6a201
JF
880 out << *driver.program_;
881 std::string code(str.str());
882 if (compile)
883 std::cout << code;
884 else
82a02ede 885 Run(client_, false, code, &std::cout);
0df6a201 886 }
057f943f 887 }
62ca2b82 888
0cbeddf8
JF
889 apr_pool_destroy(pool);
890
057f943f 891 return 0;
62ca2b82 892}
b6961e53
JF
893
894int main(int argc, char const * const argv[], char const * const envp[]) {
895 apr_status_t status(apr_app_initialize(&argc, &argv, &envp));
da858962 896
b6961e53
JF
897 if (status != APR_SUCCESS) {
898 fprintf(stderr, "apr_app_initialize() != APR_SUCCESS\n");
899 return 1;
900 } else try {
901 return Main(argc, argv, envp);
902 } catch (const CYException &error) {
903 CYPool pool;
904 fprintf(stderr, "%s\n", error.PoolCString(pool));
905 return 1;
906 }
907}