]> git.saurik.com Git - cycript.git/commitdiff
Remove system.global temporarily, added libffi Depends:, and setup REPL with _ variab...
authorJay Freeman (saurik) <saurik@saurik.com>
Fri, 9 Oct 2009 18:35:06 +0000 (18:35 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Fri, 9 Oct 2009 18:35:06 +0000 (18:35 +0000)
Application.mm
Library.mm
Output.cpp
control
cycript.hpp
todo.txt

index 31b7a45679166f05977763526d87724ee6c91b84..49828302de9d80e7471fedef2b6296230985e8f5 100644 (file)
 
 static jmp_buf ctrlc_;
 
 
 static jmp_buf ctrlc_;
 
-void sigint(int) {
+static void sigint(int) {
     longjmp(ctrlc_, 1);
 }
 
     longjmp(ctrlc_, 1);
 }
 
+static JSStringRef Result_;
+
 void Run(const char *code, FILE *fout) { _pooled
     JSStringRef script(JSStringCreateWithUTF8CString(code));
 
 void Run(const char *code, FILE *fout) { _pooled
     JSStringRef script(JSStringCreateWithUTF8CString(code));
 
@@ -50,6 +52,8 @@ void Run(const char *code, FILE *fout) { _pooled
         if (exception != NULL)
             goto error;
 
         if (exception != NULL)
             goto error;
 
+        CYSetProperty(context, CYGetGlobalObject(context), Result_, result);
+
         if (fout != NULL) {
             fputs(json, fout);
             fputs("\n", fout);
         if (fout != NULL) {
             fputs(json, fout);
             fputs("\n", fout);
@@ -58,7 +62,7 @@ void Run(const char *code, FILE *fout) { _pooled
     }
 }
 
     }
 }
 
-void Console() {
+static void Console() {
     bool bypass(false);
     bool debug(false);
 
     bool bypass(false);
     bool debug(false);
 
@@ -160,7 +164,7 @@ void Console() {
     fflush(fout);
 }
 
     fflush(fout);
 }
 
-void *Map(const char *path, size_t *psize) {
+static void *Map(const char *path, size_t *psize) {
     int fd;
     _syscall(fd = open(path, O_RDONLY));
 
     int fd;
     _syscall(fd = open(path, O_RDONLY));
 
@@ -187,6 +191,8 @@ int main(int argc, const char *argv[]) {
         script = argv[1];
     }
 
         script = argv[1];
     }
 
+    Result_ = CYCopyJSString("_");
+
     if (script == NULL || strcmp(script, "-") == 0)
         Console();
     else {
     if (script == NULL || strcmp(script, "-") == 0)
         Console();
     else {
index 5f22d299fb85a3f551a69511701696503dbfdefc..ef85e4c53b937084f3bf4141cfd54589fa8468b2 100644 (file)
@@ -1725,6 +1725,10 @@ void CYSetArgs(int argc, const char *argv[]) {
     CYSetProperty(context, System_, CYJSString("args"), array);
 }
 
     CYSetProperty(context, System_, CYJSString("args"), array);
 }
 
+JSObjectRef CYGetGlobalObject(JSContextRef context) {
+    return JSContextGetGlobalObject(context);
+}
+
 MSInitialize { _pooled
     apr_initialize();
 
 MSInitialize { _pooled
     apr_initialize();
 
@@ -1807,10 +1811,10 @@ MSInitialize { _pooled
     JSGlobalContextRef context(JSGlobalContextCreate(Global));
     Context_ = context;
 
     JSGlobalContextRef context(JSGlobalContextCreate(Global));
     Context_ = context;
 
-    JSObjectRef global(JSContextGetGlobalObject(context));
+    JSObjectRef global(CYGetGlobalObject(context));
 
     JSObjectSetPrototype(context, global, JSObjectMake(context, Runtime_, NULL));
 
     JSObjectSetPrototype(context, global, JSObjectMake(context, Runtime_, NULL));
-    CYSetProperty(context, global, CYJSString("obc"), JSObjectMake(context, Runtime_, NULL));
+    CYSetProperty(context, global, CYJSString("ObjectiveC"), JSObjectMake(context, Runtime_, NULL));
 
     CYSetProperty(context, global, CYJSString("Selector"), JSObjectMakeConstructor(context, Selector_, &Selector_new));
     CYSetProperty(context, global, CYJSString("Functor"), JSObjectMakeConstructor(context, Functor_, &Functor_new));
 
     CYSetProperty(context, global, CYJSString("Selector"), JSObjectMakeConstructor(context, Selector_, &Selector_new));
     CYSetProperty(context, global, CYJSString("Functor"), JSObjectMakeConstructor(context, Functor_, &Functor_new));
@@ -1821,7 +1825,7 @@ MSInitialize { _pooled
     System_ = JSObjectMake(context, NULL, NULL);
     CYSetProperty(context, global, CYJSString("system"), System_);
     CYSetProperty(context, System_, CYJSString("args"), CYJSNull(context));
     System_ = JSObjectMake(context, NULL, NULL);
     CYSetProperty(context, global, CYJSString("system"), System_);
     CYSetProperty(context, System_, CYJSString("args"), CYJSNull(context));
-    CYSetProperty(context, System_, CYJSString("global"), global);
+    //CYSetProperty(context, System_, CYJSString("global"), global);
 
     CYSetProperty(context, System_, CYJSString("print"), JSObjectMakeFunctionWithCallback(context, CYJSString("print"), &System_print));
 
 
     CYSetProperty(context, System_, CYJSString("print"), JSObjectMakeFunctionWithCallback(context, CYJSString("print"), &System_print));
 
index 7eee6786dca61e29e59f8cf4b043bf7faf736e0a..0728e82ccd38f5f3d5404e25a2f9d79f85633602 100644 (file)
@@ -428,7 +428,8 @@ void CYPrefix::Output(std::ostream &out, CYFlags flags) const {
 }
 
 void CYProperty::Output(std::ostream &out) const {
 }
 
 void CYProperty::Output(std::ostream &out) const {
-    out << *name_ << ':';
+    out << *name_;
+    out << ':';
     value_->Output(out, CYPA, CYNoFlags);
     if (next_ != NULL) {
         out << ',';
     value_->Output(out, CYPA, CYNoFlags);
     if (next_ != NULL) {
         out << ',';
diff --git a/control b/control
index 9d3aba318e55bd9931350bbe2d13b17089998ae0..95f40bd390bd306342398388122fd292d10a8da1 100644 (file)
--- a/control
+++ b/control
@@ -3,10 +3,10 @@ Priority: optional
 Section: Development
 Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
 Architecture: iphoneos-arm
 Section: Development
 Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
 Architecture: iphoneos-arm
-Version: 0.9.3-1
+Version: 0.9.65-1
 Description: runtime execution server and disassembler
 Name: Cycript
 Description: runtime execution server and disassembler
 Name: Cycript
-Depends: mobilesubstrate (>= 0.9.3005-1), readline
+Depends: mobilesubstrate (>= 0.9.3005-1), readline, libffi
 Author: Jay Freeman (saurik) <saurik@saurik.com>
 Depiction: http://cydia.saurik.com/info/cycript/
 Tag: purpose::daemon, role::developer
 Author: Jay Freeman (saurik) <saurik@saurik.com>
 Depiction: http://cydia.saurik.com/info/cycript/
 Tag: purpose::daemon, role::developer
index b73d5c640abb303d9f8277bd9a111dd4e2658fe2..3f957256374e0f326b40ec80aec930e7dc3daee7 100644 (file)
@@ -13,5 +13,8 @@
 JSGlobalContextRef CYGetJSContext();
 const char *CYPoolJSONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception);
 void CYSetArgs(int argc, const char *argv[]);
 JSGlobalContextRef CYGetJSContext();
 const char *CYPoolJSONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception);
 void CYSetArgs(int argc, const char *argv[]);
+void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value);
+JSObjectRef CYGetGlobalObject(JSContextRef context);
+JSStringRef CYCopyJSString(const char *value);
 
 #endif/*CYCRIPT_HPP*/
 
 #endif/*CYCRIPT_HPP*/
index d79c30507a15b275d57dabcd524ead23de14e054..53ef7bf307f64adf112ea9e169ada88fa9b9cc1e 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,4 +1,5 @@
 labelled statements don't get labelled
 blocks and empty statements are poorly factored
 labelled statements don't get labelled
 blocks and empty statements are poorly factored
+property labels should get minimized
 functors use both ffiData and ffoData...
 rename "data" variables to "internal"
 functors use both ffiData and ffoData...
 rename "data" variables to "internal"