]> git.saurik.com Git - cycript.git/blobdiff - libcycript.cy
Allow injection as thread in running Java process.
[cycript.git] / libcycript.cy
index 45caaf2ff15d75e34e8d771833af76d2e02bda82..8240a44def2fb362e88748f0557aed905e750d9c 100644 (file)
 **/
 /* }}} */
 
-var process = {
-    env: {},
-};
-
 (function() {
 
 this.typeid = function(object) {
@@ -188,6 +184,26 @@ Java.on('setup', function() {
                 this.put(key, value);
         },
     });
+
+    $cy_set(java.lang.Throwable.prototype, {
+        toCYON: function() {
+            var message = this.getMessage();
+            if (message == null)
+                message = '';
+            else
+                message = message.toCYON();
+
+            let stack = this.getStackTrace();
+            if (stack.length == 0)
+                stack = '';
+            else {
+                stack = stack.join('\n    ');
+                stack = ` /*\n    ${stack} */`;
+            }
+
+            return `new ${this.constructor.class.getName()}(${message})${stack}`;
+        },
+    });
 });
 
 }
@@ -428,6 +444,8 @@ process.binding = function(name) {
     return binding;
 };
 
+process.env = {};
+
 let environ = *(typedef char ***)(dlsym(RTLD_DEFAULT, "environ"));
 for (let i = 0; environ[i] != null; ++i) {
     let assign = environ[i];