]> git.saurik.com Git - cycript.git/blame - Console.cpp
@encode syntax doesn't require Objective-C support.
[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 46#include <errno.h>
10d0e915
JF
47#include <getopt.h>
48#include <signal.h>
b09da87b
JF
49#include <unistd.h>
50
666eedb9 51#include <sys/socket.h>
b09da87b
JF
52#include <sys/types.h>
53#include <sys/stat.h>
54#include <fcntl.h>
666eedb9 55#include <netdb.h>
b09da87b 56
967067aa
JF
57#include <sys/types.h>
58#include <sys/socket.h>
59#include <netinet/in.h>
60#include <sys/un.h>
b1589845 61#include <pwd.h>
967067aa 62
da858962
JF
63#include <dlfcn.h>
64
74296173 65#include "Display.hpp"
b12a9965
JF
66#include "Replace.hpp"
67
68#include "Cycript.tab.hh"
69#include "Driver.hpp"
7e5391fd 70
4e39dc0b
JF
71static volatile enum {
72 Working,
73 Parsing,
74 Running,
75 Sending,
76 Waiting,
77} mode_;
78
057f943f
JF
79static jmp_buf ctrlc_;
80
579ed526 81static 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
97static bool bison_;
98#endif
b10bd496 99static bool strict_;
11c1cc16 100static bool pretty_;
cac61857 101
b10bd496 102void 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
36bf49c4 111void Setup(CYOutput &out, CYDriver &driver, CYOptions &options, bool lower) {
11c1cc16 112 out.pretty_ = pretty_;
2eb8215d 113 CYContext context(options);
36bf49c4
JF
114 if (lower)
115 driver.program_->Replace(context);
11c1cc16
JF
116}
117
7e5391fd 118static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
967067aa 119 const char *json;
9d79cefc 120 uint32_t size;
7e5391fd 121
b166b11b 122 if (client == -1) {
4e39dc0b 123 mode_ = Running;
2aa77fd8 124#ifdef CY_EXECUTE
89d16b11 125 json = CYExecute(CYGetJSContext(), pool, code);
2aa77fd8
JF
126#else
127 json = NULL;
128#endif
4e39dc0b 129 mode_ = Working;
dd221c6b
JF
130 if (json == NULL)
131 size = 0;
132 else
6ec85c5b
JF
133 size = strlen(json);
134 } else {
4e39dc0b 135 mode_ = Sending;
0ced2e47 136 size = code.size;
a1f3555e
JF
137 _assert(CYSendAll(client, &size, sizeof(size)));
138 _assert(CYSendAll(client, code.data, code.size));
4e39dc0b 139 mode_ = Waiting;
a1f3555e 140 _assert(CYRecvAll(client, &size, sizeof(size)));
9d79cefc 141 if (size == _not(uint32_t))
967067aa
JF
142 json = NULL;
143 else {
144 char *temp(new(pool) char[size + 1]);
a1f3555e 145 _assert(CYRecvAll(client, temp, size));
967067aa
JF
146 temp[size] = '\0';
147 json = temp;
148 }
4e39dc0b 149 mode_ = Working;
4cf49641 150 }
b09da87b 151
7e5391fd
JF
152 return CYUTF8String(json, size);
153}
154
155static CYUTF8String Run(CYPool &pool, int client, const std::string &code) {
156 return Run(pool, client, CYUTF8String(code.c_str(), code.size()));
157}
158
2e2ed904 159static std::ostream *out_;
a3f4a8e1 160
82a02ede
JF
161static void Write(bool syntax, const char *data, size_t size, std::ostream &out) {
162 if (syntax)
163 CYLexerHighlight(data, size, out);
164 else
165 out.write(data, size);
166}
167
168static void Output(bool syntax, CYUTF8String json, std::ostream *out, bool expand = false) {
a3f4a8e1
JF
169 const char *data(json.data);
170 size_t size(json.size);
171
2e2ed904 172 if (data == NULL || out == NULL)
a3f4a8e1
JF
173 return;
174
0881deb5
JF
175 if (!expand ||
176 data[0] != '@' && data[0] != '"' && data[0] != '\'' ||
177 data[0] == '@' && data[1] != '"' && data[1] != '\''
178 )
82a02ede 179 Write(syntax, data, size, *out);
a3f4a8e1
JF
180 else for (size_t i(0); i != size; ++i)
181 if (data[i] != '\\')
2e2ed904 182 *out << data[i];
a3f4a8e1
JF
183 else switch(data[++i]) {
184 case '\0': goto done;
2e2ed904
JF
185 case '\\': *out << '\\'; break;
186 case '\'': *out << '\''; break;
187 case '"': *out << '"'; break;
188 case 'b': *out << '\b'; break;
189 case 'f': *out << '\f'; break;
190 case 'n': *out << '\n'; break;
191 case 'r': *out << '\r'; break;
192 case 't': *out << '\t'; break;
193 case 'v': *out << '\v'; break;
194 default: *out << '\\'; --i; break;
a3f4a8e1 195 }
6ec85c5b 196
a3f4a8e1 197 done:
2e2ed904 198 *out << std::endl;
a3f4a8e1
JF
199}
200
82a02ede 201static void Run(int client, bool syntax, const char *data, size_t size, std::ostream *out = NULL, bool expand = false) {
a3f4a8e1 202 CYPool pool;
82a02ede 203 Output(syntax, Run(pool, client, CYUTF8String(data, size)), out, expand);
b09da87b
JF
204}
205
82a02ede
JF
206static void Run(int client, bool syntax, std::string &code, std::ostream *out = NULL, bool expand = false) {
207 Run(client, syntax, code.c_str(), code.size(), out, expand);
fcc64bb5
JF
208}
209
da858962
JF
210int (*append_history$)(int, const char *);
211
7e5391fd
JF
212static std::string command_;
213
2eb8215d 214static CYExpression *ParseExpression(CYUTF8String code) {
d3b63265
JF
215 std::stringstream stream;
216 stream << '(' << code << ')';
217 CYDriver driver(stream);
7e5391fd
JF
218
219 cy::parser parser(driver);
220 Setup(driver, parser);
221
222 if (parser.parse() != 0 || !driver.errors_.empty())
df24434f 223 return NULL;
7e5391fd 224
e06e5ee1
JF
225 CYOptions options;
226 CYContext context(options);
227
fd5cdf97
JF
228 CYStatement *statement(driver.program_->statements_);
229 _assert(statement != NULL);
230 _assert(statement->next_ == NULL);
e06e5ee1 231
fd5cdf97
JF
232 CYExpress *express(dynamic_cast<CYExpress *>(driver.program_->statements_));
233 _assert(express != NULL);
234
235 return express->expression_;
7e5391fd
JF
236}
237
238static int client_;
239
240static char **Complete(const char *word, int start, int end) {
10d0e915 241 rl_attempted_completion_over = ~0;
7e5391fd 242
2eb8215d 243 CYLocalPool pool;
7e5391fd
JF
244
245 std::string line(rl_line_buffer, start);
d3b63265
JF
246 std::istringstream stream(command_ + line);
247 CYDriver driver(stream);
7e5391fd
JF
248
249 driver.auto_ = true;
250
d3b63265
JF
251 cy::parser parser(driver);
252 Setup(driver, parser);
253
7e5391fd
JF
254 if (parser.parse() != 0 || !driver.errors_.empty())
255 return NULL;
256
257 if (driver.mode_ == CYDriver::AutoNone)
258 return NULL;
259
260 CYExpression *expression;
261
262 CYOptions options;
2eb8215d 263 CYContext context(options);
7e5391fd
JF
264
265 std::ostringstream prefix;
266
267 switch (driver.mode_) {
268 case CYDriver::AutoPrimary:
269 expression = $ CYThis();
270 break;
271
272 case CYDriver::AutoDirect:
273 expression = driver.context_;
274 break;
275
276 case CYDriver::AutoIndirect:
277 expression = $ CYIndirect(driver.context_);
278 break;
279
280 case CYDriver::AutoMessage: {
281 CYDriver::Context &thing(driver.contexts_.back());
aa926c8b 282 expression = $M($C1($V("object_getClass"), thing.context_), $S("messages"));
7e5391fd
JF
283 for (CYDriver::Context::Words::const_iterator part(thing.words_.begin()); part != thing.words_.end(); ++part)
284 prefix << (*part)->word_ << ':';
285 } break;
286
287 default:
288 _assert(false);
289 }
290
2a18313c 291 std::string begin(prefix.str());
7e5391fd 292
2eb8215d 293 driver.program_ = $ CYProgram($ CYExpress($C3(ParseExpression(
2a18313c 294 " function(object, prefix, word) {\n"
7e5391fd 295 " var names = [];\n"
5a3f7a01
JF
296 " var before = prefix.length;\n"
297 " prefix += word;\n"
298 " var entire = prefix.length;\n"
3e6377db 299 " for (var name in object)\n"
5a3f7a01
JF
300 " if (name.substring(0, entire) == prefix)\n"
301 " names.push(name.substr(before));\n"
7e5391fd
JF
302 " return names;\n"
303 " }\n"
2a18313c 304 ), expression, $S(begin.c_str()), $S(word))));
7e5391fd
JF
305
306 driver.program_->Replace(context);
307
308 std::ostringstream str;
309 CYOutput out(str, options);
310 out << *driver.program_;
311
312 std::string code(str.str());
313 CYUTF8String json(Run(pool, client_, code));
1b2613d3 314 // XXX: if this fails we should not try to parse it
7e5391fd 315
2eb8215d 316 CYExpression *result(ParseExpression(json));
df24434f
JF
317 if (result == NULL)
318 return NULL;
319
fd5cdf97 320 CYArray *array(dynamic_cast<CYArray *>(result->Primitive(context)));
a3f4a8e1 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) {
f61fec22
JF
406 int fd(_syscall(open(histfile_.c_str(), O_CREAT | O_WRONLY, 0600)));
407 _syscall(close(fd));
da136f88
JF
408 _assert((*append_history$)(histlines_, histfile_.c_str()) == 0);
409 } else {
410 _assert(write_history(histfile_.c_str()) == 0);
411 }
412 }
413
414 void operator +=(const std::string &command) {
415 add_history(command_.c_str());
416 ++histlines_;
417 }
418};
419
2eb8215d
JF
420static void Console(CYOptions &options) {
421 CYPool pool;
422
b1589845
JF
423 passwd *passwd;
424 if (const char *username = getenv("LOGNAME"))
425 passwd = getpwnam(username);
426 else
427 passwd = getpwuid(getuid());
428
da136f88
JF
429 std::string basedir(passwd->pw_dir);
430 basedir += "/.cycript";
431 mkdir(basedir.c_str(), 0700);
b1589845 432
7e5391fd
JF
433 rl_initialize();
434 rl_readline_name = name_;
435
da136f88 436 History history(basedir + "/history");
b1589845 437
1f8eae40
JF
438 bool bypass(false);
439 bool debug(false);
6ec85c5b 440 bool expand(false);
36bf49c4 441 bool lower(true);
cd98d280 442 bool syntax(true);
1f8eae40 443
2e2ed904 444 out_ = &std::cout;
057f943f 445
7e5391fd
JF
446 // rl_completer_word_break_characters is broken in libedit
447 rl_basic_word_break_characters = break_;
bc1e87aa
JF
448
449 rl_completer_word_break_characters = break_;
7e5391fd
JF
450 rl_attempted_completion_function = &Complete;
451 rl_bind_key('\t', rl_complete);
057f943f
JF
452
453 struct sigaction action;
454 sigemptyset(&action.sa_mask);
455 action.sa_handler = &sigint;
456 action.sa_flags = 0;
457 sigaction(SIGINT, &action, NULL);
458
459 restart: for (;;) {
7e5391fd 460 command_.clear();
057f943f
JF
461 std::vector<std::string> lines;
462
931b816a
JF
463 bool extra(false);
464 const char *prompt("cy# ");
465
057f943f 466 if (setjmp(ctrlc_) != 0) {
4e39dc0b 467 mode_ = Working;
2e2ed904 468 *out_ << std::endl;
057f943f
JF
469 goto restart;
470 }
471
057f943f 472 read:
cd98d280
JF
473
474#if RL_READLINE_VERSION >= 0x0600
8a81192b 475 if (syntax)
cd98d280 476 rl_redisplay_function = CYDisplayUpdate;
8a81192b 477 else
cd98d280 478 rl_redisplay_function = rl_redisplay;
cd98d280
JF
479#endif
480
4e39dc0b 481 mode_ = Parsing;
057f943f 482 char *line(readline(prompt));
4e39dc0b 483 mode_ = Working;
cd98d280 484
79357996
JF
485 if (line == NULL) {
486 *out_ << std::endl;
057f943f 487 break;
79357996 488 } else if (line[0] == '\0')
67f1fc6b 489 goto read;
931b816a
JF
490
491 if (!extra) {
492 extra = true;
6ec85c5b 493 if (line[0] == '?') {
1f8eae40
JF
494 std::string data(line + 1);
495 if (data == "bypass") {
496 bypass = !bypass;
2e2ed904 497 *out_ << "bypass == " << (bypass ? "true" : "false") << std::endl;
1f8eae40
JF
498 } else if (data == "debug") {
499 debug = !debug;
2e2ed904 500 *out_ << "debug == " << (debug ? "true" : "false") << std::endl;
8fab8594
JF
501 } else if (data == "destroy") {
502 CYDestroyContext();
51b6165e 503 } else if (data == "gc") {
e7ff0158 504 *out_ << "collecting... " << std::flush;
51b6165e 505 CYGarbageCollect(CYGetJSContext());
e7ff0158 506 *out_ << "done." << std::endl;
6a5fd0d9
JF
507 } else if (data == "exit") {
508 return;
6ec85c5b
JF
509 } else if (data == "expand") {
510 expand = !expand;
2e2ed904 511 *out_ << "expand == " << (expand ? "true" : "false") << std::endl;
36bf49c4
JF
512 } else if (data == "lower") {
513 lower = !lower;
514 *out_ << "lower == " << (lower ? "true" : "false") << std::endl;
82a02ede
JF
515 } else if (data == "syntax") {
516 syntax = !syntax;
517 *out_ << "syntax == " << (syntax ? "true" : "false") << std::endl;
1f8eae40 518 }
be8c2078
JF
519 command_ = line;
520 history += command_;
931b816a
JF
521 goto restart;
522 }
523 }
524
7e5391fd 525 command_ += line;
e818f0e0
JF
526
527 char *begin(line), *end(line + strlen(line));
528 while (char *nl = reinterpret_cast<char *>(memchr(begin, '\n', end - begin))) {
529 *nl = '\0';
530 lines.push_back(begin);
531 begin = nl + 1;
532 }
533
534 lines.push_back(begin);
535
057f943f
JF
536 free(line);
537
1f8eae40
JF
538 std::string code;
539
540 if (bypass)
7e5391fd 541 code = command_;
1f8eae40 542 else {
2eb8215d 543 CYLocalPool pool;
d3b63265
JF
544
545 std::istringstream stream(command_);
546 CYDriver driver(stream);
547
1f8eae40 548 cy::parser parser(driver);
b10bd496 549 Setup(driver, parser);
1f8eae40 550
1f8eae40 551 if (parser.parse() != 0 || !driver.errors_.empty()) {
f0360d51
JF
552 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
553 cy::position begin(error->location_.begin);
c247172c 554 if (begin.line != lines.size() || begin.column < lines.back().size() || error->warning_) {
f0360d51 555 cy::position end(error->location_.end);
48e3be8a 556
f0360d51
JF
557 if (begin.line != lines.size()) {
558 std::cerr << " | ";
559 std::cerr << lines[begin.line - 1] << std::endl;
560 }
48e3be8a 561
c52a09b8 562 std::cerr << "....";
97c8a8fc 563 for (size_t i(0); i != begin.column; ++i)
f0360d51 564 std::cerr << '.';
48e3be8a 565 if (begin.line != end.line || begin.column == end.column)
f0360d51
JF
566 std::cerr << '^';
567 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
568 std::cerr << '^';
569 std::cerr << std::endl;
48e3be8a 570
f0360d51
JF
571 std::cerr << " | ";
572 std::cerr << error->message_ << std::endl;
48e3be8a 573
da136f88 574 history += command_;
1f8eae40
JF
575 goto restart;
576 }
577 }
057f943f 578
1f8eae40 579 driver.errors_.clear();
057f943f 580
7e5391fd 581 command_ += '\n';
1f8eae40
JF
582 prompt = "cy> ";
583 goto read;
057f943f
JF
584 }
585
b10bd496 586 if (driver.program_ == NULL)
1f8eae40 587 goto restart;
057f943f 588
0df6a201
JF
589 std::ostringstream str;
590 CYOutput out(str, options);
36bf49c4 591 Setup(out, driver, options, lower);
0df6a201
JF
592 out << *driver.program_;
593 code = str.str();
057f943f
JF
594 }
595
da136f88 596 history += command_;
057f943f 597
82a02ede 598 if (debug) {
f43fcb85 599 std::cout << "cy= ";
82a02ede
JF
600 Write(syntax, code.c_str(), code.size(), std::cout);
601 std::cout << std::endl;
602 }
057f943f 603
82a02ede 604 Run(client_, syntax, code, out_, expand);
b09da87b 605 }
b09da87b 606}
057f943f 607
b6961e53 608void InjectLibrary(pid_t pid);
06edab7d 609
10d0e915 610int Main(int argc, char * const argv[], char const * const envp[]) {
48e3be8a 611 bool tty(isatty(STDIN_FILENO));
75b0a457 612 bool compile(false);
96746747 613 bool target(false);
de9fc71b 614 CYOptions options;
967067aa 615
e4676127 616 append_history$ = (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT, "append_history"));
da858962 617
2aa77fd8
JF
618#ifdef CY_ATTACH
619 pid_t pid(_not(pid_t));
620#endif
621
666eedb9
JF
622 const char *host(NULL);
623 const char *port(NULL);
624
10d0e915 625 optind = 1;
06edab7d
JF
626
627 for (;;) {
10d0e915
JF
628 int option(getopt_long(argc, argv,
629 "c"
630 "g:"
631 "n:"
2aa77fd8 632#ifdef CY_ATTACH
10d0e915 633 "p:"
2aa77fd8 634#endif
10d0e915
JF
635 "r:"
636 "s"
f61fec22 637 , (const struct option[]) {
10d0e915
JF
638 {NULL, no_argument, NULL, 'c'},
639 {NULL, required_argument, NULL, 'g'},
640 {NULL, required_argument, NULL, 'n'},
641#ifdef CY_ATTACH
642 {NULL, required_argument, NULL, 'p'},
643#endif
644 {NULL, required_argument, NULL, 'r'},
645 {NULL, no_argument, NULL, 's'},
646 {0, 0, 0, 0}}, NULL));
06edab7d 647
10d0e915
JF
648 switch (option) {
649 case -1:
06edab7d 650 goto getopt;
10d0e915
JF
651
652 case ':':
653 case '?':
06edab7d
JF
654 fprintf(stderr,
655 "usage: cycript [-c]"
2aa77fd8 656#ifdef CY_ATTACH
69caa5be 657 " [-p <pid|name>]"
2aa77fd8 658#endif
666eedb9 659 " [-r <host:port>]"
06edab7d
JF
660 " [<script> [<arg>...]]\n"
661 );
662 return 1;
967067aa 663
96746747
JF
664 target:
665 if (!target)
666 target = true;
667 else {
668 fprintf(stderr, "only one of -[c"
669#ifdef CY_ATTACH
670 "p"
671#endif
672 "r] may be used at a time\n");
673 return 1;
674 }
675 break;
676
06edab7d
JF
677 case 'c':
678 compile = true;
96746747 679 goto target;
75b0a457 680
06edab7d
JF
681 case 'g':
682 if (false);
10d0e915 683 else if (strcmp(optarg, "rename") == 0)
de9fc71b 684 options.verbose_ = true;
cac61857 685#if YYDEBUG
10d0e915 686 else if (strcmp(optarg, "bison") == 0)
06edab7d 687 bison_ = true;
cac61857 688#endif
06edab7d
JF
689 else {
690 fprintf(stderr, "invalid name for -g\n");
691 return 1;
692 }
693 break;
cac61857 694
06edab7d
JF
695 case 'n':
696 if (false);
10d0e915 697 else if (strcmp(optarg, "minify") == 0)
06edab7d
JF
698 pretty_ = true;
699 else {
700 fprintf(stderr, "invalid name for -n\n");
701 return 1;
702 }
703 break;
11c1cc16 704
2aa77fd8 705#ifdef CY_ATTACH
06edab7d 706 case 'p': {
10d0e915 707 size_t size(strlen(optarg));
06edab7d 708 char *end;
69caa5be 709
10d0e915
JF
710 pid = strtoul(optarg, &end, 0);
711 if (optarg + size != end) {
69caa5be 712 // XXX: arg needs to be escaped in some horrendous way of doom
10d0e915
JF
713 // XXX: this is a memory leak now because I just don't care enough
714 char *command;
715 asprintf(&command, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", optarg);
69caa5be
JF
716
717 if (FILE *pids = popen(command, "r")) {
718 char value[32];
719 size = 0;
720
721 for (;;) {
722 size_t read(fread(value + size, 1, sizeof(value) - size, pids));
723 if (read == 0)
724 break;
725 else {
726 size += read;
04aa6240 727 if (size == sizeof(value))
b166b11b 728 goto fail;
69caa5be
JF
729 }
730 }
731
732 size:
733 if (size == 0)
b166b11b 734 goto fail;
69caa5be
JF
735 if (value[size - 1] == '\n') {
736 --size;
737 goto size;
738 }
739
740 value[size] = '\0';
741 size = strlen(value);
742 pid = strtoul(value, &end, 0);
b166b11b 743 if (value + size != end) fail:
69caa5be 744 pid = _not(pid_t);
69caa5be
JF
745 _syscall(pclose(pids));
746 }
747
748 if (pid == _not(pid_t)) {
10d0e915 749 fprintf(stderr, "unable to find process `%s' using ps\n", optarg);
69caa5be
JF
750 return 1;
751 }
06edab7d 752 }
96746747 753 } goto target;
2aa77fd8 754#endif
b10bd496 755
666eedb9 756 case 'r': {
10d0e915 757 //size_t size(strlen(optarg));
666eedb9 758
10d0e915 759 char *colon(strrchr(optarg, ':'));
666eedb9
JF
760 if (colon == NULL) {
761 fprintf(stderr, "missing colon in hostspec\n");
762 return 1;
763 }
764
765 /*char *end;
766 port = strtoul(colon + 1, &end, 10);
10d0e915 767 if (end != optarg + size) {
666eedb9
JF
768 fprintf(stderr, "invalid port in hostspec\n");
769 return 1;
770 }*/
771
10d0e915 772 host = optarg;
666eedb9
JF
773 *colon = '\0';
774 port = colon + 1;
96746747 775 } goto target;
666eedb9 776
06edab7d
JF
777 case 's':
778 strict_ = true;
779 break;
10d0e915
JF
780
781 default:
782 _assert(false);
06edab7d 783 }
10d0e915
JF
784 }
785
786 getopt:
787 argc -= optind;
788 argv += optind;
967067aa 789
b09da87b
JF
790 const char *script;
791
2aa77fd8 792#ifdef CY_ATTACH
10d0e915 793 if (pid != _not(pid_t) && argc > 1) {
fcc64bb5
JF
794 fprintf(stderr, "-p cannot set argv\n");
795 return 1;
796 }
2aa77fd8 797#endif
75b0a457 798
10d0e915 799 if (argc == 0)
b09da87b
JF
800 script = NULL;
801 else {
9185d5ef 802#ifdef CY_EXECUTE
967067aa 803 // XXX: const_cast?! wtf gcc :(
10d0e915 804 CYSetArgs(argc - 1, const_cast<const char **>(argv + 1));
9185d5ef 805#endif
10d0e915 806 script = argv[0];
967067aa
JF
807 if (strcmp(script, "-") == 0)
808 script = NULL;
b09da87b
JF
809 }
810
2aa77fd8 811#ifdef CY_ATTACH
967067aa 812 if (pid == _not(pid_t))
7e5391fd 813 client_ = -1;
967067aa 814 else {
46d13f4c
JF
815 struct Socket {
816 int fd_;
b166b11b 817
46d13f4c
JF
818 Socket(int fd) :
819 fd_(fd)
820 {
821 }
96cc7967 822
46d13f4c
JF
823 ~Socket() {
824 close(fd_);
825 }
96cc7967 826
46d13f4c
JF
827 operator int() {
828 return fd_;
829 }
830 } server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0)));
96cc7967 831
46d13f4c
JF
832 struct sockaddr_un address;
833 memset(&address, 0, sizeof(address));
834 address.sun_family = AF_UNIX;
b166b11b 835
46d13f4c
JF
836 sprintf(address.sun_path, "/tmp/.s.cy.%u", getpid());
837 unlink(address.sun_path);
b166b11b 838
46d13f4c
JF
839 struct File {
840 const char *path_;
841
842 File(const char *path) :
843 path_(path)
844 {
845 }
846
847 ~File() {
848 unlink(path_);
849 }
850 } file(address.sun_path);
851
852 _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
853 _syscall(chmod(address.sun_path, 0777));
854
855 _syscall(listen(server, 1));
856 InjectLibrary(pid);
857 client_ = _syscall(accept(server, NULL, NULL));
967067aa 858 }
2aa77fd8 859#else
7e5391fd 860 client_ = -1;
2aa77fd8 861#endif
579ed526 862
666eedb9
JF
863 if (client_ == -1 && host != NULL && port != NULL) {
864 struct addrinfo hints;
865 memset(&hints, 0, sizeof(hints));
866 hints.ai_family = AF_UNSPEC;
867 hints.ai_socktype = SOCK_STREAM;
868 hints.ai_protocol = 0;
869 hints.ai_flags = 0;
870
871 struct addrinfo *infos;
872 _syscall(getaddrinfo(host, port, &hints, &infos));
873
874 _assert(infos != NULL); try {
875 for (struct addrinfo *info(infos); info != NULL; info = info->ai_next) {
876 int client(_syscall(socket(info->ai_family, info->ai_socktype, info->ai_protocol))); try {
877 _syscall(connect(client, info->ai_addr, info->ai_addrlen));
878 client_ = client;
879 break;
880 } catch (...) {
881 _syscall(close(client));
882 throw;
883 }
884 }
885 } catch (...) {
886 freeaddrinfo(infos);
887 throw;
888 }
889 }
890
48e3be8a 891 if (script == NULL && tty)
2eb8215d 892 Console(options);
b09da87b 893 else {
2eb8215d 894 CYLocalPool pool;
b09da87b 895
0df6a201 896 std::istream *stream;
48e3be8a 897 if (script == NULL) {
0df6a201
JF
898 stream = &std::cin;
899 script = "<stdin>";
48e3be8a 900 } else {
0df6a201
JF
901 stream = new std::fstream(script, std::ios::in | std::ios::binary);
902 _assert(!stream->fail());
48e3be8a 903 }
62ca2b82 904
0df6a201 905 CYDriver driver(*stream, script);
d3b63265
JF
906 cy::parser parser(driver);
907 Setup(driver, parser);
908
b09da87b
JF
909 if (parser.parse() != 0 || !driver.errors_.empty()) {
910 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
911 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
0df6a201
JF
912 } else if (driver.program_ != NULL) {
913 std::ostringstream str;
914 CYOutput out(str, options);
36bf49c4 915 Setup(out, driver, options, true);
0df6a201
JF
916 out << *driver.program_;
917 std::string code(str.str());
918 if (compile)
919 std::cout << code;
920 else
82a02ede 921 Run(client_, false, code, &std::cout);
0df6a201 922 }
057f943f 923 }
62ca2b82 924
057f943f 925 return 0;
62ca2b82 926}
b6961e53 927
10d0e915
JF
928int main(int argc, char * const argv[], char const * const envp[]) {
929 try {
b6961e53
JF
930 return Main(argc, argv, envp);
931 } catch (const CYException &error) {
932 CYPool pool;
933 fprintf(stderr, "%s\n", error.PoolCString(pool));
934 return 1;
935 }
936}