1 <html><head><title>Cycript
</title>
4 <h1>Cycript: Objective-JavaScript
</h1>
6 <h3>What is Cycript?
</h3>
8 <p>A programming language designed to blend the barrier between Objective-C and JavaScript. This project has similar goals to JSCocoa, but a very different set of starting technologies and a different guiding philosophy. In particular, Cycript has started life with a full-blown JavaScript parser/serializer, allowing it to have interesting hybrid syntax without constraints (such as those imposed on JSCocoa by JSLint).
</p>
12 <p>Well, it works ;P. It is still "in flux": core language features are changing every few hours. However, it has already changed the workflow of the "elite" iPhone developers that write most of the extensions you see in Cydia: having a language that changes doesn't matter when you are mostly using it at the immediate console. I'm hoping, however, that I manage tolock it into something that feels "correct" in the very near future.
</p>
14 <h3>How do you pronounce "Cycript"?
</h3>
16 <p>I pronounce it "sscript" (with a geminate, aka long, 's'). I doubt anyone else will pronounce it like this, but I have my hopes.
</p>
18 <h3>Where do I get it?
</h3>
20 <p>Right now you can find releases of it at:
<a href=
"http://www.cycript.org/debs/">http://www.cycript.org/debs/
</a>. This package depends on MobileSubstrate and libffi (both of which are in Cydia). Note that Cycript is an open source project, with its source code available at:
<a href=
"http://svn.saurik.com/repos/cycript/trunk/">http://svn.saurik.com/repos/cycript/trunk/
</a>. There is an IRC channel at irc.saurik.com, #cycript.
</p>
22 <h3>So, how do I use it?!
</h3>
24 <p>Although you can write full applications in Cycript, the fastest way to get playing with it is via the immediate console: just type "cycript".
<p>
26 <xmp>iPhone:~$ cycript
29 <p>Code typed at this prompt will be executed as it is able to be parsed: the immediate console is trying to eagerly parse lines of code as they come in (and thereby is not subject to automatic-semicolon insertion, for those JavaScript experts). Parse errors will be noted to the output in a hopefully useful fashion.
</p>
31 <xmp>cy# function a() {
34 | syntax error, unexpected Identifier, expecting ; or "\n"
37 <p>It should be noted that it is possible that you will manage to break my JavaScript serializer. In these cases, parse errors may be thrown by the underlying JavaScript engine rather than Cycript. To debug these issues you can use the special console command ?debug.
</p>
41 cy# var a = ((
0 + (
1)) * (
2 *
3)) + m['a']('\'')
42 var a=(
0+
1)*(
2*
3)+m.a("'");
45 <p>Because Cycript is implemented as a Cycript-
>JavaScript compiler, it is able to add functionality that may be lacking in the underlying JavaScript implementation. Right now, Cycript supports array comprehensions and for each loops.
</p>
47 <xmp>cy# function range(b, e) { var q = []; for (var i = b; i != e; ++i) q.push(i); return q; }
50 cy# e = []; for each (var i in range(
1,
4)) e.push(i); e
51 e=[];with({$cys:
0,$cyt:
0}){$cys=range(
1,
4);for($cyt in $cys){i=$cys[$cyt];e.push(i);}}e;
53 cy# evens = [i for each (i in range(
0,
21)) if (i %
2 ==
0)]
54 evens=(function($cyv,i){$cyv=[];(function($cys){$cys=range(
0,
21);for(i in $cys){i=$cys[i];if(i%
2==
0)$cyv.push(i);}}());return $cyv;}());
55 [
0,
2,
4,
6,
8,
10,
12,
14,
16,
18,
20]
</xmp>
57 <p>In addition to standard JavaScript, you an also access anything in the Objective-C runtime. Attempts have been made, sparingly, to bridge syntax when possible between the two environments. In particular, you may notice interesting properties of arrays, dictonaries, strings, and numbers. Care has been taken to minimize the damage to the object model.
</p>
59 <xmp>cy# var a = [NSMutableArray arrayWithCapacity:
4]
60 cy# a instanceof Array
64 cy# [a addObject:"hello"]; a
66 cy# a[
1] =
4; a.push(
10); a
68 cy# a.splice(
1,
1,
6,
7); a
70 cy# b = [
1,
2]; [b replaceObjectAtIndex:
0 withObject:
5]; b
73 <p>Memory management is mostly automatic, but instead of using the usual -[alloc] message you will need to use JavaScript's "new" operator, which returns a special "uninitialized" handle that can be used to send a single message (probably a form of init) before it "expires" and reverts to nil.
</p>
75 <xmp>cy# var a = new NSMutableDictionary
77 "*** -[NSCFDictionary count]: method sent to an uninitialized mutable dictionary object"
78 cy# var b = [a init]; b
82 cy# var q = [new NSString init]; q
85 <p>One note in particular is made about selectors. Not only do they act as in Objective-C, including being typed using @selector notation, but they also have Function.prototype in their prototype-chain, allowing you to use them in interesting functional ways ala JavaScript. You can also generate one from a string using new Selector().
</p>
87 <xmp>cy# var sel = @selector(initWithFrame:)
89 @selector(initWithFrame:)
90 cy# sel.call(new UIView, [UIHardware fullScreenApplicationContentRect])
91 "
<UIView: 0x22dae0; frame = (
0 20;
320 460); layer =
<CALayer: 0x209990>>"
92 cy# new Selector("initWithFrame:
")
93 @selector(initWithFrame:)</xmp>
95 <p>As one would expect from JavaScript, objects have a property called constructor that references their class. You can also add methods along the prototype chain to instances. Eventually, all objects go through Instance, where you can put functions that should be available for all Objective-C classes.</p>
97 <xmp>cy# Instance.prototype.getMethod = function (sel) { return class_getInstanceMethod(this, sel); }
99 cy# NSObject.getMethod(@selector(init))
101 cy# NSObject.prototype.getMethod = function (sel) { return "ark"; }
103 cy# NSObject.getMethod(@selector(init))
106 <p>Given that sending messages is actually a different namespace than function resolution, it is important to separate out the analog of a "prototype" in the world of Objective-C from that in JavaScript. Therefore, a field called "messages" (may change) is also added to Class objects. These messages can even be traded around and reassigned, with the results fully mapping back to the Objective-C runtime.
</p>
108 <xmp>cy# var view = [new UIView init]
111 cy# view.constructor.messages['description']
113 cy# [view description]
114 "
<UIView: 0x229bc0; frame = (
0 0;
0 0); layer =
<CALayer: 0x229d60>>"
115 cy# view.constructor.messages['description'] = function () { return "not!
"; }
117 cy# [view description]
120 <p>Structures are also supported (although unions are currently on the todo list and bitfields are still DOA): they are bridged back/forth as much as possible. You can specify them using either array syntax or in the form of dictionaries.</p>
122 <xmp>cy# var rect = [UIHardware fullScreenApplicationContentRect]
124 {origin:{x:0,y:20},size:{width:320,height:460}}
125 cy# rect.origin = [2, 3]
127 cy# rect.size = {width: 0, height: 1}
130 {origin:{x:2,y:3},size:{width:0,height:1}}</xmp>
132 <p>Access, allocation, and casting of pointers is possible through the usage of the Pointer and Type classes. Pointers can be indirected using the * and -> operators, as in C.</p>
134 <xmp>cy# var count = new new Type("I")
135 cy# var methods = class_copyMethodList(UIApplication, count)
138 cy# *new Pointer(count, "d")
139 7.304555902977629e-304
145 cy# method_getName(methods[
304])
146 @selector(init)
</xmp>
148 <p>Objective-C @properties (some of which are auto-detected, as Apple doesn't always compile them into the resulting binaries) can be accessed using . notation. Currently, auto-detected @properties are usable, but aren't enumerable. This namespace is strictly separated from that of instance variables, which you can access by indirecting the object using * or -
>.
</p>
150 <xmp>cy# var view = [new UIView init]
151 cy# ps = []; for (var p in view) ps.push(p); ps
152 ["skipsSubviewEnumeration","gestureRecognizers","gesturesEnabled","capturesDescendantTouches","deliversTouchesForGesturesToSuperview","userInteractionEnabled","layer","tag"]
153 cy# vs = []; for (var v in *view) vs.push(v); vs
154 ["isa","_layer","_tapInfo","_gestureInfo","_gestureRecognizers","_charge","_tag","_viewFlags"]
156 "
<CALayer: 0x228f60>"
158 "<CALayer: 0x228f60>"
160 "<CALayer: 0x228f60>"</xmp>
162 <p>Fully-fledged Objective-C classes can also be declared using @implementation, which also takes on functionality of Objective-C's @interface. Right now, declaring instance variables are not supported, but will be in a future version: for now you must provide an empty variable block.</p>
164 <xmp>cy# @implementation TestClass : NSObject {
170 cy# [new TestClass init]
173 <p>The @implementation syntax can also be used to extend existing classes in the form of an Objective-C category. Note that type signatures, however, are not yet supported, so you end up heavily restricted in what you can add via this mechanism. In this case, one can also use a parenthesized expression as the class name.
</p>
175 <xmp>cy# @implementation NSObject (MyStuff)
176 cy
> - description { return "replaced"; }
178 cy# var o = [new NSObject init]
181 cy# @implementation ([o class]) (MyStuff) - description { return "again"; } @end
185 <p>Cycript is also capable of accessing normal C functions and variables. Knowledge of the type signatures of various functions are provided in the bridge definition file, which is currently a plist stored at /usr/lib/libcycript.plist.
</p>
189 cy# var p = malloc(
4)
195 <p>Cycript attempts to do its best to serialize information to the console about objects. In particular, CoreFoundaton objects bridged to Objective-C are detected and printed using CFCopyDescription.
</p>
197 <xmp>cy# UIGetScreenImage()
199 cy# ABAddressBookCreate()
200 "<ABCAddressBook 0x229cf0 [
0x38208484]
>"</xmp>
202 <h3>How do I write an application with it?</h3>
204 <p>This isn't quite "ready for primetime", but you can download the example HelloCycript.app from
<a href=
"http://www.cycript.org/examples/">http://www.cycript.org/examples/
</a> and put it in /Applicatons.
</p>
206 <h3>What else can it do?
</h3>
208 <p>Probably the awesomest thing you can do with Cycript is to hook into an existing process using the -p argument to the console interpreter. As an example, let's hook our way into SpringBoard and start spelunking.
</p>
210 <xmp>iPhone:~$ ps ax | grep Spring
211 18110 ?? Us
0:
03.03 /System/Library/CoreServices/SpringBoard.app/SpringBoard
212 18115 s006 S+
0:
00.02 grep --color=auto --exclude=.svn Spring
213 iPhone:~$ cycript -p
18110
215 "
<SpringBoard: 0x266f00>"
216 cy# UIApp->_uiController.window
217 "<SBAppWindow: 0x27ac10; baseClass = UIWindow; frame = (
0 0;
320 480); layer =
<CALayer: 0x27aba0>>"
218 cy# UIApp->_uiController.window.subviews
219 ["<UIView: 0x4a6efa0; frame = (
0 0;
320 480); autoresize = W+H; layer =
<CALayer: 0x4a62d70>>","<SBAppContextHostView: 0x49a68f0; frame = (
0 0;
320 480); clipsToBounds = YES; hidden = YES; layer =
<CALayer: 0x2b4d10>> enabled: yes, context array: (\n)","
<SBAppContextHostView: 0x4b5ccf0; frame = (
0 0;
320 480); clipsToBounds = YES; hidden = YES; layer =
<CALayer: 0x4b7f180>> enabled: yes, context array: (\n)"]
220 cy# UIApp-
>_uiController.window.subviews[
0].subviews
221 ["
<UIImageView: 0x4b3cea0; frame = (
0 0;
320 480); opaque = NO; userInteractionEnabled = NO; layer =
<CALayer: 0x4a75550>>","<UIView: 0x4b4ba80; frame = (
0 0;
320 480); autoresize = W+H; layer =
<CALayer: 0x4b4bbf0>>"]
222 cy# UIApp->_uiController.window.subviews[0].subviews[0].image.size
223 {width:320,height:480}
224 cy# UIApp->_uiController.window.subviews[0].subviews[1].subviews
225 ["<SBIconContentView: 0x4b4bc20; frame = (
0 40;
320 349); autoresize = H; layer =
<CALayer: 0x4a613c0>>","<UIView: 0x4a25250; frame = (
0 389;
320 91); layer =
<CALayer: 0x4a38630>>"]
226 cy# UIApp->_uiController.window.subviews[0].subviews[1].subviews[0].subviews
227 ["<SBIconListPageControl: 0x27aab0; baseClass = UIPageControl; frame = (
0 330;
320 19); autoresize = TM; layer =
<CALayer: 0x4b3c370>>","<SBIconScrollView: 0x4a62360; baseClass = UIScrollView; frame = (
0 0;
320 330); autoresize = H; layer =
<CALayer: 0x4a624e0>>"]
228 cy# var pages = UIApp->_uiController.window.subviews[0].subviews[1].subviews[0].subviews[0]
229 cy# pages.currentPage
231 cy# pages.numberOfPages