]>
git.saurik.com Git - cycript.git/blob - Console.cpp
1 /* Cycript - Inlining/Optimizing JavaScript Compiler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
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
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.
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.
40 #include "cycript.hpp"
47 #include <readline/readline.h>
48 #include <readline/history.h>
55 #include <sys/types.h>
59 #include "Cycript.tab.hh"
61 #include <sys/types.h>
62 #include <sys/socket.h>
63 #include <netinet/in.h>
67 #include <apr_getopt.h>
71 static volatile enum {
79 static jmp_buf ctrlc_
;
81 static void sigint(int) {
102 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
105 parser
.set_debug_level(1);
108 driver
.strict_
= true;
111 void Setup(CYOutput
&out
, CYDriver
&driver
) {
112 out
.pretty_
= pretty_
;
114 CYContext
context(driver
.pool_
);
115 driver
.program_
->Replace(context
);
118 void Run(int client
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
125 json
= CYExecute(pool
, data
);
134 CYSendAll(client
, &size
, sizeof(size
));
135 CYSendAll(client
, data
, size
);
137 CYRecvAll(client
, &size
, sizeof(size
));
138 if (size
== _not(size_t))
141 char *temp(new(pool
) char[size
+ 1]);
142 CYRecvAll(client
, temp
, size
);
149 if (json
!= NULL
&& fout
!= NULL
) {
150 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
152 else for (size_t i(0); i
!= size
; ++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;
175 void Run(int client
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
176 Run(client
, code
.c_str(), code
.size(), fout
, expand
);
179 int (*append_history$
)(int, const char *);
181 static void Console(apr_pool_t
*pool
, int client
) {
183 if (const char *username
= getenv("LOGNAME"))
184 passwd
= getpwnam(username
);
186 passwd
= getpwuid(getuid());
188 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
189 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
192 mkdir(basedir
, 0700);
193 read_history(histfile
);
201 rl_bind_key('\t', rl_insert
);
203 struct sigaction action
;
204 sigemptyset(&action
.sa_mask
);
205 action
.sa_handler
= &sigint
;
207 sigaction(SIGINT
, &action
, NULL
);
211 std::vector
<std::string
> lines
;
214 const char *prompt("cy# ");
216 if (setjmp(ctrlc_
) != 0) {
225 char *line(readline(prompt
));
234 if (line
[0] == '?') {
235 std::string
data(line
+ 1);
236 if (data
== "bypass") {
238 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
240 } else if (data
== "debug") {
242 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
244 } else if (data
== "expand") {
246 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
257 char *begin(line
), *end(line
+ strlen(line
));
258 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
260 lines
.push_back(begin
);
264 lines
.push_back(begin
);
274 cy::parser
parser(driver
);
275 Setup(driver
, parser
);
277 driver
.data_
= command
.c_str();
278 driver
.size_
= command
.size();
280 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
281 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
282 cy::position
begin(error
->location_
.begin
);
283 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
284 cy::position
end(error
->location_
.end
);
286 if (begin
.line
!= lines
.size()) {
288 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
292 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
294 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
296 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
298 std::cerr
<< std::endl
;
301 std::cerr
<< error
->message_
<< std::endl
;
303 add_history(command
.c_str());
309 driver
.errors_
.clear();
316 if (driver
.program_
== NULL
)
322 std::ostringstream str
;
325 out
<< *driver
.program_
;
330 add_history(command
.c_str());
334 std::cout
<< code
<< std::endl
;
336 code
= "with(Cycript.all){" + code
+ "}";
338 Run(client
, code
, fout
, expand
);
341 if (append_history$
!= NULL
) {
342 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
343 (*append_history$
)(histlines
, histfile
);
345 write_history(histfile
);
352 static void *Map(const char *path
, size_t *psize
) {
354 _syscall(fd
= open(path
, O_RDONLY
));
357 _syscall(fstat(fd
, &stat
));
358 size_t size(stat
.st_size
);
363 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
369 void InjectLibrary(pid_t pid
);
371 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
372 bool tty(isatty(STDIN_FILENO
));
375 append_history$
= reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT
, "append_history"));
378 pid_t
pid(_not(pid_t
));
383 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
389 apr_status_t
status(apr_getopt(state
,
403 "usage: cycript [-c]"
407 " [<script> [<arg>...]]\n"
422 else if (strcmp(arg
, "bison") == 0)
426 fprintf(stderr
, "invalid name for -g\n");
433 else if (strcmp(arg
, "minify") == 0)
436 fprintf(stderr
, "invalid name for -n\n");
443 size_t size(strlen(arg
));
446 pid
= strtoul(arg
, &end
, 0);
447 if (arg
+ size
!= end
) {
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
));
451 if (FILE *pids
= popen(command
, "r")) {
456 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
461 if (size
== sizeof(value
)) {
471 if (value
[size
- 1] == '\n') {
477 size
= strlen(value
);
478 pid
= strtoul(value
, &end
, 0);
479 if (value
+ size
!= end
) fail
:
481 _syscall(pclose(pids
));
484 if (pid
== _not(pid_t
)) {
485 fprintf(stderr
, "invalid pid for -p\n");
502 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
503 fprintf(stderr
, "-p cannot set argv\n");
507 if (pid
!= _not(pid_t
) && compile
) {
508 fprintf(stderr
, "-p conflicts with -c\n");
517 // XXX: const_cast?! wtf gcc :(
518 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
521 if (strcmp(script
, "-") == 0)
526 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
527 fprintf(stderr
, "non-terminal attaching to remote console\n");
535 if (pid
== _not(pid_t
))
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
;
543 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
545 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
546 _syscall(chmod(address
.sun_path
, 0777));
549 _syscall(listen(server
, 1));
551 client
= _syscall(accept(server
, NULL
, NULL
));
554 unlink(address
.sun_path
);
558 _syscall(close(server
));
566 if (script
== NULL
&& tty
)
567 Console(pool
, client
);
569 CYDriver
driver(script
?: "<stdin>");
570 cy::parser
parser(driver
);
571 Setup(driver
, parser
);
575 if (script
== NULL
) {
579 driver
.file_
= stdin
;
582 start
= reinterpret_cast<char *>(Map(script
, &size
));
585 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
588 if (void *line
= memchr(start
, '\n', end
- start
))
589 start
= reinterpret_cast<char *>(line
);
594 driver
.data_
= start
;
595 driver
.size_
= end
- start
;
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
;
601 } else if (driver
.program_
!= NULL
)
603 std::string
code(start
, end
-start
);
604 code
= "with(Cycript.all){" + code
+ "}";
605 Run(client
, code
, stdout
);
607 std::ostringstream str
;
610 out
<< *driver
.program_
;
611 std::string
code(str
.str());
615 code
= "with(Cycript.all){" + code
+ "}";
616 Run(client
, code
, stdout
);
624 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
625 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
627 if (status
!= APR_SUCCESS
) {
628 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
631 return Main(argc
, argv
, envp
);
632 } catch (const CYException
&error
) {
634 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));