]>
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"
43 #include "JavaScript.hpp"
51 #include <readline/readline.h>
52 #include <readline/history.h>
59 #include <sys/types.h>
63 #include "Cycript.tab.hh"
65 #include <sys/types.h>
66 #include <sys/socket.h>
67 #include <netinet/in.h>
71 #include <apr_getopt.h>
75 static volatile enum {
83 static jmp_buf ctrlc_
;
85 static void sigint(int) {
106 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
109 parser
.set_debug_level(1);
112 driver
.strict_
= true;
115 void Setup(CYOutput
&out
, CYDriver
&driver
) {
116 out
.pretty_
= pretty_
;
119 CYContext
context(driver
.pool_
, options
);
120 driver
.program_
->Replace(context
);
123 void Run(int client
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
130 json
= CYExecute(pool
, data
);
139 CYSendAll(client
, &size
, sizeof(size
));
140 CYSendAll(client
, data
, size
);
142 CYRecvAll(client
, &size
, sizeof(size
));
143 if (size
== _not(size_t))
146 char *temp(new(pool
) char[size
+ 1]);
147 CYRecvAll(client
, temp
, size
);
154 if (json
!= NULL
&& fout
!= NULL
) {
155 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
157 else for (size_t i(0); i
!= size
; ++i
)
159 fputc(json
[i
], fout
);
160 else switch(json
[++i
]) {
161 case '\0': goto done
;
162 case '\\': fputc('\\', fout
); break;
163 case '\'': fputc('\'', fout
); break;
164 case '"': fputc('"', fout
); break;
165 case 'b': fputc('\b', fout
); break;
166 case 'f': fputc('\f', fout
); break;
167 case 'n': fputc('\n', fout
); break;
168 case 'r': fputc('\r', fout
); break;
169 case 't': fputc('\t', fout
); break;
170 case 'v': fputc('\v', fout
); break;
171 default: fputc('\\', fout
); --i
; break;
180 void Run(int client
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
181 Run(client
, code
.c_str(), code
.size(), fout
, expand
);
184 int (*append_history$
)(int, const char *);
186 static void Console(apr_pool_t
*pool
, int client
) {
188 if (const char *username
= getenv("LOGNAME"))
189 passwd
= getpwnam(username
);
191 passwd
= getpwuid(getuid());
193 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
194 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
197 mkdir(basedir
, 0700);
198 read_history(histfile
);
206 rl_bind_key('\t', rl_insert
);
208 struct sigaction action
;
209 sigemptyset(&action
.sa_mask
);
210 action
.sa_handler
= &sigint
;
212 sigaction(SIGINT
, &action
, NULL
);
216 std::vector
<std::string
> lines
;
219 const char *prompt("cy# ");
221 if (setjmp(ctrlc_
) != 0) {
230 char *line(readline(prompt
));
239 if (line
[0] == '?') {
240 std::string
data(line
+ 1);
241 if (data
== "bypass") {
243 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
245 } else if (data
== "debug") {
247 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
249 } else if (data
== "expand") {
251 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
262 char *begin(line
), *end(line
+ strlen(line
));
263 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
265 lines
.push_back(begin
);
269 lines
.push_back(begin
);
279 cy::parser
parser(driver
);
280 Setup(driver
, parser
);
282 driver
.data_
= command
.c_str();
283 driver
.size_
= command
.size();
285 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
286 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
287 cy::position
begin(error
->location_
.begin
);
288 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
289 cy::position
end(error
->location_
.end
);
291 if (begin
.line
!= lines
.size()) {
293 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
297 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
299 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
301 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
303 std::cerr
<< std::endl
;
306 std::cerr
<< error
->message_
<< std::endl
;
308 add_history(command
.c_str());
314 driver
.errors_
.clear();
321 if (driver
.program_
== NULL
)
327 std::ostringstream str
;
329 CYOutput
out(str
, options
);
331 out
<< *driver
.program_
;
336 add_history(command
.c_str());
340 std::cout
<< code
<< std::endl
;
342 Run(client
, code
, fout
, expand
);
345 if (append_history$
!= NULL
) {
346 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
347 (*append_history$
)(histlines
, histfile
);
349 write_history(histfile
);
356 static void *Map(const char *path
, size_t *psize
) {
358 _syscall(fd
= open(path
, O_RDONLY
));
361 _syscall(fstat(fd
, &stat
));
362 size_t size(stat
.st_size
);
367 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
373 void InjectLibrary(pid_t pid
);
375 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
376 bool tty(isatty(STDIN_FILENO
));
379 append_history$
= reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT
, "append_history"));
382 pid_t
pid(_not(pid_t
));
387 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
393 apr_status_t
status(apr_getopt(state
,
407 "usage: cycript [-c]"
411 " [<script> [<arg>...]]\n"
426 else if (strcmp(arg
, "bison") == 0)
430 fprintf(stderr
, "invalid name for -g\n");
437 else if (strcmp(arg
, "minify") == 0)
440 fprintf(stderr
, "invalid name for -n\n");
447 size_t size(strlen(arg
));
450 pid
= strtoul(arg
, &end
, 0);
451 if (arg
+ size
!= end
) {
452 // XXX: arg needs to be escaped in some horrendous way of doom
453 const char *command(apr_psprintf(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg
));
455 if (FILE *pids
= popen(command
, "r")) {
460 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
465 if (size
== sizeof(value
)) {
475 if (value
[size
- 1] == '\n') {
481 size
= strlen(value
);
482 pid
= strtoul(value
, &end
, 0);
483 if (value
+ size
!= end
) fail
:
485 _syscall(pclose(pids
));
488 if (pid
== _not(pid_t
)) {
489 fprintf(stderr
, "invalid pid for -p\n");
506 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
507 fprintf(stderr
, "-p cannot set argv\n");
511 if (pid
!= _not(pid_t
) && compile
) {
512 fprintf(stderr
, "-p conflicts with -c\n");
521 // XXX: const_cast?! wtf gcc :(
522 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
525 if (strcmp(script
, "-") == 0)
530 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
531 fprintf(stderr
, "non-terminal attaching to remote console\n");
539 if (pid
== _not(pid_t
))
542 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
543 struct sockaddr_un address
;
544 memset(&address
, 0, sizeof(address
));
545 address
.sun_family
= AF_UNIX
;
547 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
549 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
550 _syscall(chmod(address
.sun_path
, 0777));
553 _syscall(listen(server
, 1));
555 client
= _syscall(accept(server
, NULL
, NULL
));
558 unlink(address
.sun_path
);
562 _syscall(close(server
));
570 if (script
== NULL
&& tty
)
571 Console(pool
, client
);
573 CYDriver
driver(script
?: "<stdin>");
574 cy::parser
parser(driver
);
575 Setup(driver
, parser
);
579 if (script
== NULL
) {
583 driver
.file_
= stdin
;
586 start
= reinterpret_cast<char *>(Map(script
, &size
));
589 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
592 if (void *line
= memchr(start
, '\n', end
- start
))
593 start
= reinterpret_cast<char *>(line
);
598 driver
.data_
= start
;
599 driver
.size_
= end
- start
;
602 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
603 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
604 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
605 } else if (driver
.program_
!= NULL
)
607 std::string
code(start
, end
-start
);
608 Run(client
, code
, stdout
);
610 std::ostringstream str
;
612 CYOutput
out(str
, options
);
614 out
<< *driver
.program_
;
615 std::string
code(str
.str());
619 Run(client
, code
, stdout
);
626 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
627 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
629 if (status
!= APR_SUCCESS
) {
630 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
633 return Main(argc
, argv
, envp
);
634 } catch (const CYException
&error
) {
636 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));