X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/b15898455c67b0ec79886a244d436ea1097552b8..6a9812501258df26b7c487e50744b91abe8ebe39:/Console.cpp diff --git a/Console.cpp b/Console.cpp index 754422e..65eeb4f 100644 --- a/Console.cpp +++ b/Console.cpp @@ -1,4 +1,4 @@ -/* Cycript - Remove Execution Server and Disassembler +/* Cycript - Inlining/Optimizing JavaScript Compiler * Copyright (C) 2009 Jay Freeman (saurik) */ @@ -39,6 +39,10 @@ #include "cycript.hpp" +#ifdef CY_EXECUTE +#include "JavaScript.hpp" +#endif + #include #include @@ -66,6 +70,8 @@ #include +#include + static volatile enum { Working, Parsing, @@ -109,15 +115,16 @@ void Setup(CYDriver &driver, cy::parser &parser) { void Setup(CYOutput &out, CYDriver &driver) { out.pretty_ = pretty_; - CYContext context(driver.pool_); + CYOptions options; + CYContext context(driver.pool_, options); driver.program_->Replace(context); } -void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expand = false) { +void Run(int client, const char *data, size_t size, FILE *fout = NULL, bool expand = false) { CYPool pool; const char *json; - if (socket == -1) { + if (client == -1) { mode_ = Running; #ifdef CY_EXECUTE json = CYExecute(pool, data); @@ -129,15 +136,15 @@ void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expa size = strlen(json); } else { mode_ = Sending; - CYSendAll(socket, &size, sizeof(size)); - CYSendAll(socket, data, size); + CYSendAll(client, &size, sizeof(size)); + CYSendAll(client, data, size); mode_ = Waiting; - CYRecvAll(socket, &size, sizeof(size)); + CYRecvAll(client, &size, sizeof(size)); if (size == _not(size_t)) json = NULL; else { char *temp(new(pool) char[size + 1]); - CYRecvAll(socket, temp, size); + CYRecvAll(client, temp, size); temp[size] = '\0'; json = temp; } @@ -170,11 +177,13 @@ void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expa } } -void Run(int socket, std::string &code, FILE *fout = NULL, bool expand = false) { - Run(socket, code.c_str(), code.size(), fout, expand); +void Run(int client, std::string &code, FILE *fout = NULL, bool expand = false) { + Run(client, code.c_str(), code.size(), fout, expand); } -static void Console(apr_pool_t *pool, int socket) { +int (*append_history$)(int, const char *); + +static void Console(apr_pool_t *pool, int client) { passwd *passwd; if (const char *username = getenv("LOGNAME")) passwd = getpwnam(username); @@ -222,6 +231,8 @@ static void Console(apr_pool_t *pool, int socket) { mode_ = Working; if (line == NULL) break; + if (line[0] == '\0') + goto read; if (!extra) { extra = true; @@ -310,11 +321,12 @@ static void Console(apr_pool_t *pool, int socket) { if (driver.program_ == NULL) goto restart; - if (socket != -1) + if (client != -1) code = command; else { std::ostringstream str; - CYOutput out(str); + CYOptions options; + CYOutput out(str, options); Setup(out, driver); out << *driver.program_; code = str.str(); @@ -327,11 +339,15 @@ static void Console(apr_pool_t *pool, int socket) { if (debug) std::cout << code << std::endl; - Run(socket, code, fout, expand); + Run(client, code, fout, expand); } - _syscall(close(_syscall(open(histfile, O_CREAT | O_WRONLY, 0600)))); - append_history(histlines, histfile); + if (append_history$ != NULL) { + _syscall(close(_syscall(open(histfile, O_CREAT | O_WRONLY, 0600)))); + (*append_history$)(histlines, histfile); + } else { + write_history(histfile); + } fputs("\n", fout); fflush(fout); @@ -354,12 +370,14 @@ static void *Map(const char *path, size_t *psize) { return base; } -int main(int argc, char const * const argv[], char const * const envp[]) { - _aprcall(apr_app_initialize(&argc, &argv, &envp)); +void InjectLibrary(pid_t pid); +int Main(int argc, char const * const argv[], char const * const envp[]) { bool tty(isatty(STDIN_FILENO)); bool compile(false); + append_history$ = reinterpret_cast(dlsym(RTLD_DEFAULT, "append_history")); + #ifdef CY_ATTACH pid_t pid(_not(pid_t)); #endif @@ -388,7 +406,7 @@ int main(int argc, char const * const argv[], char const * const envp[]) { fprintf(stderr, "usage: cycript [-c]" #ifdef CY_ATTACH - " [-p ]" + " [-p ]" #endif " [