]> git.saurik.com Git - cycript.git/blobdiff - Console.cpp
Renamed some types for GNUstep.
[cycript.git] / Console.cpp
index 3a911cd2e0d5b013488eee85493029947aa93969..7f979633511ea6c9e6257af20e116cb6799aa7b1 100644 (file)
@@ -37,9 +37,6 @@
 */
 /* }}} */
 
-#define _GNU_SOURCE
-
-#include <substrate.h>
 #include "cycript.hpp"
 
 #include <cstdio>
@@ -66,6 +63,8 @@
 #include <netinet/in.h>
 #include <sys/un.h>
 
+#include <apr_getopt.h>
+
 static volatile enum {
     Working,
     Parsing,
@@ -106,8 +105,11 @@ void Setup(CYDriver &driver, cy::parser &parser) {
         driver.strict_ = true;
 }
 
-void Setup(CYOutput &out) {
+void Setup(CYOutput &out, CYDriver &driver) {
     out.pretty_ = pretty_;
+
+    CYContext context(driver.pool_);
+    driver.program_->Replace(context);
 }
 
 void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expand = false) {
@@ -116,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);
@@ -293,8 +299,8 @@ static void Console(int socket) {
             else {
                 std::ostringstream str;
                 CYOutput out(str);
-                Setup(out);
-                driver.program_->Multiple(out);
+                Setup(out, driver);
+                out << *driver.program_;
                 code = str.str();
             }
         }
@@ -328,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 <pid>] [<script> [<arg>...]]\n");
-            return 1;
+#ifdef CY_ATTACH
+    pid_t pid(_not(pid_t));
+#endif
 
-        case 'c':
-            compile = true;
-        break;
+    CYPool pool;
+    apr_getopt_t *state;
+    _aprcall(apr_getopt_init(&state, pool, argc, argv));
 
-        case 'g':
-            if (false);
-#if YYDEBUG
-            else if (strcmp(optarg, "bison") == 0)
-                bison_ = true;
+    for (;;) {
+        char opt;
+        const char *arg;
+
+        apr_status_t status(apr_getopt(state,
+            "cg:n:"
+#ifdef CY_ATTACH
+            "p:"
 #endif
-            else {
-                fprintf(stderr, "invalid name for -g\n");
+            "s"
+        , &opt, &arg));
+
+        switch (status) {
+            case APR_EOF:
+                goto getopt;
+            case APR_BADCH:
+            case APR_BADARG:
+                fprintf(stderr,
+                    "usage: cycript [-c]"
+#ifdef CY_ATTACH
+                    " [-p <pid>]"
+#endif
+                    " [<script> [<arg>...]]\n"
+                );
                 return 1;
-            }
-        break;
+            default:
+                _aprcall(status);
+        }
 
-        case 'n':
-            if (false);
-            else if (strcmp(optarg, "minify") == 0)
-                pretty_ = true;
-            else {
-                fprintf(stderr, "invalid name for -n\n");
-                return 1;
-            }
-        break;
-
-        case 'p': {
-            size_t size(strlen(optarg));
-            char *end;
-            pid = strtoul(optarg, &end, 0);
-            if (optarg + size != end) {
-                fprintf(stderr, "invalid pid for -p\n");
-                return 1;
-            }
-        } break;
+        switch (opt) {
+            case 'c':
+                compile = true;
+            break;
+
+            case 'g':
+                if (false);
+#if YYDEBUG
+                else if (strcmp(arg, "bison") == 0)
+                    bison_ = true;
+#endif
+                else {
+                    fprintf(stderr, "invalid name for -g\n");
+                    return 1;
+                }
+            break;
+
+            case 'n':
+                if (false);
+                else if (strcmp(arg, "minify") == 0)
+                    pretty_ = true;
+                else {
+                    fprintf(stderr, "invalid name for -n\n");
+                    return 1;
+                }
+            break;
 
-        case 's':
-            strict_ = true;
-        break;
+#ifdef CY_ATTACH
+            case 'p': {
+                size_t size(strlen(arg));
+                char *end;
+                pid = strtoul(arg, &end, 0);
+                if (arg + size != end) {
+                    fprintf(stderr, "invalid pid for -p\n");
+                    return 1;
+                }
+            } break;
+#endif
+
+            case 's':
+                strict_ = true;
+            break;
+        }
     } getopt:;
 
     const char *script;
+    int ind(state->ind);
 
-    if (pid != _not(pid_t) && optind < argc - 1) {
+#ifdef CY_ATTACH
+    if (pid != _not(pid_t) && ind < argc - 1) {
         fprintf(stderr, "-p cannot set argv\n");
         return 1;
     }
@@ -392,24 +435,30 @@ int main(int argc, char *argv[]) {
         fprintf(stderr, "-p conflicts with -c\n");
         return 1;
     }
+#endif
 
-    if (optind == argc)
+    if (ind == argc)
         script = NULL;
     else {
+#ifdef CY_EXECUTE
         // XXX: const_cast?! wtf gcc :(
-        CYSetArgs(argc - optind - 1, const_cast<const char **>(argv + optind + 1));
-        script = argv[optind];
+        CYSetArgs(argc - ind - 1, const_cast<const char **>(argv + ind + 1));
+#endif
+        script = argv[ind];
         if (strcmp(script, "-") == 0)
             script = NULL;
     }
 
-    if (script == NULL && !tty && pid != _not(pid_t)) {
-        fprintf(stderr, "non-terminal attaching to remove console\n");
+#ifdef CY_ATTACH
+    if (pid != _not(pid_t) && script == NULL && !tty) {
+        fprintf(stderr, "non-terminal attaching to remote console\n");
         return 1;
     }
+#endif
 
     int socket;
 
+#ifdef CY_ATTACH
     if (pid == _not(pid_t))
         socket = -1;
     else {
@@ -422,6 +471,9 @@ int main(int argc, char *argv[]) {
 
         _syscall(connect(socket, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
     }
+#else
+    socket = -1;
+#endif
 
     if (script == NULL && tty)
         Console(socket);
@@ -464,8 +516,8 @@ int main(int argc, char *argv[]) {
             else {
                 std::ostringstream str;
                 CYOutput out(str);
-                Setup(out);
-                driver.program_->Multiple(out);
+                Setup(out, driver);
+                out << *driver.program_;
                 std::string code(str.str());
                 if (compile)
                     std::cout << code;