]>
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"
41 #include "Context.hpp"
44 #include "JavaScript.hpp"
52 #include <readline/readline.h>
53 #include <readline/history.h>
60 #include <sys/types.h>
64 #include "Cycript.tab.hh"
66 #include <sys/types.h>
67 #include <sys/socket.h>
68 #include <netinet/in.h>
72 #include <apr_getopt.h>
76 static volatile enum {
84 static jmp_buf ctrlc_
;
86 static void sigint(int) {
107 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
110 parser
.set_debug_level(1);
113 driver
.strict_
= true;
116 void Setup(CYOutput
&out
, CYDriver
&driver
) {
117 out
.pretty_
= pretty_
;
120 CYContext
context(driver
.pool_
, options
);
121 driver
.program_
->Replace(context
);
124 void Run(int client
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
131 json
= CYExecute(pool
, data
);
140 CYSendAll(client
, &size
, sizeof(size
));
141 CYSendAll(client
, data
, size
);
143 CYRecvAll(client
, &size
, sizeof(size
));
144 if (size
== _not(size_t))
147 char *temp(new(pool
) char[size
+ 1]);
148 CYRecvAll(client
, temp
, size
);
155 if (json
!= NULL
&& fout
!= NULL
) {
156 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
158 else for (size_t i(0); i
!= size
; ++i
)
160 fputc(json
[i
], fout
);
161 else switch(json
[++i
]) {
162 case '\0': goto done
;
163 case '\\': fputc('\\', fout
); break;
164 case '\'': fputc('\'', fout
); break;
165 case '"': fputc('"', fout
); break;
166 case 'b': fputc('\b', fout
); break;
167 case 'f': fputc('\f', fout
); break;
168 case 'n': fputc('\n', fout
); break;
169 case 'r': fputc('\r', fout
); break;
170 case 't': fputc('\t', fout
); break;
171 case 'v': fputc('\v', fout
); break;
172 default: fputc('\\', fout
); --i
; break;
181 void Run(int client
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
182 Run(client
, code
.c_str(), code
.size(), fout
, expand
);
185 int (*append_history$
)(int, const char *);
187 static void Console(apr_pool_t
*pool
, int client
) {
189 if (const char *username
= getenv("LOGNAME"))
190 passwd
= getpwnam(username
);
192 passwd
= getpwuid(getuid());
194 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
195 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
198 mkdir(basedir
, 0700);
199 read_history(histfile
);
207 rl_bind_key('\t', rl_insert
);
209 struct sigaction action
;
210 sigemptyset(&action
.sa_mask
);
211 action
.sa_handler
= &sigint
;
213 sigaction(SIGINT
, &action
, NULL
);
217 std::vector
<std::string
> lines
;
220 const char *prompt("cy# ");
222 if (setjmp(ctrlc_
) != 0) {
231 char *line(readline(prompt
));
240 if (line
[0] == '?') {
241 std::string
data(line
+ 1);
242 if (data
== "bypass") {
244 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
246 } else if (data
== "debug") {
248 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
250 } else if (data
== "expand") {
252 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
263 char *begin(line
), *end(line
+ strlen(line
));
264 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
266 lines
.push_back(begin
);
270 lines
.push_back(begin
);
280 cy::parser
parser(driver
);
281 Setup(driver
, parser
);
283 driver
.data_
= command
.c_str();
284 driver
.size_
= command
.size();
286 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
287 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
288 cy::position
begin(error
->location_
.begin
);
289 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
290 cy::position
end(error
->location_
.end
);
292 if (begin
.line
!= lines
.size()) {
294 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
298 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
300 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
302 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
304 std::cerr
<< std::endl
;
307 std::cerr
<< error
->message_
<< std::endl
;
309 add_history(command
.c_str());
315 driver
.errors_
.clear();
322 if (driver
.program_
== NULL
)
328 std::ostringstream str
;
330 CYOutput
out(str
, options
);
332 out
<< *driver
.program_
;
337 add_history(command
.c_str());
341 std::cout
<< code
<< std::endl
;
343 Run(client
, code
, fout
, expand
);
346 if (append_history$
!= NULL
) {
347 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
348 (*append_history$
)(histlines
, histfile
);
350 write_history(histfile
);
357 static void *Map(const char *path
, size_t *psize
) {
359 _syscall(fd
= open(path
, O_RDONLY
));
362 _syscall(fstat(fd
, &stat
));
363 size_t size(stat
.st_size
);
368 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
374 void InjectLibrary(pid_t pid
);
376 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
377 bool tty(isatty(STDIN_FILENO
));
380 append_history$
= reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT
, "append_history"));
383 pid_t
pid(_not(pid_t
));
388 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
394 apr_status_t
status(apr_getopt(state
,
408 "usage: cycript [-c]"
412 " [<script> [<arg>...]]\n"
427 else if (strcmp(arg
, "bison") == 0)
431 fprintf(stderr
, "invalid name for -g\n");
438 else if (strcmp(arg
, "minify") == 0)
441 fprintf(stderr
, "invalid name for -n\n");
448 size_t size(strlen(arg
));
451 pid
= strtoul(arg
, &end
, 0);
452 if (arg
+ size
!= end
) {
453 // XXX: arg needs to be escaped in some horrendous way of doom
454 const char *command(apr_psprintf(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg
));
456 if (FILE *pids
= popen(command
, "r")) {
461 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
466 if (size
== sizeof(value
)) {
476 if (value
[size
- 1] == '\n') {
482 size
= strlen(value
);
483 pid
= strtoul(value
, &end
, 0);
484 if (value
+ size
!= end
) fail
:
486 _syscall(pclose(pids
));
489 if (pid
== _not(pid_t
)) {
490 fprintf(stderr
, "invalid pid for -p\n");
507 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
508 fprintf(stderr
, "-p cannot set argv\n");
512 if (pid
!= _not(pid_t
) && compile
) {
513 fprintf(stderr
, "-p conflicts with -c\n");
522 // XXX: const_cast?! wtf gcc :(
523 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
526 if (strcmp(script
, "-") == 0)
531 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
532 fprintf(stderr
, "non-terminal attaching to remote console\n");
540 if (pid
== _not(pid_t
))
543 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
544 struct sockaddr_un address
;
545 memset(&address
, 0, sizeof(address
));
546 address
.sun_family
= AF_UNIX
;
548 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
550 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
551 _syscall(chmod(address
.sun_path
, 0777));
554 _syscall(listen(server
, 1));
556 client
= _syscall(accept(server
, NULL
, NULL
));
559 unlink(address
.sun_path
);
563 _syscall(close(server
));
571 if (script
== NULL
&& tty
)
572 Console(pool
, client
);
574 CYDriver
driver(script
?: "<stdin>");
575 cy::parser
parser(driver
);
576 Setup(driver
, parser
);
580 if (script
== NULL
) {
584 driver
.file_
= stdin
;
587 start
= reinterpret_cast<char *>(Map(script
, &size
));
590 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
593 if (void *line
= memchr(start
, '\n', end
- start
))
594 start
= reinterpret_cast<char *>(line
);
599 driver
.data_
= start
;
600 driver
.size_
= end
- start
;
603 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
604 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
605 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
606 } else if (driver
.program_
!= NULL
)
608 std::string
code(start
, end
-start
);
609 Run(client
, code
, stdout
);
611 std::ostringstream str
;
613 CYOutput
out(str
, options
);
615 out
<< *driver
.program_
;
616 std::string
code(str
.str());
620 Run(client
, code
, stdout
);
627 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
628 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
630 if (status
!= APR_SUCCESS
) {
631 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
634 return Main(argc
, argv
, envp
);
635 } catch (const CYException
&error
) {
637 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));