]> git.saurik.com Git - cydia.git/blob - CyteKit/webScriptObjectInContext.mm
Ignore .dSYM folders I am suddenly ending up with.
[cydia.git] / CyteKit / webScriptObjectInContext.mm
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 #include "CyteKit/UCPlatform.h"
23
24 #include "CyteKit/webScriptObjectInContext.h"
25
26 #include "iPhonePrivate.h"
27
28 @implementation NSObject (CydiaScript)
29
30 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
31 return self;
32 }
33
34 @end
35
36 @implementation NSArray (CydiaScript)
37
38 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
39 WebScriptObject *object([context evaluateWebScript:@"[]"]);
40 for (size_t i(0), e([self count]); i != e; ++i)
41 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
42 return object;
43 }
44
45 @end
46
47 @implementation NSDictionary (CydiaScript)
48
49 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
50 WebScriptObject *object([context evaluateWebScript:@"({})"]);
51 for (id i in self)
52 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
53 return object;
54 }
55
56 @end