X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/1e7ce5572cfc83d260cbe73d66814f54e5760c37..697d6fd2b2bf66a1f0bf1f28de0ced96fc14cbfc:/Console.cpp diff --git a/Console.cpp b/Console.cpp index 0c5a13b..7f97963 100644 --- a/Console.cpp +++ b/Console.cpp @@ -37,8 +37,6 @@ */ /* }}} */ -#define _GNU_SOURCE - #include "cycript.hpp" #include @@ -65,6 +63,8 @@ #include #include +#include + static volatile enum { Working, Parsing, @@ -118,7 +118,11 @@ void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expa const char *json; if (socket == -1) { mode_ = Running; +#ifdef CY_EXECUTE json = CYExecute(pool, data); +#else + json = NULL; +#endif mode_ = Working; if (json != NULL) size = strlen(json); @@ -330,62 +334,99 @@ static void *Map(const char *path, size_t *psize) { return base; } -int main(int argc, char *argv[]) { +int main(int argc, char const * const argv[], char const * const envp[]) { + _aprcall(apr_app_initialize(&argc, &argv, &envp)); + bool tty(isatty(STDIN_FILENO)); - pid_t pid(_not(pid_t)); bool compile(false); - for (;;) switch (getopt(argc, argv, "cg:n:p:s")) { - case -1: - goto getopt; - case '?': - fprintf(stderr, "usage: cycript [-c] [-p ] [