1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 this.typeid = function(object) {
32 let $cy_set = function(object, properties) {
33 for (const name in properties)
34 Object.defineProperty(object, name, {
38 value: properties[name],
42 $cy_set(Boolean.prototype, {
44 return `new Boolean(${this.toString()})`;
48 $cy_set(Date.prototype, {
50 return `new ${this.constructor.name}(${this.toUTCString().toCYON()})`;
54 $cy_set(Error.prototype, {
56 let stack = this.stack;
57 if (typeof stack == 'undefined')
60 stack = stack.split('\n');
61 if (stack.slice(-1)[0] == "global code")
62 stack = stack.slice(0, -1);
63 for (let i = 0; i != stack.length; ++i)
64 stack[i] = '\n ' + stack[i];
65 stack = stack.join('');
66 stack = ` /*${stack} */`;
68 return `new ${this.constructor.name}(${this.message.toCYON()})${stack}`;
72 $cy_set(Number.prototype, {
75 return `${this.$cyt.toCYON()}(${this.toString()})`;
76 return `new Number(${this.toString()})`;
80 $cy_set(RegExp.prototype, {
82 return this.toString();
86 // XXX: Java should just always be available
87 if ("Java" in Cycript) {
89 // XXX: this is a half-assed EventEmitter
90 // XXX: this doesn't even have the same semantics
94 Java.on = function(event, handler) {
96 if (event in this.handlers_)
97 handlers = this.handlers_[event];
100 this.handlers_[event] = handlers;
103 if (this.handlers_ == null)
106 handlers.push(handler);
109 Java.emit = function(event) {
110 if (event in this.handlers_) {
111 var handlers = this.handlers_[event];
112 if (handlers != null)
113 for (var handler of handlers)
117 this.handlers_[event] = null;
120 Java.on('setup', function() {
121 $cy_set(java.lang.Boolean.prototype, {
123 return `new java.lang.Boolean(${this->value})`;
127 $cy_set(java.lang.Byte.prototype, {
129 return `new java.lang.Byte(${this->value})`;
133 $cy_set(java.lang.Character.prototype, {
135 return `new java.lang.Character(${this->value})`;
139 $cy_set(java.lang.Short.prototype, {
141 return `new java.lang.Short(${this->value})`;
145 $cy_set(java.lang.Integer.prototype, {
147 return `new java.lang.Integer(${this->value})`;
151 $cy_set(java.lang.Long.prototype, {
153 return `new java.lang.Long(${this->value})`;
157 $cy_set(java.lang.Float.prototype, {
159 return `new java.lang.Float(${this->value})`;
163 $cy_set(java.lang.Double.prototype, {
165 return `new java.lang.Double(${this->value})`;
169 $cy_set(java.lang.Object.prototype, {
170 toCYON: function(key) {
171 return "#" + this.toString().toCYON();
174 // XXX: due to lack of interface prototypes :(
175 $cyg: function(key) {
176 return this.get(key);
179 // XXX: due to lack of interface prototypes :(
180 $cys: function(key, value) {
182 this.set(key, value);
184 this.put(key, value);
191 if ("ObjectiveC" in Cycript) {
192 $cy_set(NSArray.prototype, {
193 $cyg: function(key) {
194 return objc_msgSend(this, "objectAtIndex:", key);
197 $cys: function(key, value) {
198 return objc_msgSend(this, "setObject:atIndex:", value, key);
202 $cy_set(NSDictionary.prototype, {
203 $cyg: function(key) {
204 return objc_msgSend(this, "objectForKey:", key);
207 $cys: function(key, value) {
208 return objc_msgSend(this, "setObject:forKey:", value, key);
213 let IsFile = function(path) {
214 // XXX: this doesn't work on symlinks, but I don't want to fix stat :/
215 return access(path, F_OK) == 0 && access(path + '/', F_OK) == -1;
218 let StartsWith = function(lhs, rhs) {
219 return lhs.substring(0, rhs.length) == rhs;
222 let ResolveFile = function(exact, name) {
223 if (exact && IsFile(name))
225 for (let suffix of ['.js', '.json'])
226 if (IsFile(name + suffix))
227 return name + suffix;
232 let GetLibraryPath = function() {
233 let handle = dlopen("/usr/lib/libcycript.dylib", RTLD_NOLOAD);
238 let CYHandleServer = dlsym(handle, "CYHandleServer");
239 if (CYHandleServer == null)
242 let info = new Dl_info;
243 if (dladdr(CYHandleServer, info) == 0)
246 let path = info->dli_fname;
247 let slash = path.lastIndexOf('/');
251 path = path.substr(0, slash);
253 GetLibraryPath = function() {
257 return GetLibraryPath();
263 let ResolveFolder = function(name) {
264 if (access(name + '/', F_OK) == -1)
267 if (IsFile(name + "/package.json")) {
268 let package = require(name + "/package.json");
269 let path = ResolveFile(true, name + "/" + package.main);
274 return ResolveFile(false, name + "/index");
277 let ResolveEither = function(name) {
280 path = ResolveFile(true, name);
282 path = ResolveFolder(name);
286 require.resolve = function(name) {
287 if (StartsWith(name, '/')) {
288 let path = ResolveEither(name);
292 let cwd = new (typedef char[1024]);
293 cwd = getcwd(cwd, cwd.length).toString();
294 cwd = cwd.split('/');
296 if (StartsWith(name, './') || StartsWith(name, '../')) {
297 let path = ResolveEither(cwd + '/' + name);
301 for (let i = cwd.length; i != 0; --i) {
302 let modules = cwd.slice(0, i).concat("node_modules").join('/');
303 let path = ResolveEither(modules + "/" + name);
308 let library = GetLibraryPath();
309 let path = ResolveFile(true, library + "/cycript0.9/" + name + ".cy");
315 throw new Error("Cannot find module '" + name + "'");
318 var _syscall = function(value) {
320 throw new Error(strerror(errno));
323 var info = *new (struct stat);
325 } else if ("st_atim" in info) {
326 var st_atime = "st_atim";
327 var st_mtime = "st_mtim";
328 var st_ctime = "st_ctim";
329 } else if ("st_atimespec" in info) {
330 var st_atime = "st_atimespec";
331 var st_mtime = "st_mtimespec";
332 var st_ctime = "st_ctimespec";
334 var st_atime = "st_atime";
335 var st_mtime = "st_mtime";
336 var st_ctime = "st_ctime";
339 var toDate = function(timespec) {
340 return new Date(timespec.tv_sec * 1000 + timespec.tv_nsec / 1000);
345 process.binding = function(name) {
346 let binding = bindings[name];
347 if (typeof binding != 'undefined')
351 case 'buffer': binding = {
356 case 'cares_wrap': binding = {
359 case 'constants': binding = {
362 case 'fs': binding = {
367 var info = new (struct stat);
368 _syscall(lstat(path, info));
373 nlink: info->st_nlink,
377 blksize: info->st_blksize,
380 blocks: info->st_blocks,
382 atime: toDate(info->[st_atime]),
383 mtime: toDate(info->[st_mtime]),
384 ctime: toDate(info->[st_ctime]),
387 return S_ISLNK(this.mode);
393 case 'pipe_wrap': binding = {
396 case 'smalloc': binding = {
401 case 'stream_wrap': binding = {
404 case 'tcp_wrap': binding = {
407 case 'timer_wrap': binding = {
413 case 'tty_wrap': binding = {
416 case 'uv': binding = {
420 throw new Error('No such module: ' + name);
423 bindings[name] = binding;
427 let environ = *(typedef char ***)(dlsym(RTLD_DEFAULT, "environ"));
428 for (let i = 0; environ[i] != null; ++i) {
429 let assign = environ[i];
430 let equal = assign.indexOf('=');
431 let name = assign.substr(0, equal);
432 let value = assign.substr(equal + 1);
433 process.env[name.toString()] = value;
436 process.cwd = function() {
437 let cwd = new (typedef char[1024]);
438 return getcwd(cwd, cwd.length).toString();
441 process.pid = getpid();