]>
Commit | Line | Data |
---|---|---|
36bb2ca2 | 1 | /* Cydia - iPhone UIKit Front-End for Debian APT |
4c66fad9 | 2 | * Copyright (C) 2008-2015 Jay Freeman (saurik) |
36bb2ca2 JF |
3 | */ |
4 | ||
6d9696a5 | 5 | /* GNU General Public License, Version 3 {{{ */ |
36bb2ca2 | 6 | /* |
6d9696a5 JF |
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. | |
36bb2ca2 | 11 | * |
6d9696a5 JF |
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. | |
36bb2ca2 | 16 | * |
6d9696a5 JF |
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 | **/ | |
bfc87a4d | 20 | /* }}} */ |
36bb2ca2 | 21 | |
b0ad8dee JF |
22 | // XXX: wtf/FastMalloc.h... wtf? |
23 | #define USE_SYSTEM_MALLOC 1 | |
24 | ||
dc5812ec | 25 | /* #include Directives {{{ */ |
819a0ab1 | 26 | #include "CyteKit/UCPlatform.h" |
d458596e | 27 | #include "CyteKit/Localize.h" |
807ae6d7 | 28 | |
22fd24dd JF |
29 | #include <unicode/ustring.h> |
30 | #include <unicode/utrans.h> | |
31 | ||
ab398adf JF |
32 | #include <objc/objc.h> |
33 | #include <objc/runtime.h> | |
34 | ||
5f6bff8c | 35 | #include <CoreGraphics/CoreGraphics.h> |
5f6bff8c | 36 | #include <Foundation/Foundation.h> |
7d2ac47f | 37 | |
eef4ccaf JF |
38 | #if 0 |
39 | #define DEPLOYMENT_TARGET_MACOSX 1 | |
40 | #define CF_BUILDING_CF 1 | |
41 | #include <CoreFoundation/CFInternal.h> | |
42 | #endif | |
43 | ||
677b8415 JF |
44 | #include <CoreFoundation/CFUniChar.h> |
45 | ||
afb5333a JF |
46 | #include <SystemConfiguration/SystemConfiguration.h> |
47 | ||
c21004b9 JF |
48 | #include <UIKit/UIKit.h> |
49 | #include "iPhonePrivate.h" | |
50 | ||
51 | #include <IOKit/IOKitLib.h> | |
a9543575 | 52 | |
53db9999 JF |
53 | #include <QuartzCore/CALayer.h> |
54 | ||
f79a4512 | 55 | #include <WebCore/WebCoreThread.h> |
7e9a36b6 | 56 | |
677b8415 | 57 | #include <algorithm> |
0209cce5 | 58 | #include <fstream> |
808c6eb6 | 59 | #include <iomanip> |
21ac0ce2 | 60 | #include <set> |
2367a917 | 61 | #include <sstream> |
a0be02eb JF |
62 | #include <string> |
63 | ||
0209cce5 | 64 | #include "fdstream.hpp" |
2367a917 | 65 | |
e59669fd JF |
66 | #undef ABS |
67 | ||
0209cce5 | 68 | #include "apt.h" |
dc5812ec JF |
69 | #include <apt-pkg/acquire.h> |
70 | #include <apt-pkg/acquire-item.h> | |
71 | #include <apt-pkg/algorithms.h> | |
72 | #include <apt-pkg/cachefile.h> | |
77fcccaf | 73 | #include <apt-pkg/clean.h> |
dc5812ec | 74 | #include <apt-pkg/configuration.h> |
7376b55c | 75 | #include <apt-pkg/debindexfile.h> |
3178d79b | 76 | #include <apt-pkg/debmetaindex.h> |
dc5812ec JF |
77 | #include <apt-pkg/error.h> |
78 | #include <apt-pkg/init.h> | |
dddbc481 | 79 | #include <apt-pkg/mmap.h> |
dc5812ec | 80 | #include <apt-pkg/pkgrecords.h> |
dddbc481 | 81 | #include <apt-pkg/sha1.h> |
dc5812ec | 82 | #include <apt-pkg/sourcelist.h> |
2367a917 | 83 | #include <apt-pkg/sptr.h> |
affeffc7 | 84 | #include <apt-pkg/strutl.h> |
f9f6d9e8 | 85 | #include <apt-pkg/tagfile.h> |
dc5812ec | 86 | |
87f46a96 JF |
87 | #include <sys/types.h> |
88 | #include <sys/stat.h> | |
3178d79b | 89 | #include <sys/sysctl.h> |
59c011d8 JF |
90 | #include <sys/param.h> |
91 | #include <sys/mount.h> | |
bb0fe3c9 | 92 | #include <sys/reboot.h> |
87f46a96 | 93 | |
57cc2170 | 94 | #include <dirent.h> |
c21004b9 | 95 | #include <fcntl.h> |
2a8d9add | 96 | #include <notify.h> |
dddbc481 | 97 | #include <dlfcn.h> |
3178d79b | 98 | |
b4d89997 JF |
99 | extern "C" { |
100 | #include <mach-o/nlist.h> | |
101 | } | |
102 | ||
a0be02eb JF |
103 | #include <cstdio> |
104 | #include <cstdlib> | |
105 | #include <cstring> | |
b4d89997 | 106 | |
2367a917 | 107 | #include <errno.h> |
a9543575 | 108 | |
94b0b3e5 | 109 | #include <Cytore.hpp> |
25c1dafb | 110 | #include "Sources.h" |
94b0b3e5 | 111 | |
a09f7a48 | 112 | #include "Substrate.hpp" |
cb218676 JF |
113 | #include "Menes/Menes.h" |
114 | ||
8731fdb0 | 115 | #include "CyteKit/IndirectDelegate.h" |
b4fd1197 | 116 | #include "CyteKit/RegEx.hpp" |
b97fcfc6 | 117 | #include "CyteKit/TableViewCell.h" |
5fe2bcc6 | 118 | #include "CyteKit/TabBarController.h" |
f172aa8f | 119 | #include "CyteKit/WebScriptObject-Cyte.h" |
d458596e | 120 | #include "CyteKit/WebViewController.h" |
8731fdb0 | 121 | #include "CyteKit/WebViewTableViewCell.h" |
d458596e | 122 | #include "CyteKit/stringWithUTF8Bytes.h" |
449ef9d5 | 123 | |
7aa82ca2 | 124 | #include "Cydia/MIMEAddress.h" |
70750ab3 | 125 | #include "Cydia/LoadingViewController.h" |
cb218676 | 126 | #include "Cydia/ProgressEvent.h" |
28b8b687 | 127 | |
71cc7be1 | 128 | #include "SDURLCache/SDURLCache.h" |
b5e7eebb GP |
129 | /* }}} */ |
130 | ||
bfc87a4d | 131 | /* Profiler {{{ */ |
807ae6d7 JF |
132 | struct timeval _ltv; |
133 | bool _itv; | |
134 | ||
2083b866 JF |
135 | #define _timestamp ({ \ |
136 | struct timeval tv; \ | |
137 | gettimeofday(&tv, NULL); \ | |
138 | tv.tv_sec * 1000000 + tv.tv_usec; \ | |
139 | }) | |
140 | ||
808c6eb6 JF |
141 | typedef std::vector<class ProfileTime *> TimeList; |
142 | TimeList times_; | |
143 | ||
144 | class ProfileTime { | |
145 | private: | |
146 | const char *name_; | |
147 | uint64_t total_; | |
76933519 | 148 | uint64_t count_; |
808c6eb6 JF |
149 | |
150 | public: | |
151 | ProfileTime(const char *name) : | |
152 | name_(name), | |
153 | total_(0) | |
154 | { | |
155 | times_.push_back(this); | |
156 | } | |
157 | ||
158 | void AddTime(uint64_t time) { | |
159 | total_ += time; | |
76933519 | 160 | ++count_; |
808c6eb6 JF |
161 | } |
162 | ||
163 | void Print() { | |
164 | if (total_ != 0) | |
f15558c7 | 165 | std::cerr << std::setw(7) << count_ << ", " << std::setw(8) << total_ << " : " << name_ << std::endl; |
808c6eb6 | 166 | total_ = 0; |
76933519 | 167 | count_ = 0; |
808c6eb6 JF |
168 | } |
169 | }; | |
170 | ||
171 | class ProfileTimer { | |
172 | private: | |
173 | ProfileTime &time_; | |
174 | uint64_t start_; | |
175 | ||
176 | public: | |
177 | ProfileTimer(ProfileTime &time) : | |
178 | time_(time), | |
179 | start_(_timestamp) | |
180 | { | |
181 | } | |
182 | ||
183 | ~ProfileTimer() { | |
184 | time_.AddTime(_timestamp - start_); | |
185 | } | |
186 | }; | |
187 | ||
188 | void PrintTimes() { | |
189 | for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i) | |
190 | (*i)->Print(); | |
191 | std::cerr << "========" << std::endl; | |
192 | } | |
193 | ||
194 | #define _profile(name) { \ | |
195 | static ProfileTime name(#name); \ | |
196 | ProfileTimer _ ## name(name); | |
197 | ||
198 | #define _end } | |
f79a4512 | 199 | /* }}} */ |
affeffc7 | 200 | |
4cc9e99a JF |
201 | // XXX: I hate clang. Apple: please get over your petty hatred of GPL and fix your gcc fork |
202 | #define synchronized(lock) \ | |
203 | synchronized(static_cast<NSObject *>(lock)) | |
204 | ||
3d45bad1 | 205 | extern NSString *Cydia_; |
f9ba524a | 206 | |
43c5d1cb JF |
207 | #define lprintf(args...) fprintf(stderr, args) |
208 | ||
209 | #define ForRelease 1 | |
210 | #define TraceLogging (1 && !ForRelease) | |
01b4e393 | 211 | #define HistogramInsertionSort (0 && !ForRelease) |
43c5d1cb JF |
212 | #define ProfileTimes (0 && !ForRelease) |
213 | #define ForSaurik (0 && !ForRelease) | |
214 | #define LogBrowser (0 && !ForRelease) | |
215 | #define TrackResize (0 && !ForRelease) | |
216 | #define ManualRefresh (1 && !ForRelease) | |
217 | #define ShowInternals (0 && !ForRelease) | |
218 | #define AlwaysReload (0 && !ForRelease) | |
43c5d1cb JF |
219 | |
220 | #if !TraceLogging | |
221 | #undef _trace | |
222 | #define _trace(args...) | |
223 | #endif | |
224 | ||
225 | #if !ProfileTimes | |
226 | #undef _profile | |
227 | #define _profile(name) { | |
228 | #undef _end | |
229 | #define _end } | |
230 | #define PrintTimes() do {} while (false) | |
231 | #endif | |
232 | ||
94b0b3e5 JF |
233 | // Hash Functions/Structures {{{ |
234 | extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0); | |
235 | ||
236 | union SplitHash { | |
237 | uint32_t u32; | |
238 | uint16_t u16[2]; | |
239 | }; | |
240 | // }}} | |
241 | ||
019bd407 JF |
242 | @implementation NSDictionary (Cydia) |
243 | - (id) invokeUndefinedMethodFromWebScript:(NSString *)name withArguments:(NSArray *)arguments { | |
244 | if (false); | |
245 | else if ([name isEqualToString:@"get"]) | |
246 | return [self objectForKey:[arguments objectAtIndex:0]]; | |
247 | else if ([name isEqualToString:@"keys"]) | |
248 | return [self allKeys]; | |
249 | return nil; | |
250 | } @end | |
251 | ||
5db5891a JF |
252 | static NSString *Colon_; |
253 | NSString *Elision_; | |
254 | static NSString *Error_; | |
255 | static NSString *Warning_; | |
256 | ||
d1c7f1fd | 257 | static NSString *Cache_; |
b44af625 JF |
258 | #define Cache(file) \ |
259 | [NSString stringWithFormat:@"%@/%s", Cache_, file] | |
d1c7f1fd | 260 | |
8a3b565c | 261 | static void (*$SBSSetInterceptsMenuButtonForever)(bool); |
c7e78d5f | 262 | static NSData *(*$SBSCopyIconImagePNGDataForDisplayIdentifier)(NSString *); |
8a3b565c | 263 | |
7c80833f JF |
264 | static CFStringRef (*$MGCopyAnswer)(CFStringRef); |
265 | ||
266 | static NSString *UniqueIdentifier(UIDevice *device = nil) { | |
267 | if (kCFCoreFoundationVersionNumber < 800) // iOS 7.x | |
268 | return [device ?: [UIDevice currentDevice] uniqueIdentifier]; | |
269 | else | |
270 | return [(id)$MGCopyAnswer(CFSTR("UniqueDeviceID")) autorelease]; | |
271 | } | |
272 | ||
6cbfbe28 JF |
273 | static bool IsReachable(const char *name) { |
274 | SCNetworkReachabilityFlags flags; { | |
37f1fb03 | 275 | SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, name)); |
6cbfbe28 JF |
276 | SCNetworkReachabilityGetFlags(reachability, &flags); |
277 | CFRelease(reachability); | |
278 | } | |
279 | ||
280 | // XXX: this elaborate mess is what Apple is using to determine this? :( | |
281 | // XXX: do we care if the user has to intervene? maybe that's ok? | |
282 | return | |
283 | (flags & kSCNetworkReachabilityFlagsReachable) != 0 && ( | |
284 | (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || ( | |
285 | (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 || | |
286 | (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0 | |
287 | ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 || | |
288 | (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0 | |
289 | ) | |
290 | ; | |
291 | } | |
292 | ||
04fe1349 JF |
293 | static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight); |
294 | ||
670a0494 | 295 | static _finline NSString *CydiaURL(NSString *path) { |
e3d2a2f5 JF |
296 | char page[26]; |
297 | page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's'; | |
298 | page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y'; | |
299 | page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's'; | |
300 | page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k'; | |
301 | page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/'; | |
302 | page[25] = '\0'; | |
670a0494 JF |
303 | return [[NSString stringWithUTF8String:page] stringByAppendingString:path]; |
304 | } | |
305 | ||
d8b0f6e3 JF |
306 | static NSString *ShellEscape(NSString *value) { |
307 | return [NSString stringWithFormat:@"'%@'", [value stringByReplacingOccurrencesOfString:@"'" withString:@"'\\''"]]; | |
308 | } | |
309 | ||
ef494bd8 RP |
310 | static _finline void UpdateExternalStatus(uint64_t newStatus) { |
311 | int notify_token; | |
312 | if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) { | |
313 | notify_set_state(notify_token, newStatus); | |
314 | notify_cancel(notify_token); | |
315 | } | |
316 | notify_post("com.saurik.Cydia.status"); | |
317 | } | |
318 | ||
0b7516cf | 319 | static CGFloat CYStatusBarHeight() { |
57daa971 | 320 | CGSize size([[UIApplication sharedApplication] statusBarFrame].size); |
0b7516cf | 321 | return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width; |
57daa971 JF |
322 | } |
323 | ||
68f1828e | 324 | /* NSForcedOrderingSearch doesn't work on the iPhone */ |
808c6eb6 | 325 | static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch; |
677b8415 | 326 | static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch; |
aeeb755b | 327 | static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering; |
1e7a90f5 | 328 | |
eef4ccaf JF |
329 | /* Insertion Sort {{{ */ |
330 | ||
df213583 JF |
331 | CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) { |
332 | const char *ptr = (const char *)list; | |
333 | while (0 < count) { | |
334 | CFIndex half = count / 2; | |
335 | const char *probe = ptr + elementSize * half; | |
336 | CFComparisonResult cr = comparator(element, probe, context); | |
b5e7eebb | 337 | if (0 == cr) return (probe - (const char *)list) / elementSize; |
df213583 JF |
338 | ptr = (cr < 0) ? ptr : probe + elementSize; |
339 | count = (cr < 0) ? half : (half + (count & 1) - 1); | |
340 | } | |
341 | return (ptr - (const char *)list) / elementSize; | |
342 | } | |
343 | ||
eef4ccaf JF |
344 | CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) { |
345 | const char *ptr = (const char *)list; | |
346 | while (0 < count) { | |
347 | CFIndex half = count / 2; | |
348 | const char *probe = ptr + elementSize * half; | |
349 | CFComparisonResult cr = comparator(element, probe, context); | |
b5e7eebb | 350 | if (0 == cr) return (probe - (const char *)list) / elementSize; |
eef4ccaf JF |
351 | ptr = (cr < 0) ? ptr : probe + elementSize; |
352 | count = (cr < 0) ? half : (half + (count & 1) - 1); | |
353 | } | |
354 | return (ptr - (const char *)list) / elementSize; | |
355 | } | |
356 | ||
357 | void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) { | |
358 | if (range.length == 0) | |
359 | return; | |
360 | const void **values(new const void *[range.length]); | |
361 | CFArrayGetValues(array, range, values); | |
362 | ||
1539387a | 363 | #if HistogramInsertionSort > 0 |
df213583 JF |
364 | uint32_t total(0), *offsets(new uint32_t[range.length]); |
365 | #endif | |
366 | ||
eef4ccaf JF |
367 | for (CFIndex index(1); index != range.length; ++index) { |
368 | const void *value(values[index]); | |
df213583 JF |
369 | //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context)); |
370 | CFIndex correct(index); | |
1539387a JF |
371 | while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) { |
372 | #if HistogramInsertionSort > 1 | |
373 | NSLog(@"%@ < %@", value, values[correct - 1]); | |
374 | #endif | |
df213583 JF |
375 | if (--correct == 0) |
376 | break; | |
1539387a | 377 | } |
eef4ccaf | 378 | if (correct != index) { |
df213583 JF |
379 | size_t offset(index - correct); |
380 | #if HistogramInsertionSort | |
381 | total += offset; | |
382 | ++offsets[offset]; | |
383 | if (offset > 10) | |
384 | NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value); | |
385 | #endif | |
386 | memmove(values + correct + 1, values + correct, sizeof(const void *) * offset); | |
eef4ccaf JF |
387 | values[correct] = value; |
388 | } | |
389 | } | |
390 | ||
391 | CFArrayReplaceValues(array, range, values, range.length); | |
392 | delete [] values; | |
df213583 | 393 | |
1539387a | 394 | #if HistogramInsertionSort > 0 |
df213583 JF |
395 | for (CFIndex index(0); index != range.length; ++index) |
396 | if (offsets[index] != 0) | |
397 | NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]); | |
398 | NSLog(@"Average Insertion Displacement: %f", double(total) / range.length); | |
399 | delete [] offsets; | |
400 | #endif | |
eef4ccaf JF |
401 | } |
402 | ||
807ae6d7 JF |
403 | /* }}} */ |
404 | ||
bf8476c8 JF |
405 | /* Apple Bug Fixes {{{ */ |
406 | @implementation UIWebDocumentView (Cydia) | |
407 | ||
408 | - (void) _setScrollerOffset:(CGPoint)offset { | |
409 | UIScroller *scroller([self _scroller]); | |
410 | ||
411 | CGSize size([scroller contentSize]); | |
412 | CGSize bounds([scroller bounds].size); | |
413 | ||
414 | CGPoint max; | |
415 | max.x = size.width - bounds.width; | |
416 | max.y = size.height - bounds.height; | |
417 | ||
418 | // wtf Apple?! | |
419 | if (max.x < 0) | |
420 | max.x = 0; | |
421 | if (max.y < 0) | |
422 | max.y = 0; | |
423 | ||
424 | offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x; | |
425 | offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y; | |
426 | ||
427 | [scroller setOffset:offset]; | |
428 | } | |
429 | ||
430 | @end | |
431 | /* }}} */ | |
432 | ||
680eb135 JF |
433 | NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) { |
434 | size_t length([self length] - state->state); | |
435 | if (length <= 0) | |
436 | return 0; | |
437 | else if (length > count) | |
438 | length = count; | |
439 | for (size_t i(0); i != length; ++i) | |
440 | objects[i] = [self item:state->state++]; | |
441 | state->itemsPtr = objects; | |
442 | state->mutationsPtr = (unsigned long *) self; | |
443 | return length; | |
444 | } | |
445 | ||
bfc87a4d | 446 | /* Cydia NSString Additions {{{ */ |
2388b078 | 447 | @interface NSString (Cydia) |
a54b1c10 | 448 | - (NSComparisonResult) compareByPath:(NSString *)other; |
2fc76a2d | 449 | - (NSString *) stringByAddingPercentEscapesIncludingReserved; |
2388b078 JF |
450 | @end |
451 | ||
449ef9d5 JF |
452 | @implementation NSString (Cydia) |
453 | ||
a54b1c10 JF |
454 | - (NSComparisonResult) compareByPath:(NSString *)other { |
455 | NSString *prefix = [self commonPrefixWithString:other options:0]; | |
456 | size_t length = [prefix length]; | |
457 | ||
458 | NSRange lrange = NSMakeRange(length, [self length] - length); | |
459 | NSRange rrange = NSMakeRange(length, [other length] - length); | |
460 | ||
461 | lrange = [self rangeOfString:@"/" options:0 range:lrange]; | |
462 | rrange = [other rangeOfString:@"/" options:0 range:rrange]; | |
463 | ||
464 | NSComparisonResult value; | |
465 | ||
466 | if (lrange.location == NSNotFound && rrange.location == NSNotFound) | |
467 | value = NSOrderedSame; | |
468 | else if (lrange.location == NSNotFound) | |
469 | value = NSOrderedAscending; | |
470 | else if (rrange.location == NSNotFound) | |
471 | value = NSOrderedDescending; | |
472 | else | |
473 | value = NSOrderedSame; | |
474 | ||
475 | NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] : | |
476 | [self substringWithRange:NSMakeRange(length, lrange.location - length)]; | |
477 | NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] : | |
478 | [other substringWithRange:NSMakeRange(length, rrange.location - length)]; | |
479 | ||
480 | NSComparisonResult result = [lpath compare:rpath]; | |
481 | return result == NSOrderedSame ? value : result; | |
482 | } | |
483 | ||
2fc76a2d JF |
484 | - (NSString *) stringByAddingPercentEscapesIncludingReserved { |
485 | return [(id)CFURLCreateStringByAddingPercentEscapes( | |
bc11cf5b | 486 | kCFAllocatorDefault, |
2fc76a2d JF |
487 | (CFStringRef) self, |
488 | NULL, | |
489 | CFSTR(";/?:@&=+$,"), | |
490 | kCFStringEncodingUTF8 | |
491 | ) autorelease]; | |
492 | } | |
493 | ||
2388b078 | 494 | @end |
bfc87a4d | 495 | /* }}} */ |
2388b078 | 496 | |
bfc87a4d | 497 | /* C++ NSString Wrapper Cache {{{ */ |
8e8fca7f JF |
498 | static _finline CFStringRef CYStringCreate(const char *data, size_t size) { |
499 | return size == 0 ? NULL : | |
500 | CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?: | |
501 | CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull); | |
502 | } | |
503 | ||
0209cce5 JF |
504 | static _finline CFStringRef CYStringCreate(const std::string &data) { |
505 | return CYStringCreate(data.data(), data.size()); | |
506 | } | |
507 | ||
8e8fca7f JF |
508 | static _finline CFStringRef CYStringCreate(const char *data) { |
509 | return CYStringCreate(data, strlen(data)); | |
510 | } | |
511 | ||
f79a4512 JF |
512 | class CYString { |
513 | private: | |
514 | char *data_; | |
515 | size_t size_; | |
516 | CFStringRef cache_; | |
517 | ||
518 | _finline void clear_() { | |
18873623 | 519 | if (cache_ != NULL) { |
f79a4512 | 520 | CFRelease(cache_); |
18873623 JF |
521 | cache_ = NULL; |
522 | } | |
f79a4512 JF |
523 | } |
524 | ||
525 | public: | |
526 | _finline bool empty() const { | |
527 | return size_ == 0; | |
528 | } | |
529 | ||
530 | _finline size_t size() const { | |
531 | return size_; | |
532 | } | |
533 | ||
534 | _finline char *data() const { | |
535 | return data_; | |
536 | } | |
537 | ||
538 | _finline void clear() { | |
539 | size_ = 0; | |
540 | clear_(); | |
541 | } | |
542 | ||
543 | _finline CYString() : | |
544 | data_(0), | |
545 | size_(0), | |
18873623 | 546 | cache_(NULL) |
f79a4512 JF |
547 | { |
548 | } | |
549 | ||
550 | _finline ~CYString() { | |
551 | clear_(); | |
552 | } | |
553 | ||
554 | void operator =(const CYString &rhs) { | |
555 | data_ = rhs.data_; | |
556 | size_ = rhs.size_; | |
557 | ||
558 | if (rhs.cache_ == nil) | |
559 | cache_ = NULL; | |
560 | else | |
561 | cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_)); | |
562 | } | |
563 | ||
64edd9df JF |
564 | void copy(CYPool *pool) { |
565 | char *temp(pool->malloc<char>(size_ + 1)); | |
97814287 JF |
566 | memcpy(temp, data_, size_); |
567 | temp[size_] = '\0'; | |
568 | data_ = temp; | |
569 | } | |
570 | ||
64edd9df | 571 | void set(CYPool *pool, const char *data, size_t size) { |
f79a4512 JF |
572 | if (size == 0) |
573 | clear(); | |
574 | else { | |
575 | clear_(); | |
576 | ||
97814287 | 577 | data_ = const_cast<char *>(data); |
f79a4512 | 578 | size_ = size; |
97814287 JF |
579 | |
580 | if (pool != NULL) | |
581 | copy(pool); | |
f79a4512 JF |
582 | } |
583 | } | |
584 | ||
64edd9df | 585 | _finline void set(CYPool *pool, const char *data) { |
f79a4512 JF |
586 | set(pool, data, data == NULL ? 0 : strlen(data)); |
587 | } | |
588 | ||
64edd9df | 589 | _finline void set(CYPool *pool, const std::string &rhs) { |
f79a4512 JF |
590 | set(pool, rhs.data(), rhs.size()); |
591 | } | |
592 | ||
593 | bool operator ==(const CYString &rhs) const { | |
594 | return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0; | |
595 | } | |
596 | ||
8e8fca7f JF |
597 | _finline operator CFStringRef() { |
598 | if (cache_ == NULL) | |
599 | cache_ = CYStringCreate(data_, size_); | |
600 | return cache_; | |
df213583 JF |
601 | } |
602 | ||
603 | _finline operator id() { | |
604 | return (NSString *) static_cast<CFStringRef>(*this); | |
f79a4512 | 605 | } |
4c0ed943 JF |
606 | |
607 | _finline operator const char *() { | |
608 | return reinterpret_cast<const char *>(data_); | |
609 | } | |
f79a4512 | 610 | }; |
bfc87a4d JF |
611 | /* }}} */ |
612 | /* C++ NSString Algorithm Adapters {{{ */ | |
f79a4512 JF |
613 | extern "C" { |
614 | CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str); | |
615 | } | |
616 | ||
617 | struct NSStringMapHash : | |
618 | std::unary_function<NSString *, size_t> | |
619 | { | |
620 | _finline size_t operator ()(NSString *value) const { | |
621 | return CFStringHashNSString((CFStringRef) value); | |
622 | } | |
623 | }; | |
624 | ||
625 | struct NSStringMapLess : | |
626 | std::binary_function<NSString *, NSString *, bool> | |
627 | { | |
628 | _finline bool operator ()(NSString *lhs, NSString *rhs) const { | |
629 | return [lhs compare:rhs] == NSOrderedAscending; | |
630 | } | |
631 | }; | |
632 | ||
633 | struct NSStringMapEqual : | |
634 | std::binary_function<NSString *, NSString *, bool> | |
635 | { | |
636 | _finline bool operator ()(NSString *lhs, NSString *rhs) const { | |
637 | return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo; | |
638 | //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs); | |
639 | //[lhs isEqualToString:rhs]; | |
640 | } | |
641 | }; | |
bfc87a4d | 642 | /* }}} */ |
f79a4512 | 643 | |
5f6bff8c | 644 | /* CoreGraphics Primitives {{{ */ |
02012733 | 645 | class CYColor { |
b4d89997 JF |
646 | private: |
647 | CGColorRef color_; | |
648 | ||
6a575b5e JF |
649 | static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) { |
650 | CGFloat color[] = {red, green, blue, alpha}; | |
651 | return CGColorCreate(space, color); | |
652 | } | |
653 | ||
b4d89997 | 654 | public: |
02012733 | 655 | CYColor() : |
36bb2ca2 JF |
656 | color_(NULL) |
657 | { | |
658 | } | |
659 | ||
02012733 | 660 | CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) : |
6a575b5e | 661 | color_(Create_(space, red, green, blue, alpha)) |
36bb2ca2 JF |
662 | { |
663 | Set(space, red, green, blue, alpha); | |
664 | } | |
665 | ||
666 | void Clear() { | |
667 | if (color_ != NULL) | |
668 | CGColorRelease(color_); | |
b4d89997 JF |
669 | } |
670 | ||
02012733 | 671 | ~CYColor() { |
36bb2ca2 JF |
672 | Clear(); |
673 | } | |
674 | ||
675 | void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) { | |
676 | Clear(); | |
6a575b5e | 677 | color_ = Create_(space, red, green, blue, alpha); |
b4d89997 JF |
678 | } |
679 | ||
680 | operator CGColorRef() { | |
681 | return color_; | |
682 | } | |
683 | }; | |
b4d89997 JF |
684 | /* }}} */ |
685 | ||
36bb2ca2 | 686 | /* Random Global Variables {{{ */ |
c73d524b | 687 | static int PulseInterval_ = 500000; |
affeffc7 | 688 | |
57e8b225 JF |
689 | static const NSString *UI_; |
690 | ||
d791dce4 | 691 | static int Finish_; |
be860cc8 | 692 | static bool RestartSubstrate_; |
d791dce4 JF |
693 | static NSArray *Finishes_; |
694 | ||
affeffc7 | 695 | #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist" |
22f8bed9 | 696 | #define NotifyConfig_ "/etc/notify.conf" |
2a8d9add | 697 | |
dc63e78f JF |
698 | static bool Queuing_; |
699 | ||
02012733 JF |
700 | static CYColor Blue_; |
701 | static CYColor Blueish_; | |
702 | static CYColor Black_; | |
86a333c6 | 703 | static CYColor Folder_; |
02012733 JF |
704 | static CYColor Off_; |
705 | static CYColor White_; | |
706 | static CYColor Gray_; | |
707 | static CYColor Green_; | |
708 | static CYColor Purple_; | |
709 | static CYColor Purplish_; | |
3bd1c2a2 | 710 | |
dc63e78f JF |
711 | static UIColor *InstallingColor_; |
712 | static UIColor *RemovingColor_; | |
36bb2ca2 | 713 | |
7d2ac47f | 714 | static NSString *App_; |
d73cede2 | 715 | |
2388b078 | 716 | static BOOL Advanced_; |
a54b1c10 | 717 | static BOOL Ignored_; |
2388b078 | 718 | |
7b33d201 JF |
719 | static _H<UIFont> Font12_; |
720 | static _H<UIFont> Font12Bold_; | |
721 | static _H<UIFont> Font14_; | |
2cdc6e57 | 722 | static _H<UIFont> Font18_; |
7b33d201 JF |
723 | static _H<UIFont> Font18Bold_; |
724 | static _H<UIFont> Font22Bold_; | |
f641a0e5 | 725 | |
87f46a96 | 726 | static const char *Machine_ = NULL; |
e967efd5 | 727 | static _H<NSString> System_; |
56127854 JF |
728 | static NSString *SerialNumber_ = nil; |
729 | static NSString *ChipID_ = nil; | |
6ffdaae3 | 730 | static NSString *BBSNum_ = nil; |
7c80833f | 731 | static _H<NSString> UniqueID_; |
e967efd5 JF |
732 | static _H<NSString> UserAgent_; |
733 | static _H<NSString> Product_; | |
734 | static _H<NSString> Safari_; | |
2a8d9add | 735 | |
aeeb755b JF |
736 | static _H<NSLocale> CollationLocale_; |
737 | static _H<NSArray> CollationThumbs_; | |
738 | static std::vector<NSInteger> CollationOffset_; | |
739 | static _H<NSArray> CollationTitles_; | |
740 | static _H<NSArray> CollationStarts_; | |
22fd24dd JF |
741 | static UTransliterator *CollationTransl_; |
742 | //static Function<NSString *, NSString *> CollationModify_; | |
743 | ||
744 | typedef std::basic_string<UChar> ustring; | |
745 | static ustring CollationString_; | |
746 | ||
747 | #define CUC const ustring &str(*reinterpret_cast<const ustring *>(rep)) | |
748 | #define UC ustring &str(*reinterpret_cast<ustring *>(rep)) | |
749 | static struct UReplaceableCallbacks CollationUCalls_ = { | |
750 | .length = [](const UReplaceable *rep) -> int32_t { CUC; | |
751 | return str.size(); | |
752 | }, | |
753 | ||
754 | .charAt = [](const UReplaceable *rep, int32_t offset) -> UChar { CUC; | |
755 | //fprintf(stderr, "charAt(%d) : %d\n", offset, str.size()); | |
756 | if (offset >= str.size()) | |
757 | return 0xffff; | |
758 | return str[offset]; | |
759 | }, | |
760 | ||
761 | .char32At = [](const UReplaceable *rep, int32_t offset) -> UChar32 { CUC; | |
762 | //fprintf(stderr, "char32At(%d) : %d\n", offset, str.size()); | |
763 | if (offset >= str.size()) | |
764 | return 0xffff; | |
765 | UChar32 c; | |
766 | U16_GET(str.data(), 0, offset, str.size(), c); | |
767 | return c; | |
768 | }, | |
769 | ||
770 | .replace = [](UReplaceable *rep, int32_t start, int32_t limit, const UChar *text, int32_t length) -> void { UC; | |
771 | //fprintf(stderr, "replace(%d, %d, %d) : %d\n", start, limit, length, str.size()); | |
772 | str.replace(start, limit - start, text, length); | |
773 | }, | |
774 | ||
775 | .extract = [](UReplaceable *rep, int32_t start, int32_t limit, UChar *dst) -> void { UC; | |
776 | //fprintf(stderr, "extract(%d, %d) : %d\n", start, limit, str.size()); | |
777 | str.copy(dst, limit - start, start); | |
778 | }, | |
779 | ||
780 | .copy = [](UReplaceable *rep, int32_t start, int32_t limit, int32_t dest) -> void { UC; | |
781 | //fprintf(stderr, "copy(%d, %d, %d) : %d\n", start, limit, dest, str.size()); | |
782 | str.replace(dest, 0, str, start, limit - start); | |
783 | }, | |
784 | }; | |
aeeb755b | 785 | |
d791dce4 JF |
786 | static CFLocaleRef Locale_; |
787 | static NSArray *Languages_; | |
788 | static CGColorSpaceRef space_; | |
36bb2ca2 | 789 | |
6f87c61a | 790 | #define CacheState_ "/var/mobile/Library/Caches/com.saurik.Cydia/CacheState.plist" |
3d1e6f42 JF |
791 | #define SavedState_ "/var/mobile/Library/Caches/com.saurik.Cydia/SavedState.plist" |
792 | ||
46dbfd32 | 793 | static NSDictionary *SectionMap_; |
3d1e6f42 | 794 | static _H<NSDate> Backgrounded_; |
b3c8e69c | 795 | static _transient NSMutableDictionary *Values_; |
7b0ce2da | 796 | static _transient NSMutableDictionary *Sections_; |
25c1dafb | 797 | _H<NSMutableDictionary> Sources_; |
33e30380 | 798 | static _transient NSNumber *Version_; |
31bc18a7 | 799 | static time_t now_; |
8da60fb7 | 800 | |
f333f6c5 | 801 | bool IsWildcat_; |
f98962e5 | 802 | CGFloat ScreenScale_; |
c138614d | 803 | static NSString *Idiom_; |
407564b5 | 804 | static _H<NSString> Firmware_; |
fd825a2d | 805 | static NSString *Major_; |
5df7ecfb | 806 | |
7b33d201 JF |
807 | static _H<NSMutableDictionary> SessionData_; |
808 | static _H<NSObject> HostConfig_; | |
809 | static _H<NSMutableSet> BridgedHosts_; | |
2e1652a9 | 810 | static _H<NSMutableSet> InsecureHosts_; |
7b33d201 | 811 | static _H<NSMutableSet> PipelinedHosts_; |
5e845121 | 812 | static _H<NSMutableSet> CachedURLs_; |
389133be | 813 | |
e4123ce0 JF |
814 | static NSString *kCydiaProgressEventTypeError = @"Error"; |
815 | static NSString *kCydiaProgressEventTypeInformation = @"Information"; | |
816 | static NSString *kCydiaProgressEventTypeStatus = @"Status"; | |
817 | static NSString *kCydiaProgressEventTypeWarning = @"Warning"; | |
36bb2ca2 | 818 | /* }}} */ |
d791dce4 | 819 | |
36bb2ca2 JF |
820 | /* Display Helpers {{{ */ |
821 | inline float Interpolate(float begin, float end, float fraction) { | |
822 | return (end - begin) * fraction + begin; | |
823 | } | |
2367a917 | 824 | |
8323c1b9 JF |
825 | static inline double Retina(double value) { |
826 | value *= ScreenScale_; | |
827 | value = round(value); | |
828 | value /= ScreenScale_; | |
829 | return value; | |
830 | } | |
831 | ||
832 | static inline CGRect Retina(CGRect value) { | |
833 | value.origin.x *= ScreenScale_; | |
834 | value.origin.y *= ScreenScale_; | |
835 | value.size.width *= ScreenScale_; | |
836 | value.size.height *= ScreenScale_; | |
837 | value = CGRectIntegral(value); | |
838 | value.origin.x /= ScreenScale_; | |
839 | value.origin.y /= ScreenScale_; | |
840 | value.size.width /= ScreenScale_; | |
841 | value.size.height /= ScreenScale_; | |
842 | return value; | |
843 | } | |
844 | ||
1c1dfc2d | 845 | static _finline const char *StripVersion_(const char *version) { |
6a155117 | 846 | const char *colon(strchr(version, ':')); |
673ad3c3 | 847 | return colon == NULL ? version : colon + 1; |
6a155117 JF |
848 | } |
849 | ||
f79a4512 | 850 | NSString *LocalizeSection(NSString *section) { |
b4fd1197 | 851 | static RegEx title_r("(.*?) \\((.*)\\)"); |
9fcbca29 JF |
852 | if (title_r(section)) { |
853 | NSString *parent(title_r[1]); | |
854 | NSString *child(title_r[2]); | |
855 | ||
43f3d7f6 | 856 | return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), |
9fcbca29 JF |
857 | LocalizeSection(parent), |
858 | LocalizeSection(child) | |
b1ce61ec | 859 | ]; |
9fcbca29 | 860 | } |
b1ce61ec JF |
861 | |
862 | return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"]; | |
f79a4512 JF |
863 | } |
864 | ||
4cf4165e JF |
865 | NSString *Simplify(NSString *title) { |
866 | const char *data = [title UTF8String]; | |
393a84a1 | 867 | size_t size = [title lengthOfBytesUsingEncoding:NSUTF8StringEncoding]; |
4cf4165e | 868 | |
b4fd1197 | 869 | static RegEx square_r("\\[(.*)\\]"); |
7b0ce2da JF |
870 | if (square_r(data, size)) |
871 | return Simplify(square_r[1]); | |
872 | ||
b4fd1197 | 873 | static RegEx paren_r("\\((.*)\\)"); |
7b0ce2da JF |
874 | if (paren_r(data, size)) |
875 | return Simplify(paren_r[1]); | |
876 | ||
b4fd1197 | 877 | static RegEx title_r("(.*?) \\((.*)\\)"); |
4cf4165e | 878 | if (title_r(data, size)) |
7b0ce2da JF |
879 | return Simplify(title_r[1]); |
880 | ||
881 | return title; | |
4cf4165e | 882 | } |
36bb2ca2 JF |
883 | /* }}} */ |
884 | ||
6d9712c4 | 885 | bool isSectionVisible(NSString *section) { |
45447dc3 | 886 | NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]); |
677b8415 | 887 | NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]); |
6d9712c4 JF |
888 | return hidden == nil || ![hidden boolValue]; |
889 | } | |
890 | ||
c31d7cdc | 891 | static NSObject *CYIOGetValue(const char *path, NSString *property) { |
947a8eef JF |
892 | io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path)); |
893 | if (entry == MACH_PORT_NULL) | |
894 | return nil; | |
895 | ||
896 | CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0)); | |
897 | IOObjectRelease(entry); | |
898 | ||
899 | if (value == NULL) | |
900 | return nil; | |
901 | return [(id) value autorelease]; | |
902 | } | |
903 | ||
c31d7cdc | 904 | static NSString *CYHex(NSData *data, bool reverse = false) { |
947a8eef JF |
905 | if (data == nil) |
906 | return nil; | |
907 | ||
908 | size_t length([data length]); | |
909 | uint8_t bytes[length]; | |
910 | [data getBytes:bytes]; | |
911 | ||
912 | char string[length * 2 + 1]; | |
913 | for (size_t i(0); i != length; ++i) | |
be45a862 | 914 | sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]); |
947a8eef JF |
915 | |
916 | return [NSString stringWithUTF8String:string]; | |
917 | } | |
918 | ||
8a2d167a JF |
919 | static NSString *VerifySource(NSString *href) { |
920 | static RegEx href_r("(http(s?)://|file:///)[^# ]*"); | |
921 | if (!href_r(href)) { | |
922 | [[[[UIAlertView alloc] | |
923 | initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("INVALID_URL")] | |
924 | message:UCLocalize("INVALID_URL_EX") | |
925 | delegate:nil | |
926 | cancelButtonTitle:UCLocalize("OK") | |
927 | otherButtonTitles:nil | |
928 | ] autorelease] show]; | |
929 | ||
930 | return nil; | |
931 | } | |
932 | ||
933 | if (![href hasSuffix:@"/"]) | |
934 | href = [href stringByAppendingString:@"/"]; | |
935 | return href; | |
936 | } | |
937 | ||
9cb0bff2 GP |
938 | @class Cydia; |
939 | ||
d36e83a3 | 940 | /* Delegate Prototypes {{{ */ |
36bb2ca2 JF |
941 | @class Package; |
942 | @class Source; | |
6915b806 | 943 | @class CydiaProgressEvent; |
36bb2ca2 | 944 | |
6915b806 | 945 | @protocol DatabaseDelegate |
5a09ae08 | 946 | - (void) repairWithSelector:(SEL)selector; |
8b29f8e6 | 947 | - (void) setConfigurationData:(NSString *)data; |
6915b806 | 948 | - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task; |
8b29f8e6 JF |
949 | @end |
950 | ||
f6e13561 | 951 | @class CYPackageController; |
f79a4512 | 952 | |
21ac0ce2 JF |
953 | @protocol SourceDelegate |
954 | - (void) setFetch:(NSNumber *)fetch; | |
955 | @end | |
956 | ||
957 | @protocol FetchDelegate | |
958 | - (bool) isSourceCancelled; | |
959 | - (void) startSourceFetch:(NSString *)uri; | |
960 | - (void) stopSourceFetch:(NSString *)uri; | |
961 | @end | |
962 | ||
36bb2ca2 | 963 | @protocol CydiaDelegate |
2925cbba | 964 | - (void) returnToCydia; |
9dd3045d | 965 | - (void) saveState; |
54043703 JF |
966 | - (void) retainNetworkActivityIndicator; |
967 | - (void) releaseNetworkActivityIndicator; | |
dc63e78f | 968 | - (void) clearPackage:(Package *)package; |
36bb2ca2 | 969 | - (void) installPackage:(Package *)package; |
77801ff1 | 970 | - (void) installPackages:(NSArray *)packages; |
36bb2ca2 | 971 | - (void) removePackage:(Package *)package; |
c21004b9 JF |
972 | - (void) beginUpdate; |
973 | - (BOOL) updating; | |
e67ebdad | 974 | - (bool) requestUpdate; |
36bb2ca2 | 975 | - (void) distUpgrade; |
fed0d010 | 976 | - (void) loadData; |
6d9712c4 | 977 | - (void) updateData; |
392ff7e4 | 978 | - (void) _saveConfig; |
7b0ce2da | 979 | - (void) syncData; |
33e30380 | 980 | - (void) addSource:(NSDictionary *)source; |
8a2d167a | 981 | - (BOOL) addTrivialSource:(NSString *)href; |
7b0ce2da | 982 | - (UIProgressHUD *) addProgressHUD; |
d061f4ba | 983 | - (void) removeProgressHUD:(UIProgressHUD *)hud; |
9daa7f25 | 984 | - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item; |
4ba8f30a | 985 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation; |
36bb2ca2 | 986 | @end |
d36e83a3 | 987 | /* }}} */ |
b4d89997 | 988 | |
21ac0ce2 JF |
989 | /* CancelStatus {{{ */ |
990 | class CancelStatus : | |
dc5812ec JF |
991 | public pkgAcquireStatus |
992 | { | |
993 | private: | |
fc470c15 | 994 | bool cancelled_; |
dc5812ec JF |
995 | |
996 | public: | |
21ac0ce2 | 997 | CancelStatus() : |
fc470c15 | 998 | cancelled_(false) |
dc5812ec JF |
999 | { |
1000 | } | |
1001 | ||
dc5812ec JF |
1002 | virtual bool MediaChange(std::string media, std::string drive) { |
1003 | return false; | |
1004 | } | |
1005 | ||
10387810 JF |
1006 | virtual void IMSHit(pkgAcquire::ItemDesc &desc) { |
1007 | Done(desc); | |
dc5812ec JF |
1008 | } |
1009 | ||
21ac0ce2 JF |
1010 | virtual bool Pulse_(pkgAcquire *Owner) = 0; |
1011 | ||
1012 | virtual bool Pulse(pkgAcquire *Owner) { | |
1013 | if (pkgAcquireStatus::Pulse(Owner) && Pulse_(Owner)) | |
1014 | return true; | |
1015 | else { | |
1016 | cancelled_ = true; | |
1017 | return false; | |
1018 | } | |
1019 | } | |
1020 | ||
1021 | _finline bool WasCancelled() const { | |
1022 | return cancelled_; | |
1023 | } | |
1024 | }; | |
1025 | /* }}} */ | |
1026 | /* DelegateStatus {{{ */ | |
1027 | class CydiaStatus : | |
1028 | public CancelStatus | |
1029 | { | |
1030 | private: | |
1031 | _transient NSObject<ProgressDelegate> *delegate_; | |
1032 | ||
1033 | public: | |
1034 | CydiaStatus() : | |
1035 | delegate_(nil) | |
1036 | { | |
1037 | } | |
1038 | ||
1039 | void setDelegate(NSObject<ProgressDelegate> *delegate) { | |
1040 | delegate_ = delegate; | |
1041 | } | |
1042 | ||
10387810 JF |
1043 | virtual void Fetch(pkgAcquire::ItemDesc &desc) { |
1044 | NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]); | |
1045 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]); | |
6915b806 | 1046 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
dc5812ec JF |
1047 | } |
1048 | ||
10387810 JF |
1049 | virtual void Done(pkgAcquire::ItemDesc &desc) { |
1050 | NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]); | |
1051 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]); | |
d35bcbbf | 1052 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
dc5812ec JF |
1053 | } |
1054 | ||
10387810 | 1055 | virtual void Fail(pkgAcquire::ItemDesc &desc) { |
1d80f6b9 | 1056 | if ( |
10387810 JF |
1057 | desc.Owner->Status == pkgAcquire::Item::StatIdle || |
1058 | desc.Owner->Status == pkgAcquire::Item::StatDone | |
1d80f6b9 JF |
1059 | ) |
1060 | return; | |
1061 | ||
10387810 | 1062 | std::string &error(desc.Owner->ErrorText); |
affeffc7 JF |
1063 | if (error.empty()) |
1064 | return; | |
1065 | ||
10387810 | 1066 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItemDesc:desc]); |
6915b806 | 1067 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
dc5812ec JF |
1068 | } |
1069 | ||
21ac0ce2 | 1070 | virtual bool Pulse_(pkgAcquire *Owner) { |
bcbac8f7 | 1071 | double percent( |
2367a917 JF |
1072 | double(CurrentBytes + CurrentItems) / |
1073 | double(TotalBytes + TotalItems) | |
1074 | ); | |
1075 | ||
bcbac8f7 JF |
1076 | [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys: |
1077 | [NSNumber numberWithDouble:percent], @"Percent", | |
1078 | ||
1079 | [NSNumber numberWithDouble:CurrentBytes], @"Current", | |
1080 | [NSNumber numberWithDouble:TotalBytes], @"Total", | |
1081 | [NSNumber numberWithDouble:CurrentCPS], @"Speed", | |
1082 | nil] waitUntilDone:YES]; | |
1083 | ||
21ac0ce2 | 1084 | return ![delegate_ isProgressCancelled]; |
dc5812ec JF |
1085 | } |
1086 | ||
1087 | virtual void Start() { | |
0210c2b5 | 1088 | pkgAcquireStatus::Start(); |
aaae308d | 1089 | [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES]; |
dc5812ec JF |
1090 | } |
1091 | ||
1092 | virtual void Stop() { | |
0210c2b5 | 1093 | pkgAcquireStatus::Stop(); |
aaae308d | 1094 | [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES]; |
bcbac8f7 | 1095 | [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES]; |
dc5812ec JF |
1096 | } |
1097 | }; | |
1098 | /* }}} */ | |
36bb2ca2 | 1099 | /* Database Interface {{{ */ |
68d927e2 JF |
1100 | typedef std::map< unsigned long, _H<Source> > SourceMap; |
1101 | ||
36bb2ca2 | 1102 | @interface Database : NSObject { |
f79a4512 | 1103 | NSZone *zone_; |
64edd9df | 1104 | CYPool pool_; |
f79a4512 | 1105 | |
a1440b10 | 1106 | unsigned era_; |
f26c90b1 | 1107 | _H<NSDate> delock_; |
a1440b10 | 1108 | |
36bb2ca2 | 1109 | pkgCacheFile cache_; |
5a09ae08 | 1110 | pkgDepCache::Policy *policy_; |
36bb2ca2 JF |
1111 | pkgRecords *records_; |
1112 | pkgProblemResolver *resolver_; | |
1113 | pkgAcquire *fetcher_; | |
1114 | FileFd *lock_; | |
1115 | SPtr<pkgPackageManager> manager_; | |
1116 | pkgSourceList *list_; | |
5f6bff8c | 1117 | |
34f70f5d | 1118 | SourceMap sourceMap_; |
7b33d201 | 1119 | _H<NSMutableArray> sourceList_; |
34f70f5d | 1120 | |
077e9d90 | 1121 | CFMutableArrayRef packages_; |
b4d89997 | 1122 | |
6915b806 JF |
1123 | _transient NSObject<DatabaseDelegate> *delegate_; |
1124 | _transient NSObject<ProgressDelegate> *progress_; | |
1125 | ||
21ac0ce2 | 1126 | CydiaStatus status_; |
8b29f8e6 | 1127 | |
77fcccaf | 1128 | int cydiafd_; |
36bb2ca2 | 1129 | int statusfd_; |
8b29f8e6 | 1130 | FILE *input_; |
fe33a23e JF |
1131 | |
1132 | std::map<const char *, _H<NSString> > sections_; | |
dc5812ec JF |
1133 | } |
1134 | ||
770f2a8e | 1135 | + (Database *) sharedInstance; |
a1440b10 | 1136 | - (unsigned) era; |
f9c8848f | 1137 | - (bool) hasPackages; |
770f2a8e | 1138 | |
77fcccaf | 1139 | - (void) _readCydia:(NSNumber *)fd; |
36bb2ca2 JF |
1140 | - (void) _readStatus:(NSNumber *)fd; |
1141 | - (void) _readOutput:(NSNumber *)fd; | |
2367a917 | 1142 | |
8b29f8e6 JF |
1143 | - (FILE *) input; |
1144 | ||
36bb2ca2 | 1145 | - (Package *) packageWithName:(NSString *)name; |
dc5812ec | 1146 | |
36bb2ca2 | 1147 | - (pkgCacheFile &) cache; |
5a09ae08 | 1148 | - (pkgDepCache::Policy *) policy; |
36bb2ca2 JF |
1149 | - (pkgRecords *) records; |
1150 | - (pkgProblemResolver *) resolver; | |
1151 | - (pkgAcquire &) fetcher; | |
a3328c28 | 1152 | - (pkgSourceList &) list; |
36bb2ca2 | 1153 | - (NSArray *) packages; |
7b0ce2da | 1154 | - (NSArray *) sources; |
d669236d | 1155 | - (Source *) sourceWithKey:(NSString *)key; |
4ba8f30a | 1156 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation; |
36bb2ca2 | 1157 | |
5a09ae08 | 1158 | - (void) configure; |
670a0494 | 1159 | - (bool) prepare; |
36bb2ca2 | 1160 | - (void) perform; |
670a0494 | 1161 | - (bool) upgrade; |
36bb2ca2 JF |
1162 | - (void) update; |
1163 | ||
21ac0ce2 | 1164 | - (void) updateWithStatus:(CancelStatus &)status; |
36bb2ca2 | 1165 | |
6915b806 JF |
1166 | - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate; |
1167 | ||
1168 | - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate; | |
1169 | - (NSObject<ProgressDelegate> *) progressDelegate; | |
1170 | ||
7376b55c | 1171 | - (Source *) getSource:(pkgCache::PkgFileIterator)file; |
21ac0ce2 | 1172 | - (void) setFetch:(bool)fetch forURI:(const char *)uri; |
9ed626f1 | 1173 | - (void) resetFetch; |
fe33a23e JF |
1174 | |
1175 | - (NSString *) mappedSectionForPointer:(const char *)pointer; | |
1176 | ||
670a0494 JF |
1177 | @end |
1178 | /* }}} */ | |
21ac0ce2 JF |
1179 | /* SourceStatus {{{ */ |
1180 | class SourceStatus : | |
1181 | public CancelStatus | |
1182 | { | |
1183 | private: | |
1184 | _transient NSObject<FetchDelegate> *delegate_; | |
1185 | _transient Database *database_; | |
e6e180a4 | 1186 | std::set<std::string> fetches_; |
21ac0ce2 JF |
1187 | |
1188 | public: | |
1189 | SourceStatus(NSObject<FetchDelegate> *delegate, Database *database) : | |
1190 | delegate_(delegate), | |
1191 | database_(database) | |
1192 | { | |
1193 | } | |
1194 | ||
e6e180a4 JF |
1195 | void Set(bool fetch, const std::string &uri) { |
1196 | if (fetch) { | |
1197 | if (!fetches_.insert(uri).second) | |
1198 | return; | |
1199 | } else { | |
1200 | if (fetches_.erase(uri) == 0) | |
1201 | return; | |
1202 | } | |
1203 | ||
1204 | //printf("Set(%s, %s)\n", fetch ? "true" : "false", uri.c_str()); | |
1205 | [database_ setFetch:fetch forURI:uri.c_str()]; | |
1206 | } | |
1207 | ||
1208 | _finline void Set(bool fetch, pkgAcquire::Item *item) { | |
1209 | /*unsigned long ID(fetch ? 1 : 0); | |
1210 | if (item->ID == ID) | |
1211 | return; | |
1212 | item->ID = ID;*/ | |
1213 | Set(fetch, item->DescURI()); | |
1214 | } | |
1215 | ||
1216 | void Log(const char *tag, pkgAcquire::Item *item) { | |
1217 | //printf("%s(%s) S:%u Q:%u\n", tag, item->DescURI().c_str(), item->Status, item->QueueCounter); | |
21ac0ce2 JF |
1218 | } |
1219 | ||
1220 | virtual void Fetch(pkgAcquire::ItemDesc &desc) { | |
e6e180a4 JF |
1221 | Log("Fetch", desc.Owner); |
1222 | Set(true, desc.Owner); | |
21ac0ce2 JF |
1223 | } |
1224 | ||
1225 | virtual void Done(pkgAcquire::ItemDesc &desc) { | |
e6e180a4 JF |
1226 | Log("Done", desc.Owner); |
1227 | Set(false, desc.Owner); | |
21ac0ce2 JF |
1228 | } |
1229 | ||
1230 | virtual void Fail(pkgAcquire::ItemDesc &desc) { | |
e6e180a4 JF |
1231 | Log("Fail", desc.Owner); |
1232 | Set(false, desc.Owner); | |
21ac0ce2 JF |
1233 | } |
1234 | ||
1235 | virtual bool Pulse_(pkgAcquire *Owner) { | |
e6e180a4 JF |
1236 | std::set<std::string> fetches; |
1237 | for (pkgAcquire::ItemCIterator item(Owner->ItemsBegin()); item != Owner->ItemsEnd(); ++item) { | |
1238 | bool fetch; | |
1239 | if ((*item)->QueueCounter == 0) | |
1240 | fetch = false; | |
1241 | else switch ((*item)->Status) { | |
1242 | case pkgAcquire::Item::StatFetching: | |
1243 | fetches.insert((*item)->DescURI()); | |
1244 | fetch = true; | |
1245 | break; | |
1246 | ||
1247 | default: | |
1248 | fetch = false; | |
1249 | break; | |
1250 | } | |
1251 | ||
1252 | Log(fetch ? "Pulse<true>" : "Pulse<false>", *item); | |
1253 | Set(fetch, *item); | |
1254 | } | |
1255 | ||
1256 | std::vector<std::string> stops; | |
1257 | std::set_difference(fetches_.begin(), fetches_.end(), fetches.begin(), fetches.end(), std::back_insert_iterator<std::vector<std::string>>(stops)); | |
1258 | for (std::vector<std::string>::const_iterator stop(stops.begin()); stop != stops.end(); ++stop) { | |
1259 | //printf("Stop(%s)\n", stop->c_str()); | |
1260 | Set(false, *stop); | |
1261 | } | |
1262 | ||
21ac0ce2 JF |
1263 | return ![delegate_ isSourceCancelled]; |
1264 | } | |
9ed626f1 JF |
1265 | |
1266 | virtual void Stop() { | |
1267 | pkgAcquireStatus::Stop(); | |
1268 | [database_ resetFetch]; | |
1269 | } | |
21ac0ce2 JF |
1270 | }; |
1271 | /* }}} */ | |
6915b806 JF |
1272 | /* ProgressEvent Implementation {{{ */ |
1273 | @implementation CydiaProgressEvent | |
670a0494 | 1274 | |
6915b806 JF |
1275 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type { |
1276 | return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease]; | |
670a0494 JF |
1277 | } |
1278 | ||
6915b806 JF |
1279 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package { |
1280 | CydiaProgressEvent *event([self eventWithMessage:message ofType:type]); | |
1281 | [event setPackage:package]; | |
1282 | return event; | |
670a0494 JF |
1283 | } |
1284 | ||
10387810 | 1285 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc { |
c57867ea JF |
1286 | CydiaProgressEvent *event([self eventWithMessage:message ofType:type]); |
1287 | ||
10387810 | 1288 | NSString *description([NSString stringWithUTF8String:desc.Description.c_str()]); |
c57867ea JF |
1289 | NSArray *fields([description componentsSeparatedByString:@" "]); |
1290 | [event setItem:fields]; | |
1291 | ||
1292 | if ([fields count] > 3) { | |
1293 | [event setPackage:[fields objectAtIndex:2]]; | |
1294 | [event setVersion:[fields objectAtIndex:3]]; | |
1295 | } | |
1296 | ||
10387810 | 1297 | [event setURL:[NSString stringWithUTF8String:desc.URI.c_str()]]; |
c57867ea JF |
1298 | |
1299 | return event; | |
1300 | } | |
1301 | ||
4ede7a3f JF |
1302 | + (NSArray *) _attributeKeys { |
1303 | return [NSArray arrayWithObjects: | |
c57867ea | 1304 | @"item", |
4ede7a3f JF |
1305 | @"message", |
1306 | @"package", | |
1307 | @"type", | |
c57867ea JF |
1308 | @"url", |
1309 | @"version", | |
4ede7a3f JF |
1310 | nil]; |
1311 | } | |
1312 | ||
1313 | - (NSArray *) attributeKeys { | |
1314 | return [[self class] _attributeKeys]; | |
1315 | } | |
1316 | ||
1317 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1318 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1319 | } | |
1320 | ||
6915b806 JF |
1321 | - (id) initWithMessage:(NSString *)message ofType:(NSString *)type { |
1322 | if ((self = [super init]) != nil) { | |
1323 | message_ = message; | |
1324 | type_ = type; | |
1325 | } return self; | |
670a0494 JF |
1326 | } |
1327 | ||
6915b806 JF |
1328 | - (NSString *) message { |
1329 | return message_; | |
1330 | } | |
6067f1b8 | 1331 | |
6915b806 JF |
1332 | - (NSString *) type { |
1333 | return type_; | |
1334 | } | |
1335 | ||
c57867ea JF |
1336 | - (NSArray *) item { |
1337 | return (id) item_ ?: [NSNull null]; | |
1338 | } | |
1339 | ||
1340 | - (void) setItem:(NSArray *)item { | |
1341 | item_ = item; | |
6915b806 JF |
1342 | } |
1343 | ||
c57867ea JF |
1344 | - (NSString *) package { |
1345 | return (id) package_ ?: [NSNull null]; | |
6915b806 JF |
1346 | } |
1347 | ||
1348 | - (void) setPackage:(NSString *)package { | |
1349 | package_ = package; | |
1350 | } | |
1351 | ||
c57867ea JF |
1352 | - (NSString *) url { |
1353 | return (id) url_ ?: [NSNull null]; | |
1354 | } | |
1355 | ||
1356 | - (void) setURL:(NSString *)url { | |
1357 | url_ = url; | |
1358 | } | |
1359 | ||
1360 | - (void) setVersion:(NSString *)version { | |
1361 | version_ = version; | |
1362 | } | |
1363 | ||
1364 | - (NSString *) version { | |
1365 | return (id) version_ ?: [NSNull null]; | |
1366 | } | |
1367 | ||
6915b806 JF |
1368 | - (NSString *) compound:(NSString *)value { |
1369 | if (value != nil) { | |
1370 | NSString *mode(nil); { | |
1371 | NSString *type([self type]); | |
389133be | 1372 | if ([type isEqualToString:kCydiaProgressEventTypeError]) |
6915b806 | 1373 | mode = UCLocalize("ERROR"); |
389133be | 1374 | else if ([type isEqualToString:kCydiaProgressEventTypeWarning]) |
6915b806 JF |
1375 | mode = UCLocalize("WARNING"); |
1376 | } | |
1377 | ||
1378 | if (mode != nil) | |
1379 | value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value]; | |
1380 | } | |
1381 | ||
1382 | return value; | |
1383 | } | |
1384 | ||
1385 | - (NSString *) compoundMessage { | |
1386 | return [self compound:[self message]]; | |
1387 | } | |
1388 | ||
1389 | - (NSString *) compoundTitle { | |
1390 | NSString *title; | |
1391 | ||
83b78e5f | 1392 | if (package_ == nil) |
6915b806 | 1393 | title = nil; |
83b78e5f JF |
1394 | else if (Package *package = [[Database sharedInstance] packageWithName:package_]) |
1395 | title = [package name]; | |
1396 | else | |
1397 | title = package_; | |
6915b806 JF |
1398 | |
1399 | return [self compound:title]; | |
670a0494 JF |
1400 | } |
1401 | ||
dc5812ec | 1402 | @end |
36bb2ca2 | 1403 | /* }}} */ |
dc5812ec | 1404 | |
94b0b3e5 JF |
1405 | // Cytore Definitions {{{ |
1406 | struct PackageValue : | |
1407 | Cytore::Block | |
1408 | { | |
94b0b3e5 JF |
1409 | Cytore::Offset<PackageValue> next_; |
1410 | ||
1411 | uint32_t index_ : 23; | |
1412 | uint32_t subscribed_ : 1; | |
1413 | uint32_t : 8; | |
1414 | ||
1415 | int32_t first_; | |
1416 | int32_t last_; | |
1417 | ||
1418 | uint16_t vhash_; | |
1419 | uint16_t nhash_; | |
1420 | ||
1421 | char version_[8]; | |
1422 | char name_[]; | |
1fe922cd | 1423 | } _packed; |
94b0b3e5 JF |
1424 | |
1425 | struct MetaValue : | |
1426 | Cytore::Block | |
1427 | { | |
9f357d11 | 1428 | uint32_t active_; |
94b0b3e5 | 1429 | Cytore::Offset<PackageValue> packages_[1 << 16]; |
1fe922cd | 1430 | } _packed; |
94b0b3e5 JF |
1431 | |
1432 | static Cytore::File<MetaValue> MetaFile_; | |
1433 | // }}} | |
1434 | // Cytore Helper Functions {{{ | |
c65611b9 | 1435 | static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) { |
94b0b3e5 JF |
1436 | SplitHash nhash = { hashlittle(name, length) }; |
1437 | ||
1438 | PackageValue *metadata; | |
1439 | ||
1440 | Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]); | |
ac5f7cb3 | 1441 | for (;; offset = &metadata->next_) { if (offset->IsNull()) { |
94b0b3e5 JF |
1442 | *offset = MetaFile_.New<PackageValue>(length + 1); |
1443 | metadata = &MetaFile_.Get(*offset); | |
1444 | ||
c65611b9 JF |
1445 | if (metadata == NULL) { |
1446 | if (fail != NULL) | |
1447 | *fail = true; | |
1448 | ||
1449 | metadata = new PackageValue(); | |
1450 | memset(metadata, 0, sizeof(*metadata)); | |
1451 | } | |
1452 | ||
ac5f7cb3 JF |
1453 | memcpy(metadata->name_, name, length); |
1454 | metadata->name_[length] = '\0'; | |
94b0b3e5 JF |
1455 | metadata->nhash_ = nhash.u16[1]; |
1456 | } else { | |
1457 | metadata = &MetaFile_.Get(*offset); | |
ac5f7cb3 JF |
1458 | if (metadata->nhash_ != nhash.u16[1]) |
1459 | continue; | |
1460 | if (strncmp(metadata->name_, name, length) != 0) | |
1461 | continue; | |
1462 | if (metadata->name_[length] != '\0') | |
1463 | continue; | |
1464 | } break; } | |
94b0b3e5 | 1465 | |
94b0b3e5 JF |
1466 | return metadata; |
1467 | } | |
1468 | ||
1469 | static void PackageImport(const void *key, const void *value, void *context) { | |
c65611b9 JF |
1470 | bool &fail(*reinterpret_cast<bool *>(context)); |
1471 | ||
94b0b3e5 JF |
1472 | char buffer[1024]; |
1473 | if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) { | |
1474 | NSLog(@"failed to import package %@", key); | |
1475 | return; | |
1476 | } | |
1477 | ||
c65611b9 | 1478 | PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail)); |
94b0b3e5 JF |
1479 | NSDictionary *package((NSDictionary *) value); |
1480 | ||
1481 | if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"]) | |
2f856365 | 1482 | if ([subscribed boolValue] && !metadata->subscribed_) |
94b0b3e5 JF |
1483 | metadata->subscribed_ = true; |
1484 | ||
1485 | if (NSDate *date = [package objectForKey:@"FirstSeen"]) { | |
1486 | time_t time([date timeIntervalSince1970]); | |
1487 | if (metadata->first_ > time || metadata->first_ == 0) | |
1488 | metadata->first_ = time; | |
1489 | } | |
1490 | ||
2f856365 JF |
1491 | NSDate *date([package objectForKey:@"LastSeen"]); |
1492 | NSString *version([package objectForKey:@"LastVersion"]); | |
5a933937 | 1493 | |
2f856365 | 1494 | if (date != nil && version != nil) { |
94b0b3e5 | 1495 | time_t time([date timeIntervalSince1970]); |
2f856365 | 1496 | if (metadata->last_ < time || metadata->last_ == 0) |
5a933937 JF |
1497 | if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) { |
1498 | size_t length(strlen(buffer)); | |
1499 | uint16_t vhash(hashlittle(buffer, length)); | |
94b0b3e5 | 1500 | |
5a933937 JF |
1501 | size_t capped(std::min<size_t>(8, length)); |
1502 | char *latest(buffer + length - capped); | |
1503 | ||
1504 | strncpy(metadata->version_, latest, sizeof(metadata->version_)); | |
1505 | metadata->vhash_ = vhash; | |
2f856365 JF |
1506 | |
1507 | metadata->last_ = time; | |
5a933937 | 1508 | } |
2f856365 | 1509 | } |
94b0b3e5 JF |
1510 | } |
1511 | // }}} | |
1512 | ||
f26c90b1 JF |
1513 | static NSDate *GetStatusDate() { |
1514 | return [[[NSFileManager defaultManager] attributesOfItemAtPath:@"/var/lib/dpkg/status" error:NULL] fileModificationDate]; | |
1515 | } | |
1516 | ||
4e479350 JF |
1517 | static void SaveConfig(NSObject *lock) { |
1518 | @synchronized (lock) { | |
1519 | _trace(); | |
1520 | MetaFile_.Sync(); | |
1521 | _trace(); | |
1522 | } | |
1523 | ||
1524 | CFPreferencesSetMultiple((CFDictionaryRef) [NSDictionary dictionaryWithObjectsAndKeys: | |
1525 | Values_, @"CydiaValues", | |
1526 | Sections_, @"CydiaSections", | |
1527 | (id) Sources_, @"CydiaSources", | |
1528 | Version_, @"CydiaVersion", | |
1529 | nil], NULL, CFSTR("com.saurik.Cydia"), kCFPreferencesCurrentUser, kCFPreferencesCurrentHost); | |
1530 | ||
1531 | if (!CFPreferencesAppSynchronize(CFSTR("com.saurik.Cydia"))) | |
1532 | NSLog(@"CFPreferencesAppSynchronize(com.saurik.Cydia) == false"); | |
1533 | ||
1534 | CydiaWriteSources(); | |
1535 | } | |
1536 | ||
36bb2ca2 JF |
1537 | /* Source Class {{{ */ |
1538 | @interface Source : NSObject { | |
aec64d46 JF |
1539 | unsigned era_; |
1540 | Database *database_; | |
1541 | metaIndex *index_; | |
1542 | ||
6204f56a | 1543 | CYString depiction_; |
f9f6d9e8 JF |
1544 | CYString description_; |
1545 | CYString label_; | |
1546 | CYString origin_; | |
1547 | CYString support_; | |
dc5812ec | 1548 | |
f9f6d9e8 JF |
1549 | CYString uri_; |
1550 | CYString distribution_; | |
1551 | CYString type_; | |
8252b666 | 1552 | CYString base_; |
f9f6d9e8 | 1553 | CYString version_; |
2367a917 | 1554 | |
c08c8943 JF |
1555 | _H<NSString> host_; |
1556 | _H<NSString> authority_; | |
f9f6d9e8 JF |
1557 | |
1558 | CYString defaultIcon_; | |
dc5812ec | 1559 | |
4cc9e99a | 1560 | _H<NSMutableDictionary> record_; |
36bb2ca2 | 1561 | BOOL trusted_; |
21ac0ce2 JF |
1562 | |
1563 | std::set<std::string> fetches_; | |
1564 | std::set<std::string> files_; | |
1565 | _transient NSObject<SourceDelegate> *delegate_; | |
dc5812ec JF |
1566 | } |
1567 | ||
64edd9df | 1568 | - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool; |
dc5812ec | 1569 | |
90ba4f86 | 1570 | - (NSComparisonResult) compareByName:(Source *)source; |
7b0ce2da | 1571 | |
6204f56a | 1572 | - (NSString *) depictionForPackage:(NSString *)package; |
dc63e78f JF |
1573 | - (NSString *) supportForPackage:(NSString *)package; |
1574 | ||
0c28a403 | 1575 | - (metaIndex *) metaIndex; |
7b0ce2da | 1576 | - (NSDictionary *) record; |
36bb2ca2 | 1577 | - (BOOL) trusted; |
dc5812ec | 1578 | |
7bd76e97 | 1579 | - (NSString *) rooturi; |
36bb2ca2 JF |
1580 | - (NSString *) distribution; |
1581 | - (NSString *) type; | |
8252b666 | 1582 | |
7b0ce2da JF |
1583 | - (NSString *) key; |
1584 | - (NSString *) host; | |
36bb2ca2 | 1585 | |
7b0ce2da | 1586 | - (NSString *) name; |
8d262908 | 1587 | - (NSString *) shortDescription; |
36bb2ca2 JF |
1588 | - (NSString *) label; |
1589 | - (NSString *) origin; | |
1590 | - (NSString *) version; | |
dc5812ec | 1591 | |
36bb2ca2 | 1592 | - (NSString *) defaultIcon; |
7bd76e97 | 1593 | - (NSURL *) iconURL; |
7b0ce2da | 1594 | |
21ac0ce2 | 1595 | - (void) setFetch:(bool)fetch forURI:(const char *)uri; |
9ed626f1 | 1596 | - (void) resetFetch; |
21ac0ce2 | 1597 | |
dc5812ec | 1598 | @end |
dc5812ec | 1599 | |
36bb2ca2 | 1600 | @implementation Source |
dc5812ec | 1601 | |
33e30380 JF |
1602 | + (NSString *) webScriptNameForSelector:(SEL)selector { |
1603 | if (false); | |
1604 | else if (selector == @selector(addSection:)) | |
1605 | return @"addSection"; | |
aec64d46 JF |
1606 | else if (selector == @selector(getField:)) |
1607 | return @"getField"; | |
33e30380 JF |
1608 | else if (selector == @selector(removeSection:)) |
1609 | return @"removeSection"; | |
1610 | else if (selector == @selector(remove)) | |
1611 | return @"remove"; | |
1612 | else | |
1613 | return nil; | |
1614 | } | |
1615 | ||
1616 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
1617 | return [self webScriptNameForSelector:selector] == nil; | |
1618 | } | |
1619 | ||
6f1a15d9 | 1620 | + (NSArray *) _attributeKeys { |
e58ff941 | 1621 | return [NSArray arrayWithObjects: |
7bd76e97 | 1622 | @"baseuri", |
e58ff941 JF |
1623 | @"distribution", |
1624 | @"host", | |
1625 | @"key", | |
7bd76e97 | 1626 | @"iconuri", |
e58ff941 JF |
1627 | @"label", |
1628 | @"name", | |
1629 | @"origin", | |
7bd76e97 | 1630 | @"rooturi", |
33e30380 | 1631 | @"sections", |
8d262908 | 1632 | @"shortDescription", |
e58ff941 JF |
1633 | @"trusted", |
1634 | @"type", | |
e58ff941 JF |
1635 | @"version", |
1636 | nil]; | |
6f1a15d9 JF |
1637 | } |
1638 | ||
1639 | - (NSArray *) attributeKeys { | |
1640 | return [[self class] _attributeKeys]; | |
1641 | } | |
1642 | ||
1643 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1644 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1645 | } | |
1646 | ||
0c28a403 JF |
1647 | - (metaIndex *) metaIndex { |
1648 | return index_; | |
1649 | } | |
1650 | ||
64edd9df | 1651 | - (void) setMetaIndex:(metaIndex *)index inPool:(CYPool *)pool { |
a3328c28 JF |
1652 | trusted_ = index->IsTrusted(); |
1653 | ||
f9f6d9e8 JF |
1654 | uri_.set(pool, index->GetURI()); |
1655 | distribution_.set(pool, index->GetDist()); | |
1656 | type_.set(pool, index->GetType()); | |
a3328c28 JF |
1657 | |
1658 | debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index)); | |
1659 | if (dindex != NULL) { | |
21ac0ce2 | 1660 | std::string file(dindex->MetaIndexURI("")); |
21ac0ce2 JF |
1661 | base_.set(pool, file); |
1662 | ||
3f88f205 | 1663 | pkgAcquire acquire; |
1a83afc6 | 1664 | _profile(Source$setMetaIndex$GetIndexes) |
3f88f205 | 1665 | dindex->GetIndexes(&acquire, true); |
1a83afc6 JF |
1666 | _end |
1667 | _profile(Source$setMetaIndex$DescURI) | |
3f88f205 JF |
1668 | for (pkgAcquire::ItemIterator item(acquire.ItemsBegin()); item != acquire.ItemsEnd(); item++) { |
1669 | std::string file((*item)->DescURI()); | |
1670 | files_.insert(file); | |
1671 | if (file.length() < sizeof("Packages.bz2") || file.substr(file.length() - sizeof("Packages.bz2")) != "/Packages.bz2") | |
1672 | continue; | |
1673 | file = file.substr(0, file.length() - 4); | |
21ac0ce2 JF |
1674 | files_.insert(file); |
1675 | files_.insert(file + ".gz"); | |
21ac0ce2 | 1676 | files_.insert(file + "Index"); |
3f88f205 | 1677 | } |
1a83afc6 | 1678 | _end |
8252b666 | 1679 | |
18873623 JF |
1680 | FileFd fd; |
1681 | if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) | |
1682 | _error->Discard(); | |
1683 | else { | |
1684 | pkgTagFile tags(&fd); | |
f9f6d9e8 | 1685 | |
18873623 JF |
1686 | pkgTagSection section; |
1687 | tags.Step(section); | |
a3328c28 | 1688 | |
18873623 JF |
1689 | struct { |
1690 | const char *name_; | |
1691 | CYString *value_; | |
1692 | } names[] = { | |
1693 | {"default-icon", &defaultIcon_}, | |
6204f56a | 1694 | {"depiction", &depiction_}, |
18873623 JF |
1695 | {"description", &description_}, |
1696 | {"label", &label_}, | |
1697 | {"origin", &origin_}, | |
1698 | {"support", &support_}, | |
1699 | {"version", &version_}, | |
1700 | }; | |
f9f6d9e8 | 1701 | |
18873623 JF |
1702 | for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) { |
1703 | const char *start, *end; | |
1704 | ||
1705 | if (section.Find(names[i].name_, start, end)) { | |
1706 | CYString &value(*names[i].value_); | |
1707 | value.set(pool, start, end - start); | |
1708 | } | |
f9f6d9e8 | 1709 | } |
36bb2ca2 | 1710 | } |
a3328c28 | 1711 | } |
7b0ce2da | 1712 | |
a3328c28 | 1713 | record_ = [Sources_ objectForKey:[self key]]; |
f9f6d9e8 | 1714 | |
7623f855 JF |
1715 | NSURL *url([NSURL URLWithString:uri_]); |
1716 | ||
1717 | host_ = [url host]; | |
1718 | if (host_ != nil) | |
c08c8943 | 1719 | host_ = [host_ lowercaseString]; |
7623f855 JF |
1720 | |
1721 | if (host_ != nil) | |
dfdb9ae0 | 1722 | authority_ = host_; |
7623f855 JF |
1723 | else |
1724 | authority_ = [url path]; | |
a3328c28 JF |
1725 | } |
1726 | ||
64edd9df | 1727 | - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool { |
a3328c28 | 1728 | if ((self = [super init]) != nil) { |
aec64d46 JF |
1729 | era_ = [database era]; |
1730 | database_ = database; | |
1731 | index_ = index; | |
1732 | ||
1a83afc6 | 1733 | _profile(Source$initWithMetaIndex$setMetaIndex) |
f9f6d9e8 | 1734 | [self setMetaIndex:index inPool:pool]; |
1a83afc6 | 1735 | _end |
36bb2ca2 | 1736 | } return self; |
2367a917 | 1737 | } |
dc5812ec | 1738 | |
aec64d46 JF |
1739 | - (NSString *) getField:(NSString *)name { |
1740 | @synchronized (database_) { | |
1741 | if ([database_ era] != era_ || index_ == NULL) | |
1742 | return nil; | |
1743 | ||
1744 | debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_)); | |
1745 | if (dindex == NULL) | |
1746 | return nil; | |
1747 | ||
1748 | FileFd fd; | |
1749 | if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) { | |
1750 | _error->Discard(); | |
1751 | return nil; | |
1752 | } | |
1753 | ||
1754 | pkgTagFile tags(&fd); | |
1755 | ||
1756 | pkgTagSection section; | |
1757 | tags.Step(section); | |
1758 | ||
1759 | const char *start, *end; | |
1760 | if (!section.Find([name UTF8String], start, end)) | |
1761 | return (NSString *) [NSNull null]; | |
1762 | ||
1763 | return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]]; | |
1764 | } } | |
1765 | ||
90ba4f86 | 1766 | - (NSComparisonResult) compareByName:(Source *)source { |
7b0ce2da JF |
1767 | NSString *lhs = [self name]; |
1768 | NSString *rhs = [source name]; | |
1769 | ||
1770 | if ([lhs length] != 0 && [rhs length] != 0) { | |
1771 | unichar lhc = [lhs characterAtIndex:0]; | |
1772 | unichar rhc = [rhs characterAtIndex:0]; | |
1773 | ||
1774 | if (isalpha(lhc) && !isalpha(rhc)) | |
1775 | return NSOrderedAscending; | |
1776 | else if (!isalpha(lhc) && isalpha(rhc)) | |
1777 | return NSOrderedDescending; | |
1778 | } | |
1779 | ||
68f1828e | 1780 | return [lhs compare:rhs options:LaxCompareOptions_]; |
7b0ce2da JF |
1781 | } |
1782 | ||
6204f56a | 1783 | - (NSString *) depictionForPackage:(NSString *)package { |
89b0ea4a | 1784 | return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package]; |
6204f56a JF |
1785 | } |
1786 | ||
dc63e78f | 1787 | - (NSString *) supportForPackage:(NSString *)package { |
89b0ea4a | 1788 | return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package]; |
dc63e78f JF |
1789 | } |
1790 | ||
33e30380 JF |
1791 | - (NSArray *) sections { |
1792 | return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array]; | |
1793 | } | |
1794 | ||
1795 | - (void) _addSection:(NSString *)section { | |
1796 | if (record_ == nil) | |
1797 | return; | |
1798 | else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) { | |
4e479350 | 1799 | if (![sections containsObject:section]) |
33e30380 | 1800 | [sections addObject:section]; |
4e479350 | 1801 | } else |
33e30380 | 1802 | [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"]; |
33e30380 JF |
1803 | } |
1804 | ||
1805 | - (bool) addSection:(NSString *)section { | |
1806 | if (record_ == nil) | |
1807 | return false; | |
1808 | ||
1809 | [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO]; | |
1810 | return true; | |
1811 | } | |
1812 | ||
1813 | - (void) _removeSection:(NSString *)section { | |
1814 | if (record_ == nil) | |
1815 | return; | |
1816 | ||
1817 | if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) | |
4e479350 | 1818 | if ([sections containsObject:section]) |
33e30380 | 1819 | [sections removeObject:section]; |
33e30380 JF |
1820 | } |
1821 | ||
1822 | - (bool) removeSection:(NSString *)section { | |
1823 | if (record_ == nil) | |
1824 | return false; | |
1825 | ||
1826 | [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO]; | |
1827 | return true; | |
1828 | } | |
1829 | ||
1830 | - (void) _remove { | |
1831 | [Sources_ removeObjectForKey:[self key]]; | |
33e30380 JF |
1832 | } |
1833 | ||
1834 | - (bool) remove { | |
1835 | bool value(record_ != nil); | |
1836 | [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO]; | |
1837 | return value; | |
1838 | } | |
1839 | ||
7b0ce2da JF |
1840 | - (NSDictionary *) record { |
1841 | return record_; | |
1842 | } | |
1843 | ||
36bb2ca2 JF |
1844 | - (BOOL) trusted { |
1845 | return trusted_; | |
1846 | } | |
3178d79b | 1847 | |
7bd76e97 | 1848 | - (NSString *) rooturi { |
36bb2ca2 JF |
1849 | return uri_; |
1850 | } | |
ec97ef06 | 1851 | |
36bb2ca2 JF |
1852 | - (NSString *) distribution { |
1853 | return distribution_; | |
1854 | } | |
dc5812ec | 1855 | |
36bb2ca2 JF |
1856 | - (NSString *) type { |
1857 | return type_; | |
dc5812ec JF |
1858 | } |
1859 | ||
7bd76e97 JF |
1860 | - (NSString *) baseuri { |
1861 | return base_.empty() ? nil : (id) base_; | |
1862 | } | |
1863 | ||
1864 | - (NSString *) iconuri { | |
1865 | if (NSString *base = [self baseuri]) | |
1866 | return [base stringByAppendingString:@"CydiaIcon.png"]; | |
1867 | ||
1868 | return nil; | |
1869 | } | |
1870 | ||
1871 | - (NSURL *) iconURL { | |
1872 | if (NSString *uri = [self iconuri]) | |
1873 | return [NSURL URLWithString:uri]; | |
1874 | return nil; | |
8252b666 JF |
1875 | } |
1876 | ||
7b0ce2da | 1877 | - (NSString *) key { |
f9f6d9e8 | 1878 | return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_]; |
7b0ce2da JF |
1879 | } |
1880 | ||
1881 | - (NSString *) host { | |
f9f6d9e8 | 1882 | return host_; |
7b0ce2da JF |
1883 | } |
1884 | ||
1885 | - (NSString *) name { | |
c08c8943 | 1886 | return origin_.empty() ? (id) authority_ : origin_; |
7b0ce2da JF |
1887 | } |
1888 | ||
8d262908 | 1889 | - (NSString *) shortDescription { |
36bb2ca2 JF |
1890 | return description_; |
1891 | } | |
b4d89997 | 1892 | |
36bb2ca2 | 1893 | - (NSString *) label { |
c08c8943 | 1894 | return label_.empty() ? (id) authority_ : label_; |
36bb2ca2 | 1895 | } |
3178d79b | 1896 | |
36bb2ca2 JF |
1897 | - (NSString *) origin { |
1898 | return origin_; | |
1899 | } | |
3178d79b | 1900 | |
36bb2ca2 JF |
1901 | - (NSString *) version { |
1902 | return version_; | |
1903 | } | |
2367a917 | 1904 | |
36bb2ca2 JF |
1905 | - (NSString *) defaultIcon { |
1906 | return defaultIcon_; | |
1907 | } | |
2367a917 | 1908 | |
21ac0ce2 JF |
1909 | - (void) setDelegate:(NSObject<SourceDelegate> *)delegate { |
1910 | delegate_ = delegate; | |
1911 | } | |
1912 | ||
1913 | - (bool) fetch { | |
1914 | return !fetches_.empty(); | |
1915 | } | |
1916 | ||
1917 | - (void) setFetch:(bool)fetch forURI:(const char *)uri { | |
1918 | if (!fetch) { | |
1919 | if (fetches_.erase(uri) == 0) | |
1920 | return; | |
1921 | } else if (files_.find(uri) == files_.end()) | |
1922 | return; | |
1923 | else if (!fetches_.insert(uri).second) | |
1924 | return; | |
1925 | ||
1926 | [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:[self fetch]] waitUntilDone:NO]; | |
1927 | } | |
1928 | ||
9ed626f1 JF |
1929 | - (void) resetFetch { |
1930 | fetches_.clear(); | |
1931 | [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:NO]; | |
1932 | } | |
1933 | ||
2388b078 JF |
1934 | @end |
1935 | /* }}} */ | |
83682c75 JF |
1936 | /* CydiaOperation Class {{{ */ |
1937 | @interface CydiaOperation : NSObject { | |
7b33d201 JF |
1938 | _H<NSString> operator_; |
1939 | _H<NSString> value_; | |
2388b078 JF |
1940 | } |
1941 | ||
83682c75 JF |
1942 | - (NSString *) operator; |
1943 | - (NSString *) value; | |
2388b078 JF |
1944 | |
1945 | @end | |
1946 | ||
83682c75 | 1947 | @implementation CydiaOperation |
2388b078 | 1948 | |
83682c75 JF |
1949 | - (id) initWithOperator:(const char *)_operator value:(const char *)value { |
1950 | if ((self = [super init]) != nil) { | |
7b33d201 JF |
1951 | operator_ = [NSString stringWithUTF8String:_operator]; |
1952 | value_ = [NSString stringWithUTF8String:value]; | |
83682c75 JF |
1953 | } return self; |
1954 | } | |
1955 | ||
1956 | + (NSArray *) _attributeKeys { | |
1957 | return [NSArray arrayWithObjects: | |
1958 | @"operator", | |
1959 | @"value", | |
1960 | nil]; | |
2388b078 JF |
1961 | } |
1962 | ||
83682c75 JF |
1963 | - (NSArray *) attributeKeys { |
1964 | return [[self class] _attributeKeys]; | |
2388b078 JF |
1965 | } |
1966 | ||
83682c75 JF |
1967 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { |
1968 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1969 | } | |
1970 | ||
1971 | - (NSString *) operator { | |
1972 | return operator_; | |
1973 | } | |
1974 | ||
1975 | - (NSString *) value { | |
1976 | return value_; | |
1977 | } | |
1978 | ||
1979 | @end | |
1980 | /* }}} */ | |
810c9763 JF |
1981 | /* CydiaClause Class {{{ */ |
1982 | @interface CydiaClause : NSObject { | |
7b33d201 JF |
1983 | _H<NSString> package_; |
1984 | _H<CydiaOperation> version_; | |
83682c75 JF |
1985 | } |
1986 | ||
83682c75 JF |
1987 | - (NSString *) package; |
1988 | - (CydiaOperation *) version; | |
1989 | ||
1990 | @end | |
1991 | ||
810c9763 | 1992 | @implementation CydiaClause |
83682c75 | 1993 | |
83682c75 JF |
1994 | - (id) initWithIterator:(pkgCache::DepIterator &)dep { |
1995 | if ((self = [super init]) != nil) { | |
7b33d201 | 1996 | package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()]; |
83682c75 JF |
1997 | |
1998 | if (const char *version = dep.TargetVer()) | |
7b33d201 | 1999 | version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease]; |
83682c75 | 2000 | else |
7b33d201 | 2001 | version_ = (id) [NSNull null]; |
83682c75 JF |
2002 | } return self; |
2003 | } | |
2004 | ||
2005 | + (NSArray *) _attributeKeys { | |
2006 | return [NSArray arrayWithObjects: | |
2007 | @"package", | |
83682c75 JF |
2008 | @"version", |
2009 | nil]; | |
2010 | } | |
2011 | ||
2012 | - (NSArray *) attributeKeys { | |
2013 | return [[self class] _attributeKeys]; | |
2014 | } | |
2015 | ||
2016 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
2017 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
2018 | } | |
2019 | ||
83682c75 JF |
2020 | - (NSString *) package { |
2021 | return package_; | |
2022 | } | |
2023 | ||
2024 | - (CydiaOperation *) version { | |
2025 | return version_; | |
2388b078 JF |
2026 | } |
2027 | ||
810c9763 JF |
2028 | @end |
2029 | /* }}} */ | |
2030 | /* CydiaRelation Class {{{ */ | |
2031 | @interface CydiaRelation : NSObject { | |
7b33d201 JF |
2032 | _H<NSString> relationship_; |
2033 | _H<NSMutableArray> clauses_; | |
810c9763 JF |
2034 | } |
2035 | ||
2036 | - (NSString *) relationship; | |
2037 | - (NSArray *) clauses; | |
2038 | ||
2039 | @end | |
2040 | ||
2041 | @implementation CydiaRelation | |
2042 | ||
810c9763 JF |
2043 | - (id) initWithIterator:(pkgCache::DepIterator &)dep { |
2044 | if ((self = [super init]) != nil) { | |
7b33d201 JF |
2045 | relationship_ = [NSString stringWithUTF8String:dep.DepType()]; |
2046 | clauses_ = [NSMutableArray arrayWithCapacity:8]; | |
810c9763 JF |
2047 | |
2048 | pkgCache::DepIterator start; | |
2049 | pkgCache::DepIterator end; | |
2050 | dep.GlobOr(start, end); // ++dep | |
2051 | ||
2052 | _forever { | |
2053 | [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]]; | |
2054 | ||
2055 | // yes, seriously. (wtf?) | |
2056 | if (start == end) | |
2057 | break; | |
2058 | ++start; | |
2059 | } | |
2060 | } return self; | |
2061 | } | |
2062 | ||
2063 | + (NSArray *) _attributeKeys { | |
2064 | return [NSArray arrayWithObjects: | |
2065 | @"clauses", | |
2066 | @"relationship", | |
2067 | nil]; | |
2068 | } | |
2069 | ||
2070 | - (NSArray *) attributeKeys { | |
2071 | return [[self class] _attributeKeys]; | |
2072 | } | |
2073 | ||
2074 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
2075 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
2076 | } | |
2077 | ||
2078 | - (NSString *) relationship { | |
2079 | return relationship_; | |
2080 | } | |
2081 | ||
2082 | - (NSArray *) clauses { | |
2083 | return clauses_; | |
2084 | } | |
2085 | ||
2086 | - (void) addClause:(CydiaClause *)clause { | |
2087 | [clauses_ addObject:clause]; | |
2088 | } | |
2089 | ||
dc5812ec | 2090 | @end |
b4d89997 | 2091 | /* }}} */ |
36bb2ca2 | 2092 | /* Package Class {{{ */ |
12016ee5 | 2093 | struct ParsedPackage { |
974742b2 | 2094 | CYString md5sum_; |
12016ee5 JF |
2095 | CYString tagline_; |
2096 | ||
a412f357 | 2097 | CYString architecture_; |
12016ee5 JF |
2098 | CYString icon_; |
2099 | ||
2100 | CYString depiction_; | |
2101 | CYString homepage_; | |
12016ee5 JF |
2102 | CYString author_; |
2103 | ||
12016ee5 JF |
2104 | CYString support_; |
2105 | }; | |
2106 | ||
36bb2ca2 | 2107 | @interface Package : NSObject { |
13902177 | 2108 | uint32_t era_ : 25; |
89bdef78 | 2109 | @public uint32_t role_ : 3; |
aab28f8b JF |
2110 | uint32_t essential_ : 1; |
2111 | uint32_t obsolete_ : 1; | |
2112 | uint32_t ignored_ : 1; | |
13902177 | 2113 | uint32_t pooled_ : 1; |
aab28f8b | 2114 | |
64edd9df | 2115 | CYPool *pool_; |
a1440b10 | 2116 | |
9c5737d5 JF |
2117 | uint32_t rank_; |
2118 | ||
aab28f8b JF |
2119 | _transient Database *database_; |
2120 | ||
7376b55c | 2121 | pkgCache::VerIterator version_; |
36bb2ca2 | 2122 | pkgCache::PkgIterator iterator_; |
36bb2ca2 | 2123 | pkgCache::VerFileIterator file_; |
bbb879fb | 2124 | |
aab28f8b JF |
2125 | CYString id_; |
2126 | CYString name_; | |
22fd24dd | 2127 | CYString transform_; |
807ae6d7 | 2128 | |
4c0ed943 | 2129 | CYString latest_; |
6a155117 | 2130 | CYString installed_; |
b3906a21 | 2131 | time_t upgraded_; |
dc5812ec | 2132 | |
fe33a23e | 2133 | const char *section_; |
aab28f8b | 2134 | _transient NSString *section$_; |
f79a4512 | 2135 | |
7b33d201 | 2136 | _H<Source> source_; |
2388b078 | 2137 | |
bb6bb6d6 | 2138 | PackageValue *metadata_; |
aab28f8b | 2139 | ParsedPackage *parsed_; |
94b0b3e5 | 2140 | |
7b33d201 | 2141 | _H<NSMutableArray> tags_; |
b4d89997 JF |
2142 | } |
2143 | ||
64edd9df JF |
2144 | - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database; |
2145 | + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database; | |
b4d89997 | 2146 | |
2388b078 | 2147 | - (pkgCache::PkgIterator) iterator; |
68d927e2 | 2148 | - (void) parse; |
2388b078 | 2149 | |
36bb2ca2 | 2150 | - (NSString *) section; |
dec6029f JF |
2151 | - (NSString *) simpleSection; |
2152 | ||
f79a4512 JF |
2153 | - (NSString *) longSection; |
2154 | - (NSString *) shortSection; | |
2155 | ||
a3328c28 JF |
2156 | - (NSString *) uri; |
2157 | ||
7aa82ca2 | 2158 | - (MIMEAddress *) maintainer; |
36bb2ca2 | 2159 | - (size_t) size; |
eef4ccaf JF |
2160 | - (NSString *) longDescription; |
2161 | - (NSString *) shortDescription; | |
808c6eb6 | 2162 | - (unichar) index; |
dc5812ec | 2163 | |
94b0b3e5 | 2164 | - (PackageValue *) metadata; |
31bc18a7 | 2165 | - (time_t) seen; |
94b0b3e5 JF |
2166 | |
2167 | - (bool) subscribed; | |
2168 | - (bool) setSubscribed:(bool)subscribed; | |
2169 | ||
807ae6d7 | 2170 | - (BOOL) ignored; |
9e98e020 | 2171 | |
36bb2ca2 JF |
2172 | - (NSString *) latest; |
2173 | - (NSString *) installed; | |
6a155117 | 2174 | - (BOOL) uninstalled; |
5a09ae08 | 2175 | |
31f3cfff | 2176 | - (BOOL) upgradableAndEssential:(BOOL)essential; |
36bb2ca2 JF |
2177 | - (BOOL) essential; |
2178 | - (BOOL) broken; | |
7d2ac47f | 2179 | - (BOOL) unfiltered; |
6d9712c4 | 2180 | - (BOOL) visible; |
b4d89997 | 2181 | |
9bedffaa JF |
2182 | - (BOOL) half; |
2183 | - (BOOL) halfConfigured; | |
2184 | - (BOOL) halfInstalled; | |
2185 | - (BOOL) hasMode; | |
2186 | - (NSString *) mode; | |
2187 | ||
36bb2ca2 JF |
2188 | - (NSString *) id; |
2189 | - (NSString *) name; | |
770f2a8e | 2190 | - (UIImage *) icon; |
6f1a15d9 | 2191 | - (NSString *) homepage; |
25a2158d | 2192 | - (NSString *) depiction; |
7aa82ca2 | 2193 | - (MIMEAddress *) author; |
b4d89997 | 2194 | |
dc63e78f JF |
2195 | - (NSString *) support; |
2196 | ||
affeffc7 | 2197 | - (NSArray *) files; |
affeffc7 JF |
2198 | - (NSArray *) warnings; |
2199 | - (NSArray *) applications; | |
2388b078 | 2200 | |
36bb2ca2 | 2201 | - (Source *) source; |
b4d89997 | 2202 | |
9c5737d5 | 2203 | - (uint32_t) rank; |
d84597fe | 2204 | - (BOOL) matches:(NSArray *)query; |
b4d89997 | 2205 | |
6d9712c4 | 2206 | - (BOOL) hasTag:(NSString *)tag; |
c390d3ab | 2207 | - (NSString *) primaryPurpose; |
770f2a8e | 2208 | - (NSArray *) purposes; |
3bd1c2a2 | 2209 | - (bool) isCommercial; |
6d9712c4 | 2210 | |
cd95e390 JF |
2211 | - (void) setIndex:(size_t)index; |
2212 | ||
df213583 JF |
2213 | - (CYString &) cyname; |
2214 | ||
f79a4512 | 2215 | - (uint32_t) compareBySection:(NSArray *)sections; |
807ae6d7 | 2216 | |
36bb2ca2 JF |
2217 | - (void) install; |
2218 | - (void) remove; | |
06aa974d | 2219 | |
36bb2ca2 | 2220 | @end |
b4d89997 | 2221 | |
f79a4512 JF |
2222 | uint32_t PackageChangesRadix(Package *self, void *) { |
2223 | union { | |
2224 | uint32_t key; | |
2225 | ||
2226 | struct { | |
2227 | uint32_t timestamp : 30; | |
2228 | uint32_t ignored : 1; | |
2229 | uint32_t upgradable : 1; | |
2230 | } bits; | |
2231 | } value; | |
2232 | ||
2233 | bool upgradable([self upgradableAndEssential:YES]); | |
2234 | value.bits.upgradable = upgradable ? 1 : 0; | |
2235 | ||
2236 | if (upgradable) { | |
2237 | value.bits.timestamp = 0; | |
2238 | value.bits.ignored = [self ignored] ? 0 : 1; | |
2239 | value.bits.upgradable = 1; | |
2240 | } else { | |
36047c66 | 2241 | value.bits.timestamp = [self seen] >> 2; |
f79a4512 JF |
2242 | value.bits.ignored = 0; |
2243 | value.bits.upgradable = 0; | |
2244 | } | |
2245 | ||
2246 | return _not(uint32_t) - value.key; | |
2247 | } | |
2248 | ||
aeeb755b JF |
2249 | CYString &(*PackageName)(Package *self, SEL sel); |
2250 | ||
df213583 JF |
2251 | uint32_t PackagePrefixRadix(Package *self, void *context) { |
2252 | size_t offset(reinterpret_cast<size_t>(context)); | |
aeeb755b | 2253 | CYString &name(PackageName(self, @selector(cyname))); |
677b8415 | 2254 | |
df213583 JF |
2255 | size_t size(name.size()); |
2256 | if (size == 0) | |
2257 | return 0; | |
2258 | char *text(name.data()); | |
677b8415 | 2259 | |
df213583 JF |
2260 | size_t zeros; |
2261 | if (!isdigit(text[0])) | |
2262 | zeros = 0; | |
2263 | else { | |
2264 | size_t digits(1); | |
2265 | while (size != digits && isdigit(text[digits])) | |
2266 | if (++digits == 4) | |
2267 | break; | |
2268 | zeros = 4 - digits; | |
2269 | } | |
677b8415 | 2270 | |
df213583 JF |
2271 | uint8_t data[4]; |
2272 | ||
df213583 JF |
2273 | if (offset == 0 && zeros != 0) { |
2274 | memset(data, '0', zeros); | |
2275 | memcpy(data + zeros, text, 4 - zeros); | |
2276 | } else { | |
2277 | /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */ | |
2278 | if (size <= offset - zeros) | |
2279 | return 0; | |
2280 | ||
2281 | text += offset - zeros; | |
2282 | size -= offset - zeros; | |
2283 | ||
2284 | if (size >= 4) | |
2285 | memcpy(data, text, 4); | |
2286 | else { | |
2287 | memcpy(data, text, size); | |
2288 | memset(data + size, 0, 4 - size); | |
2289 | } | |
2290 | ||
2291 | for (size_t i(0); i != 4; ++i) | |
2292 | if (isalpha(data[i])) | |
a7a59ee1 | 2293 | data[i] |= 0x20; |
df213583 JF |
2294 | } |
2295 | ||
2296 | if (offset == 0) | |
a7a59ee1 JF |
2297 | if (data[0] == '@') |
2298 | data[0] = 0x7f; | |
2299 | else | |
2300 | data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6]; | |
df213583 JF |
2301 | |
2302 | /* XXX: ntohl may be more honest */ | |
2303 | return OSSwapInt32(*reinterpret_cast<uint32_t *>(data)); | |
2304 | } | |
2305 | ||
22fd24dd | 2306 | CFComparisonResult StringNameCompare(CFStringRef lhn, CFStringRef rhn, size_t length) { |
df213583 | 2307 | _profile(PackageNameCompare) |
5358f56f | 2308 | if (lhn == NULL) |
b129e6d9 | 2309 | return rhn == NULL ? kCFCompareEqualTo : kCFCompareLessThan; |
5358f56f | 2310 | else if (rhn == NULL) |
b129e6d9 | 2311 | return kCFCompareGreaterThan; |
5358f56f | 2312 | |
22fd24dd | 2313 | CFIndex length(CFStringGetLength(lhn)); |
aeeb755b | 2314 | |
677b8415 | 2315 | _profile(PackageNameCompare$NumbersLast) |
22fd24dd | 2316 | if (length != 0 && CFStringGetLength(rhn) != 0) { |
677b8415 JF |
2317 | UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0)); |
2318 | UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0)); | |
2319 | bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet)); | |
2320 | if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet)) | |
b129e6d9 | 2321 | return lha ? kCFCompareLessThan : kCFCompareGreaterThan; |
677b8415 JF |
2322 | } |
2323 | _end | |
2324 | ||
2325 | _profile(PackageNameCompare$Compare) | |
22fd24dd | 2326 | return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, (CFLocaleRef) (id) CollationLocale_); |
677b8415 JF |
2327 | _end |
2328 | _end | |
2329 | } | |
2330 | ||
22fd24dd JF |
2331 | _finline CFComparisonResult StringNameCompare(NSString *lhn, NSString*rhn, size_t length) { |
2332 | return StringNameCompare((CFStringRef) lhn, (CFStringRef) rhn, length); | |
2333 | } | |
2334 | ||
aeeb755b | 2335 | CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) { |
22fd24dd JF |
2336 | CYString &lhn(PackageName(lhs, @selector(cyname))); |
2337 | NSString *rhn(PackageName(rhs, @selector(cyname))); | |
2338 | return StringNameCompare(lhn, rhn, lhn.size()); | |
aeeb755b JF |
2339 | } |
2340 | ||
2341 | CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *arg) { | |
2342 | return PackageNameCompare(*lhs, *rhs, arg); | |
677b8415 JF |
2343 | } |
2344 | ||
2345 | struct PackageNameOrdering : | |
2346 | std::binary_function<Package *, Package *, bool> | |
2347 | { | |
2348 | _finline bool operator ()(Package *lhs, Package *rhs) const { | |
b129e6d9 | 2349 | return PackageNameCompare(lhs, rhs, NULL) == kCFCompareLessThan; |
677b8415 JF |
2350 | } |
2351 | }; | |
2352 | ||
36bb2ca2 | 2353 | @implementation Package |
b4d89997 | 2354 | |
df213583 JF |
2355 | - (NSString *) description { |
2356 | return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)]; | |
2357 | } | |
2358 | ||
36bb2ca2 | 2359 | - (void) dealloc { |
13902177 | 2360 | if (!pooled_) |
64edd9df | 2361 | delete pool_; |
12016ee5 JF |
2362 | if (parsed_ != NULL) |
2363 | delete parsed_; | |
36bb2ca2 | 2364 | [super dealloc]; |
b4d89997 JF |
2365 | } |
2366 | ||
3bd1c2a2 | 2367 | + (NSString *) webScriptNameForSelector:(SEL)selector { |
e58ff941 | 2368 | if (false); |
10d63f9e JF |
2369 | else if (selector == @selector(clear)) |
2370 | return @"clear"; | |
2cd1afd9 JF |
2371 | else if (selector == @selector(getField:)) |
2372 | return @"getField"; | |
8fb7c7a1 JF |
2373 | else if (selector == @selector(getRecord)) |
2374 | return @"getRecord"; | |
e58ff941 | 2375 | else if (selector == @selector(hasTag:)) |
3bd1c2a2 | 2376 | return @"hasTag"; |
10d63f9e JF |
2377 | else if (selector == @selector(install)) |
2378 | return @"install"; | |
2379 | else if (selector == @selector(remove)) | |
2380 | return @"remove"; | |
3bd1c2a2 JF |
2381 | else |
2382 | return nil; | |
2383 | } | |
2384 | ||
2385 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
2386 | return [self webScriptNameForSelector:selector] == nil; | |
2387 | } | |
2388 | ||
6f1a15d9 | 2389 | + (NSArray *) _attributeKeys { |
e58ff941 JF |
2390 | return [NSArray arrayWithObjects: |
2391 | @"applications", | |
a412f357 | 2392 | @"architecture", |
e58ff941 JF |
2393 | @"author", |
2394 | @"depiction", | |
2395 | @"essential", | |
2396 | @"homepage", | |
2397 | @"icon", | |
2398 | @"id", | |
2399 | @"installed", | |
2400 | @"latest", | |
2401 | @"longDescription", | |
2402 | @"longSection", | |
2403 | @"maintainer", | |
974742b2 | 2404 | @"md5sum", |
e58ff941 JF |
2405 | @"mode", |
2406 | @"name", | |
2407 | @"purposes", | |
83682c75 | 2408 | @"relations", |
e58ff941 | 2409 | @"section", |
de1ace71 | 2410 | @"selection", |
e58ff941 JF |
2411 | @"shortDescription", |
2412 | @"shortSection", | |
2413 | @"simpleSection", | |
2414 | @"size", | |
2415 | @"source", | |
5959b596 | 2416 | @"state", |
e58ff941 | 2417 | @"support", |
82aa2434 | 2418 | @"tags", |
1342f808 | 2419 | @"upgraded", |
e58ff941 JF |
2420 | @"warnings", |
2421 | nil]; | |
6f1a15d9 JF |
2422 | } |
2423 | ||
2424 | - (NSArray *) attributeKeys { | |
2425 | return [[self class] _attributeKeys]; | |
2426 | } | |
2427 | ||
2428 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
2429 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
2430 | } | |
2431 | ||
83682c75 JF |
2432 | - (NSArray *) relations { |
2433 | @synchronized (database_) { | |
2434 | NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]); | |
810c9763 JF |
2435 | for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep) |
2436 | [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]]; | |
83682c75 JF |
2437 | return relations; |
2438 | } } | |
2439 | ||
a412f357 JF |
2440 | - (NSString *) architecture { |
2441 | [self parse]; | |
2442 | @synchronized (database_) { | |
2443 | return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_; | |
2444 | } } | |
2445 | ||
2cd1afd9 JF |
2446 | - (NSString *) getField:(NSString *)name { |
2447 | @synchronized (database_) { | |
2448 | if ([database_ era] != era_ || file_.end()) | |
2449 | return nil; | |
2450 | ||
2451 | pkgRecords::Parser &parser([database_ records]->Lookup(file_)); | |
2452 | ||
2453 | const char *start, *end; | |
2454 | if (!parser.Find([name UTF8String], start, end)) | |
2455 | return (NSString *) [NSNull null]; | |
2456 | ||
b6f9e52a | 2457 | return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]]; |
2cd1afd9 JF |
2458 | } } |
2459 | ||
8fb7c7a1 JF |
2460 | - (NSString *) getRecord { |
2461 | @synchronized (database_) { | |
2462 | if ([database_ era] != era_ || file_.end()) | |
2463 | return nil; | |
2464 | ||
2465 | pkgRecords::Parser &parser([database_ records]->Lookup(file_)); | |
2466 | ||
2467 | const char *start, *end; | |
2468 | parser.GetRec(start, end); | |
2469 | ||
2470 | return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]]; | |
2471 | } } | |
2472 | ||
68d927e2 | 2473 | - (void) parse { |
12016ee5 | 2474 | if (parsed_ != NULL) |
68d927e2 | 2475 | return; |
12016ee5 JF |
2476 | @synchronized (database_) { |
2477 | if ([database_ era] != era_ || file_.end()) | |
68d927e2 JF |
2478 | return; |
2479 | ||
12016ee5 JF |
2480 | ParsedPackage *parsed(new ParsedPackage); |
2481 | parsed_ = parsed; | |
2482 | ||
68d927e2 JF |
2483 | _profile(Package$parse) |
2484 | pkgRecords::Parser *parser; | |
2485 | ||
2486 | _profile(Package$parse$Lookup) | |
2487 | parser = &[database_ records]->Lookup(file_); | |
2488 | _end | |
2489 | ||
00067a67 | 2490 | CYString bugs; |
68d927e2 JF |
2491 | CYString website; |
2492 | ||
2493 | _profile(Package$parse$Find) | |
2494 | struct { | |
2495 | const char *name_; | |
2496 | CYString *value_; | |
2497 | } names[] = { | |
a412f357 | 2498 | {"architecture", &parsed->architecture_}, |
12016ee5 JF |
2499 | {"icon", &parsed->icon_}, |
2500 | {"depiction", &parsed->depiction_}, | |
2501 | {"homepage", &parsed->homepage_}, | |
68d927e2 | 2502 | {"website", &website}, |
00067a67 | 2503 | {"bugs", &bugs}, |
12016ee5 | 2504 | {"support", &parsed->support_}, |
12016ee5 | 2505 | {"author", &parsed->author_}, |
974742b2 | 2506 | {"md5sum", &parsed->md5sum_}, |
68d927e2 JF |
2507 | }; |
2508 | ||
2509 | for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) { | |
2510 | const char *start, *end; | |
2511 | ||
2512 | if (parser->Find(names[i].name_, start, end)) { | |
2513 | CYString &value(*names[i].value_); | |
2514 | _profile(Package$parse$Value) | |
2515 | value.set(pool_, start, end - start); | |
2516 | _end | |
2517 | } | |
2518 | } | |
2519 | _end | |
2520 | ||
2521 | _profile(Package$parse$Tagline) | |
0209cce5 | 2522 | parsed->tagline_.set(pool_, parser->ShortDesc()); |
68d927e2 JF |
2523 | _end |
2524 | ||
2525 | _profile(Package$parse$Retain) | |
12016ee5 JF |
2526 | if (parsed->homepage_.empty()) |
2527 | parsed->homepage_ = website; | |
2528 | if (parsed->homepage_ == parsed->depiction_) | |
2529 | parsed->homepage_.clear(); | |
00067a67 JF |
2530 | if (parsed->support_.empty()) |
2531 | parsed->support_ = bugs; | |
68d927e2 JF |
2532 | _end |
2533 | _end | |
12016ee5 | 2534 | } } |
68d927e2 | 2535 | |
64edd9df | 2536 | - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database { |
a1440b10 | 2537 | if ((self = [super init]) != nil) { |
7376b55c | 2538 | _profile(Package$initWithVersion) |
13902177 | 2539 | if (pool == NULL) |
64edd9df | 2540 | pool_ = new CYPool(); |
13902177 JF |
2541 | else { |
2542 | pool_ = pool; | |
2543 | pooled_ = true; | |
2544 | } | |
a1440b10 | 2545 | |
36bb2ca2 | 2546 | database_ = database; |
aab28f8b | 2547 | era_ = [database era]; |
b4d89997 | 2548 | |
aab28f8b | 2549 | version_ = version; |
2083b866 | 2550 | |
0209cce5 | 2551 | pkgCache::PkgIterator iterator(version_.ParentPkg()); |
aab28f8b | 2552 | iterator_ = iterator; |
06aa974d | 2553 | |
aab28f8b | 2554 | _profile(Package$initWithVersion$Version) |
826318ca | 2555 | file_ = version_.FileList(); |
68d927e2 | 2556 | _end |
808c6eb6 | 2557 | |
aab28f8b | 2558 | _profile(Package$initWithVersion$Cache) |
0209cce5 | 2559 | name_.set(NULL, version_.Display()); |
aab28f8b JF |
2560 | |
2561 | latest_.set(NULL, StripVersion_(version_.VerStr())); | |
2562 | ||
2563 | pkgCache::VerIterator current(iterator.CurrentVer()); | |
2564 | if (!current.end()) | |
2565 | installed_.set(NULL, StripVersion_(current.VerStr())); | |
808c6eb6 JF |
2566 | _end |
2567 | ||
22fd24dd JF |
2568 | _profile(Package$initWithVersion$Transliterate) do { |
2569 | if (CollationTransl_ == NULL) | |
2570 | break; | |
2571 | if (name_.empty()) | |
2572 | break; | |
2573 | ||
2574 | _profile(Package$initWithVersion$Transliterate$utf8) | |
2575 | const uint8_t *data(reinterpret_cast<const uint8_t *>(name_.data())); | |
2576 | for (size_t i(0), e(name_.size()); i != e; ++i) | |
2577 | if (data[i] >= 0x80) | |
2578 | goto extended; | |
2579 | break; extended:; | |
2580 | _end | |
2581 | ||
2582 | UErrorCode code(U_ZERO_ERROR); | |
2583 | int32_t length; | |
2584 | ||
2585 | _profile(Package$initWithVersion$Transliterate$u_strFromUTF8WithSub) | |
2586 | CollationString_.resize(name_.size()); | |
2587 | u_strFromUTF8WithSub(&CollationString_[0], CollationString_.size(), &length, name_.data(), name_.size(), 0xfffd, NULL, &code); | |
2588 | if (!U_SUCCESS(code)) | |
2589 | break; | |
2590 | CollationString_.resize(length); | |
2591 | _end | |
2592 | ||
2593 | _profile(Package$initWithVersion$Transliterate$utrans_trans) | |
2594 | length = CollationString_.size(); | |
2595 | utrans_trans(CollationTransl_, reinterpret_cast<UReplaceable *>(&CollationString_), &CollationUCalls_, 0, &length, &code); | |
2596 | if (!U_SUCCESS(code)) | |
2597 | break; | |
2598 | _assert(CollationString_.size() == length); | |
2599 | _end | |
2600 | ||
2601 | _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$preflight) | |
2602 | u_strToUTF8WithSub(NULL, 0, &length, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code); | |
2603 | if (code == U_BUFFER_OVERFLOW_ERROR) | |
2604 | code = U_ZERO_ERROR; | |
2605 | else if (!U_SUCCESS(code)) | |
2606 | break; | |
2607 | _end | |
2608 | ||
2609 | char *transform; | |
2610 | _profile(Package$initWithVersion$Transliterate$apr_palloc) | |
64edd9df | 2611 | transform = pool_->malloc<char>(length); |
22fd24dd JF |
2612 | _end |
2613 | _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$transform) | |
2614 | u_strToUTF8WithSub(transform, length, NULL, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code); | |
2615 | if (!U_SUCCESS(code)) | |
2616 | break; | |
2617 | _end | |
2618 | ||
2619 | transform_.set(NULL, transform, length); | |
2620 | } while (false); _end | |
2621 | ||
7376b55c | 2622 | _profile(Package$initWithVersion$Tags) |
0209cce5 JF |
2623 | #ifdef __arm64__ |
2624 | pkgCache::TagIterator tag(version_.TagList()); | |
2625 | #else | |
aab28f8b | 2626 | pkgCache::TagIterator tag(iterator.TagList()); |
0209cce5 | 2627 | #endif |
0dd0c302 | 2628 | if (!tag.end()) { |
7b33d201 | 2629 | tags_ = [NSMutableArray arrayWithCapacity:8]; |
5b625a2e JF |
2630 | |
2631 | goto tag; for (; !tag.end(); ++tag) tag: { | |
0dd0c302 | 2632 | const char *name(tag.Name()); |
5b625a2e JF |
2633 | NSString *string((NSString *) CYStringCreate(name)); |
2634 | if (string == nil) | |
2635 | continue; | |
2636 | ||
2637 | [tags_ addObject:[string autorelease]]; | |
0a377825 | 2638 | |
97a3d89e JF |
2639 | if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) { |
2640 | if (strcmp(name + 6, "enduser") == 0) | |
2641 | role_ = 1; | |
2642 | else if (strcmp(name + 6, "hacker") == 0) | |
2643 | role_ = 2; | |
2644 | else if (strcmp(name + 6, "developer") == 0) | |
2645 | role_ = 3; | |
2646 | else if (strcmp(name + 6, "cydia") == 0) | |
2647 | role_ = 7; | |
2648 | else | |
2649 | role_ = 4; | |
2650 | } | |
0a377825 JF |
2651 | |
2652 | if (strncmp(name, "cydia::", 7) == 0) { | |
2653 | if (strcmp(name + 7, "essential") == 0) | |
2654 | essential_ = true; | |
2655 | else if (strcmp(name + 7, "obsolete") == 0) | |
2656 | obsolete_ = true; | |
2657 | } | |
5b625a2e | 2658 | } |
0dd0c302 | 2659 | } |
808c6eb6 | 2660 | _end |
7b0ce2da | 2661 | |
7376b55c | 2662 | _profile(Package$initWithVersion$Metadata) |
029c8b74 JF |
2663 | const char *mixed(iterator.Name()); |
2664 | size_t size(strlen(mixed)); | |
81bf4684 JF |
2665 | static const size_t prefix(sizeof("/var/lib/dpkg/info/") - 1); |
2666 | char lower[prefix + size + 5 + 1]; | |
029c8b74 JF |
2667 | |
2668 | for (size_t i(0); i != size; ++i) | |
81bf4684 JF |
2669 | lower[prefix + i] = mixed[i] | 0x20; |
2670 | ||
2671 | if (!installed_.empty()) { | |
2672 | memcpy(lower, "/var/lib/dpkg/info/", prefix); | |
2673 | memcpy(lower + prefix + size, ".list", 6); | |
2674 | struct stat info; | |
2675 | if (stat(lower, &info) != -1) | |
b3906a21 | 2676 | upgraded_ = info.st_birthtime; |
81bf4684 | 2677 | } |
029c8b74 | 2678 | |
81bf4684 | 2679 | PackageValue *metadata(PackageFind(lower + prefix, size)); |
bb6bb6d6 | 2680 | metadata_ = metadata; |
677b8415 | 2681 | |
029c8b74 JF |
2682 | id_.set(NULL, metadata->name_, size); |
2683 | ||
94b0b3e5 JF |
2684 | const char *latest(version_.VerStr()); |
2685 | size_t length(strlen(latest)); | |
a4b0ec52 | 2686 | |
94b0b3e5 | 2687 | uint16_t vhash(hashlittle(latest, length)); |
677b8415 | 2688 | |
94b0b3e5 JF |
2689 | size_t capped(std::min<size_t>(8, length)); |
2690 | latest = latest + length - capped; | |
677b8415 | 2691 | |
94b0b3e5 JF |
2692 | if (metadata->first_ == 0) |
2693 | metadata->first_ = now_; | |
808c6eb6 | 2694 | |
94b0b3e5 | 2695 | if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) { |
94b0b3e5 JF |
2696 | strncpy(metadata->version_, latest, sizeof(metadata->version_)); |
2697 | metadata->vhash_ = vhash; | |
2f856365 JF |
2698 | metadata->last_ = now_; |
2699 | } else if (metadata->last_ == 0) | |
2700 | metadata->last_ = metadata->first_; | |
808c6eb6 | 2701 | _end |
a1440b10 | 2702 | |
7376b55c | 2703 | _profile(Package$initWithVersion$Section) |
0bc841de | 2704 | section_ = version_.Section(); |
f79a4512 | 2705 | _end |
a1440b10 | 2706 | |
aab28f8b JF |
2707 | _profile(Package$initWithVersion$Flags) |
2708 | essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES); | |
2709 | ignored_ = iterator->SelectedState == pkgCache::State::Hold; | |
4fa77608 | 2710 | _end |
3dd53516 | 2711 | _end } return self; |
dc5812ec JF |
2712 | } |
2713 | ||
64edd9df | 2714 | + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database { |
b1ce61ec JF |
2715 | pkgCache::VerIterator version; |
2716 | ||
2717 | _profile(Package$packageWithIterator$GetCandidateVer) | |
2718 | version = [database policy]->GetCandidateVer(iterator); | |
2719 | _end | |
2720 | ||
7376b55c JF |
2721 | if (version.end()) |
2722 | return nil; | |
b1ce61ec | 2723 | |
8564efc1 JF |
2724 | Package *package; |
2725 | ||
2726 | _profile(Package$packageWithIterator$Allocate) | |
2727 | package = [Package allocWithZone:zone]; | |
2728 | _end | |
2729 | ||
2730 | _profile(Package$packageWithIterator$Initialize) | |
2731 | package = [package | |
2732 | initWithVersion:version | |
2733 | withZone:zone | |
2734 | inPool:pool | |
2735 | database:database | |
2736 | ]; | |
2737 | _end | |
2738 | ||
2739 | _profile(Package$packageWithIterator$Autorelease) | |
2740 | package = [package autorelease]; | |
2741 | _end | |
2742 | ||
2743 | return package; | |
3dd53516 | 2744 | } |
dc5812ec | 2745 | |
2388b078 JF |
2746 | - (pkgCache::PkgIterator) iterator { |
2747 | return iterator_; | |
2748 | } | |
2749 | ||
c9f3aa21 JF |
2750 | - (NSArray *) downgrades { |
2751 | NSMutableArray *versions([NSMutableArray arrayWithCapacity:4]); | |
2752 | ||
2753 | for (auto version(iterator_.VersionList()); !version.end(); ++version) { | |
2754 | if (version == version_) | |
2755 | continue; | |
2756 | Package *package([[[Package allocWithZone:NULL] initWithVersion:version withZone:NULL inPool:NULL database:database_] autorelease]); | |
2757 | if ([package source] == nil) | |
2758 | continue; | |
2759 | [versions addObject:package]; | |
2760 | } | |
2761 | ||
2762 | return versions; | |
2763 | } | |
2764 | ||
36bb2ca2 | 2765 | - (NSString *) section { |
f79a4512 | 2766 | if (section$_ == nil) { |
fe33a23e | 2767 | if (section_ == NULL) |
f79a4512 JF |
2768 | return nil; |
2769 | ||
fe33a23e JF |
2770 | _profile(Package$section$mappedSectionForPointer) |
2771 | section$_ = [database_ mappedSectionForPointer:section_]; | |
e4f3d6e9 | 2772 | _end |
f79a4512 | 2773 | } return section$_; |
dc5812ec JF |
2774 | } |
2775 | ||
dec6029f JF |
2776 | - (NSString *) simpleSection { |
2777 | if (NSString *section = [self section]) | |
2778 | return Simplify(section); | |
2779 | else | |
2780 | return nil; | |
a3328c28 | 2781 | } |
dec6029f | 2782 | |
f79a4512 | 2783 | - (NSString *) longSection { |
b23b24db JF |
2784 | if (NSString *section = [self section]) |
2785 | return LocalizeSection(section); | |
2786 | else | |
2787 | return nil; | |
f79a4512 JF |
2788 | } |
2789 | ||
2790 | - (NSString *) shortSection { | |
2791 | return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"]; | |
2792 | } | |
2793 | ||
a3328c28 JF |
2794 | - (NSString *) uri { |
2795 | return nil; | |
2796 | #if 0 | |
2797 | pkgIndexFile *index; | |
2798 | pkgCache::PkgFileIterator file(file_.File()); | |
2799 | if (![database_ list].FindIndex(file, index)) | |
2800 | return nil; | |
2801 | return [NSString stringWithUTF8String:iterator_->Path]; | |
2802 | //return [NSString stringWithUTF8String:file.Site()]; | |
2803 | //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()]; | |
2804 | #endif | |
dec6029f JF |
2805 | } |
2806 | ||
7aa82ca2 | 2807 | - (MIMEAddress *) maintainer { |
884171d6 JF |
2808 | @synchronized (database_) { |
2809 | if ([database_ era] != era_ || file_.end()) | |
5a09ae08 | 2810 | return nil; |
884171d6 | 2811 | |
36bb2ca2 | 2812 | pkgRecords::Parser *parser = &[database_ records]->Lookup(file_); |
00e2109e | 2813 | const std::string &maintainer(parser->Maintainer()); |
7aa82ca2 | 2814 | return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]]; |
884171d6 | 2815 | } } |
8fe19fc1 | 2816 | |
974742b2 JF |
2817 | - (NSString *) md5sum { |
2818 | return parsed_ == NULL ? nil : (id) parsed_->md5sum_; | |
2819 | } | |
2820 | ||
36bb2ca2 | 2821 | - (size_t) size { |
884171d6 JF |
2822 | @synchronized (database_) { |
2823 | if ([database_ era] != era_ || version_.end()) | |
2824 | return 0; | |
2825 | ||
2826 | return version_->InstalledSize; | |
2827 | } } | |
dc5812ec | 2828 | |
eef4ccaf | 2829 | - (NSString *) longDescription { |
3dd53516 JF |
2830 | @synchronized (database_) { |
2831 | if ([database_ era] != era_ || file_.end()) | |
5a09ae08 | 2832 | return nil; |
3dd53516 | 2833 | |
36bb2ca2 | 2834 | pkgRecords::Parser *parser = &[database_ records]->Lookup(file_); |
2388b078 | 2835 | NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]); |
8fe19fc1 | 2836 | |
36bb2ca2 JF |
2837 | NSArray *lines = [description componentsSeparatedByString:@"\n"]; |
2838 | NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)]; | |
2839 | if ([lines count] < 2) | |
2840 | return nil; | |
3178d79b | 2841 | |
36bb2ca2 | 2842 | NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet]; |
c4dcf2c2 | 2843 | for (size_t i(1), e([lines count]); i != e; ++i) { |
36bb2ca2 JF |
2844 | NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace]; |
2845 | [trimmed addObject:trim]; | |
2846 | } | |
3178d79b | 2847 | |
36bb2ca2 | 2848 | return [trimmed componentsJoinedByString:@"\n"]; |
3dd53516 | 2849 | } } |
dc5812ec | 2850 | |
eef4ccaf | 2851 | - (NSString *) shortDescription { |
60bef540 JF |
2852 | if (parsed_ != NULL) |
2853 | return static_cast<NSString *>(parsed_->tagline_); | |
2854 | ||
2855 | @synchronized (database_) { | |
2856 | pkgRecords::Parser &parser([database_ records]->Lookup(file_)); | |
0209cce5 JF |
2857 | std::string value(parser.ShortDesc()); |
2858 | if (value.empty()) | |
60bef540 | 2859 | return nil; |
0209cce5 JF |
2860 | if (value.size() > 200) |
2861 | value.resize(200); | |
2862 | return [(id) CYStringCreate(value) autorelease]; | |
60bef540 | 2863 | } } |
eef4ccaf | 2864 | |
808c6eb6 JF |
2865 | - (unichar) index { |
2866 | _profile(Package$index) | |
677b8415 JF |
2867 | CFStringRef name((CFStringRef) [self name]); |
2868 | if (CFStringGetLength(name) == 0) | |
808c6eb6 | 2869 | return '#'; |
677b8415 JF |
2870 | UniChar character(CFStringGetCharacterAtIndex(name, 0)); |
2871 | if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet)) | |
808c6eb6 | 2872 | return '#'; |
447db19d | 2873 | return toupper(character); |
808c6eb6 | 2874 | _end |
36bb2ca2 | 2875 | } |
3178d79b | 2876 | |
94b0b3e5 | 2877 | - (PackageValue *) metadata { |
bb6bb6d6 | 2878 | return metadata_; |
807ae6d7 JF |
2879 | } |
2880 | ||
31bc18a7 | 2881 | - (time_t) seen { |
94b0b3e5 JF |
2882 | PackageValue *metadata([self metadata]); |
2883 | return metadata->subscribed_ ? metadata->last_ : metadata->first_; | |
3178d79b JF |
2884 | } |
2885 | ||
94b0b3e5 JF |
2886 | - (bool) subscribed { |
2887 | return [self metadata]->subscribed_; | |
2888 | } | |
2889 | ||
2890 | - (bool) setSubscribed:(bool)subscribed { | |
2891 | PackageValue *metadata([self metadata]); | |
2892 | if (metadata->subscribed_ == subscribed) | |
2893 | return false; | |
2894 | metadata->subscribed_ = subscribed; | |
2895 | return true; | |
807ae6d7 JF |
2896 | } |
2897 | ||
2898 | - (BOOL) ignored { | |
1b18f026 | 2899 | return ignored_; |
807ae6d7 JF |
2900 | } |
2901 | ||
36bb2ca2 JF |
2902 | - (NSString *) latest { |
2903 | return latest_; | |
8fe19fc1 JF |
2904 | } |
2905 | ||
36bb2ca2 JF |
2906 | - (NSString *) installed { |
2907 | return installed_; | |
3178d79b JF |
2908 | } |
2909 | ||
6a155117 JF |
2910 | - (BOOL) uninstalled { |
2911 | return installed_.empty(); | |
2912 | } | |
2913 | ||
31f3cfff | 2914 | - (BOOL) upgradableAndEssential:(BOOL)essential { |
677b8415 JF |
2915 | _profile(Package$upgradableAndEssential) |
2916 | pkgCache::VerIterator current(iterator_.CurrentVer()); | |
2917 | if (current.end()) | |
e4f3d6e9 | 2918 | return essential && essential_; |
677b8415 | 2919 | else |
826318ca | 2920 | return version_ != current; |
677b8415 | 2921 | _end |
36bb2ca2 | 2922 | } |
3178d79b | 2923 | |
36bb2ca2 | 2924 | - (BOOL) essential { |
a1440b10 | 2925 | return essential_; |
3178d79b JF |
2926 | } |
2927 | ||
36bb2ca2 | 2928 | - (BOOL) broken { |
9bedffaa JF |
2929 | return [database_ cache][iterator_].InstBroken(); |
2930 | } | |
2931 | ||
7d2ac47f | 2932 | - (BOOL) unfiltered { |
4fa77608 | 2933 | _profile(Package$unfiltered$obsolete) |
cf48f656 | 2934 | if (_unlikely(obsolete_)) |
4fa77608 JF |
2935 | return false; |
2936 | _end | |
2937 | ||
4121c5e0 JF |
2938 | _profile(Package$unfiltered$role) |
2939 | if (_unlikely(role_ > 3)) | |
4fa77608 JF |
2940 | return false; |
2941 | _end | |
2942 | ||
e4f3d6e9 JF |
2943 | return true; |
2944 | } | |
4fa77608 | 2945 | |
e4f3d6e9 JF |
2946 | - (BOOL) visible { |
2947 | if (![self unfiltered]) | |
2948 | return false; | |
2949 | ||
fe33a23e JF |
2950 | NSString *section; |
2951 | ||
2952 | _profile(Package$visible$section) | |
2953 | section = [self section]; | |
2954 | _end | |
4fa77608 | 2955 | |
e4f3d6e9 | 2956 | _profile(Package$visible$isSectionVisible) |
45447dc3 | 2957 | if (!isSectionVisible(section)) |
4fa77608 JF |
2958 | return false; |
2959 | _end | |
2960 | ||
2961 | return true; | |
7d2ac47f JF |
2962 | } |
2963 | ||
9bedffaa | 2964 | - (BOOL) half { |
677b8415 | 2965 | unsigned char current(iterator_->CurrentState); |
9bedffaa JF |
2966 | return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled; |
2967 | } | |
2968 | ||
2969 | - (BOOL) halfConfigured { | |
2970 | return iterator_->CurrentState == pkgCache::State::HalfConfigured; | |
2971 | } | |
2972 | ||
2973 | - (BOOL) halfInstalled { | |
2974 | return iterator_->CurrentState == pkgCache::State::HalfInstalled; | |
2975 | } | |
2976 | ||
2977 | - (BOOL) hasMode { | |
f18b4a97 JF |
2978 | @synchronized (database_) { |
2979 | if ([database_ era] != era_ || iterator_.end()) | |
b129e6d9 | 2980 | return NO; |
f18b4a97 | 2981 | |
9bedffaa JF |
2982 | pkgDepCache::StateCache &state([database_ cache][iterator_]); |
2983 | return state.Mode != pkgDepCache::ModeKeep; | |
f18b4a97 | 2984 | } } |
9bedffaa JF |
2985 | |
2986 | - (NSString *) mode { | |
f18b4a97 JF |
2987 | @synchronized (database_) { |
2988 | if ([database_ era] != era_ || iterator_.end()) | |
2989 | return nil; | |
2990 | ||
9bedffaa JF |
2991 | pkgDepCache::StateCache &state([database_ cache][iterator_]); |
2992 | ||
2993 | switch (state.Mode) { | |
2994 | case pkgDepCache::ModeDelete: | |
2995 | if ((state.iFlags & pkgDepCache::Purge) != 0) | |
f79a4512 | 2996 | return @"PURGE"; |
9bedffaa | 2997 | else |
f79a4512 | 2998 | return @"REMOVE"; |
9bedffaa | 2999 | case pkgDepCache::ModeKeep: |
dc63e78f | 3000 | if ((state.iFlags & pkgDepCache::ReInstall) != 0) |
f79a4512 | 3001 | return @"REINSTALL"; |
dc63e78f JF |
3002 | /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0) |
3003 | return nil;*/ | |
9bedffaa JF |
3004 | else |
3005 | return nil; | |
9bedffaa | 3006 | case pkgDepCache::ModeInstall: |
dc63e78f | 3007 | /*if ((state.iFlags & pkgDepCache::ReInstall) != 0) |
f79a4512 | 3008 | return @"REINSTALL"; |
dc63e78f | 3009 | else*/ switch (state.Status) { |
9bedffaa | 3010 | case -1: |
f79a4512 | 3011 | return @"DOWNGRADE"; |
9bedffaa | 3012 | case 0: |
f79a4512 | 3013 | return @"INSTALL"; |
9bedffaa | 3014 | case 1: |
f79a4512 | 3015 | return @"UPGRADE"; |
9bedffaa | 3016 | case 2: |
f79a4512 | 3017 | return @"NEW_INSTALL"; |
670a0494 | 3018 | _nodefault |
9bedffaa | 3019 | } |
670a0494 | 3020 | _nodefault |
9bedffaa | 3021 | } |
f18b4a97 | 3022 | } } |
8fe19fc1 | 3023 | |
36bb2ca2 JF |
3024 | - (NSString *) id { |
3025 | return id_; | |
8fe19fc1 JF |
3026 | } |
3027 | ||
36bb2ca2 | 3028 | - (NSString *) name { |
9fcbca29 | 3029 | return name_.empty() ? id_ : name_; |
36bb2ca2 | 3030 | } |
8fe19fc1 | 3031 | |
770f2a8e | 3032 | - (UIImage *) icon { |
dec6029f | 3033 | NSString *section = [self simpleSection]; |
770f2a8e JF |
3034 | |
3035 | UIImage *icon(nil); | |
12016ee5 JF |
3036 | if (parsed_ != NULL) |
3037 | if (NSString *href = parsed_->icon_) | |
3038 | if ([href hasPrefix:@"file:///"]) | |
84851d87 | 3039 | icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; |
770f2a8e | 3040 | if (icon == nil) if (section != nil) |
84851d87 | 3041 | icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]; |
b9956841 | 3042 | if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon]) |
189a73d0 | 3043 | if ([dicon hasPrefix:@"file:///"]) |
84851d87 | 3044 | icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; |
770f2a8e | 3045 | if (icon == nil) |
8dbf3abc | 3046 | icon = [UIImage imageNamed:@"unknown.png"]; |
770f2a8e | 3047 | return icon; |
36bb2ca2 | 3048 | } |
8fe19fc1 | 3049 | |
6f1a15d9 | 3050 | - (NSString *) homepage { |
12016ee5 | 3051 | return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_); |
8fe19fc1 JF |
3052 | } |
3053 | ||
25a2158d | 3054 | - (NSString *) depiction { |
12016ee5 | 3055 | return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_]; |
25a2158d JF |
3056 | } |
3057 | ||
7aa82ca2 JF |
3058 | - (MIMEAddress *) author { |
3059 | return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_]; | |
77fcccaf JF |
3060 | } |
3061 | ||
dc63e78f | 3062 | - (NSString *) support { |
00067a67 | 3063 | return parsed_ != NULL && !parsed_->support_.empty() ? parsed_->support_ : [[self source] supportForPackage:id_]; |
dc63e78f JF |
3064 | } |
3065 | ||
affeffc7 | 3066 | - (NSArray *) files { |
9fcbca29 | 3067 | NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)]; |
affeffc7 JF |
3068 | NSMutableArray *files = [NSMutableArray arrayWithCapacity:128]; |
3069 | ||
3070 | std::ifstream fin; | |
3071 | fin.open([path UTF8String]); | |
3072 | if (!fin.is_open()) | |
3073 | return nil; | |
3074 | ||
3075 | std::string line; | |
3076 | while (std::getline(fin, line)) | |
3077 | [files addObject:[NSString stringWithUTF8String:line.c_str()]]; | |
3078 | ||
3079 | return files; | |
3080 | } | |
3081 | ||
5959b596 JF |
3082 | - (NSString *) state { |
3083 | @synchronized (database_) { | |
3084 | if ([database_ era] != era_ || file_.end()) | |
3085 | return nil; | |
3086 | ||
3087 | switch (iterator_->CurrentState) { | |
3088 | case pkgCache::State::NotInstalled: | |
3089 | return @"NotInstalled"; | |
3090 | case pkgCache::State::UnPacked: | |
3091 | return @"UnPacked"; | |
3092 | case pkgCache::State::HalfConfigured: | |
3093 | return @"HalfConfigured"; | |
3094 | case pkgCache::State::HalfInstalled: | |
3095 | return @"HalfInstalled"; | |
3096 | case pkgCache::State::ConfigFiles: | |
3097 | return @"ConfigFiles"; | |
3098 | case pkgCache::State::Installed: | |
3099 | return @"Installed"; | |
3100 | case pkgCache::State::TriggersAwaited: | |
3101 | return @"TriggersAwaited"; | |
3102 | case pkgCache::State::TriggersPending: | |
3103 | return @"TriggersPending"; | |
3104 | } | |
3105 | ||
3106 | return (NSString *) [NSNull null]; | |
3107 | } } | |
3108 | ||
de1ace71 JF |
3109 | - (NSString *) selection { |
3110 | @synchronized (database_) { | |
3111 | if ([database_ era] != era_ || file_.end()) | |
3112 | return nil; | |
3113 | ||
3114 | switch (iterator_->SelectedState) { | |
3115 | case pkgCache::State::Unknown: | |
3116 | return @"Unknown"; | |
3117 | case pkgCache::State::Install: | |
3118 | return @"Install"; | |
3119 | case pkgCache::State::Hold: | |
3120 | return @"Hold"; | |
3121 | case pkgCache::State::DeInstall: | |
3122 | return @"DeInstall"; | |
3123 | case pkgCache::State::Purge: | |
3124 | return @"Purge"; | |
3125 | } | |
3126 | ||
3127 | return (NSString *) [NSNull null]; | |
3128 | } } | |
3129 | ||
affeffc7 | 3130 | - (NSArray *) warnings { |
d212b02f JF |
3131 | @synchronized (database_) { |
3132 | if ([database_ era] != era_ || file_.end()) | |
3133 | return nil; | |
3134 | ||
affeffc7 JF |
3135 | NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]); |
3136 | const char *name(iterator_.Name()); | |
3137 | ||
3138 | size_t length(strlen(name)); | |
3139 | if (length < 2) invalid: | |
43f3d7f6 | 3140 | [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")]; |
affeffc7 JF |
3141 | else for (size_t i(0); i != length; ++i) |
3142 | if ( | |
9dd60d81 JF |
3143 | /* XXX: technically this is not allowed */ |
3144 | (name[i] < 'A' || name[i] > 'Z') && | |
affeffc7 JF |
3145 | (name[i] < 'a' || name[i] > 'z') && |
3146 | (name[i] < '0' || name[i] > '9') && | |
3147 | (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.') | |
3148 | ) goto invalid; | |
3149 | ||
3150 | if (strcmp(name, "cydia") != 0) { | |
3151 | bool cydia = false; | |
7623f855 | 3152 | bool user = false; |
9dd60d81 | 3153 | bool _private = false; |
affeffc7 | 3154 | bool stash = false; |
bcc58607 | 3155 | bool dbstash = false; |
1db5920d | 3156 | bool dsstore = false; |
affeffc7 | 3157 | |
9dd60d81 JF |
3158 | bool repository = [[self section] isEqualToString:@"Repositories"]; |
3159 | ||
affeffc7 JF |
3160 | if (NSArray *files = [self files]) |
3161 | for (NSString *file in files) | |
3162 | if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"]) | |
3163 | cydia = true; | |
7623f855 JF |
3164 | else if (!user && [file isEqualToString:@"/User"]) |
3165 | user = true; | |
9dd60d81 JF |
3166 | else if (!_private && [file isEqualToString:@"/private"]) |
3167 | _private = true; | |
affeffc7 JF |
3168 | else if (!stash && [file isEqualToString:@"/var/stash"]) |
3169 | stash = true; | |
bcc58607 JF |
3170 | else if (!dbstash && [file isEqualToString:@"/var/db/stash"]) |
3171 | dbstash = true; | |
1db5920d JF |
3172 | else if (!dsstore && [file hasSuffix:@"/.DS_Store"]) |
3173 | dsstore = true; | |
affeffc7 | 3174 | |
9dd60d81 JF |
3175 | /* XXX: this is not sensitive enough. only some folders are valid. */ |
3176 | if (cydia && !repository) | |
43f3d7f6 | 3177 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]]; |
7623f855 JF |
3178 | if (user) |
3179 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]]; | |
9dd60d81 | 3180 | if (_private) |
43f3d7f6 | 3181 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]]; |
affeffc7 | 3182 | if (stash) |
43f3d7f6 | 3183 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]]; |
bcc58607 JF |
3184 | if (dbstash) |
3185 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/db/stash"]]; | |
1db5920d JF |
3186 | if (dsstore) |
3187 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @".DS_Store"]]; | |
affeffc7 JF |
3188 | } |
3189 | ||
3190 | return [warnings count] == 0 ? nil : warnings; | |
d212b02f | 3191 | } } |
affeffc7 JF |
3192 | |
3193 | - (NSArray *) applications { | |
3194 | NSString *me([[NSBundle mainBundle] bundleIdentifier]); | |
3195 | ||
3196 | NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]); | |
3197 | ||
b4fd1197 | 3198 | static RegEx application_r("/Applications/(.*)\\.app/Info.plist"); |
affeffc7 JF |
3199 | if (NSArray *files = [self files]) |
3200 | for (NSString *file in files) | |
3201 | if (application_r(file)) { | |
3202 | NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]); | |
75d2e426 JF |
3203 | if (info == nil) |
3204 | continue; | |
affeffc7 | 3205 | NSString *id([info objectForKey:@"CFBundleIdentifier"]); |
75d2e426 | 3206 | if (id == nil || [id isEqualToString:me]) |
affeffc7 JF |
3207 | continue; |
3208 | ||
3209 | NSString *display([info objectForKey:@"CFBundleDisplayName"]); | |
3210 | if (display == nil) | |
3211 | display = application_r[1]; | |
3212 | ||
3213 | NSString *bundle([file stringByDeletingLastPathComponent]); | |
3214 | NSString *icon([info objectForKey:@"CFBundleIconFile"]); | |
5e17a734 JF |
3215 | // XXX: maybe this should check if this is really a string, not just for length |
3216 | if (icon == nil || ![icon respondsToSelector:@selector(length)] || [icon length] == 0) | |
affeffc7 JF |
3217 | icon = @"icon.png"; |
3218 | NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]); | |
3219 | ||
3220 | NSMutableArray *application([NSMutableArray arrayWithCapacity:2]); | |
3221 | [applications addObject:application]; | |
3222 | ||
3223 | [application addObject:id]; | |
3224 | [application addObject:display]; | |
3225 | [application addObject:url]; | |
3226 | } | |
3227 | ||
3228 | return [applications count] == 0 ? nil : applications; | |
3229 | } | |
3230 | ||
36bb2ca2 | 3231 | - (Source *) source { |
5699667a | 3232 | if (source_ == nil) { |
a1440b10 JF |
3233 | @synchronized (database_) { |
3234 | if ([database_ era] != era_ || file_.end()) | |
5699667a JF |
3235 | source_ = (Source *) [NSNull null]; |
3236 | else | |
7b33d201 | 3237 | source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null]; |
a1440b10 | 3238 | } |
bbb879fb JF |
3239 | } |
3240 | ||
5699667a | 3241 | return source_ == (Source *) [NSNull null] ? nil : source_; |
8fe19fc1 JF |
3242 | } |
3243 | ||
b3906a21 JF |
3244 | - (time_t) upgraded { |
3245 | return upgraded_; | |
98ddcefd JF |
3246 | } |
3247 | ||
b3906a21 JF |
3248 | - (uint32_t) recent { |
3249 | return std::numeric_limits<uint32_t>::max() - upgraded_; | |
821b1a0c JF |
3250 | } |
3251 | ||
9c5737d5 JF |
3252 | - (uint32_t) rank { |
3253 | return rank_; | |
3254 | } | |
3255 | ||
d84597fe JF |
3256 | - (BOOL) matches:(NSArray *)query { |
3257 | if (query == nil || [query count] == 0) | |
36bb2ca2 | 3258 | return NO; |
8fe19fc1 | 3259 | |
9c5737d5 JF |
3260 | rank_ = 0; |
3261 | ||
3262 | NSString *string; | |
36bb2ca2 | 3263 | NSRange range; |
9c5737d5 | 3264 | NSUInteger length; |
8fe19fc1 | 3265 | |
718c267c | 3266 | string = [self name]; |
d84597fe JF |
3267 | length = [string length]; |
3268 | ||
5af08e16 | 3269 | if (length != 0) |
d84597fe JF |
3270 | for (NSString *term in query) { |
3271 | range = [string rangeOfString:term options:MatchCompareOptions_]; | |
3272 | if (range.location != NSNotFound) | |
718c267c | 3273 | rank_ -= 6 * 1000000 / length; |
d84597fe | 3274 | } |
8fe19fc1 | 3275 | |
718c267c JF |
3276 | if (rank_ == 0) { |
3277 | string = [self id]; | |
3278 | length = [string length]; | |
8fe19fc1 | 3279 | |
5af08e16 | 3280 | if (length != 0) |
718c267c JF |
3281 | for (NSString *term in query) { |
3282 | range = [string rangeOfString:term options:MatchCompareOptions_]; | |
3283 | if (range.location != NSNotFound) | |
3284 | rank_ -= 6 * 1000000 / length; | |
3285 | } | |
d84597fe | 3286 | } |
c4b530a7 | 3287 | |
9c5737d5 JF |
3288 | string = [self shortDescription]; |
3289 | length = [string length]; | |
abd93900 | 3290 | NSUInteger stop(std::min<NSUInteger>(length, 200)); |
df289c5a | 3291 | |
5af08e16 | 3292 | if (length != 0) |
d84597fe JF |
3293 | for (NSString *term in query) { |
3294 | range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)]; | |
3295 | if (range.location != NSNotFound) | |
718c267c | 3296 | rank_ -= 2 * 100000; |
d84597fe | 3297 | } |
8fe19fc1 | 3298 | |
9c5737d5 | 3299 | return rank_ != 0; |
36bb2ca2 | 3300 | } |
8fe19fc1 | 3301 | |
82aa2434 JF |
3302 | - (NSArray *) tags { |
3303 | return tags_; | |
3304 | } | |
3305 | ||
6d9712c4 JF |
3306 | - (BOOL) hasTag:(NSString *)tag { |
3307 | return tags_ == nil ? NO : [tags_ containsObject:tag]; | |
3308 | } | |
3309 | ||
c390d3ab | 3310 | - (NSString *) primaryPurpose { |
7b33d201 | 3311 | for (NSString *tag in (NSArray *) tags_) |
c390d3ab JF |
3312 | if ([tag hasPrefix:@"purpose::"]) |
3313 | return [tag substringFromIndex:9]; | |
3314 | return nil; | |
3315 | } | |
3316 | ||
770f2a8e JF |
3317 | - (NSArray *) purposes { |
3318 | NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]); | |
7b33d201 | 3319 | for (NSString *tag in (NSArray *) tags_) |
770f2a8e JF |
3320 | if ([tag hasPrefix:@"purpose::"]) |
3321 | [purposes addObject:[tag substringFromIndex:9]]; | |
3322 | return [purposes count] == 0 ? nil : purposes; | |
3323 | } | |
3324 | ||
3bd1c2a2 JF |
3325 | - (bool) isCommercial { |
3326 | return [self hasTag:@"cydia::commercial"]; | |
3327 | } | |
3328 | ||
cd95e390 JF |
3329 | - (void) setIndex:(size_t)index { |
3330 | if (metadata_->index_ != index) | |
3331 | metadata_->index_ = index; | |
3332 | } | |
3333 | ||
df213583 | 3334 | - (CYString &) cyname { |
22fd24dd | 3335 | return !transform_.empty() ? transform_ : !name_.empty() ? name_ : id_; |
f79a4512 JF |
3336 | } |
3337 | ||
f79a4512 JF |
3338 | - (uint32_t) compareBySection:(NSArray *)sections { |
3339 | NSString *section([self section]); | |
3340 | for (size_t i(0), e([sections count]); i != e; ++i) { | |
3341 | if ([section isEqualToString:[[sections objectAtIndex:i] name]]) | |
3342 | return i; | |
36bb2ca2 | 3343 | } |
3178d79b | 3344 | |
f79a4512 | 3345 | return _not(uint32_t); |
36bb2ca2 | 3346 | } |
3178d79b | 3347 | |
dc63e78f | 3348 | - (void) clear { |
c6ca67ba | 3349 | @synchronized (database_) { |
9fe109d1 JF |
3350 | if ([database_ era] != era_ || file_.end()) |
3351 | return; | |
3352 | ||
dc63e78f JF |
3353 | pkgProblemResolver *resolver = [database_ resolver]; |
3354 | resolver->Clear(iterator_); | |
c6ca67ba JF |
3355 | |
3356 | pkgCacheFile &cache([database_ cache]); | |
3357 | cache->SetReInstall(iterator_, false); | |
3358 | cache->MarkKeep(iterator_, false); | |
3359 | } } | |
dc63e78f | 3360 | |
36bb2ca2 | 3361 | - (void) install { |
c6ca67ba | 3362 | @synchronized (database_) { |
9fe109d1 JF |
3363 | if ([database_ era] != era_ || file_.end()) |
3364 | return; | |
3365 | ||
36bb2ca2 JF |
3366 | pkgProblemResolver *resolver = [database_ resolver]; |
3367 | resolver->Clear(iterator_); | |
3368 | resolver->Protect(iterator_); | |
c6ca67ba | 3369 | |
36bb2ca2 | 3370 | pkgCacheFile &cache([database_ cache]); |
c9f3aa21 | 3371 | cache->SetCandidateVersion(version_); |
c6ca67ba | 3372 | cache->SetReInstall(iterator_, false); |
36bb2ca2 | 3373 | cache->MarkInstall(iterator_, false); |
c6ca67ba | 3374 | |
36bb2ca2 JF |
3375 | pkgDepCache::StateCache &state((*cache)[iterator_]); |
3376 | if (!state.Install()) | |
3377 | cache->SetReInstall(iterator_, true); | |
c6ca67ba | 3378 | } } |
68a238ec | 3379 | |
36bb2ca2 | 3380 | - (void) remove { |
c6ca67ba | 3381 | @synchronized (database_) { |
9fe109d1 JF |
3382 | if ([database_ era] != era_ || file_.end()) |
3383 | return; | |
3384 | ||
36bb2ca2 JF |
3385 | pkgProblemResolver *resolver = [database_ resolver]; |
3386 | resolver->Clear(iterator_); | |
36bb2ca2 | 3387 | resolver->Remove(iterator_); |
c6ca67ba JF |
3388 | resolver->Protect(iterator_); |
3389 | ||
3390 | pkgCacheFile &cache([database_ cache]); | |
3391 | cache->SetReInstall(iterator_, false); | |
3392 | cache->MarkDelete(iterator_, true); | |
3393 | } } | |
8fe19fc1 | 3394 | |
36bb2ca2 JF |
3395 | @end |
3396 | /* }}} */ | |
3397 | /* Section Class {{{ */ | |
3398 | @interface Section : NSObject { | |
7b33d201 | 3399 | _H<NSString> name_; |
36bb2ca2 JF |
3400 | size_t row_; |
3401 | size_t count_; | |
7b33d201 | 3402 | _H<NSString> localized_; |
36bb2ca2 | 3403 | } |
3178d79b | 3404 | |
677b8415 | 3405 | - (NSComparisonResult) compareByLocalized:(Section *)section; |
9fcbca29 JF |
3406 | - (Section *) initWithName:(NSString *)name localized:(NSString *)localized; |
3407 | - (Section *) initWithName:(NSString *)name localize:(BOOL)localize; | |
3408 | - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize; | |
aeeb755b | 3409 | |
36bb2ca2 | 3410 | - (NSString *) name; |
aeeb755b | 3411 | - (void) setName:(NSString *)name; |
f79a4512 | 3412 | |
36bb2ca2 JF |
3413 | - (size_t) row; |
3414 | - (size_t) count; | |
f79a4512 JF |
3415 | |
3416 | - (void) addToRow; | |
36bb2ca2 | 3417 | - (void) addToCount; |
b19871dd | 3418 | |
f79a4512 | 3419 | - (void) setCount:(size_t)count; |
677b8415 | 3420 | - (NSString *) localized; |
f79a4512 | 3421 | |
36bb2ca2 | 3422 | @end |
b19871dd | 3423 | |
36bb2ca2 | 3424 | @implementation Section |
b19871dd | 3425 | |
677b8415 | 3426 | - (NSComparisonResult) compareByLocalized:(Section *)section { |
9fcbca29 JF |
3427 | NSString *lhs(localized_); |
3428 | NSString *rhs([section localized]); | |
6d9712c4 | 3429 | |
9fcbca29 | 3430 | /*if ([lhs length] != 0 && [rhs length] != 0) { |
6d9712c4 JF |
3431 | unichar lhc = [lhs characterAtIndex:0]; |
3432 | unichar rhc = [rhs characterAtIndex:0]; | |
3433 | ||
3434 | if (isalpha(lhc) && !isalpha(rhc)) | |
3435 | return NSOrderedAscending; | |
3436 | else if (!isalpha(lhc) && isalpha(rhc)) | |
3437 | return NSOrderedDescending; | |
9fcbca29 | 3438 | }*/ |
6d9712c4 | 3439 | |
68f1828e | 3440 | return [lhs compare:rhs options:LaxCompareOptions_]; |
6d9712c4 JF |
3441 | } |
3442 | ||
9fcbca29 JF |
3443 | - (Section *) initWithName:(NSString *)name localized:(NSString *)localized { |
3444 | if ((self = [self initWithName:name localize:NO]) != nil) { | |
3445 | if (localized != nil) | |
7b33d201 | 3446 | localized_ = localized; |
9fcbca29 JF |
3447 | } return self; |
3448 | } | |
3449 | ||
3450 | - (Section *) initWithName:(NSString *)name localize:(BOOL)localize { | |
3451 | return [self initWithName:name row:0 localize:localize]; | |
6d9712c4 JF |
3452 | } |
3453 | ||
9fcbca29 | 3454 | - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize { |
36bb2ca2 | 3455 | if ((self = [super init]) != nil) { |
7b33d201 | 3456 | name_ = name; |
808c6eb6 | 3457 | row_ = row; |
9fcbca29 | 3458 | if (localize) |
7b33d201 | 3459 | localized_ = LocalizeSection(name_); |
808c6eb6 JF |
3460 | } return self; |
3461 | } | |
3462 | ||
36bb2ca2 JF |
3463 | - (NSString *) name { |
3464 | return name_; | |
3465 | } | |
3466 | ||
aeeb755b JF |
3467 | - (void) setName:(NSString *)name { |
3468 | name_ = name; | |
808c6eb6 JF |
3469 | } |
3470 | ||
36bb2ca2 JF |
3471 | - (size_t) row { |
3472 | return row_; | |
3473 | } | |
3474 | ||
3475 | - (size_t) count { | |
3476 | return count_; | |
3477 | } | |
3478 | ||
f79a4512 JF |
3479 | - (void) addToRow { |
3480 | ++row_; | |
3481 | } | |
3482 | ||
36bb2ca2 JF |
3483 | - (void) addToCount { |
3484 | ++count_; | |
3485 | } | |
3486 | ||
f79a4512 JF |
3487 | - (void) setCount:(size_t)count { |
3488 | count_ = count; | |
3489 | } | |
3490 | ||
3491 | - (NSString *) localized { | |
3492 | return localized_; | |
3493 | } | |
3494 | ||
b19871dd JF |
3495 | @end |
3496 | /* }}} */ | |
3497 | ||
9f9ae81c JF |
3498 | class CydiaLogCleaner : |
3499 | public pkgArchiveCleaner | |
3500 | { | |
3501 | protected: | |
3502 | virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) { | |
3503 | unlink(File); | |
3504 | } | |
3505 | }; | |
3506 | ||
36bb2ca2 JF |
3507 | /* Database Implementation {{{ */ |
3508 | @implementation Database | |
ec97ef06 | 3509 | |
770f2a8e | 3510 | + (Database *) sharedInstance { |
7b33d201 | 3511 | static _H<Database> instance; |
770f2a8e | 3512 | if (instance == nil) |
7b33d201 | 3513 | instance = [[[Database alloc] init] autorelease]; |
770f2a8e JF |
3514 | return instance; |
3515 | } | |
3516 | ||
a1440b10 JF |
3517 | - (unsigned) era { |
3518 | return era_; | |
3519 | } | |
3520 | ||
0944377b JF |
3521 | - (void) releasePackages { |
3522 | CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL); | |
3523 | CFArrayRemoveAllValues(packages_); | |
3524 | } | |
3525 | ||
f9c8848f JF |
3526 | - (bool) hasPackages { |
3527 | return CFArrayGetCount(packages_) != 0; | |
3528 | } | |
3529 | ||
36bb2ca2 | 3530 | - (void) dealloc { |
3931b718 | 3531 | // XXX: actually implement this thing |
36bb2ca2 | 3532 | _assert(false); |
0944377b | 3533 | [self releasePackages]; |
0944377b | 3534 | NSRecycleZone(zone_); |
36bb2ca2 JF |
3535 | [super dealloc]; |
3536 | } | |
ec97ef06 | 3537 | |
d13edf44 | 3538 | - (void) _readCydia:(NSNumber *)fd { |
0209cce5 | 3539 | boost::fdistream is([fd intValue]); |
77fcccaf JF |
3540 | std::string line; |
3541 | ||
b4fd1197 | 3542 | static RegEx finish_r("finish:([^:]*)"); |
bc8cd583 | 3543 | |
77fcccaf | 3544 | while (std::getline(is, line)) { |
d13edf44 JF |
3545 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3546 | ||
77fcccaf | 3547 | const char *data(line.c_str()); |
bc8cd583 | 3548 | size_t size = line.size(); |
c390d3ab | 3549 | lprintf("C:%s\n", data); |
bc8cd583 JF |
3550 | |
3551 | if (finish_r(data, size)) { | |
3552 | NSString *finish = finish_r[1]; | |
3553 | int index = [Finishes_ indexOfObject:finish]; | |
3554 | if (index != INT_MAX && index > Finish_) | |
3555 | Finish_ = index; | |
3556 | } | |
d13edf44 JF |
3557 | |
3558 | [pool release]; | |
77fcccaf JF |
3559 | } |
3560 | ||
670a0494 | 3561 | _assume(false); |
77fcccaf JF |
3562 | } |
3563 | ||
d13edf44 | 3564 | - (void) _readStatus:(NSNumber *)fd { |
0209cce5 | 3565 | boost::fdistream is([fd intValue]); |
36bb2ca2 | 3566 | std::string line; |
ec97ef06 | 3567 | |
b4fd1197 JF |
3568 | static RegEx conffile_r("status: [^ ]* : conffile-prompt : (.*?) *"); |
3569 | static RegEx pmstatus_r("([^:]*):([^:]*):([^:]*):(.*)"); | |
ec97ef06 | 3570 | |
36bb2ca2 | 3571 | while (std::getline(is, line)) { |
d13edf44 JF |
3572 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3573 | ||
36bb2ca2 | 3574 | const char *data(line.c_str()); |
670a0494 | 3575 | size_t size(line.size()); |
c390d3ab | 3576 | lprintf("S:%s\n", data); |
ec97ef06 | 3577 | |
a08145a8 JF |
3578 | if (conffile_r(data, size)) { |
3579 | // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1 | |
4187453f | 3580 | [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES]; |
a08145a8 JF |
3581 | } else if (strncmp(data, "status: ", 8) == 0) { |
3582 | // status: <package>: {unpacked,half-configured,installed} | |
389133be | 3583 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]); |
a08145a8 JF |
3584 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3585 | } else if (strncmp(data, "processing: ", 12) == 0) { | |
3586 | // processing: configure: config-test | |
389133be | 3587 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]); |
a08145a8 | 3588 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
6915b806 | 3589 | } else if (pmstatus_r(data, size)) { |
31f3cfff | 3590 | std::string type([pmstatus_r[1] UTF8String]); |
4a2dc82e | 3591 | |
6915b806 | 3592 | NSString *package = pmstatus_r[2]; |
4a2dc82e JF |
3593 | if ([package isEqualToString:@"dpkg-exec"]) |
3594 | package = nil; | |
31f3cfff | 3595 | |
5a09ae08 | 3596 | float percent([pmstatus_r[3] floatValue]); |
6915b806 | 3597 | [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES]; |
5a09ae08 JF |
3598 | |
3599 | NSString *string = pmstatus_r[4]; | |
5a09ae08 | 3600 | |
6915b806 | 3601 | if (type == "pmerror") { |
389133be | 3602 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]); |
6915b806 JF |
3603 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3604 | } else if (type == "pmstatus") { | |
389133be | 3605 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]); |
6915b806 JF |
3606 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3607 | } else if (type == "pmconffile") | |
4187453f | 3608 | [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES]; |
670a0494 JF |
3609 | else |
3610 | lprintf("E:unknown pmstatus\n"); | |
3611 | } else | |
3612 | lprintf("E:unknown status\n"); | |
d13edf44 JF |
3613 | |
3614 | [pool release]; | |
36bb2ca2 | 3615 | } |
ec97ef06 | 3616 | |
670a0494 | 3617 | _assume(false); |
36bb2ca2 | 3618 | } |
ec97ef06 | 3619 | |
d13edf44 | 3620 | - (void) _readOutput:(NSNumber *)fd { |
0209cce5 | 3621 | boost::fdistream is([fd intValue]); |
36bb2ca2 JF |
3622 | std::string line; |
3623 | ||
5a09ae08 | 3624 | while (std::getline(is, line)) { |
d13edf44 JF |
3625 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3626 | ||
c390d3ab | 3627 | lprintf("O:%s\n", line.c_str()); |
27024935 | 3628 | |
389133be | 3629 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]); |
6915b806 | 3630 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
d13edf44 JF |
3631 | |
3632 | [pool release]; | |
5a09ae08 | 3633 | } |
36bb2ca2 | 3634 | |
670a0494 | 3635 | _assume(false); |
ec97ef06 JF |
3636 | } |
3637 | ||
8b29f8e6 JF |
3638 | - (FILE *) input { |
3639 | return input_; | |
3640 | } | |
3641 | ||
36bb2ca2 | 3642 | - (Package *) packageWithName:(NSString *)name { |
c5f1a937 JF |
3643 | if (name == nil) |
3644 | return nil; | |
3dd53516 | 3645 | @synchronized (self) { |
5a09ae08 JF |
3646 | if (static_cast<pkgDepCache *>(cache_) == NULL) |
3647 | return nil; | |
0209cce5 JF |
3648 | pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String] |
3649 | #ifdef __arm64__ | |
3650 | , "any" | |
3651 | #endif | |
3652 | )); | |
13902177 | 3653 | return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self]; |
28ce8704 | 3654 | } } |
36bb2ca2 | 3655 | |
eb30da80 | 3656 | - (id) init { |
ec97ef06 | 3657 | if ((self = [super init]) != nil) { |
5a09ae08 | 3658 | policy_ = NULL; |
36bb2ca2 JF |
3659 | records_ = NULL; |
3660 | resolver_ = NULL; | |
3661 | fetcher_ = NULL; | |
3662 | lock_ = NULL; | |
ec97ef06 | 3663 | |
f79a4512 | 3664 | zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO); |
f79a4512 | 3665 | |
9f357d11 JF |
3666 | size_t capacity(MetaFile_->active_); |
3667 | if (capacity == 0) | |
3668 | capacity = 16384; | |
3669 | else | |
3670 | capacity += 1024; | |
3671 | ||
3672 | packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL); | |
7b33d201 | 3673 | sourceList_ = [NSMutableArray arrayWithCapacity:16]; |
ec97ef06 | 3674 | |
36bb2ca2 | 3675 | int fds[2]; |
ec97ef06 | 3676 | |
77fcccaf JF |
3677 | _assert(pipe(fds) != -1); |
3678 | cydiafd_ = fds[1]; | |
3679 | ||
3680 | _config->Set("APT::Keep-Fds::", cydiafd_); | |
bc8cd583 | 3681 | setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int)); |
77fcccaf JF |
3682 | |
3683 | [NSThread | |
3684 | detachNewThreadSelector:@selector(_readCydia:) | |
3685 | toTarget:self | |
3931b718 | 3686 | withObject:[NSNumber numberWithInt:fds[0]] |
77fcccaf JF |
3687 | ]; |
3688 | ||
36bb2ca2 JF |
3689 | _assert(pipe(fds) != -1); |
3690 | statusfd_ = fds[1]; | |
ec97ef06 | 3691 | |
36bb2ca2 JF |
3692 | [NSThread |
3693 | detachNewThreadSelector:@selector(_readStatus:) | |
3694 | toTarget:self | |
3931b718 | 3695 | withObject:[NSNumber numberWithInt:fds[0]] |
36bb2ca2 | 3696 | ]; |
ec97ef06 | 3697 | |
8b29f8e6 JF |
3698 | _assert(pipe(fds) != -1); |
3699 | _assert(dup2(fds[0], 0) != -1); | |
3700 | _assert(close(fds[0]) != -1); | |
3701 | ||
3702 | input_ = fdopen(fds[1], "a"); | |
3703 | ||
36bb2ca2 JF |
3704 | _assert(pipe(fds) != -1); |
3705 | _assert(dup2(fds[1], 1) != -1); | |
3706 | _assert(close(fds[1]) != -1); | |
3707 | ||
3708 | [NSThread | |
3709 | detachNewThreadSelector:@selector(_readOutput:) | |
3710 | toTarget:self | |
3931b718 | 3711 | withObject:[NSNumber numberWithInt:fds[0]] |
36bb2ca2 | 3712 | ]; |
ec97ef06 JF |
3713 | } return self; |
3714 | } | |
3715 | ||
36bb2ca2 JF |
3716 | - (pkgCacheFile &) cache { |
3717 | return cache_; | |
ec97ef06 JF |
3718 | } |
3719 | ||
5a09ae08 JF |
3720 | - (pkgDepCache::Policy *) policy { |
3721 | return policy_; | |
3722 | } | |
3723 | ||
36bb2ca2 JF |
3724 | - (pkgRecords *) records { |
3725 | return records_; | |
ec97ef06 JF |
3726 | } |
3727 | ||
36bb2ca2 JF |
3728 | - (pkgProblemResolver *) resolver { |
3729 | return resolver_; | |
ec97ef06 JF |
3730 | } |
3731 | ||
36bb2ca2 JF |
3732 | - (pkgAcquire &) fetcher { |
3733 | return *fetcher_; | |
ec97ef06 JF |
3734 | } |
3735 | ||
a3328c28 JF |
3736 | - (pkgSourceList &) list { |
3737 | return *list_; | |
3738 | } | |
3739 | ||
36bb2ca2 | 3740 | - (NSArray *) packages { |
077e9d90 | 3741 | return (NSArray *) packages_; |
ec97ef06 JF |
3742 | } |
3743 | ||
7b0ce2da | 3744 | - (NSArray *) sources { |
34f70f5d | 3745 | return sourceList_; |
7b0ce2da JF |
3746 | } |
3747 | ||
d669236d GP |
3748 | - (Source *) sourceWithKey:(NSString *)key { |
3749 | for (Source *source in [self sources]) { | |
3750 | if ([[source key] isEqualToString:key]) | |
3751 | return source; | |
3752 | } return nil; | |
3753 | } | |
3754 | ||
670a0494 JF |
3755 | - (bool) popErrorWithTitle:(NSString *)title { |
3756 | bool fatal(false); | |
670a0494 JF |
3757 | |
3758 | while (!_error->empty()) { | |
3759 | std::string error; | |
3760 | bool warning(!_error->PopMessage(error)); | |
3761 | if (!warning) | |
3762 | fatal = true; | |
cb6e2ccf | 3763 | |
670a0494 JF |
3764 | for (;;) { |
3765 | size_t size(error.size()); | |
3766 | if (size == 0 || error[size - 1] != '\n') | |
3767 | break; | |
3768 | error.resize(size - 1); | |
3769 | } | |
cb6e2ccf | 3770 | |
670a0494 JF |
3771 | lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str()); |
3772 | ||
b4fd1197 | 3773 | static RegEx no_pubkey("GPG error:.* NO_PUBKEY .*"); |
c8ce71c7 JF |
3774 | if (warning && no_pubkey(error.c_str())) |
3775 | continue; | |
3776 | ||
389133be | 3777 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title]; |
670a0494 JF |
3778 | } |
3779 | ||
670a0494 JF |
3780 | return fatal; |
3781 | } | |
3782 | ||
3783 | - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success { | |
3784 | return [self popErrorWithTitle:title] || !success; | |
3785 | } | |
3786 | ||
7bc0d825 | 3787 | - (bool) popErrorWithTitle:(NSString *)title forReadList:(pkgSourceList &)list { |
19cd1e0d JF |
3788 | if ([self popErrorWithTitle:title forOperation:list.ReadMainList()]) |
3789 | return true; | |
3790 | return false; | |
3791 | ||
57cc2170 JF |
3792 | list.Reset(); |
3793 | ||
3794 | bool error(false); | |
3795 | ||
3796 | if (access("/etc/apt/sources.list", F_OK) == 0) | |
3797 | error |= [self popErrorWithTitle:title forOperation:list.ReadAppend("/etc/apt/sources.list")]; | |
3798 | ||
3799 | std::string base("/etc/apt/sources.list.d"); | |
3800 | if (DIR *sources = opendir(base.c_str())) { | |
3801 | while (dirent *source = readdir(sources)) | |
3802 | if (source->d_name[0] != '.' && source->d_namlen > 5 && strcmp(source->d_name + source->d_namlen - 5, ".list") == 0 && strcmp(source->d_name, "cydia.list") != 0) | |
3803 | error |= [self popErrorWithTitle:title forOperation:list.ReadAppend((base + "/" + source->d_name).c_str())]; | |
3804 | closedir(sources); | |
3805 | } | |
3806 | ||
3807 | error |= [self popErrorWithTitle:title forOperation:list.ReadAppend(SOURCES_LIST)]; | |
3808 | ||
3809 | return error; | |
7bc0d825 JF |
3810 | } |
3811 | ||
d13edf44 | 3812 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation { |
3dd53516 JF |
3813 | @synchronized (self) { |
3814 | ++era_; | |
a1440b10 | 3815 | |
0944377b | 3816 | [self releasePackages]; |
ab3f6a01 | 3817 | |
34f70f5d JF |
3818 | sourceMap_.clear(); |
3819 | [sourceList_ removeAllObjects]; | |
843e75b8 | 3820 | |
36bb2ca2 | 3821 | _error->Discard(); |
5a09ae08 | 3822 | |
36bb2ca2 | 3823 | delete list_; |
5a09ae08 | 3824 | list_ = NULL; |
36bb2ca2 JF |
3825 | manager_ = NULL; |
3826 | delete lock_; | |
5a09ae08 | 3827 | lock_ = NULL; |
36bb2ca2 | 3828 | delete fetcher_; |
5a09ae08 | 3829 | fetcher_ = NULL; |
36bb2ca2 | 3830 | delete resolver_; |
5a09ae08 | 3831 | resolver_ = NULL; |
36bb2ca2 | 3832 | delete records_; |
5a09ae08 JF |
3833 | records_ = NULL; |
3834 | delete policy_; | |
3835 | policy_ = NULL; | |
36bb2ca2 | 3836 | |
5a09ae08 | 3837 | cache_.Close(); |
8b29f8e6 | 3838 | |
64edd9df JF |
3839 | pool_.~CYPool(); |
3840 | new (&pool_) CYPool(); | |
a020a50e | 3841 | |
f79a4512 | 3842 | NSRecycleZone(zone_); |
a020a50e | 3843 | zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO); |
f79a4512 | 3844 | |
7376b55c JF |
3845 | int chk(creat("/tmp/cydia.chk", 0644)); |
3846 | if (chk != -1) | |
3847 | close(chk); | |
3848 | ||
4ba8f30a JF |
3849 | if (invocation != nil) |
3850 | [invocation invoke]; | |
3851 | ||
670a0494 JF |
3852 | NSString *title(UCLocalize("DATABASE")); |
3853 | ||
0c28a403 | 3854 | list_ = new pkgSourceList(); |
1a83afc6 | 3855 | _profile(reloadDataWithInvocation$ReadMainList) |
7bc0d825 | 3856 | if ([self popErrorWithTitle:title forReadList:*list_]) |
0c28a403 | 3857 | return; |
1a83afc6 | 3858 | _end |
0c28a403 | 3859 | |
1a83afc6 | 3860 | _profile(reloadDataWithInvocation$Source$initWithMetaIndex) |
0c28a403 | 3861 | for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) { |
64edd9df | 3862 | Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:&pool_] autorelease]); |
0c28a403 JF |
3863 | [sourceList_ addObject:object]; |
3864 | } | |
1a83afc6 | 3865 | _end |
0c28a403 | 3866 | |
9487f027 | 3867 | _trace(); |
124cea03 | 3868 | OpProgress progress; |
1a83afc6 | 3869 | bool opened; |
2b49cff9 | 3870 | open: |
5cf267f4 | 3871 | delock_ = GetStatusDate(); |
1a83afc6 | 3872 | _profile(reloadDataWithInvocation$pkgCacheFile) |
b44af625 | 3873 | opened = cache_.Open(progress, false); |
1a83afc6 JF |
3874 | _end |
3875 | if (!opened) { | |
fec09a82 | 3876 | // XXX: this block should probably be merged with popError: in some way |
2b49cff9 JF |
3877 | while (!_error->empty()) { |
3878 | std::string error; | |
3879 | bool warning(!_error->PopMessage(error)); | |
3880 | ||
3881 | lprintf("cache_.Open():[%s]\n", error.c_str()); | |
3882 | ||
389133be | 3883 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title]; |
2b49cff9 JF |
3884 | |
3885 | SEL repair(NULL); | |
3886 | if (false); | |
3887 | else if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ") | |
3888 | repair = @selector(configure); | |
3889 | //else if (error == "The package lists or status file could not be parsed or opened.") | |
3890 | // repair = @selector(update); | |
3891 | // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)") | |
3892 | // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)") | |
3893 | // else if (error == "Malformed Status line") | |
3894 | // else if (error == "The list of sources could not be read.") | |
3895 | ||
3896 | if (repair != NULL) { | |
3897 | _error->Discard(); | |
3898 | [delegate_ repairWithSelector:repair]; | |
3899 | goto open; | |
3900 | } | |
efa53fa9 | 3901 | } |
5a09ae08 | 3902 | |
2b49cff9 | 3903 | return; |
fec09a82 JF |
3904 | } else if ([self popErrorWithTitle:title forOperation:true]) |
3905 | return; | |
9487f027 | 3906 | _trace(); |
36bb2ca2 | 3907 | |
7376b55c JF |
3908 | unlink("/tmp/cydia.chk"); |
3909 | ||
31bc18a7 | 3910 | now_ = [[NSDate date] timeIntervalSince1970]; |
36bb2ca2 | 3911 | |
5a09ae08 | 3912 | policy_ = new pkgDepCache::Policy(); |
36bb2ca2 JF |
3913 | records_ = new pkgRecords(cache_); |
3914 | resolver_ = new pkgProblemResolver(cache_); | |
3915 | fetcher_ = new pkgAcquire(&status_); | |
3916 | lock_ = NULL; | |
3917 | ||
670a0494 | 3918 | if (cache_->DelCount() != 0 || cache_->InstCount() != 0) { |
389133be | 3919 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title]; |
670a0494 JF |
3920 | return; |
3921 | } | |
36bb2ca2 | 3922 | |
1a83afc6 | 3923 | _profile(reloadDataWithInvocation$pkgApplyStatus) |
670a0494 JF |
3924 | if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)]) |
3925 | return; | |
1a83afc6 | 3926 | _end |
9bedffaa JF |
3927 | |
3928 | if (cache_->BrokenCount() != 0) { | |
1a83afc6 | 3929 | _profile(pkgApplyStatus$pkgFixBroken) |
670a0494 JF |
3930 | if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)]) |
3931 | return; | |
1a83afc6 | 3932 | _end |
670a0494 JF |
3933 | |
3934 | if (cache_->BrokenCount() != 0) { | |
389133be | 3935 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title]; |
670a0494 JF |
3936 | return; |
3937 | } | |
3938 | ||
1a83afc6 | 3939 | _profile(pkgApplyStatus$pkgMinimizeUpgrade) |
670a0494 JF |
3940 | if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)]) |
3941 | return; | |
1a83afc6 | 3942 | _end |
9bedffaa JF |
3943 | } |
3944 | ||
0c28a403 JF |
3945 | for (Source *object in (id) sourceList_) { |
3946 | metaIndex *source([object metaIndex]); | |
3947 | std::vector<pkgIndexFile *> *indices = source->GetIndexFiles(); | |
68d927e2 JF |
3948 | for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index) |
3949 | // XXX: this could be more intelligent | |
3950 | if (dynamic_cast<debPackagesIndex *>(*index) != NULL) { | |
3951 | pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_)); | |
34f70f5d JF |
3952 | if (!cached.end()) |
3953 | sourceMap_[cached->ID] = object; | |
68d927e2 | 3954 | } |
36bb2ca2 | 3955 | } |
68d927e2 | 3956 | |
677b8415 | 3957 | { |
9fcbca29 | 3958 | /*std::vector<Package *> packages; |
677b8415 | 3959 | packages.reserve(std::max(10000U, [packages_ count] + 1000)); |
9fcbca29 JF |
3960 | packages_ = nil;*/ |
3961 | ||
1a83afc6 | 3962 | _profile(reloadDataWithInvocation$packageWithIterator) |
677b8415 | 3963 | for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator) |
64edd9df | 3964 | if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:&pool_ database:self]) |
9fcbca29 | 3965 | //packages.push_back(package); |
7b33d201 | 3966 | CFArrayAppendValue(packages_, CFRetain(package)); |
1a83afc6 | 3967 | _end |
677b8415 | 3968 | |
677b8415 | 3969 | |
9fcbca29 | 3970 | /*if (packages.empty()) |
677b8415 JF |
3971 | packages_ = [[NSArray alloc] init]; |
3972 | else | |
3973 | packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()]; | |
9fcbca29 JF |
3974 | _trace();*/ |
3975 | ||
1a83afc6 | 3976 | _profile(reloadDataWithInvocation$radix$8) |
9f0facbc | 3977 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(8)]; |
1a83afc6 JF |
3978 | _end |
3979 | ||
3980 | _profile(reloadDataWithInvocation$radix$4) | |
de42680b | 3981 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)]; |
1a83afc6 | 3982 | _end |
9fcbca29 | 3983 | |
1a83afc6 JF |
3984 | _profile(reloadDataWithInvocation$radix$0) |
3985 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)]; | |
3986 | _end | |
9fcbca29 | 3987 | |
1a83afc6 JF |
3988 | _profile(reloadDataWithInvocation$insertion) |
3989 | CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL); | |
3990 | _end | |
9fcbca29 | 3991 | |
1a83afc6 JF |
3992 | /*_profile(reloadDataWithInvocation$CFQSortArray) |
3993 | CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL); | |
3994 | _end*/ | |
9fcbca29 | 3995 | |
1a83afc6 JF |
3996 | /*_profile(reloadDataWithInvocation$stdsort) |
3997 | std::sort(packages.begin(), packages.end(), PackageNameOrdering()); | |
3998 | _end*/ | |
eef4ccaf | 3999 | |
1a83afc6 JF |
4000 | /*_profile(reloadDataWithInvocation$CFArraySortValues) |
4001 | CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL); | |
4002 | _end*/ | |
9fcbca29 | 4003 | |
1a83afc6 JF |
4004 | /*_profile(reloadDataWithInvocation$sortUsingFunction) |
4005 | [packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL]; | |
4006 | _end*/ | |
677b8415 | 4007 | |
cd95e390 JF |
4008 | |
4009 | size_t count(CFArrayGetCount(packages_)); | |
9f357d11 | 4010 | MetaFile_->active_ = count; |
cd95e390 JF |
4011 | for (size_t index(0); index != count; ++index) |
4012 | [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index]; | |
677b8415 | 4013 | } |
d13edf44 | 4014 | } } |
ec97ef06 | 4015 | |
c6ca67ba JF |
4016 | - (void) clear { |
4017 | @synchronized (self) { | |
4018 | delete resolver_; | |
4019 | resolver_ = new pkgProblemResolver(cache_); | |
4020 | ||
50c1653e JF |
4021 | for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator) |
4022 | if (!cache_[iterator].Keep()) | |
c6ca67ba | 4023 | cache_->MarkKeep(iterator, false); |
50c1653e | 4024 | else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0) |
c6ca67ba | 4025 | cache_->SetReInstall(iterator, false); |
c6ca67ba JF |
4026 | } } |
4027 | ||
5a09ae08 | 4028 | - (void) configure { |
232b396b | 4029 | NSString *dpkg = [NSString stringWithFormat:@"/usr/libexec/cydo --configure -a --status-fd %u", statusfd_]; |
985d2dff | 4030 | _trace(); |
232b396b | 4031 | system([dpkg UTF8String]); |
985d2dff | 4032 | _trace(); |
5a09ae08 JF |
4033 | } |
4034 | ||
670a0494 | 4035 | - (bool) clean { |
0517651f | 4036 | @synchronized (self) { |
670a0494 | 4037 | // XXX: I don't remember this condition |
77fcccaf | 4038 | if (lock_ != NULL) |
670a0494 | 4039 | return false; |
77fcccaf JF |
4040 | |
4041 | FileFd Lock; | |
4042 | Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock")); | |
670a0494 JF |
4043 | |
4044 | NSString *title(UCLocalize("CLEAN_ARCHIVES")); | |
4045 | ||
4046 | if ([self popErrorWithTitle:title]) | |
4047 | return false; | |
77fcccaf JF |
4048 | |
4049 | pkgAcquire fetcher; | |
4050 | fetcher.Clean(_config->FindDir("Dir::Cache::Archives")); | |
4051 | ||
9f9ae81c | 4052 | CydiaLogCleaner cleaner; |
670a0494 JF |
4053 | if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)]) |
4054 | return false; | |
4055 | ||
4056 | return true; | |
0517651f | 4057 | } } |
77fcccaf | 4058 | |
670a0494 | 4059 | - (bool) prepare { |
744f398e JF |
4060 | fetcher_->Shutdown(); |
4061 | ||
36bb2ca2 JF |
4062 | pkgRecords records(cache_); |
4063 | ||
4064 | lock_ = new FileFd(); | |
4065 | lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock")); | |
670a0494 JF |
4066 | |
4067 | NSString *title(UCLocalize("PREPARE_ARCHIVES")); | |
4068 | ||
4069 | if ([self popErrorWithTitle:title]) | |
4070 | return false; | |
36bb2ca2 JF |
4071 | |
4072 | pkgSourceList list; | |
7bc0d825 | 4073 | if ([self popErrorWithTitle:title forReadList:list]) |
670a0494 | 4074 | return false; |
36bb2ca2 JF |
4075 | |
4076 | manager_ = (_system->CreatePM(cache_)); | |
670a0494 JF |
4077 | if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)]) |
4078 | return false; | |
4079 | ||
4080 | return true; | |
ec97ef06 JF |
4081 | } |
4082 | ||
36bb2ca2 | 4083 | - (void) perform { |
be860cc8 JF |
4084 | bool substrate(RestartSubstrate_); |
4085 | RestartSubstrate_ = false; | |
4086 | ||
670a0494 JF |
4087 | NSString *title(UCLocalize("PERFORM_SELECTIONS")); |
4088 | ||
a72074b2 JF |
4089 | NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; { |
4090 | pkgSourceList list; | |
7bc0d825 | 4091 | if ([self popErrorWithTitle:title forReadList:list]) |
670a0494 | 4092 | return; |
a72074b2 JF |
4093 | for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source) |
4094 | [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]]; | |
4095 | } | |
a0be02eb | 4096 | |
dcaecde2 | 4097 | [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
7ffd70fd | 4098 | |
eeb9b112 JF |
4099 | if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) { |
4100 | _trace(); | |
6e90508f | 4101 | [self popErrorWithTitle:title]; |
36bb2ca2 | 4102 | return; |
eeb9b112 JF |
4103 | } |
4104 | ||
4105 | bool failed = false; | |
4106 | for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) { | |
4107 | if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete) | |
4108 | continue; | |
6204f56a JF |
4109 | if ((*item)->Status == pkgAcquire::Item::StatIdle) |
4110 | continue; | |
eeb9b112 | 4111 | |
680a3c3c JF |
4112 | std::string uri = (*item)->DescURI(); |
4113 | std::string error = (*item)->ErrorText; | |
4114 | ||
4115 | lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str()); | |
eeb9b112 | 4116 | failed = true; |
680a3c3c JF |
4117 | |
4118 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError]); | |
4119 | [delegate_ addProgressEventOnMainThread:event forTask:title]; | |
eeb9b112 JF |
4120 | } |
4121 | ||
dcaecde2 | 4122 | [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
54043703 | 4123 | |
eeb9b112 JF |
4124 | if (failed) { |
4125 | _trace(); | |
4126 | return; | |
4127 | } | |
36bb2ca2 | 4128 | |
be860cc8 JF |
4129 | if (substrate) |
4130 | RestartSubstrate_ = true; | |
4131 | ||
f26c90b1 JF |
4132 | if (![delock_ isEqual:GetStatusDate()]) { |
4133 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("DPKG_LOCKED") ofType:kCydiaProgressEventTypeError] forTask:title]; | |
4134 | return; | |
4135 | } | |
4136 | ||
4137 | delock_ = nil; | |
4138 | ||
d78cda50 JF |
4139 | pkgPackageManager::OrderResult result(manager_->DoInstall(statusfd_)); |
4140 | ||
49cc457a JF |
4141 | NSString *oextended(@"/var/lib/apt/extended_states"); |
4142 | NSString *nextended(Cache("extended_states")); | |
d78cda50 JF |
4143 | |
4144 | struct stat info; | |
ab1ec63e JF |
4145 | if (stat([nextended UTF8String], &info) != -1 && (info.st_mode & S_IFMT) == S_IFREG) |
4146 | system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/cp --remove-destination %@ %@", ShellEscape(nextended), ShellEscape(oextended)] UTF8String]); | |
d78cda50 | 4147 | |
49cc457a JF |
4148 | unlink([nextended UTF8String]); |
4149 | symlink([oextended UTF8String], [nextended UTF8String]); | |
4150 | ||
471683a3 | 4151 | if ([self popErrorWithTitle:title]) |
36bb2ca2 | 4152 | return; |
eeb9b112 JF |
4153 | |
4154 | if (result == pkgPackageManager::Failed) { | |
4155 | _trace(); | |
36bb2ca2 | 4156 | return; |
eeb9b112 JF |
4157 | } |
4158 | ||
4159 | if (result != pkgPackageManager::Completed) { | |
4160 | _trace(); | |
36bb2ca2 | 4161 | return; |
eeb9b112 | 4162 | } |
a0be02eb | 4163 | |
a72074b2 JF |
4164 | NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; { |
4165 | pkgSourceList list; | |
7bc0d825 | 4166 | if ([self popErrorWithTitle:title forReadList:list]) |
670a0494 | 4167 | return; |
a72074b2 JF |
4168 | for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source) |
4169 | [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]]; | |
4170 | } | |
4171 | ||
4172 | if (![before isEqualToArray:after]) | |
4173 | [self update]; | |
ec97ef06 JF |
4174 | } |
4175 | ||
f26c90b1 JF |
4176 | - (bool) delocked { |
4177 | return ![delock_ isEqual:GetStatusDate()]; | |
4178 | } | |
4179 | ||
670a0494 JF |
4180 | - (bool) upgrade { |
4181 | NSString *title(UCLocalize("UPGRADE")); | |
4182 | if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)]) | |
4183 | return false; | |
4184 | return true; | |
c7c6384e JF |
4185 | } |
4186 | ||
36bb2ca2 JF |
4187 | - (void) update { |
4188 | [self updateWithStatus:status_]; | |
4189 | } | |
b4d89997 | 4190 | |
21ac0ce2 | 4191 | - (void) updateWithStatus:(CancelStatus &)status { |
670a0494 JF |
4192 | NSString *title(UCLocalize("REFRESHING_DATA")); |
4193 | ||
36bb2ca2 | 4194 | pkgSourceList list; |
7bc0d825 | 4195 | if ([self popErrorWithTitle:title forReadList:list]) |
53ca7fdd | 4196 | return; |
b4d89997 | 4197 | |
36bb2ca2 JF |
4198 | FileFd lock; |
4199 | lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock")); | |
670a0494 JF |
4200 | if ([self popErrorWithTitle:title]) |
4201 | return; | |
18873623 | 4202 | |
aaae308d JF |
4203 | [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
4204 | ||
fc470c15 JF |
4205 | bool success(ListUpdate(status, list, PulseInterval_)); |
4206 | if (status.WasCancelled()) | |
4207 | _error->Discard(); | |
aa42c612 | 4208 | else { |
fc470c15 | 4209 | [self popErrorWithTitle:title forOperation:success]; |
6f87c61a JF |
4210 | |
4211 | [[NSDictionary dictionaryWithObjectsAndKeys: | |
4212 | [NSDate date], @"LastUpdate", | |
4213 | nil] writeToFile:@ CacheState_ atomically:YES]; | |
aa42c612 | 4214 | } |
36bb2ca2 | 4215 | |
aaae308d | 4216 | [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
b4d89997 JF |
4217 | } |
4218 | ||
6915b806 | 4219 | - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate { |
36bb2ca2 | 4220 | delegate_ = delegate; |
6915b806 JF |
4221 | } |
4222 | ||
4223 | - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate { | |
4224 | progress_ = delegate; | |
36bb2ca2 | 4225 | status_.setDelegate(delegate); |
36bb2ca2 | 4226 | } |
b4d89997 | 4227 | |
6915b806 JF |
4228 | - (NSObject<ProgressDelegate> *) progressDelegate { |
4229 | return progress_; | |
4230 | } | |
4231 | ||
7376b55c | 4232 | - (Source *) getSource:(pkgCache::PkgFileIterator)file { |
34f70f5d JF |
4233 | SourceMap::const_iterator i(sourceMap_.find(file->ID)); |
4234 | return i == sourceMap_.end() ? nil : i->second; | |
b19871dd JF |
4235 | } |
4236 | ||
21ac0ce2 JF |
4237 | - (void) setFetch:(bool)fetch forURI:(const char *)uri { |
4238 | for (Source *source in (id) sourceList_) | |
4239 | [source setFetch:fetch forURI:uri]; | |
4240 | } | |
4241 | ||
9ed626f1 JF |
4242 | - (void) resetFetch { |
4243 | for (Source *source in (id) sourceList_) | |
4244 | [source resetFetch]; | |
4245 | } | |
4246 | ||
fe33a23e | 4247 | - (NSString *) mappedSectionForPointer:(const char *)section { |
4905df00 | 4248 | _H<NSString> *mapped; |
fe33a23e | 4249 | |
4905df00 JF |
4250 | _profile(Database$mappedSectionForPointer$Cache) |
4251 | mapped = §ions_[section]; | |
4252 | _end | |
4253 | ||
4254 | if (*mapped == NULL) { | |
fe33a23e JF |
4255 | size_t length(strlen(section)); |
4256 | char spaced[length + 1]; | |
4257 | ||
4258 | _profile(Database$mappedSectionForPointer$Replace) | |
4259 | for (size_t index(0); index != length; ++index) | |
4260 | spaced[index] = section[index] == '_' ? ' ' : section[index]; | |
4261 | spaced[length] = '\0'; | |
4262 | _end | |
4263 | ||
4264 | NSString *string; | |
4265 | ||
4266 | _profile(Database$mappedSectionForPointer$stringWithUTF8String) | |
4267 | string = [NSString stringWithUTF8String:spaced]; | |
4268 | _end | |
4269 | ||
4270 | _profile(Database$mappedSectionForPointer$Map) | |
4905df00 | 4271 | string = [SectionMap_ objectForKey:string] ?: string; |
fe33a23e | 4272 | _end |
4905df00 JF |
4273 | |
4274 | *mapped = string; | |
4275 | } return *mapped; | |
fe33a23e JF |
4276 | } |
4277 | ||
36bb2ca2 JF |
4278 | @end |
4279 | /* }}} */ | |
b4d89997 | 4280 | |
7b33d201 | 4281 | static _H<NSMutableSet> Diversions_; |
7256476b | 4282 | |
775deead | 4283 | @interface Diversion : NSObject { |
b4fd1197 | 4284 | RegEx pattern_; |
775deead JF |
4285 | _H<NSString> key_; |
4286 | _H<NSString> format_; | |
4287 | } | |
4288 | ||
4289 | @end | |
4290 | ||
4291 | @implementation Diversion | |
4292 | ||
4293 | - (id) initWithFrom:(NSString *)from to:(NSString *)to { | |
4294 | if ((self = [super init]) != nil) { | |
4295 | pattern_ = [from UTF8String]; | |
4296 | key_ = from; | |
4297 | format_ = to; | |
4298 | } return self; | |
4299 | } | |
4300 | ||
4301 | - (NSString *) divert:(NSString *)url { | |
8ea598c0 | 4302 | return !pattern_(url) ? nil : pattern_->*format_; |
775deead JF |
4303 | } |
4304 | ||
7256476b JF |
4305 | + (NSURL *) divertURL:(NSURL *)url { |
4306 | divert: | |
4307 | NSString *href([url absoluteString]); | |
4308 | ||
7b33d201 | 4309 | for (Diversion *diversion in (id) Diversions_) |
7256476b | 4310 | if (NSString *diverted = [diversion divert:href]) { |
85d5d452 JF |
4311 | #if !ForRelease |
4312 | NSLog(@"div: %@", diverted); | |
4313 | #endif | |
7256476b JF |
4314 | url = [NSURL URLWithString:diverted]; |
4315 | goto divert; | |
4316 | } | |
4317 | ||
4318 | return url; | |
4319 | } | |
4320 | ||
775deead JF |
4321 | - (NSString *) key { |
4322 | return key_; | |
4323 | } | |
4324 | ||
4325 | - (NSUInteger) hash { | |
4326 | return [key_ hash]; | |
4327 | } | |
4328 | ||
4329 | - (BOOL) isEqual:(Diversion *)object { | |
4330 | return self == object || [self class] == [object class] && [key_ isEqual:[object key]]; | |
4331 | } | |
4332 | ||
4333 | @end | |
4334 | ||
43f3d7f6 | 4335 | @interface CydiaObject : NSObject { |
4cc9e99a | 4336 | _H<CyteWebViewController> indirect_; |
3931b718 | 4337 | _transient id delegate_; |
43f3d7f6 | 4338 | } |
c390d3ab | 4339 | |
43f3d7f6 | 4340 | - (id) initWithDelegate:(IndirectDelegate *)indirect; |
6840bff3 | 4341 | |
c390d3ab JF |
4342 | @end |
4343 | ||
9e130bc2 JF |
4344 | @class CydiaObject; |
4345 | ||
09e89a8a | 4346 | @interface CydiaWebViewController : CyteWebViewController { |
7b33d201 | 4347 | _H<CydiaObject> cydia_; |
775deead JF |
4348 | } |
4349 | ||
4350 | + (void) addDiversion:(Diversion *)diversion; | |
85ae5f42 | 4351 | + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request; |
9e130bc2 JF |
4352 | + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia; |
4353 | - (void) setDelegate:(id)delegate; | |
775deead JF |
4354 | |
4355 | @end | |
4356 | ||
775deead | 4357 | /* Web Scripting {{{ */ |
43f3d7f6 | 4358 | @implementation CydiaObject |
c390d3ab | 4359 | |
43f3d7f6 JF |
4360 | - (id) initWithDelegate:(IndirectDelegate *)indirect { |
4361 | if ((self = [super init]) != nil) { | |
4cc9e99a | 4362 | indirect_ = (CyteWebViewController *) indirect; |
43f3d7f6 JF |
4363 | } return self; |
4364 | } | |
4365 | ||
77801ff1 JF |
4366 | - (void) setDelegate:(id)delegate { |
4367 | delegate_ = delegate; | |
4368 | } | |
4369 | ||
43f3d7f6 | 4370 | + (NSArray *) _attributeKeys { |
e58ff941 | 4371 | return [NSArray arrayWithObjects: |
0209cce5 | 4372 | @"bittage", |
6ffdaae3 | 4373 | @"bbsnum", |
e967efd5 | 4374 | @"build", |
019bd407 | 4375 | @"cells", |
e967efd5 | 4376 | @"coreFoundationVersionNumber", |
e58ff941 | 4377 | @"device", |
56296da0 | 4378 | @"ecid", |
93d6d318 JF |
4379 | @"firmware", |
4380 | @"hostname", | |
4381 | @"idiom", | |
f87cac81 JF |
4382 | @"mcc", |
4383 | @"mnc", | |
56296da0 | 4384 | @"model", |
2656c992 | 4385 | @"operator", |
56296da0 | 4386 | @"role", |
e58ff941 | 4387 | @"serial", |
bf1d5e69 | 4388 | @"version", |
e58ff941 | 4389 | nil]; |
43f3d7f6 JF |
4390 | } |
4391 | ||
4392 | - (NSArray *) attributeKeys { | |
4393 | return [[self class] _attributeKeys]; | |
c390d3ab JF |
4394 | } |
4395 | ||
43f3d7f6 JF |
4396 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { |
4397 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
c390d3ab | 4398 | } |
43f3d7f6 | 4399 | |
bf1d5e69 | 4400 | - (NSString *) version { |
3d45bad1 | 4401 | return Cydia_; |
bf1d5e69 JF |
4402 | } |
4403 | ||
0209cce5 JF |
4404 | - (unsigned) bittage { |
4405 | #if 0 | |
4406 | #elif defined(__arm64__) | |
4407 | return 64; | |
4408 | #elif defined(__arm__) | |
4409 | return 32; | |
4410 | #else | |
4411 | return 0; | |
4412 | #endif | |
4413 | } | |
4414 | ||
e967efd5 JF |
4415 | - (NSString *) build { |
4416 | return System_; | |
4417 | } | |
4418 | ||
4419 | - (NSString *) coreFoundationVersionNumber { | |
4420 | return [NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber]; | |
4421 | } | |
4422 | ||
43f3d7f6 | 4423 | - (NSString *) device { |
7c80833f | 4424 | return UniqueIdentifier(); |
c390d3ab JF |
4425 | } |
4426 | ||
93d6d318 JF |
4427 | - (NSString *) firmware { |
4428 | return [[UIDevice currentDevice] systemVersion]; | |
4429 | } | |
4430 | ||
4431 | - (NSString *) hostname { | |
4432 | return [[UIDevice currentDevice] name]; | |
4433 | } | |
4434 | ||
4435 | - (NSString *) idiom { | |
c138614d | 4436 | return (id) Idiom_ ?: [NSNull null]; |
93d6d318 JF |
4437 | } |
4438 | ||
019bd407 JF |
4439 | - (NSArray *) cells { |
4440 | auto *$_CTServerConnectionCreate(reinterpret_cast<id (*)(void *, void *, void *)>(dlsym(RTLD_DEFAULT, "_CTServerConnectionCreate"))); | |
4441 | if ($_CTServerConnectionCreate == NULL) | |
4442 | return nil; | |
4443 | ||
4444 | struct CTResult { int flag; int error; }; | |
4445 | auto *$_CTServerConnectionCellMonitorCopyCellInfo(reinterpret_cast<CTResult (*)(CFTypeRef, void *, CFArrayRef *)>(dlsym(RTLD_DEFAULT, "_CTServerConnectionCellMonitorCopyCellInfo"))); | |
4446 | if ($_CTServerConnectionCellMonitorCopyCellInfo == NULL) | |
4447 | return nil; | |
4448 | ||
4449 | _H<const void> connection($_CTServerConnectionCreate(NULL, NULL, NULL), true); | |
4450 | if (connection == nil) | |
4451 | return nil; | |
4452 | ||
4453 | int count(0); | |
4454 | CFArrayRef cells(NULL); | |
4455 | auto result($_CTServerConnectionCellMonitorCopyCellInfo(connection, &count, &cells)); | |
4456 | if (result.flag != 0) | |
4457 | return nil; | |
4458 | ||
4459 | return [(NSArray *) cells autorelease]; | |
4460 | } | |
4461 | ||
f87cac81 JF |
4462 | - (NSString *) mcc { |
4463 | if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"))) | |
4464 | return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease]; | |
4465 | return nil; | |
4466 | } | |
4467 | ||
4468 | - (NSString *) mnc { | |
4469 | if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode"))) | |
4470 | return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease]; | |
4471 | return nil; | |
56296da0 JF |
4472 | } |
4473 | ||
2656c992 JF |
4474 | - (NSString *) operator { |
4475 | if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName"))) | |
4476 | return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease]; | |
4477 | return nil; | |
4478 | } | |
4479 | ||
6ffdaae3 JF |
4480 | - (NSString *) bbsnum { |
4481 | return (id) BBSNum_ ?: [NSNull null]; | |
4482 | } | |
4483 | ||
56296da0 | 4484 | - (NSString *) ecid { |
849cd6bf | 4485 | return (id) ChipID_ ?: [NSNull null]; |
affeffc7 JF |
4486 | } |
4487 | ||
43f3d7f6 | 4488 | - (NSString *) serial { |
56296da0 | 4489 | return SerialNumber_; |
43f3d7f6 | 4490 | } |
86316a91 | 4491 | |
56296da0 | 4492 | - (NSString *) role { |
4121c5e0 | 4493 | return (id) [NSNull null]; |
affeffc7 JF |
4494 | } |
4495 | ||
56296da0 JF |
4496 | - (NSString *) model { |
4497 | return [NSString stringWithUTF8String:Machine_]; | |
43f3d7f6 | 4498 | } |
43f3d7f6 JF |
4499 | |
4500 | + (NSString *) webScriptNameForSelector:(SEL)selector { | |
e58ff941 | 4501 | if (false); |
cfc7b442 JF |
4502 | else if (selector == @selector(addBridgedHost:)) |
4503 | return @"addBridgedHost"; | |
2e1652a9 JF |
4504 | else if (selector == @selector(addInsecureHost:)) |
4505 | return @"addInsecureHost"; | |
3f428e4e JF |
4506 | else if (selector == @selector(addInternalRedirect::)) |
4507 | return @"addInternalRedirect"; | |
e4b48f2f | 4508 | else if (selector == @selector(addPipelinedHost:scheme:)) |
834c18a4 | 4509 | return @"addPipelinedHost"; |
33e30380 JF |
4510 | else if (selector == @selector(addSource:::)) |
4511 | return @"addSource"; | |
b088c0cd JF |
4512 | else if (selector == @selector(addTrivialSource:)) |
4513 | return @"addTrivialSource"; | |
e58ff941 | 4514 | else if (selector == @selector(close)) |
43f3d7f6 | 4515 | return @"close"; |
e58ff941 JF |
4516 | else if (selector == @selector(du:)) |
4517 | return @"du"; | |
4518 | else if (selector == @selector(stringWithFormat:arguments:)) | |
4519 | return @"format"; | |
5c32f89e | 4520 | else if (selector == @selector(getAllSources)) |
caf0475e | 4521 | return @"getAllSources"; |
8c5b623f JF |
4522 | else if (selector == @selector(getApplicationInfo:value:)) |
4523 | return @"getApplicationInfoValue"; | |
375a4481 JF |
4524 | else if (selector == @selector(getDisplayIdentifiers)) |
4525 | return @"getDisplayIdentifiers"; | |
4526 | else if (selector == @selector(getLocalizedNameForDisplayIdentifier:)) | |
4527 | return @"getLocalizedNameForDisplayIdentifier"; | |
5bc1277a JF |
4528 | else if (selector == @selector(getKernelNumber:)) |
4529 | return @"getKernelNumber"; | |
4530 | else if (selector == @selector(getKernelString:)) | |
4531 | return @"getKernelString"; | |
8cc8eb1c JF |
4532 | else if (selector == @selector(getInstalledPackages)) |
4533 | return @"getInstalledPackages"; | |
c31d7cdc JF |
4534 | else if (selector == @selector(getIORegistryEntry::)) |
4535 | return @"getIORegistryEntry"; | |
948db680 JF |
4536 | else if (selector == @selector(getLocaleIdentifier)) |
4537 | return @"getLocaleIdentifier"; | |
4538 | else if (selector == @selector(getPreferredLanguages)) | |
4539 | return @"getPreferredLanguages"; | |
43f3d7f6 JF |
4540 | else if (selector == @selector(getPackageById:)) |
4541 | return @"getPackageById"; | |
37fa9338 JF |
4542 | else if (selector == @selector(getMetadataKeys)) |
4543 | return @"getMetadataKeys"; | |
b3c8e69c JF |
4544 | else if (selector == @selector(getMetadataValue:)) |
4545 | return @"getMetadataValue"; | |
ef974f52 JF |
4546 | else if (selector == @selector(getSessionValue:)) |
4547 | return @"getSessionValue"; | |
77801ff1 JF |
4548 | else if (selector == @selector(installPackages:)) |
4549 | return @"installPackages"; | |
518a552a JF |
4550 | else if (selector == @selector(isReachable:)) |
4551 | return @"isReachable"; | |
e58ff941 JF |
4552 | else if (selector == @selector(localizedStringForKey:value:table:)) |
4553 | return @"localize"; | |
8d497e2a JF |
4554 | else if (selector == @selector(popViewController:)) |
4555 | return @"popViewController"; | |
b088c0cd JF |
4556 | else if (selector == @selector(refreshSources)) |
4557 | return @"refreshSources"; | |
aa1e1906 JF |
4558 | else if (selector == @selector(registerFrame:)) |
4559 | return @"registerFrame"; | |
ed5566c7 JF |
4560 | else if (selector == @selector(removeButton)) |
4561 | return @"removeButton"; | |
33e30380 JF |
4562 | else if (selector == @selector(saveConfig)) |
4563 | return @"saveConfig"; | |
b3c8e69c JF |
4564 | else if (selector == @selector(setMetadataValue::)) |
4565 | return @"setMetadataValue"; | |
ef974f52 JF |
4566 | else if (selector == @selector(setSessionValue::)) |
4567 | return @"setSessionValue"; | |
8a126074 JF |
4568 | else if (selector == @selector(substitutePackageNames:)) |
4569 | return @"substitutePackageNames"; | |
8e3b68d4 JF |
4570 | else if (selector == @selector(scrollToBottom:)) |
4571 | return @"scrollToBottom"; | |
8366df5e JF |
4572 | else if (selector == @selector(setAllowsNavigationAction:)) |
4573 | return @"setAllowsNavigationAction"; | |
c31c825d JF |
4574 | else if (selector == @selector(setBadgeValue:)) |
4575 | return @"setBadgeValue"; | |
43f3d7f6 JF |
4576 | else if (selector == @selector(setButtonImage:withStyle:toFunction:)) |
4577 | return @"setButtonImage"; | |
4578 | else if (selector == @selector(setButtonTitle:withStyle:toFunction:)) | |
4579 | return @"setButtonTitle"; | |
b8a5d89d JF |
4580 | else if (selector == @selector(setHidesBackButton:)) |
4581 | return @"setHidesBackButton"; | |
5cdfcd6f JF |
4582 | else if (selector == @selector(setHidesNavigationBar:)) |
4583 | return @"setHidesNavigationBar"; | |
82406217 JF |
4584 | else if (selector == @selector(setNavigationBarStyle:)) |
4585 | return @"setNavigationBarStyle"; | |
00984204 JF |
4586 | else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:)) |
4587 | return @"setNavigationBarTintColor"; | |
36a20e14 JF |
4588 | else if (selector == @selector(setPasteboardString:)) |
4589 | return @"setPasteboardString"; | |
4590 | else if (selector == @selector(setPasteboardURL:)) | |
4591 | return @"setPasteboardURL"; | |
db698f42 JF |
4592 | else if (selector == @selector(setScrollAlwaysBounceVertical:)) |
4593 | return @"setScrollAlwaysBounceVertical"; | |
4886cc81 JF |
4594 | else if (selector == @selector(setScrollIndicatorStyle:)) |
4595 | return @"setScrollIndicatorStyle"; | |
ef055c6c JF |
4596 | else if (selector == @selector(setToken:)) |
4597 | return @"setToken"; | |
43f3d7f6 JF |
4598 | else if (selector == @selector(setViewportWidth:)) |
4599 | return @"setViewportWidth"; | |
43f3d7f6 JF |
4600 | else if (selector == @selector(statfs:)) |
4601 | return @"statfs"; | |
e58ff941 JF |
4602 | else if (selector == @selector(supports:)) |
4603 | return @"supports"; | |
7c218781 JF |
4604 | else if (selector == @selector(unload)) |
4605 | return @"unload"; | |
c390d3ab | 4606 | else |
43f3d7f6 JF |
4607 | return nil; |
4608 | } | |
4609 | ||
4610 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
4611 | return [self webScriptNameForSelector:selector] == nil; | |
c390d3ab JF |
4612 | } |
4613 | ||
43f3d7f6 JF |
4614 | - (BOOL) supports:(NSString *)feature { |
4615 | return [feature isEqualToString:@"window.open"]; | |
4616 | } | |
c390d3ab | 4617 | |
7c218781 JF |
4618 | - (void) unload { |
4619 | [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO]; | |
4620 | } | |
4621 | ||
db698f42 JF |
4622 | - (void) setScrollAlwaysBounceVertical:(NSNumber *)value { |
4623 | [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO]; | |
4624 | } | |
4625 | ||
4886cc81 JF |
4626 | - (void) setScrollIndicatorStyle:(NSString *)style { |
4627 | [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO]; | |
4628 | } | |
4629 | ||
3f428e4e | 4630 | - (void) addInternalRedirect:(NSString *)from :(NSString *)to { |
a576488f | 4631 | [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO]; |
775deead JF |
4632 | } |
4633 | ||
8c5b623f JF |
4634 | - (NSDictionary *) getApplicationInfo:(NSString *)display value:(NSString *)key { |
4635 | char path[1024]; | |
4636 | if (SBBundlePathForDisplayIdentifier(SBSSpringBoardServerPort(), [display UTF8String], path) != 0) | |
4637 | return (id) [NSNull null]; | |
4638 | NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:[[NSString stringWithUTF8String:path] stringByAppendingString:@"/Info.plist"]]); | |
4639 | if (info == nil) | |
4640 | return (id) [NSNull null]; | |
4641 | return [info objectForKey:key]; | |
4642 | } | |
4643 | ||
375a4481 | 4644 | - (NSArray *) getDisplayIdentifiers { |
8bd55062 | 4645 | return SBSCopyApplicationDisplayIdentifiers(false, false); |
375a4481 JF |
4646 | } |
4647 | ||
4648 | - (NSString *) getLocalizedNameForDisplayIdentifier:(NSString *)identifier { | |
4649 | return [SBSCopyLocalizedApplicationNameForDisplayIdentifier(identifier) autorelease] ?: (id) [NSNull null]; | |
4650 | } | |
4651 | ||
5bc1277a JF |
4652 | - (NSNumber *) getKernelNumber:(NSString *)name { |
4653 | const char *string([name UTF8String]); | |
4654 | ||
4655 | size_t size; | |
4656 | if (sysctlbyname(string, NULL, &size, NULL, 0) == -1) | |
4657 | return (id) [NSNull null]; | |
4658 | ||
4659 | if (size != sizeof(int)) | |
4660 | return (id) [NSNull null]; | |
4661 | ||
4662 | int value; | |
4663 | if (sysctlbyname(string, &value, &size, NULL, 0) == -1) | |
4664 | return (id) [NSNull null]; | |
4665 | ||
4666 | return [NSNumber numberWithInt:value]; | |
4667 | } | |
4668 | ||
4669 | - (NSString *) getKernelString:(NSString *)name { | |
4670 | const char *string([name UTF8String]); | |
4671 | ||
4672 | size_t size; | |
4673 | if (sysctlbyname(string, NULL, &size, NULL, 0) == -1) | |
4674 | return (id) [NSNull null]; | |
4675 | ||
4676 | char value[size + 1]; | |
4677 | if (sysctlbyname(string, value, &size, NULL, 0) == -1) | |
4678 | return (id) [NSNull null]; | |
4679 | ||
4680 | // XXX: just in case you request something ludicrous | |
4681 | value[size] = '\0'; | |
4682 | ||
4683 | return [NSString stringWithCString:value]; | |
4684 | } | |
4685 | ||
c31d7cdc JF |
4686 | - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry { |
4687 | NSObject *value(CYIOGetValue([path UTF8String], entry)); | |
4688 | ||
4689 | if (value != nil) | |
4690 | if ([value isKindOfClass:[NSData class]]) | |
4691 | value = CYHex((NSData *) value); | |
4692 | ||
4693 | return value; | |
4694 | } | |
4695 | ||
37fa9338 JF |
4696 | - (NSArray *) getMetadataKeys { |
4697 | @synchronized (Values_) { | |
4698 | return [Values_ allKeys]; | |
4699 | } } | |
4700 | ||
aa1e1906 JF |
4701 | - (void) registerFrame:(DOMHTMLIFrameElement *)iframe { |
4702 | WebFrame *frame([iframe contentFrame]); | |
4703 | [indirect_ registerFrame:frame]; | |
4704 | } | |
4705 | ||
b3c8e69c JF |
4706 | - (id) getMetadataValue:(NSString *)key { |
4707 | @synchronized (Values_) { | |
4708 | return [Values_ objectForKey:key]; | |
4709 | } } | |
4710 | ||
4711 | - (void) setMetadataValue:(NSString *)key :(NSString *)value { | |
4712 | @synchronized (Values_) { | |
33e30380 | 4713 | if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null]) |
b3c8e69c JF |
4714 | [Values_ removeObjectForKey:key]; |
4715 | else | |
4716 | [Values_ setObject:value forKey:key]; | |
b3c8e69c JF |
4717 | } } |
4718 | ||
ef974f52 JF |
4719 | - (id) getSessionValue:(NSString *)key { |
4720 | @synchronized (SessionData_) { | |
4721 | return [SessionData_ objectForKey:key]; | |
4722 | } } | |
4723 | ||
4724 | - (void) setSessionValue:(NSString *)key :(NSString *)value { | |
4725 | @synchronized (SessionData_) { | |
4726 | if (value == (id) [WebUndefined undefined]) | |
4727 | [SessionData_ removeObjectForKey:key]; | |
4728 | else | |
4729 | [SessionData_ setObject:value forKey:key]; | |
4730 | } } | |
4731 | ||
cfc7b442 | 4732 | - (void) addBridgedHost:(NSString *)host { |
48f1762f JF |
4733 | @synchronized (HostConfig_) { |
4734 | [BridgedHosts_ addObject:host]; | |
4735 | } } | |
5df7ecfb | 4736 | |
2e1652a9 JF |
4737 | - (void) addInsecureHost:(NSString *)host { |
4738 | @synchronized (HostConfig_) { | |
4739 | [InsecureHosts_ addObject:host]; | |
4740 | } } | |
4741 | ||
e4b48f2f | 4742 | - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme { |
48f1762f | 4743 | @synchronized (HostConfig_) { |
e4b48f2f JF |
4744 | if (scheme != (id) [WebUndefined undefined]) |
4745 | host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host]; | |
4746 | ||
48f1762f JF |
4747 | [PipelinedHosts_ addObject:host]; |
4748 | } } | |
834c18a4 | 4749 | |
8d497e2a JF |
4750 | - (void) popViewController:(NSNumber *)value { |
4751 | if (value == (id) [WebUndefined undefined]) | |
4752 | value = [NSNumber numberWithBool:YES]; | |
4753 | [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO]; | |
4754 | } | |
4755 | ||
33e30380 JF |
4756 | - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections { |
4757 | NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]); | |
4758 | ||
4759 | for (NSString *section in sections) | |
4760 | [array addObject:section]; | |
4761 | ||
4762 | [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys: | |
4763 | @"deb", @"Type", | |
4764 | href, @"URI", | |
4765 | distribution, @"Distribution", | |
4766 | array, @"Sections", | |
4767 | nil] waitUntilDone:NO]; | |
4768 | } | |
4769 | ||
8a2d167a JF |
4770 | - (BOOL) addTrivialSource:(NSString *)href { |
4771 | href = VerifySource(href); | |
4772 | if (href == nil) | |
4773 | return NO; | |
a1d85d42 | 4774 | [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO]; |
8a2d167a | 4775 | return YES; |
b088c0cd JF |
4776 | } |
4777 | ||
4778 | - (void) refreshSources { | |
4779 | [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO]; | |
4780 | } | |
4781 | ||
33e30380 JF |
4782 | - (void) saveConfig { |
4783 | [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO]; | |
4784 | } | |
4785 | ||
5c32f89e JF |
4786 | - (NSArray *) getAllSources { |
4787 | return [[Database sharedInstance] sources]; | |
4788 | } | |
4789 | ||
8cc8eb1c | 4790 | - (NSArray *) getInstalledPackages { |
26e6829b JF |
4791 | Database *database([Database sharedInstance]); |
4792 | @synchronized (database) { | |
4793 | NSArray *packages([database packages]); | |
f4db946e | 4794 | NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]); |
77801ff1 | 4795 | for (Package *package in packages) |
26e6829b | 4796 | if (![package uninstalled]) |
8cc8eb1c JF |
4797 | [installed addObject:package]; |
4798 | return installed; | |
26e6829b | 4799 | } } |
8cc8eb1c | 4800 | |
43f3d7f6 | 4801 | - (Package *) getPackageById:(NSString *)id { |
62cab237 JF |
4802 | if (Package *package = [[Database sharedInstance] packageWithName:id]) { |
4803 | [package parse]; | |
4804 | return package; | |
4805 | } else | |
4806 | return (Package *) [NSNull null]; | |
43f3d7f6 JF |
4807 | } |
4808 | ||
948db680 JF |
4809 | - (NSString *) getLocaleIdentifier { |
4810 | return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_); | |
4811 | } | |
4812 | ||
4813 | - (NSArray *) getPreferredLanguages { | |
4814 | return Languages_; | |
4815 | } | |
4816 | ||
43f3d7f6 JF |
4817 | - (NSArray *) statfs:(NSString *)path { |
4818 | struct statfs stat; | |
4819 | ||
4820 | if (path == nil || statfs([path UTF8String], &stat) == -1) | |
4821 | return nil; | |
4822 | ||
4823 | return [NSArray arrayWithObjects: | |
4824 | [NSNumber numberWithUnsignedLong:stat.f_bsize], | |
4825 | [NSNumber numberWithUnsignedLong:stat.f_blocks], | |
4826 | [NSNumber numberWithUnsignedLong:stat.f_bfree], | |
4827 | nil]; | |
4828 | } | |
4829 | ||
e40620ab | 4830 | - (NSNumber *) du:(NSString *)path { |
d59938e3 JF |
4831 | NSNumber *value(nil); |
4832 | ||
d8b0f6e3 | 4833 | FILE *du(popen([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /usr/libexec/cydia/du -ks %@", ShellEscape(path)] UTF8String], "r")); |
d59938e3 JF |
4834 | if (du != NULL) { |
4835 | char line[1024]; | |
4836 | while (fgets(line, sizeof(line), du) != NULL) { | |
4837 | size_t length(strlen(line)); | |
4838 | while (length != 0 && line[length - 1] == '\n') | |
4839 | line[--length] = '\0'; | |
4840 | if (char *tab = strchr(line, '\t')) { | |
4841 | *tab = '\0'; | |
4842 | value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)]; | |
4843 | } | |
4844 | } | |
4845 | pclose(du); | |
4846 | } | |
4847 | ||
4848 | return value; | |
43f3d7f6 JF |
4849 | } |
4850 | ||
4851 | - (void) close { | |
e6417cea | 4852 | [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO]; |
43f3d7f6 JF |
4853 | } |
4854 | ||
518a552a JF |
4855 | - (NSNumber *) isReachable:(NSString *)name { |
4856 | return [NSNumber numberWithBool:IsReachable([name UTF8String])]; | |
4857 | } | |
4858 | ||
77801ff1 JF |
4859 | - (void) installPackages:(NSArray *)packages { |
4860 | [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO]; | |
4861 | } | |
4862 | ||
8a126074 | 4863 | - (NSString *) substitutePackageNames:(NSString *)message { |
f9c8848f JF |
4864 | auto database([Database sharedInstance]); |
4865 | ||
4866 | // XXX: this check is less racy than you'd expect, but this entire concept is a little awkward | |
ed3caba9 | 4867 | if (![database hasPackages]) |
f9c8848f JF |
4868 | return message; |
4869 | ||
0c4fe0f4 | 4870 | NSMutableArray *words([[[message componentsSeparatedByString:@" "] mutableCopy] autorelease]); |
8a126074 JF |
4871 | for (size_t i(0), e([words count]); i != e; ++i) { |
4872 | NSString *word([words objectAtIndex:i]); | |
f9c8848f | 4873 | if (Package *package = [database packageWithName:word]) |
8a126074 JF |
4874 | [words replaceObjectAtIndex:i withObject:[package name]]; |
4875 | } | |
4876 | ||
4877 | return [words componentsJoinedByString:@" "]; | |
4878 | } | |
4879 | ||
ed5566c7 JF |
4880 | - (void) removeButton { |
4881 | [indirect_ removeButton]; | |
4882 | } | |
4883 | ||
43f3d7f6 JF |
4884 | - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function { |
4885 | [indirect_ setButtonImage:button withStyle:style toFunction:function]; | |
4886 | } | |
4887 | ||
4888 | - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function { | |
4889 | [indirect_ setButtonTitle:button withStyle:style toFunction:function]; | |
4890 | } | |
4891 | ||
c31c825d JF |
4892 | - (void) setBadgeValue:(id)value { |
4893 | [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO]; | |
4894 | } | |
4895 | ||
8366df5e JF |
4896 | - (void) setAllowsNavigationAction:(NSString *)value { |
4897 | [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO]; | |
4898 | } | |
4899 | ||
b8a5d89d JF |
4900 | - (void) setHidesBackButton:(NSString *)value { |
4901 | [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO]; | |
4902 | } | |
4903 | ||
5cdfcd6f JF |
4904 | - (void) setHidesNavigationBar:(NSString *)value { |
4905 | [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO]; | |
4906 | } | |
4907 | ||
82406217 JF |
4908 | - (void) setNavigationBarStyle:(NSString *)value { |
4909 | [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO]; | |
4910 | } | |
4911 | ||
00984204 JF |
4912 | - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha { |
4913 | float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]); | |
4914 | UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]); | |
4915 | [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO]; | |
4916 | } | |
4917 | ||
36a20e14 JF |
4918 | - (void) setPasteboardString:(NSString *)value { |
4919 | [[objc_getClass("UIPasteboard") generalPasteboard] setString:value]; | |
4920 | } | |
4921 | ||
4922 | - (void) setPasteboardURL:(NSString *)value { | |
4923 | [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]]; | |
4924 | } | |
4925 | ||
673a6e1a | 4926 | - (void) setToken:(NSString *)token { |
7826a48c | 4927 | // XXX: the website expects this :/ |
673a6e1a JF |
4928 | } |
4929 | ||
8e3b68d4 JF |
4930 | - (void) scrollToBottom:(NSNumber *)animated { |
4931 | [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO]; | |
4932 | } | |
4933 | ||
43f3d7f6 | 4934 | - (void) setViewportWidth:(float)width { |
8dbdaafa | 4935 | [indirect_ setViewportWidthOnMainThread:width]; |
43f3d7f6 JF |
4936 | } |
4937 | ||
4938 | - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments { | |
4939 | //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]); | |
4940 | unsigned count([arguments count]); | |
4941 | id values[count]; | |
4942 | for (unsigned i(0); i != count; ++i) | |
4943 | values[i] = [arguments objectAtIndex:i]; | |
673e8fa3 | 4944 | return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease]; |
43f3d7f6 JF |
4945 | } |
4946 | ||
4947 | - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table { | |
a95e0405 JF |
4948 | if (reinterpret_cast<id>(value) == [WebUndefined undefined]) |
4949 | value = nil; | |
43f3d7f6 JF |
4950 | if (reinterpret_cast<id>(table) == [WebUndefined undefined]) |
4951 | table = nil; | |
4952 | return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table]; | |
c390d3ab JF |
4953 | } |
4954 | ||
4955 | @end | |
4956 | /* }}} */ | |
f79a4512 | 4957 | |
2e1652a9 JF |
4958 | @interface NSURL (CydiaSecure) |
4959 | @end | |
4960 | ||
4961 | @implementation NSURL (CydiaSecure) | |
4962 | ||
4963 | - (bool) isCydiaSecure { | |
4964 | if ([[[self scheme] lowercaseString] isEqualToString:@"https"]) | |
4965 | return true; | |
4966 | ||
4967 | @synchronized (HostConfig_) { | |
4968 | if ([InsecureHosts_ containsObject:[self host]]) | |
4969 | return true; | |
4970 | } | |
4971 | ||
4972 | return false; | |
4973 | } | |
4974 | ||
4975 | @end | |
dd5f8161 | 4976 | |
80319240 | 4977 | /* Cydia Browser Controller {{{ */ |
a576488f | 4978 | @implementation CydiaWebViewController |
43f3d7f6 | 4979 | |
fe8e721f | 4980 | - (NSURL *) navigationURL { |
d323285e | 4981 | return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]]; |
fe8e721f GP |
4982 | } |
4983 | ||
3f9ab807 JF |
4984 | + (void) _initialize { |
4985 | [super _initialize]; | |
4986 | ||
7b33d201 | 4987 | Diversions_ = [NSMutableSet setWithCapacity:0]; |
775deead JF |
4988 | } |
4989 | ||
4990 | + (void) addDiversion:(Diversion *)diversion { | |
4991 | [Diversions_ addObject:diversion]; | |
4992 | } | |
4993 | ||
2634b249 JF |
4994 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
4995 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
9e130bc2 JF |
4996 | [CydiaWebViewController didClearWindowObject:window forFrame:frame withCydia:cydia_]; |
4997 | } | |
01d93940 | 4998 | |
9e130bc2 | 4999 | + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia { |
01d93940 JF |
5000 | WebDataSource *source([frame dataSource]); |
5001 | NSURLResponse *response([source response]); | |
5002 | NSURL *url([response URL]); | |
b8f1a18a JF |
5003 | NSString *scheme([[url scheme] lowercaseString]); |
5004 | ||
5005 | bool bridged(false); | |
8804004f | 5006 | |
48f1762f | 5007 | @synchronized (HostConfig_) { |
b8f1a18a JF |
5008 | if ([scheme isEqualToString:@"file"]) |
5009 | bridged = true; | |
5010 | else if ([scheme isEqualToString:@"https"]) | |
48f1762f | 5011 | if ([BridgedHosts_ containsObject:[url host]]) |
b8f1a18a | 5012 | bridged = true; |
48f1762f | 5013 | } |
b8f1a18a JF |
5014 | |
5015 | if (bridged) | |
9e130bc2 | 5016 | [window setValue:cydia forKey:@"cydia"]; |
43f3d7f6 JF |
5017 | } |
5018 | ||
22485d93 JF |
5019 | - (void) _setupMail:(MFMailComposeViewController *)controller { |
5020 | [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"]; | |
5021 | ||
5022 | system("/usr/bin/dpkg -l >/tmp/dpkgl.log"); | |
5023 | [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"]; | |
5024 | } | |
5025 | ||
f9b36dae JF |
5026 | - (NSURL *) URLWithURL:(NSURL *)url { |
5027 | return [Diversion divertURL:url]; | |
5028 | } | |
5029 | ||
9d1bf666 | 5030 | - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source { |
85ae5f42 JF |
5031 | return [CydiaWebViewController requestWithHeaders:[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]]; |
5032 | } | |
5033 | ||
92de61aa JF |
5034 | - (NSURLRequest *) webThreadWebView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source { |
5035 | return [CydiaWebViewController requestWithHeaders:[super webThreadWebView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]]; | |
5036 | } | |
5037 | ||
85ae5f42 | 5038 | + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request { |
0c4fe0f4 | 5039 | NSMutableURLRequest *copy([[request mutableCopy] autorelease]); |
9d1bf666 | 5040 | |
bc1cffbe | 5041 | NSURL *url([copy URL]); |
daa21f8e | 5042 | NSString *href([url absoluteString]); |
bc1cffbe JF |
5043 | NSString *host([url host]); |
5044 | ||
daa21f8e JF |
5045 | if ([href hasPrefix:@"https://cydia.saurik.com/TSS/"]) { |
5046 | if (NSString *agent = [copy valueForHTTPHeaderField:@"X-User-Agent"]) { | |
5047 | [copy setValue:agent forHTTPHeaderField:@"User-Agent"]; | |
5048 | [copy setValue:nil forHTTPHeaderField:@"X-User-Agent"]; | |
5049 | } | |
5050 | ||
5051 | [copy setValue:nil forHTTPHeaderField:@"Referer"]; | |
5052 | [copy setValue:nil forHTTPHeaderField:@"Origin"]; | |
5053 | ||
5054 | [copy setURL:[NSURL URLWithString:[@"http://gs.apple.com/TSS/" stringByAppendingString:[href substringFromIndex:29]]]]; | |
5055 | return copy; | |
5056 | } | |
5057 | ||
6f44d712 JF |
5058 | if ([copy valueForHTTPHeaderField:@"X-Cydia-Cf"] == nil) |
5059 | [copy setValue:[NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber] forHTTPHeaderField:@"X-Cydia-Cf"]; | |
1baae086 | 5060 | if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil) |
9d1bf666 | 5061 | [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"]; |
247bedb6 | 5062 | |
7826a48c | 5063 | bool bridged; @synchronized (HostConfig_) { |
e7817a6b | 5064 | bridged = [BridgedHosts_ containsObject:host]; |
247bedb6 JF |
5065 | } |
5066 | ||
7826a48c JF |
5067 | if ([url isCydiaSecure] && bridged && UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil) |
5068 | [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"]; | |
43f3d7f6 JF |
5069 | |
5070 | return copy; | |
a9a0661e JF |
5071 | } |
5072 | ||
77801ff1 JF |
5073 | - (void) setDelegate:(id)delegate { |
5074 | [super setDelegate:delegate]; | |
5075 | [cydia_ setDelegate:delegate]; | |
5076 | } | |
5077 | ||
c6cf66c7 | 5078 | - (NSString *) applicationNameForUserAgent { |
e967efd5 | 5079 | return UserAgent_; |
c6cf66c7 | 5080 | } |
43f3d7f6 | 5081 | |
c6cf66c7 JF |
5082 | - (id) init { |
5083 | if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) { | |
5084 | cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease]; | |
43f3d7f6 JF |
5085 | } return self; |
5086 | } | |
5087 | ||
29bb09d7 JF |
5088 | @end |
5089 | ||
5090 | @interface AppCacheController : CydiaWebViewController { | |
5091 | } | |
5092 | ||
5093 | @end | |
5094 | ||
5095 | @implementation AppCacheController | |
5096 | ||
5097 | - (void) didReceiveMemoryWarning { | |
6271cb57 | 5098 | // XXX: this doesn't work |
29bb09d7 JF |
5099 | } |
5100 | ||
2713be8e JF |
5101 | - (bool) retainsNetworkActivityIndicator { |
5102 | return false; | |
5103 | } | |
5104 | ||
43f3d7f6 | 5105 | @end |
80319240 | 5106 | /* }}} */ |
43f3d7f6 | 5107 | |
b1ca831d JF |
5108 | // CydiaScript {{{ |
5109 | @interface NSObject (CydiaScript) | |
5110 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context; | |
5111 | @end | |
5112 | ||
5113 | @implementation NSObject (CydiaScript) | |
5114 | ||
5115 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
5116 | return self; | |
5117 | } | |
5118 | ||
5119 | @end | |
5120 | ||
5121 | @implementation NSArray (CydiaScript) | |
5122 | ||
5123 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
5124 | WebScriptObject *object([context evaluateWebScript:@"[]"]); | |
5125 | for (size_t i(0), e([self count]); i != e; ++i) | |
5126 | [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]]; | |
5127 | return object; | |
5128 | } | |
5129 | ||
5130 | @end | |
5131 | ||
5132 | @implementation NSDictionary (CydiaScript) | |
5133 | ||
5134 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
5135 | WebScriptObject *object([context evaluateWebScript:@"({})"]); | |
5136 | for (id i in self) | |
5137 | [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i]; | |
5138 | return object; | |
5139 | } | |
5140 | ||
5141 | @end | |
5142 | // }}} | |
5143 | ||
5829aea2 GP |
5144 | /* Confirmation Controller {{{ */ |
5145 | bool DepSubstrate(const pkgCache::VerIterator &iterator) { | |
5146 | if (!iterator.end()) | |
5147 | for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) { | |
5148 | if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends) | |
5149 | continue; | |
5150 | pkgCache::PkgIterator package(dep.TargetPkg()); | |
5151 | if (package.end()) | |
5152 | continue; | |
5153 | if (strcmp(package.Name(), "mobilesubstrate") == 0) | |
5154 | return true; | |
5155 | } | |
5156 | ||
5157 | return false; | |
5158 | } | |
5159 | ||
adb61bda | 5160 | @protocol ConfirmationControllerDelegate |
674dce72 | 5161 | - (void) cancelAndClear:(bool)clear; |
b5e7eebb | 5162 | - (void) confirmWithNavigationController:(UINavigationController *)navigation; |
dc63e78f | 5163 | - (void) queue; |
36bb2ca2 | 5164 | @end |
2367a917 | 5165 | |
a576488f | 5166 | @interface ConfirmationController : CydiaWebViewController { |
770f2a8e | 5167 | _transient Database *database_; |
6ceb0959 | 5168 | |
7b33d201 | 5169 | _H<UIAlertView> essential_; |
6ceb0959 | 5170 | |
7b33d201 JF |
5171 | _H<NSDictionary> changes_; |
5172 | _H<NSMutableArray> issues_; | |
5173 | _H<NSDictionary> sizes_; | |
6ceb0959 | 5174 | |
a9a0661e | 5175 | BOOL substrate_; |
36bb2ca2 | 5176 | } |
dc5812ec | 5177 | |
b5e7eebb | 5178 | - (id) initWithDatabase:(Database *)database; |
b4d89997 | 5179 | |
dc5812ec JF |
5180 | @end |
5181 | ||
adb61bda | 5182 | @implementation ConfirmationController |
dc5812ec | 5183 | |
ab2cfc1e JF |
5184 | - (void) complete { |
5185 | if (substrate_) | |
be860cc8 | 5186 | RestartSubstrate_ = true; |
ab2cfc1e JF |
5187 | [delegate_ confirmWithNavigationController:[self navigationController]]; |
5188 | } | |
5189 | ||
b5e7eebb | 5190 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
3272e699 | 5191 | NSString *context([alert context]); |
9bedffaa | 5192 | |
1cedb821 | 5193 | if ([context isEqualToString:@"remove"]) { |
ab2cfc1e | 5194 | if (button == [alert cancelButtonIndex]) |
02069daf | 5195 | [self _doContinue]; |
ab2cfc1e | 5196 | else if (button == [alert firstOtherButtonIndex]) { |
d69dbfc5 | 5197 | [self performSelector:@selector(complete) withObject:nil afterDelay:0]; |
9bedffaa | 5198 | } |
9bedffaa | 5199 | |
3272e699 | 5200 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 5201 | } else if ([context isEqualToString:@"unable"]) { |
b5e7eebb | 5202 | [self dismissModalViewControllerAnimated:YES]; |
3272e699 GP |
5203 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
5204 | } else { | |
b5e7eebb GP |
5205 | [super alertView:alert clickedButtonAtIndex:button]; |
5206 | } | |
36bb2ca2 JF |
5207 | } |
5208 | ||
46c46f4f | 5209 | - (void) _doContinue { |
21ea11a4 | 5210 | [delegate_ cancelAndClear:NO]; |
12d3d98d | 5211 | [self dismissModalViewControllerAnimated:YES]; |
46c46f4f | 5212 | } |
bc11cf5b | 5213 | |
46c46f4f JF |
5214 | - (id) invokeDefaultMethodWithArguments:(NSArray *)args { |
5215 | [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO]; | |
21ea11a4 GP |
5216 | return nil; |
5217 | } | |
5218 | ||
2634b249 JF |
5219 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
5220 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
6ceb0959 | 5221 | |
781001d7 | 5222 | [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys: |
7b33d201 JF |
5223 | (id) changes_, @"changes", |
5224 | (id) issues_, @"issues", | |
5225 | (id) sizes_, @"sizes", | |
781001d7 JF |
5226 | self, @"queue", |
5227 | nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"]; | |
36bb2ca2 JF |
5228 | } |
5229 | ||
b5e7eebb GP |
5230 | - (id) initWithDatabase:(Database *)database { |
5231 | if ((self = [super init]) != nil) { | |
770f2a8e JF |
5232 | database_ = database; |
5233 | ||
6ceb0959 JF |
5234 | NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]); |
5235 | NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]); | |
5236 | NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]); | |
5237 | NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]); | |
5238 | NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]); | |
dc5812ec | 5239 | |
36bb2ca2 | 5240 | bool remove(false); |
dc5812ec | 5241 | |
6ceb0959 JF |
5242 | pkgCacheFile &cache([database_ cache]); |
5243 | NSArray *packages([database_ packages]); | |
a9a0661e JF |
5244 | pkgDepCache::Policy *policy([database_ policy]); |
5245 | ||
7b33d201 | 5246 | issues_ = [NSMutableArray arrayWithCapacity:4]; |
6ceb0959 | 5247 | |
c4dcf2c2 | 5248 | for (Package *package in packages) { |
6ceb0959 JF |
5249 | pkgCache::PkgIterator iterator([package iterator]); |
5250 | NSString *name([package id]); | |
5251 | ||
5252 | if ([package broken]) { | |
5253 | NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]); | |
5254 | ||
5255 | [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
5256 | name, @"package", | |
5257 | reasons, @"reasons", | |
5258 | nil]]; | |
5259 | ||
5260 | pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache)); | |
5261 | if (ver.end()) | |
5262 | continue; | |
5263 | ||
5264 | for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) { | |
5265 | pkgCache::DepIterator start; | |
5266 | pkgCache::DepIterator end; | |
5267 | dep.GlobOr(start, end); // ++dep | |
5268 | ||
5269 | if (!cache->IsImportantDep(end)) | |
5270 | continue; | |
5271 | if ((cache[end] & pkgDepCache::DepGInstall) != 0) | |
5272 | continue; | |
5273 | ||
810c9763 JF |
5274 | NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]); |
5275 | ||
5276 | [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
5277 | [NSString stringWithUTF8String:start.DepType()], @"relationship", | |
5278 | clauses, @"clauses", | |
5279 | nil]]; | |
5280 | ||
6ceb0959 JF |
5281 | _forever { |
5282 | NSString *reason, *installed((NSString *) [WebUndefined undefined]); | |
5283 | ||
5284 | pkgCache::PkgIterator target(start.TargetPkg()); | |
5285 | if (target->ProvidesList != 0) | |
5286 | reason = @"missing"; | |
5287 | else { | |
5288 | pkgCache::VerIterator ver(cache[target].InstVerIter(cache)); | |
5289 | if (!ver.end()) { | |
5290 | reason = @"installed"; | |
5291 | installed = [NSString stringWithUTF8String:ver.VerStr()]; | |
5292 | } else if (!cache[target].CandidateVerIter(cache).end()) | |
5293 | reason = @"uninstalled"; | |
5294 | else if (target->ProvidesList == 0) | |
5295 | reason = @"uninstallable"; | |
5296 | else | |
5297 | reason = @"virtual"; | |
5298 | } | |
5299 | ||
3e5a9f5d | 5300 | NSDictionary *version(start.TargetVer() == 0 ? (NSDictionary *) [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
5301 | [NSString stringWithUTF8String:start.CompType()], @"operator", |
5302 | [NSString stringWithUTF8String:start.TargetVer()], @"value", | |
5303 | nil]); | |
5304 | ||
810c9763 | 5305 | [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
5306 | [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package", |
5307 | version, @"version", | |
5308 | reason, @"reason", | |
5309 | installed, @"installed", | |
5310 | nil]]; | |
5311 | ||
5312 | // yes, seriously. (wtf?) | |
5313 | if (start == end) | |
5314 | break; | |
5315 | ++start; | |
5316 | } | |
5317 | } | |
5318 | } | |
5319 | ||
36bb2ca2 | 5320 | pkgDepCache::StateCache &state(cache[iterator]); |
dc5812ec | 5321 | |
b4fd1197 | 5322 | static RegEx special_r("(firmware|gsc\\..*|cy\\+.*)"); |
2388b078 | 5323 | |
36bb2ca2 | 5324 | if (state.NewInstall()) |
6ceb0959 | 5325 | [installs addObject:name]; |
f8d15be2 | 5326 | // XXX: else if (state.Install()) |
36bb2ca2 | 5327 | else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall) |
6ceb0959 | 5328 | [reinstalls addObject:name]; |
f8d15be2 | 5329 | // XXX: move before previous if |
36bb2ca2 | 5330 | else if (state.Upgrade()) |
6ceb0959 | 5331 | [upgrades addObject:name]; |
36bb2ca2 | 5332 | else if (state.Downgrade()) |
6ceb0959 JF |
5333 | [downgrades addObject:name]; |
5334 | else if (!state.Delete()) | |
f8d15be2 | 5335 | // XXX: _assert(state.Keep()); |
6ceb0959 | 5336 | continue; |
1916f316 JF |
5337 | else if (special_r(name)) |
5338 | [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
5339 | [NSNull null], @"package", | |
5340 | [NSArray arrayWithObjects: | |
5341 | [NSDictionary dictionaryWithObjectsAndKeys: | |
810c9763 JF |
5342 | @"Conflicts", @"relationship", |
5343 | [NSArray arrayWithObjects: | |
5344 | [NSDictionary dictionaryWithObjectsAndKeys: | |
5345 | name, @"package", | |
5346 | [NSNull null], @"version", | |
5347 | @"installed", @"reason", | |
5348 | nil], | |
5349 | nil], @"clauses", | |
1916f316 JF |
5350 | nil], |
5351 | nil], @"reasons", | |
5352 | nil]]; | |
5353 | else { | |
2388b078 | 5354 | if ([package essential]) |
36bb2ca2 | 5355 | remove = true; |
6ceb0959 JF |
5356 | [removes addObject:name]; |
5357 | } | |
a9a0661e JF |
5358 | |
5359 | substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator)); | |
5360 | substrate_ |= DepSubstrate(iterator.CurrentVer()); | |
36bb2ca2 | 5361 | } |
ec97ef06 | 5362 | |
36bb2ca2 JF |
5363 | if (!remove) |
5364 | essential_ = nil; | |
d791dce4 | 5365 | else if (Advanced_) { |
43f3d7f6 | 5366 | NSString *parenthetical(UCLocalize("PARENTHETICAL")); |
f79a4512 | 5367 | |
7b33d201 | 5368 | essential_ = [[[UIAlertView alloc] |
43f3d7f6 | 5369 | initWithTitle:UCLocalize("REMOVING_ESSENTIALS") |
b5e7eebb GP |
5370 | message:UCLocalize("REMOVING_ESSENTIALS_EX") |
5371 | delegate:self | |
5372 | cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")] | |
1aa29546 JF |
5373 | otherButtonTitles: |
5374 | [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")], | |
5375 | nil | |
7b33d201 | 5376 | ] autorelease]; |
04fe1349 | 5377 | |
3272e699 | 5378 | [essential_ setContext:@"remove"]; |
9aaebfec | 5379 | [essential_ setNumberOfRows:2]; |
9bedffaa | 5380 | } else { |
7b33d201 | 5381 | essential_ = [[[UIAlertView alloc] |
43f3d7f6 | 5382 | initWithTitle:UCLocalize("UNABLE_TO_COMPLY") |
b5e7eebb GP |
5383 | message:UCLocalize("UNABLE_TO_COMPLY_EX") |
5384 | delegate:self | |
5385 | cancelButtonTitle:UCLocalize("OKAY") | |
5386 | otherButtonTitles:nil | |
7b33d201 | 5387 | ] autorelease]; |
ec97ef06 | 5388 | |
b5e7eebb | 5389 | [essential_ setContext:@"unable"]; |
36bb2ca2 | 5390 | } |
ec97ef06 | 5391 | |
7b33d201 | 5392 | changes_ = [NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
5393 | installs, @"installs", |
5394 | reinstalls, @"reinstalls", | |
5395 | upgrades, @"upgrades", | |
5396 | downgrades, @"downgrades", | |
5397 | removes, @"removes", | |
affeffc7 | 5398 | nil]; |
dc5812ec | 5399 | |
7b33d201 | 5400 | sizes_ = [NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
5401 | [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading", |
5402 | [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming", | |
affeffc7 | 5403 | nil]; |
dc5812ec | 5404 | |
90351d93 | 5405 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]]; |
36bb2ca2 | 5406 | } return self; |
b4d89997 | 5407 | } |
8da60fb7 | 5408 | |
e6124cb6 JF |
5409 | - (UIBarButtonItem *) leftButton { |
5410 | return [[[UIBarButtonItem alloc] | |
5411 | initWithTitle:UCLocalize("CANCEL") | |
5412 | style:UIBarButtonItemStylePlain | |
5413 | target:self | |
5414 | action:@selector(cancelButtonClicked) | |
5415 | ] autorelease]; | |
5416 | } | |
5417 | ||
614cd4f1 | 5418 | #if !AlwaysReload |
bcde1e70 | 5419 | - (void) applyRightButton { |
6ceb0959 | 5420 | if ([issues_ count] == 0 && ![self isLoading]) |
dd9de556 JF |
5421 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] |
5422 | initWithTitle:UCLocalize("CONFIRM") | |
2761d574 | 5423 | style:UIBarButtonItemStyleDone |
dd9de556 JF |
5424 | target:self |
5425 | action:@selector(confirmButtonClicked) | |
5426 | ] autorelease]]; | |
5427 | else | |
bcde1e70 | 5428 | [[self navigationItem] setRightBarButtonItem:nil]; |
affeffc7 | 5429 | } |
bcde1e70 | 5430 | #endif |
affeffc7 | 5431 | |
b5e7eebb | 5432 | - (void) cancelButtonClicked { |
21ea11a4 | 5433 | [delegate_ cancelAndClear:YES]; |
05452929 | 5434 | [self dismissModalViewControllerAnimated:YES]; |
affeffc7 JF |
5435 | } |
5436 | ||
9487f027 | 5437 | #if !AlwaysReload |
b5e7eebb | 5438 | - (void) confirmButtonClicked { |
affeffc7 | 5439 | if (essential_ != nil) |
b5e7eebb | 5440 | [essential_ show]; |
ab2cfc1e JF |
5441 | else |
5442 | [self complete]; | |
affeffc7 | 5443 | } |
9487f027 | 5444 | #endif |
affeffc7 | 5445 | |
36bb2ca2 JF |
5446 | @end |
5447 | /* }}} */ | |
8da60fb7 | 5448 | |
aaae308d JF |
5449 | /* Progress Data {{{ */ |
5450 | @interface CydiaProgressData : NSObject { | |
5451 | _transient id delegate_; | |
5452 | ||
5453 | bool running_; | |
b0b11d99 | 5454 | float percent_; |
aaae308d | 5455 | |
bcbac8f7 JF |
5456 | float current_; |
5457 | float total_; | |
5458 | float speed_; | |
5459 | ||
aaae308d JF |
5460 | _H<NSMutableArray> events_; |
5461 | _H<NSString> title_; | |
5462 | ||
5463 | _H<NSString> status_; | |
5464 | _H<NSString> finish_; | |
5465 | } | |
5466 | ||
5467 | @end | |
5468 | ||
5469 | @implementation CydiaProgressData | |
5470 | ||
5471 | + (NSArray *) _attributeKeys { | |
5472 | return [NSArray arrayWithObjects: | |
bcbac8f7 | 5473 | @"current", |
aaae308d JF |
5474 | @"events", |
5475 | @"finish", | |
b0b11d99 | 5476 | @"percent", |
aaae308d | 5477 | @"running", |
bcbac8f7 | 5478 | @"speed", |
aaae308d | 5479 | @"title", |
bcbac8f7 | 5480 | @"total", |
aaae308d JF |
5481 | nil]; |
5482 | } | |
5483 | ||
5484 | - (NSArray *) attributeKeys { | |
5485 | return [[self class] _attributeKeys]; | |
5486 | } | |
5487 | ||
5488 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
5489 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
5490 | } | |
5491 | ||
5492 | - (id) init { | |
5493 | if ((self = [super init]) != nil) { | |
5494 | events_ = [NSMutableArray arrayWithCapacity:32]; | |
5495 | } return self; | |
5496 | } | |
5497 | ||
353dda5b JF |
5498 | - (id) delegate { |
5499 | return delegate_; | |
5500 | } | |
5501 | ||
aaae308d JF |
5502 | - (void) setDelegate:(id)delegate { |
5503 | delegate_ = delegate; | |
5504 | } | |
5505 | ||
b0b11d99 JF |
5506 | - (void) setPercent:(float)value { |
5507 | percent_ = value; | |
aaae308d JF |
5508 | } |
5509 | ||
b0b11d99 JF |
5510 | - (NSNumber *) percent { |
5511 | return [NSNumber numberWithFloat:percent_]; | |
aaae308d JF |
5512 | } |
5513 | ||
bcbac8f7 JF |
5514 | - (void) setCurrent:(float)value { |
5515 | current_ = value; | |
5516 | } | |
5517 | ||
5518 | - (NSNumber *) current { | |
5519 | return [NSNumber numberWithFloat:current_]; | |
5520 | } | |
5521 | ||
5522 | - (void) setTotal:(float)value { | |
5523 | total_ = value; | |
5524 | } | |
5525 | ||
5526 | - (NSNumber *) total { | |
5527 | return [NSNumber numberWithFloat:total_]; | |
5528 | } | |
5529 | ||
5530 | - (void) setSpeed:(float)value { | |
5531 | speed_ = value; | |
5532 | } | |
5533 | ||
5534 | - (NSNumber *) speed { | |
5535 | return [NSNumber numberWithFloat:speed_]; | |
5536 | } | |
5537 | ||
aaae308d JF |
5538 | - (NSArray *) events { |
5539 | return events_; | |
5540 | } | |
5541 | ||
5542 | - (void) removeAllEvents { | |
5543 | [events_ removeAllObjects]; | |
5544 | } | |
5545 | ||
5546 | - (void) addEvent:(CydiaProgressEvent *)event { | |
5547 | [events_ addObject:event]; | |
5548 | } | |
5549 | ||
5550 | - (void) setTitle:(NSString *)text { | |
5551 | title_ = text; | |
5552 | } | |
5553 | ||
5554 | - (NSString *) title { | |
5555 | return title_; | |
5556 | } | |
5557 | ||
5558 | - (void) setFinish:(NSString *)text { | |
5559 | finish_ = text; | |
5560 | } | |
5561 | ||
5562 | - (NSString *) finish { | |
5563 | return (id) finish_ ?: [NSNull null]; | |
5564 | } | |
5565 | ||
5566 | - (void) setRunning:(bool)running { | |
5567 | running_ = running; | |
5568 | } | |
5569 | ||
5570 | - (NSNumber *) running { | |
5571 | return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse; | |
5572 | } | |
5573 | ||
5574 | @end | |
5575 | /* }}} */ | |
adb61bda | 5576 | /* Progress Controller {{{ */ |
a576488f | 5577 | @interface ProgressController : CydiaWebViewController < |
36bb2ca2 JF |
5578 | ProgressDelegate |
5579 | > { | |
8b29f8e6 | 5580 | _transient Database *database_; |
bf7c998c | 5581 | _H<CydiaProgressData, 1> progress_; |
aaae308d | 5582 | unsigned cancel_; |
2367a917 JF |
5583 | } |
5584 | ||
b5e7eebb | 5585 | - (id) initWithDatabase:(Database *)database delegate:(id)delegate; |
2367a917 | 5586 | |
6915b806 | 5587 | - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title; |
2367a917 | 5588 | |
6915b806 | 5589 | - (void) setTitle:(NSString *)title; |
aaae308d | 5590 | - (void) setCancellable:(bool)cancellable; |
bd150f54 | 5591 | |
36bb2ca2 JF |
5592 | @end |
5593 | ||
adb61bda | 5594 | @implementation ProgressController |
2367a917 JF |
5595 | |
5596 | - (void) dealloc { | |
6915b806 | 5597 | [database_ setProgressDelegate:nil]; |
2367a917 JF |
5598 | [super dealloc]; |
5599 | } | |
5600 | ||
63ae52be JF |
5601 | - (UIBarButtonItem *) leftButton { |
5602 | return cancel_ == 1 ? [[[UIBarButtonItem alloc] | |
3c62d654 JF |
5603 | initWithTitle:UCLocalize("CANCEL") |
5604 | style:UIBarButtonItemStylePlain | |
5605 | target:self | |
5606 | action:@selector(cancel) | |
63ae52be JF |
5607 | ] autorelease] : nil; |
5608 | } | |
5609 | ||
5610 | - (void) updateCancel { | |
5611 | [super applyLeftButton]; | |
3c62d654 JF |
5612 | } |
5613 | ||
b5e7eebb GP |
5614 | - (id) initWithDatabase:(Database *)database delegate:(id)delegate { |
5615 | if ((self = [super init]) != nil) { | |
8b29f8e6 | 5616 | database_ = database; |
36bb2ca2 | 5617 | delegate_ = delegate; |
ec97ef06 | 5618 | |
6915b806 JF |
5619 | [database_ setProgressDelegate:self]; |
5620 | ||
aaae308d JF |
5621 | progress_ = [[[CydiaProgressData alloc] init] autorelease]; |
5622 | [progress_ setDelegate:self]; | |
3c62d654 | 5623 | |
90351d93 | 5624 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]]; |
3c62d654 | 5625 | |
caa861bd | 5626 | [self setPageColor:[UIColor blackColor]]; |
3c62d654 JF |
5627 | |
5628 | [[self navigationItem] setHidesBackButton:YES]; | |
5629 | ||
5630 | [self updateCancel]; | |
36bb2ca2 | 5631 | } return self; |
2367a917 JF |
5632 | } |
5633 | ||
aaae308d JF |
5634 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
5635 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
5636 | [window setValue:progress_ forKey:@"cydiaProgress"]; | |
5637 | } | |
bc11cf5b | 5638 | |
aaae308d JF |
5639 | - (void) updateProgress { |
5640 | [self dispatchEvent:@"CydiaProgressUpdate"]; | |
5641 | } | |
b5e7eebb | 5642 | |
b5e7eebb | 5643 | - (void) viewWillAppear:(BOOL)animated { |
14e4ff09 | 5644 | [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack]; |
3c62d654 | 5645 | [super viewWillAppear:animated]; |
2367a917 JF |
5646 | } |
5647 | ||
aaae308d | 5648 | - (void) close { |
ef494bd8 RP |
5649 | UpdateExternalStatus(0); |
5650 | ||
9dd3045d JF |
5651 | if (Finish_ > 1) |
5652 | [delegate_ saveState]; | |
5653 | ||
670a0494 JF |
5654 | switch (Finish_) { |
5655 | case 0: | |
2925cbba | 5656 | [delegate_ returnToCydia]; |
670a0494 JF |
5657 | break; |
5658 | ||
5659 | case 1: | |
c4899376 JF |
5660 | [delegate_ terminateWithSuccess]; |
5661 | /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)]) | |
5662 | [delegate_ suspendWithAnimation:YES]; | |
5663 | else | |
5664 | [delegate_ suspend];*/ | |
670a0494 JF |
5665 | break; |
5666 | ||
5667 | case 2: | |
985d2dff | 5668 | _trace(); |
ef812071 | 5669 | goto reload; |
670a0494 JF |
5670 | |
5671 | case 3: | |
985d2dff | 5672 | _trace(); |
ef812071 JF |
5673 | goto reload; |
5674 | ||
a3755a1e JF |
5675 | reload: { |
5676 | UIProgressHUD *hud([delegate_ addProgressHUD]); | |
5677 | [hud setText:UCLocalize("LOADING")]; | |
42bbf27d | 5678 | [delegate_ performSelector:@selector(reloadSpringBoard) withObject:nil afterDelay:0.5]; |
317eb8e3 JF |
5679 | return; |
5680 | } | |
670a0494 JF |
5681 | |
5682 | case 4: | |
985d2dff | 5683 | _trace(); |
0e371502 JF |
5684 | if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot"))) |
5685 | SBReboot(SBSSpringBoardServerPort()); | |
5686 | else | |
bb0fe3c9 | 5687 | reboot2(RB_AUTOBOOT); |
670a0494 | 5688 | break; |
bc8cd583 | 5689 | } |
aaae308d JF |
5690 | |
5691 | [super close]; | |
670a0494 | 5692 | } |
bd150f54 | 5693 | |
6915b806 | 5694 | - (void) setTitle:(NSString *)title { |
aaae308d JF |
5695 | [progress_ setTitle:title]; |
5696 | [self updateProgress]; | |
5697 | } | |
5698 | ||
5699 | - (UIBarButtonItem *) rightButton { | |
d53628b6 | 5700 | return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc] |
aaae308d JF |
5701 | initWithTitle:UCLocalize("CLOSE") |
5702 | style:UIBarButtonItemStylePlain | |
5703 | target:self | |
5704 | action:@selector(close) | |
5705 | ] autorelease]; | |
6915b806 JF |
5706 | } |
5707 | ||
5708 | - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title { | |
5709 | UpdateExternalStatus(1); | |
5710 | ||
aaae308d | 5711 | [progress_ setRunning:true]; |
6915b806 | 5712 | [self setTitle:title]; |
aaae308d | 5713 | // implicit updateProgress |
6915b806 | 5714 | |
140710ba | 5715 | SHA1SumValue notifyconf; { |
6915b806 JF |
5716 | FileFd file; |
5717 | if (!file.Open(NotifyConfig_, FileFd::ReadOnly)) | |
5718 | _error->Discard(); | |
5719 | else { | |
5720 | MMap mmap(file, MMap::ReadOnly); | |
5721 | SHA1Summation sha1; | |
5722 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5723 | notifyconf = sha1.Result(); |
6915b806 JF |
5724 | } |
5725 | } | |
5726 | ||
140710ba | 5727 | SHA1SumValue springlist; { |
6915b806 JF |
5728 | FileFd file; |
5729 | if (!file.Open(SpringBoard_, FileFd::ReadOnly)) | |
5730 | _error->Discard(); | |
5731 | else { | |
5732 | MMap mmap(file, MMap::ReadOnly); | |
5733 | SHA1Summation sha1; | |
5734 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5735 | springlist = sha1.Result(); |
6915b806 JF |
5736 | } |
5737 | } | |
5738 | ||
5739 | if (invocation != nil) { | |
5740 | [invocation yieldToSelector:@selector(invoke)]; | |
aaae308d | 5741 | [self setTitle:@"COMPLETE"]; |
6915b806 | 5742 | } |
670a0494 | 5743 | |
22f8bed9 | 5744 | if (Finish_ < 4) { |
70d45c1e JF |
5745 | FileFd file; |
5746 | if (!file.Open(NotifyConfig_, FileFd::ReadOnly)) | |
5747 | _error->Discard(); | |
5748 | else { | |
5749 | MMap mmap(file, MMap::ReadOnly); | |
5750 | SHA1Summation sha1; | |
5751 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5752 | if (!(notifyconf == sha1.Result())) |
70d45c1e JF |
5753 | Finish_ = 4; |
5754 | } | |
22f8bed9 JF |
5755 | } |
5756 | ||
affeffc7 | 5757 | if (Finish_ < 3) { |
70d45c1e JF |
5758 | FileFd file; |
5759 | if (!file.Open(SpringBoard_, FileFd::ReadOnly)) | |
5760 | _error->Discard(); | |
5761 | else { | |
5762 | MMap mmap(file, MMap::ReadOnly); | |
5763 | SHA1Summation sha1; | |
5764 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5765 | if (!(springlist == sha1.Result())) |
70d45c1e JF |
5766 | Finish_ = 3; |
5767 | } | |
dddbc481 JF |
5768 | } |
5769 | ||
be860cc8 JF |
5770 | if (Finish_ < 2) { |
5771 | if (RestartSubstrate_) | |
5772 | Finish_ = 2; | |
5773 | } | |
5774 | ||
5775 | RestartSubstrate_ = false; | |
5776 | ||
bc8cd583 | 5777 | switch (Finish_) { |
aaae308d JF |
5778 | case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */ |
5779 | case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break; | |
5780 | case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break; | |
5781 | case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break; | |
5782 | case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break; | |
bc8cd583 JF |
5783 | } |
5784 | ||
eb403f34 | 5785 | UpdateExternalStatus(Finish_ == 0 ? 0 : 2); |
ef494bd8 | 5786 | |
aaae308d JF |
5787 | [progress_ setRunning:false]; |
5788 | [self updateProgress]; | |
5789 | ||
5790 | [self applyRightButton]; | |
31f3cfff JF |
5791 | } |
5792 | ||
6915b806 | 5793 | - (void) addProgressEvent:(CydiaProgressEvent *)event { |
aaae308d JF |
5794 | [progress_ addEvent:event]; |
5795 | [self updateProgress]; | |
baf80942 JF |
5796 | } |
5797 | ||
ff2d5dcd | 5798 | - (bool) isProgressCancelled { |
aaae308d JF |
5799 | return cancel_ == 2; |
5800 | } | |
5801 | ||
5802 | - (void) cancel { | |
5803 | cancel_ = 2; | |
5804 | [self updateCancel]; | |
5805 | } | |
5806 | ||
5807 | - (void) setCancellable:(bool)cancellable { | |
5808 | unsigned cancel(cancel_); | |
5809 | ||
5810 | if (!cancellable) | |
5811 | cancel_ = 0; | |
5812 | else if (cancel_ == 0) | |
5813 | cancel_ = 1; | |
5814 | ||
5815 | if (cancel != cancel_) | |
5816 | [self updateCancel]; | |
5817 | } | |
5818 | ||
5819 | - (void) setProgressCancellable:(NSNumber *)cancellable { | |
5820 | [self setCancellable:[cancellable boolValue]]; | |
baf80942 JF |
5821 | } |
5822 | ||
d885343d | 5823 | - (void) setProgressPercent:(NSNumber *)percent { |
b0b11d99 | 5824 | [progress_ setPercent:[percent floatValue]]; |
aaae308d | 5825 | [self updateProgress]; |
49048579 JF |
5826 | } |
5827 | ||
bcbac8f7 JF |
5828 | - (void) setProgressStatus:(NSDictionary *)status { |
5829 | if (status == nil) { | |
5830 | [progress_ setCurrent:0]; | |
5831 | [progress_ setTotal:0]; | |
5832 | [progress_ setSpeed:0]; | |
5833 | } else { | |
5834 | [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]]; | |
5835 | ||
5836 | [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]]; | |
5837 | [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]]; | |
5838 | [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]]; | |
5839 | } | |
5840 | ||
5841 | [self updateProgress]; | |
5842 | } | |
5843 | ||
36bb2ca2 JF |
5844 | @end |
5845 | /* }}} */ | |
dc088e63 | 5846 | |
46aa9775 | 5847 | /* Package Cell {{{ */ |
a9311516 | 5848 | @interface PackageCell : CyteTableViewCell < |
b97fcfc6 | 5849 | CyteTableViewCellDelegate |
c21004b9 | 5850 | > { |
7b33d201 JF |
5851 | _H<UIImage> icon_; |
5852 | _H<NSString> name_; | |
5853 | _H<NSString> description_; | |
3bd1c2a2 | 5854 | bool commercial_; |
7b33d201 JF |
5855 | _H<NSString> source_; |
5856 | _H<UIImage> badge_; | |
7b33d201 | 5857 | _H<UIImage> placard_; |
59f3d290 | 5858 | bool summarized_; |
36bb2ca2 | 5859 | } |
723a0072 | 5860 | |
36bb2ca2 | 5861 | - (PackageCell *) init; |
59f3d290 | 5862 | - (void) setPackage:(Package *)package asSummary:(bool)summary; |
ec97ef06 | 5863 | |
327624b6 JF |
5864 | - (void) drawContentRect:(CGRect)rect; |
5865 | ||
5866 | @end | |
5867 | ||
36bb2ca2 JF |
5868 | @implementation PackageCell |
5869 | ||
36bb2ca2 | 5870 | - (PackageCell *) init { |
327624b6 JF |
5871 | CGRect frame(CGRectMake(0, 0, 320, 74)); |
5872 | if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) { | |
5873 | UIView *content([self contentView]); | |
5874 | CGRect bounds([content bounds]); | |
04fe1349 | 5875 | |
b97fcfc6 | 5876 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
04fe1349 JF |
5877 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
5878 | [content addSubview:content_]; | |
5879 | ||
327624b6 | 5880 | [content_ setDelegate:self]; |
327624b6 | 5881 | [content_ setOpaque:YES]; |
36bb2ca2 | 5882 | } return self; |
b4d89997 | 5883 | } |
b19871dd | 5884 | |
003fc610 | 5885 | - (NSString *) accessibilityLabel { |
353dda5b | 5886 | return name_; |
003fc610 GP |
5887 | } |
5888 | ||
59f3d290 JF |
5889 | - (void) setPackage:(Package *)package asSummary:(bool)summary { |
5890 | summarized_ = summary; | |
5891 | ||
7b33d201 JF |
5892 | icon_ = nil; |
5893 | name_ = nil; | |
5894 | description_ = nil; | |
5895 | source_ = nil; | |
5896 | badge_ = nil; | |
5897 | placard_ = nil; | |
7b33d201 | 5898 | |
80132602 JF |
5899 | if (package == nil) |
5900 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
5901 | else { | |
5902 | [package parse]; | |
31f3cfff | 5903 | |
80132602 | 5904 | Source *source = [package source]; |
b19871dd | 5905 | |
80132602 | 5906 | icon_ = [package icon]; |
78de2878 | 5907 | |
80132602 JF |
5908 | if (NSString *name = [package name]) |
5909 | name_ = [NSString stringWithString:name]; | |
ef055c6c | 5910 | |
9374f6b0 | 5911 | if (NSString *description = [package shortDescription]) |
80132602 | 5912 | description_ = [NSString stringWithString:description]; |
ef055c6c | 5913 | |
80132602 | 5914 | commercial_ = [package isCommercial]; |
36bb2ca2 | 5915 | |
80132602 JF |
5916 | NSString *label = nil; |
5917 | bool trusted = false; | |
b19871dd | 5918 | |
80132602 JF |
5919 | if (source != nil) { |
5920 | label = [source label]; | |
5921 | trusted = [source trusted]; | |
5922 | } else if ([[package id] isEqualToString:@"firmware"]) | |
5923 | label = UCLocalize("APPLE"); | |
5924 | else | |
5925 | label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")]; | |
b19871dd | 5926 | |
80132602 | 5927 | NSString *from(label); |
a54b1c10 | 5928 | |
80132602 JF |
5929 | NSString *section = [package simpleSection]; |
5930 | if (section != nil && ![section isEqualToString:label]) { | |
5931 | section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"]; | |
5932 | from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section]; | |
5933 | } | |
a54b1c10 | 5934 | |
80132602 | 5935 | source_ = [NSString stringWithFormat:UCLocalize("FROM"), from]; |
36bb2ca2 | 5936 | |
80132602 JF |
5937 | if (NSString *purpose = [package primaryPurpose]) |
5938 | badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]; | |
c390d3ab | 5939 | |
80132602 JF |
5940 | UIColor *color; |
5941 | NSString *placard; | |
5942 | ||
5943 | if (NSString *mode = [package mode]) { | |
5944 | if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) { | |
5945 | color = RemovingColor_; | |
86a333c6 | 5946 | placard = @"removing"; |
80132602 JF |
5947 | } else { |
5948 | color = InstallingColor_; | |
86a333c6 | 5949 | placard = @"installing"; |
80132602 | 5950 | } |
d832908d | 5951 | } else { |
80132602 JF |
5952 | color = [UIColor whiteColor]; |
5953 | ||
5954 | if ([package installed] != nil) | |
5955 | placard = @"installed"; | |
5956 | else | |
5957 | placard = nil; | |
d832908d JF |
5958 | } |
5959 | ||
80132602 | 5960 | [content_ setBackgroundColor:color]; |
d832908d | 5961 | |
80132602 JF |
5962 | if (placard != nil) |
5963 | placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]]; | |
d832908d JF |
5964 | } |
5965 | ||
d832908d | 5966 | [self setNeedsDisplay]; |
327624b6 | 5967 | [content_ setNeedsDisplay]; |
3bd1c2a2 JF |
5968 | } |
5969 | ||
59f3d290 | 5970 | - (void) drawSummaryContentRect:(CGRect)rect { |
555aaf71 | 5971 | bool highlighted(highlighted_); |
ef055c6c | 5972 | float width([self bounds].size.width); |
dc63e78f | 5973 | |
59f3d290 JF |
5974 | if (icon_ != nil) { |
5975 | CGRect rect; | |
5976 | rect.size = [(UIImage *) icon_ size]; | |
5977 | ||
25c1dafb | 5978 | while (rect.size.width > 16 || rect.size.height > 16) { |
7e1f9f6a JF |
5979 | rect.size.width /= 2; |
5980 | rect.size.height /= 2; | |
5981 | } | |
59f3d290 | 5982 | |
86a333c6 JF |
5983 | rect.origin.x = 19 - rect.size.width / 2; |
5984 | rect.origin.y = 19 - rect.size.height / 2; | |
59f3d290 | 5985 | |
8323c1b9 | 5986 | [icon_ drawInRect:Retina(rect)]; |
59f3d290 JF |
5987 | } |
5988 | ||
5989 | if (badge_ != nil) { | |
5990 | CGRect rect; | |
5991 | rect.size = [(UIImage *) badge_ size]; | |
5992 | ||
5993 | rect.size.width /= 4; | |
5994 | rect.size.height /= 4; | |
5995 | ||
86a333c6 JF |
5996 | rect.origin.x = 25 - rect.size.width / 2; |
5997 | rect.origin.y = 25 - rect.size.height / 2; | |
59f3d290 | 5998 | |
8323c1b9 | 5999 | [badge_ drawInRect:Retina(rect)]; |
59f3d290 JF |
6000 | } |
6001 | ||
5d0438dc | 6002 | if (highlighted && kCFCoreFoundationVersionNumber < 800) |
59f3d290 JF |
6003 | UISetColor(White_); |
6004 | ||
6005 | if (!highlighted) | |
6006 | UISetColor(commercial_ ? Purple_ : Black_); | |
b129e6d9 | 6007 | [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail]; |
59f3d290 JF |
6008 | |
6009 | if (placard_ != nil) | |
86a333c6 | 6010 | [placard_ drawAtPoint:CGPointMake(width - 52, 11)]; |
59f3d290 JF |
6011 | } |
6012 | ||
6013 | - (void) drawNormalContentRect:(CGRect)rect { | |
6014 | bool highlighted(highlighted_); | |
6015 | float width([self bounds].size.width); | |
b19871dd | 6016 | |
baf80942 JF |
6017 | if (icon_ != nil) { |
6018 | CGRect rect; | |
7b33d201 | 6019 | rect.size = [(UIImage *) icon_ size]; |
baf80942 | 6020 | |
25c1dafb | 6021 | while (rect.size.width > 32 || rect.size.height > 32) { |
7e1f9f6a JF |
6022 | rect.size.width /= 2; |
6023 | rect.size.height /= 2; | |
6024 | } | |
baf80942 JF |
6025 | |
6026 | rect.origin.x = 25 - rect.size.width / 2; | |
6027 | rect.origin.y = 25 - rect.size.height / 2; | |
6028 | ||
8323c1b9 | 6029 | [icon_ drawInRect:Retina(rect)]; |
baf80942 | 6030 | } |
b19871dd | 6031 | |
c390d3ab | 6032 | if (badge_ != nil) { |
f79c810d | 6033 | CGRect rect; |
7b33d201 | 6034 | rect.size = [(UIImage *) badge_ size]; |
f79c810d JF |
6035 | |
6036 | rect.size.width /= 2; | |
6037 | rect.size.height /= 2; | |
6038 | ||
6039 | rect.origin.x = 36 - rect.size.width / 2; | |
6040 | rect.origin.y = 36 - rect.size.height / 2; | |
c390d3ab | 6041 | |
8323c1b9 | 6042 | [badge_ drawInRect:Retina(rect)]; |
c390d3ab JF |
6043 | } |
6044 | ||
5d0438dc | 6045 | if (highlighted && kCFCoreFoundationVersionNumber < 800) |
f641a0e5 | 6046 | UISetColor(White_); |
b19871dd | 6047 | |
555aaf71 | 6048 | if (!highlighted) |
3bd1c2a2 | 6049 | UISetColor(commercial_ ? Purple_ : Black_); |
b129e6d9 JF |
6050 | [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail]; |
6051 | [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail]; | |
b19871dd | 6052 | |
555aaf71 | 6053 | if (!highlighted) |
3bd1c2a2 | 6054 | UISetColor(commercial_ ? Purplish_ : Gray_); |
b129e6d9 | 6055 | [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:NSLineBreakByTruncatingTail]; |
670a0494 JF |
6056 | |
6057 | if (placard_ != nil) | |
01d93940 | 6058 | [placard_ drawAtPoint:CGPointMake(width - 52, 9)]; |
ec97ef06 JF |
6059 | } |
6060 | ||
59f3d290 JF |
6061 | - (void) drawContentRect:(CGRect)rect { |
6062 | if (summarized_) | |
6063 | [self drawSummaryContentRect:rect]; | |
6064 | else | |
6065 | [self drawNormalContentRect:rect]; | |
6066 | } | |
6067 | ||
8da60fb7 JF |
6068 | @end |
6069 | /* }}} */ | |
36bb2ca2 | 6070 | /* Section Cell {{{ */ |
a9311516 | 6071 | @interface SectionCell : CyteTableViewCell < |
b97fcfc6 | 6072 | CyteTableViewCellDelegate |
c21004b9 | 6073 | > { |
7b33d201 JF |
6074 | _H<NSString> basic_; |
6075 | _H<NSString> section_; | |
6076 | _H<NSString> name_; | |
6077 | _H<NSString> count_; | |
6078 | _H<UIImage> icon_; | |
6079 | _H<UISwitch> switch_; | |
6d9712c4 | 6080 | BOOL editing_; |
b4d89997 | 6081 | } |
b19871dd | 6082 | |
6d9712c4 | 6083 | - (void) setSection:(Section *)section editing:(BOOL)editing; |
36bb2ca2 | 6084 | |
8da60fb7 JF |
6085 | @end |
6086 | ||
36bb2ca2 | 6087 | @implementation SectionCell |
8da60fb7 | 6088 | |
46aa9775 GP |
6089 | - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { |
6090 | if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { | |
8dbf3abc | 6091 | icon_ = [UIImage imageNamed:@"folder.png"]; |
6415105e | 6092 | // XXX: this initial frame is wrong, but is fixed later |
7b33d201 | 6093 | switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease]; |
46aa9775 GP |
6094 | [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged]; |
6095 | ||
6096 | UIView *content([self contentView]); | |
6097 | CGRect bounds([content bounds]); | |
6098 | ||
b97fcfc6 | 6099 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
46aa9775 GP |
6100 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
6101 | [content addSubview:content_]; | |
6102 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
6103 | ||
6104 | [content_ setDelegate:self]; | |
b4d89997 | 6105 | } return self; |
b19871dd JF |
6106 | } |
6107 | ||
6d9712c4 | 6108 | - (void) onSwitch:(id)sender { |
a171abd4 | 6109 | NSMutableDictionary *metadata([Sections_ objectForKey:basic_]); |
6d9712c4 JF |
6110 | if (metadata == nil) { |
6111 | metadata = [NSMutableDictionary dictionaryWithCapacity:2]; | |
0010fa77 | 6112 | [Sections_ setObject:metadata forKey:basic_]; |
6d9712c4 JF |
6113 | } |
6114 | ||
46aa9775 | 6115 | [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"]; |
6d9712c4 JF |
6116 | } |
6117 | ||
6118 | - (void) setSection:(Section *)section editing:(BOOL)editing { | |
6119 | if (editing != editing_) { | |
6120 | if (editing_) | |
6121 | [switch_ removeFromSuperview]; | |
6122 | else | |
6123 | [self addSubview:switch_]; | |
6124 | editing_ = editing; | |
6125 | } | |
6126 | ||
7b33d201 JF |
6127 | basic_ = nil; |
6128 | section_ = nil; | |
6129 | name_ = nil; | |
6130 | count_ = nil; | |
6d9712c4 | 6131 | |
36bb2ca2 | 6132 | if (section == nil) { |
7b33d201 | 6133 | name_ = UCLocalize("ALL_PACKAGES"); |
f641a0e5 | 6134 | count_ = nil; |
36bb2ca2 | 6135 | } else { |
e59669fd | 6136 | basic_ = [section name]; |
677b8415 | 6137 | section_ = [section localized]; |
0010fa77 | 6138 | |
7b33d201 | 6139 | name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_; |
3e5a9f5d | 6140 | count_ = [NSString stringWithFormat:@"%zd", [section count]]; |
6d9712c4 JF |
6141 | |
6142 | if (editing_) | |
46aa9775 | 6143 | [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO]; |
36bb2ca2 | 6144 | } |
46aa9775 | 6145 | |
c21004b9 | 6146 | [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator]; |
0abb648c JF |
6147 | [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue]; |
6148 | ||
46aa9775 | 6149 | [content_ setNeedsDisplay]; |
f641a0e5 JF |
6150 | } |
6151 | ||
77801ff1 JF |
6152 | - (void) setFrame:(CGRect)frame { |
6153 | [super setFrame:frame]; | |
46aa9775 | 6154 | |
77801ff1 | 6155 | CGRect rect([switch_ frame]); |
6415105e | 6156 | [switch_ setFrame:CGRectMake(frame.size.width - rect.size.width - 9, 9, rect.size.width, rect.size.height)]; |
77801ff1 JF |
6157 | } |
6158 | ||
003fc610 GP |
6159 | - (NSString *) accessibilityLabel { |
6160 | return name_; | |
6161 | } | |
6162 | ||
46aa9775 | 6163 | - (void) drawContentRect:(CGRect)rect { |
8cfba088 | 6164 | bool highlighted(highlighted_ && !editing_); |
bc11cf5b | 6165 | |
86a333c6 | 6166 | [icon_ drawInRect:CGRectMake(7, 7, 32, 32)]; |
f641a0e5 | 6167 | |
5d0438dc | 6168 | if (highlighted && kCFCoreFoundationVersionNumber < 800) |
f641a0e5 JF |
6169 | UISetColor(White_); |
6170 | ||
46aa9775 | 6171 | float width(rect.size.width); |
58241d4c | 6172 | if (editing_) |
6c1ec3c7 | 6173 | width -= 9 + [switch_ frame].size.width; |
58241d4c | 6174 | |
555aaf71 JF |
6175 | if (!highlighted) |
6176 | UISetColor(Black_); | |
b129e6d9 | 6177 | [name_ drawAtPoint:CGPointMake(48, 12) forWidth:(width - 58) withFont:Font18_ lineBreakMode:NSLineBreakByTruncatingTail]; |
6d9712c4 | 6178 | |
f641a0e5 JF |
6179 | CGSize size = [count_ sizeWithFont:Font14_]; |
6180 | ||
86a333c6 | 6181 | UISetColor(Folder_); |
f641a0e5 | 6182 | if (count_ != nil) |
8323c1b9 | 6183 | [count_ drawAtPoint:CGPointMake(Retina(10 + (30 - size.width) / 2), 18) withFont:Font12Bold_]; |
b19871dd JF |
6184 | } |
6185 | ||
36bb2ca2 JF |
6186 | @end |
6187 | /* }}} */ | |
b19871dd | 6188 | |
ab398adf | 6189 | /* File Table {{{ */ |
cd79e8cf | 6190 | @interface FileTable : CyteViewController < |
c21004b9 JF |
6191 | UITableViewDataSource, |
6192 | UITableViewDelegate | |
6193 | > { | |
36bb2ca2 | 6194 | _transient Database *database_; |
7b33d201 JF |
6195 | _H<Package> package_; |
6196 | _H<NSString> name_; | |
6197 | _H<NSMutableArray> files_; | |
bf7c998c | 6198 | _H<UITableView, 2> list_; |
ab398adf | 6199 | } |
b19871dd | 6200 | |
b5e7eebb | 6201 | - (id) initWithDatabase:(Database *)database; |
ab398adf JF |
6202 | - (void) setPackage:(Package *)package; |
6203 | ||
6204 | @end | |
6205 | ||
6206 | @implementation FileTable | |
6207 | ||
eb30da80 | 6208 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
ab398adf JF |
6209 | return files_ == nil ? 0 : [files_ count]; |
6210 | } | |
6211 | ||
21ea11a4 GP |
6212 | /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
6213 | return 24.0f; | |
6214 | }*/ | |
ab398adf | 6215 | |
46aa9775 | 6216 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
b5e7eebb GP |
6217 | static NSString *reuseIdentifier = @"Cell"; |
6218 | ||
46aa9775 GP |
6219 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier]; |
6220 | if (cell == nil) { | |
6221 | cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease]; | |
6222 | [cell setFont:[UIFont systemFontOfSize:16]]; | |
ab398adf | 6223 | } |
46aa9775 | 6224 | [cell setText:[files_ objectAtIndex:indexPath.row]]; |
c21004b9 | 6225 | [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; |
b5e7eebb | 6226 | |
46aa9775 | 6227 | return cell; |
ab398adf | 6228 | } |
b19871dd | 6229 | |
fe8e721f GP |
6230 | - (NSURL *) navigationURL { |
6231 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]]; | |
6232 | } | |
6233 | ||
6234 | - (void) loadView { | |
e8cbebe4 | 6235 | list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]; |
fe8e721f GP |
6236 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
6237 | [list_ setRowHeight:24.0f]; | |
7b33d201 | 6238 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f | 6239 | [list_ setDelegate:self]; |
e8cbebe4 | 6240 | [self setView:list_]; |
fe8e721f GP |
6241 | } |
6242 | ||
6243 | - (void) viewDidLoad { | |
7d887d0b JF |
6244 | [super viewDidLoad]; |
6245 | ||
fe8e721f GP |
6246 | [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")]; |
6247 | } | |
6248 | ||
6249 | - (void) releaseSubviews { | |
fe8e721f | 6250 | list_ = nil; |
7be3eb32 | 6251 | |
4f9acb7c JF |
6252 | package_ = nil; |
6253 | files_ = nil; | |
6254 | ||
7be3eb32 | 6255 | [super releaseSubviews]; |
fe8e721f GP |
6256 | } |
6257 | ||
b5e7eebb GP |
6258 | - (id) initWithDatabase:(Database *)database { |
6259 | if ((self = [super init]) != nil) { | |
ab398adf | 6260 | database_ = database; |
ab398adf JF |
6261 | } return self; |
6262 | } | |
6263 | ||
6264 | - (void) setPackage:(Package *)package { | |
7b33d201 JF |
6265 | package_ = nil; |
6266 | name_ = nil; | |
ab398adf | 6267 | |
4f9acb7c | 6268 | files_ = [NSMutableArray arrayWithCapacity:32]; |
ab398adf JF |
6269 | |
6270 | if (package != nil) { | |
7b33d201 JF |
6271 | package_ = package; |
6272 | name_ = [package id]; | |
ab398adf | 6273 | |
affeffc7 JF |
6274 | if (NSArray *files = [package files]) |
6275 | [files_ addObjectsFromArray:files]; | |
ab398adf | 6276 | |
9ea8d159 JF |
6277 | if ([files_ count] != 0) { |
6278 | if ([[files_ objectAtIndex:0] isEqualToString:@"/."]) | |
6279 | [files_ removeObjectAtIndex:0]; | |
a54b1c10 | 6280 | [files_ sortUsingSelector:@selector(compareByPath:)]; |
2388b078 JF |
6281 | |
6282 | NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8]; | |
6283 | [stack addObject:@"/"]; | |
6284 | ||
6285 | for (int i(0), e([files_ count]); i != e; ++i) { | |
6286 | NSString *file = [files_ objectAtIndex:i]; | |
6287 | while (![file hasPrefix:[stack lastObject]]) | |
6288 | [stack removeLastObject]; | |
6289 | NSString *directory = [stack lastObject]; | |
6290 | [stack addObject:[file stringByAppendingString:@"/"]]; | |
6291 | [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@", | |
0209cce5 | 6292 | int(([stack count] - 2) * 3), "", |
2388b078 JF |
6293 | [file substringFromIndex:[directory length]] |
6294 | ]]; | |
6295 | } | |
ab398adf JF |
6296 | } |
6297 | } | |
6298 | ||
6299 | [list_ reloadData]; | |
6300 | } | |
6301 | ||
ab398adf | 6302 | - (void) reloadData { |
fe8e721f GP |
6303 | [super reloadData]; |
6304 | ||
ab398adf | 6305 | [self setPackage:[database_ packageWithName:name_]]; |
ab398adf | 6306 | } |
b4d89997 | 6307 | |
b4d89997 | 6308 | @end |
36bb2ca2 | 6309 | /* }}} */ |
adb61bda | 6310 | /* Package Controller {{{ */ |
a576488f | 6311 | @interface CYPackageController : CydiaWebViewController < |
9daa7f25 DH |
6312 | UIActionSheetDelegate |
6313 | > { | |
770f2a8e | 6314 | _transient Database *database_; |
5d79f7bf JF |
6315 | _H<Package> package_; |
6316 | _H<NSString> name_; | |
3bd1c2a2 | 6317 | bool commercial_; |
3217d35f | 6318 | std::vector<std::pair<_H<NSString>, _H<NSString>>> buttons_; |
9fe109d1 | 6319 | _H<UIActionSheet> sheet_; |
5d79f7bf | 6320 | _H<UIBarButtonItem> button_; |
c9f3aa21 | 6321 | _H<NSArray> versions_; |
b31b87cc JF |
6322 | } |
6323 | ||
f050e4d9 | 6324 | - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer; |
b4d89997 | 6325 | |
36bb2ca2 | 6326 | @end |
b4d89997 | 6327 | |
f6e13561 | 6328 | @implementation CYPackageController |
b4d89997 | 6329 | |
fe8e721f | 6330 | - (NSURL *) navigationURL { |
5d79f7bf | 6331 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]]; |
fe8e721f GP |
6332 | } |
6333 | ||
c9f3aa21 JF |
6334 | - (void) _clickButtonWithPackage:(Package *)package { |
6335 | [delegate_ installPackage:package]; | |
6336 | } | |
6337 | ||
5a09ae08 | 6338 | - (void) _clickButtonWithName:(NSString *)name { |
3217d35f | 6339 | if ([name isEqualToString:@"CLEAR"]) |
c9f3aa21 | 6340 | return [delegate_ clearPackage:package_]; |
3217d35f | 6341 | else if ([name isEqualToString:@"REMOVE"]) |
c9f3aa21 JF |
6342 | return [delegate_ removePackage:package_]; |
6343 | else if ([name isEqualToString:@"DOWNGRADE"]) { | |
6344 | sheet_ = [[[UIActionSheet alloc] | |
6345 | initWithTitle:nil | |
6346 | delegate:self | |
6347 | cancelButtonTitle:nil | |
6348 | destructiveButtonTitle:nil | |
6349 | otherButtonTitles:nil | |
6350 | ] autorelease]; | |
6351 | ||
6352 | for (Package *version in (id) versions_) | |
6353 | [sheet_ addButtonWithTitle:[version latest]]; | |
6354 | [sheet_ setContext:@"version"]; | |
6355 | ||
6356 | [delegate_ showActionSheet:sheet_ fromItem:[[self navigationItem] rightBarButtonItem]]; | |
6357 | return; | |
6358 | } | |
6359 | ||
6360 | else if ([name isEqualToString:@"INSTALL"]); | |
6361 | else if ([name isEqualToString:@"REINSTALL"]); | |
6362 | else if ([name isEqualToString:@"UPGRADE"]); | |
5a09ae08 | 6363 | else _assert(false); |
c9f3aa21 JF |
6364 | |
6365 | [delegate_ installPackage:package_]; | |
5a09ae08 JF |
6366 | } |
6367 | ||
674dce72 | 6368 | - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button { |
1cedb821 | 6369 | NSString *context([sheet context]); |
9fe109d1 JF |
6370 | if (sheet_ == sheet) |
6371 | sheet_ = nil; | |
5a09ae08 | 6372 | |
1cedb821 | 6373 | if ([context isEqualToString:@"modify"]) { |
674dce72 | 6374 | if (button != [sheet cancelButtonIndex]) { |
60b6595c JF |
6375 | if (IsWildcat_) |
6376 | [self performSelector:@selector(_clickButtonWithName:) withObject:buttons_[button].first afterDelay:0]; | |
6377 | else | |
6378 | [self _clickButtonWithName:buttons_[button].first]; | |
674dce72 | 6379 | } |
bc11cf5b | 6380 | |
c9f3aa21 JF |
6381 | [sheet dismissWithClickedButtonIndex:button animated:YES]; |
6382 | } else if ([context isEqualToString:@"version"]) { | |
6383 | if (button != [sheet cancelButtonIndex]) { | |
6384 | Package *version([versions_ objectAtIndex:button]); | |
6385 | if (IsWildcat_) | |
6386 | [self performSelector:@selector(_clickButtonWithPackage:) withObject:version afterDelay:0]; | |
6387 | else | |
6388 | [self _clickButtonWithPackage:version]; | |
6389 | } | |
6390 | ||
60b6595c | 6391 | [sheet dismissWithClickedButtonIndex:button animated:YES]; |
674dce72 | 6392 | } |
b4d89997 | 6393 | } |
2367a917 | 6394 | |
3e9c9e85 | 6395 | - (bool) _allowJavaScriptPanel { |
3bd1c2a2 | 6396 | return commercial_; |
3e9c9e85 JF |
6397 | } |
6398 | ||
9487f027 | 6399 | #if !AlwaysReload |
9daa7f25 | 6400 | - (void) _customButtonClicked { |
f274bb0c JF |
6401 | if (commercial_ && [package_ uninstalled]) |
6402 | return [self reloadURLWithCache:NO]; | |
6403 | ||
3217d35f | 6404 | size_t count(buttons_.size()); |
670a0494 JF |
6405 | if (count == 0) |
6406 | return; | |
2367a917 | 6407 | |
5a09ae08 | 6408 | if (count == 1) |
3217d35f | 6409 | [self _clickButtonWithName:buttons_[0].first]; |
5a09ae08 | 6410 | else { |
674dce72 | 6411 | NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count]; |
3217d35f JF |
6412 | for (const auto &button : buttons_) |
6413 | [buttons addObject:button.second]; | |
36bb2ca2 | 6414 | |
9fe109d1 | 6415 | sheet_ = [[[UIActionSheet alloc] |
9ea8d159 | 6416 | initWithTitle:nil |
36bb2ca2 | 6417 | delegate:self |
674dce72 GP |
6418 | cancelButtonTitle:nil |
6419 | destructiveButtonTitle:nil | |
6420 | otherButtonTitles:nil | |
6421 | ] autorelease]; | |
6422 | ||
c9f3aa21 JF |
6423 | for (NSString *button in buttons) |
6424 | [sheet_ addButtonWithTitle:button]; | |
9fe109d1 | 6425 | [sheet_ setContext:@"modify"]; |
bc11cf5b | 6426 | |
9fe109d1 | 6427 | [delegate_ showActionSheet:sheet_ fromItem:[[self navigationItem] rightBarButtonItem]]; |
36bb2ca2 | 6428 | } |
b4d89997 | 6429 | } |
12b59862 | 6430 | |
2fad210a GP |
6431 | - (void) applyLoadingTitle { |
6432 | // Don't show "Loading" as the title. Ever. | |
2e6c1426 | 6433 | } |
a5938ea5 DH |
6434 | |
6435 | - (UIBarButtonItem *) rightButton { | |
2634b249 | 6436 | return button_; |
a5938ea5 | 6437 | } |
9487f027 | 6438 | #endif |
2367a917 | 6439 | |
77259cab JF |
6440 | - (void) setPageColor:(UIColor *)color { |
6441 | return [super setPageColor:nil]; | |
6442 | } | |
6443 | ||
f050e4d9 | 6444 | - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer { |
b5e7eebb | 6445 | if ((self = [super init]) != nil) { |
36bb2ca2 | 6446 | database_ = database; |
5612913e | 6447 | name_ = name == nil ? @"" : [NSString stringWithString:name]; |
f050e4d9 | 6448 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]] withReferrer:referrer]; |
36bb2ca2 | 6449 | } return self; |
dc5812ec JF |
6450 | } |
6451 | ||
57e8b225 | 6452 | - (void) reloadData { |
9dac415b JF |
6453 | [super reloadData]; |
6454 | ||
9fe109d1 JF |
6455 | [sheet_ dismissWithClickedButtonIndex:[sheet_ cancelButtonIndex] animated:YES]; |
6456 | sheet_ = nil; | |
6457 | ||
57e8b225 | 6458 | package_ = [database_ packageWithName:name_]; |
c9f3aa21 | 6459 | versions_ = [package_ downgrades]; |
36bb2ca2 | 6460 | |
3217d35f | 6461 | buttons_.clear(); |
5a09ae08 | 6462 | |
57e8b225 | 6463 | if (package_ != nil) { |
5d79f7bf | 6464 | [(Package *) package_ parse]; |
68d927e2 | 6465 | |
57e8b225 | 6466 | commercial_ = [package_ isCommercial]; |
36bb2ca2 | 6467 | |
dc63e78f | 6468 | if ([package_ mode] != nil) |
3217d35f | 6469 | buttons_.push_back(std::make_pair(@"CLEAR", UCLocalize("CLEAR"))); |
5a09ae08 | 6470 | if ([package_ source] == nil); |
31f3cfff | 6471 | else if ([package_ upgradableAndEssential:NO]) |
3217d35f | 6472 | buttons_.push_back(std::make_pair(@"UPGRADE", UCLocalize("UPGRADE"))); |
6a155117 | 6473 | else if ([package_ uninstalled]) |
3217d35f | 6474 | buttons_.push_back(std::make_pair(@"INSTALL", UCLocalize("INSTALL"))); |
5a09ae08 | 6475 | else |
3217d35f | 6476 | buttons_.push_back(std::make_pair(@"REINSTALL", UCLocalize("REINSTALL"))); |
6a155117 | 6477 | if (![package_ uninstalled]) |
3217d35f | 6478 | buttons_.push_back(std::make_pair(@"REMOVE", UCLocalize("REMOVE"))); |
c9f3aa21 JF |
6479 | if ([versions_ count] != 0) |
6480 | buttons_.push_back(std::make_pair(@"DOWNGRADE", UCLocalize("DOWNGRADE"))); | |
2634b249 | 6481 | } |
f79a4512 | 6482 | |
2634b249 | 6483 | NSString *title; |
3217d35f | 6484 | switch (buttons_.size()) { |
2634b249 | 6485 | case 0: title = nil; break; |
3217d35f | 6486 | case 1: title = buttons_[0].second; break; |
2634b249 | 6487 | default: title = UCLocalize("MODIFY"); break; |
36bb2ca2 | 6488 | } |
2634b249 | 6489 | |
5d79f7bf | 6490 | button_ = [[[UIBarButtonItem alloc] |
2634b249 JF |
6491 | initWithTitle:title |
6492 | style:UIBarButtonItemStylePlain | |
6493 | target:self | |
6494 | action:@selector(customButtonClicked) | |
5d79f7bf | 6495 | ] autorelease]; |
b5e7eebb | 6496 | } |
f79a4512 | 6497 | |
3bd1c2a2 JF |
6498 | - (bool) isLoading { |
6499 | return commercial_ ? [super isLoading] : false; | |
9fe5e5f8 JF |
6500 | } |
6501 | ||
b4d89997 JF |
6502 | @end |
6503 | /* }}} */ | |
5829aea2 | 6504 | |
f50860ee | 6505 | /* Package List Controller {{{ */ |
cd79e8cf | 6506 | @interface PackageListController : CyteViewController < |
c21004b9 JF |
6507 | UITableViewDataSource, |
6508 | UITableViewDelegate | |
6509 | > { | |
36bb2ca2 | 6510 | _transient Database *database_; |
0175295c | 6511 | unsigned era_; |
56bf1e78 | 6512 | _H<NSArray> packages_; |
e5491e28 | 6513 | _H<NSArray> sections_; |
bf7c998c | 6514 | _H<UITableView, 2> list_; |
aeeb755b JF |
6515 | |
6516 | _H<NSArray> thumbs_; | |
6517 | std::vector<NSInteger> offset_; | |
6518 | ||
7b33d201 | 6519 | _H<NSString> title_; |
56bf1e78 | 6520 | unsigned reloading_; |
dc5812ec JF |
6521 | } |
6522 | ||
f50860ee | 6523 | - (id) initWithDatabase:(Database *)database title:(NSString *)title; |
b4d89997 | 6524 | - (void) setDelegate:(id)delegate; |
a0be02eb | 6525 | - (void) resetCursor; |
59f3d290 | 6526 | - (void) clearData; |
b4d89997 | 6527 | |
e5491e28 JF |
6528 | - (NSArray *) sectionsForPackages:(NSMutableArray *)packages; |
6529 | ||
b4d89997 JF |
6530 | @end |
6531 | ||
f50860ee | 6532 | @implementation PackageListController |
b4d89997 | 6533 | |
f050e4d9 JF |
6534 | - (NSURL *) referrerURL { |
6535 | return [self navigationURL]; | |
6536 | } | |
6537 | ||
59f3d290 JF |
6538 | - (bool) isSummarized { |
6539 | return false; | |
6540 | } | |
6541 | ||
9c5737d5 JF |
6542 | - (bool) showsSections { |
6543 | return true; | |
6544 | } | |
6545 | ||
f50860ee GP |
6546 | - (void) deselectWithAnimation:(BOOL)animated { |
6547 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
6548 | } | |
6549 | ||
bfb45dcb GP |
6550 | - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve { |
6551 | CGRect base = [[self view] bounds]; | |
6552 | base.size.height -= bounds.size.height; | |
6553 | base.origin = [list_ frame].origin; | |
6554 | ||
6555 | [UIView beginAnimations:nil context:NULL]; | |
6556 | [UIView setAnimationBeginsFromCurrentState:YES]; | |
6557 | [UIView setAnimationCurve:curve]; | |
6558 | [UIView setAnimationDuration:duration]; | |
6559 | [list_ setFrame:base]; | |
6560 | [UIView commitAnimations]; | |
6561 | } | |
6562 | ||
6563 | - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration { | |
6564 | [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear]; | |
6565 | } | |
6566 | ||
6567 | - (void) resizeForKeyboardBounds:(CGRect)bounds { | |
6568 | [self resizeForKeyboardBounds:bounds duration:0]; | |
6569 | } | |
6570 | ||
655c7ded JF |
6571 | - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification { |
6572 | if (&UIKeyboardAnimationCurveUserInfoKey == NULL) | |
6573 | *curve = UIViewAnimationCurveEaseInOut; | |
6574 | else | |
6575 | [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve]; | |
6576 | ||
6577 | if (&UIKeyboardAnimationDurationUserInfoKey == NULL) | |
6578 | *duration = 0.3; | |
6579 | else | |
6580 | [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration]; | |
6581 | } | |
6582 | ||
bfb45dcb GP |
6583 | - (void) keyboardWillShow:(NSNotification *)notification { |
6584 | CGRect bounds; | |
6585 | CGPoint center; | |
bfb45dcb GP |
6586 | [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds]; |
6587 | [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er]; | |
655c7ded JF |
6588 | |
6589 | NSTimeInterval duration; | |
6590 | UIViewAnimationCurve curve; | |
6591 | [self getKeyboardCurve:&curve duration:&duration forNotification:notification]; | |
bfb45dcb | 6592 | |
8323c1b9 | 6593 | CGRect kbframe = CGRectMake(Retina(center.x - bounds.size.width / 2), Retina(center.y - bounds.size.height / 2), bounds.size.width, bounds.size.height); |
38991110 | 6594 | UIViewController *base = self; |
19f2d77f JF |
6595 | while ([base parentOrPresentingViewController] != nil) |
6596 | base = [base parentOrPresentingViewController]; | |
38991110 | 6597 | CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]]; |
bfb45dcb GP |
6598 | CGRect intersection = CGRectIntersection(viewframe, kbframe); |
6599 | ||
2e35f65f | 6600 | if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4) |
0b7516cf | 6601 | intersection.size.height += CYStatusBarHeight(); |
2e35f65f | 6602 | |
bfb45dcb GP |
6603 | [self resizeForKeyboardBounds:intersection duration:duration curve:curve]; |
6604 | } | |
6605 | ||
6606 | - (void) keyboardWillHide:(NSNotification *)notification { | |
6607 | NSTimeInterval duration; | |
6608 | UIViewAnimationCurve curve; | |
655c7ded | 6609 | [self getKeyboardCurve:&curve duration:&duration forNotification:notification]; |
bfb45dcb GP |
6610 | |
6611 | [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve]; | |
6612 | } | |
6613 | ||
6614 | - (void) viewWillAppear:(BOOL)animated { | |
6615 | [super viewWillAppear:animated]; | |
6616 | ||
6617 | [self resizeForKeyboardBounds:CGRectZero]; | |
6618 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; | |
6619 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil]; | |
6620 | } | |
6621 | ||
6622 | - (void) viewWillDisappear:(BOOL)animated { | |
6623 | [super viewWillDisappear:animated]; | |
6624 | ||
6625 | [self resizeForKeyboardBounds:CGRectZero]; | |
6626 | [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil]; | |
6627 | [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil]; | |
6628 | } | |
6629 | ||
f50860ee GP |
6630 | - (void) viewDidAppear:(BOOL)animated { |
6631 | [super viewDidAppear:animated]; | |
6632 | [self deselectWithAnimation:animated]; | |
6633 | } | |
6634 | ||
6635 | - (void) didSelectPackage:(Package *)package { | |
f050e4d9 | 6636 | CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id] withReferrer:[[self referrerURL] absoluteString]] autorelease]); |
f50860ee GP |
6637 | [view setDelegate:delegate_]; |
6638 | [[self navigationController] pushViewController:view animated:YES]; | |
6639 | } | |
6640 | ||
327624b6 JF |
6641 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)list { |
6642 | NSInteger count([sections_ count]); | |
6643 | return count == 0 ? 1 : count; | |
b4d89997 | 6644 | } |
2367a917 | 6645 | |
327624b6 | 6646 | - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section { |
a891c345 | 6647 | if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0) |
327624b6 | 6648 | return nil; |
b4d89997 JF |
6649 | return [[sections_ objectAtIndex:section] name]; |
6650 | } | |
dc5812ec | 6651 | |
327624b6 JF |
6652 | - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section { |
6653 | if ([sections_ count] == 0) | |
6654 | return 0; | |
6655 | return [[sections_ objectAtIndex:section] count]; | |
b4d89997 | 6656 | } |
dc5812ec | 6657 | |
327624b6 | 6658 | - (Package *) packageAtIndexPath:(NSIndexPath *)path { |
0175295c JF |
6659 | @synchronized (database_) { |
6660 | if ([database_ era] != era_) | |
6661 | return nil; | |
6662 | ||
327624b6 JF |
6663 | Section *section([sections_ objectAtIndex:[path section]]); |
6664 | NSInteger row([path row]); | |
6665 | Package *package([packages_ objectAtIndex:([section row] + row)]); | |
0175295c JF |
6666 | return [[package retain] autorelease]; |
6667 | } } | |
dc5812ec | 6668 | |
327624b6 | 6669 | - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path { |
c21004b9 | 6670 | PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]); |
327624b6 JF |
6671 | if (cell == nil) |
6672 | cell = [[[PackageCell alloc] init] autorelease]; | |
60bef540 JF |
6673 | |
6674 | Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]); | |
6675 | [cell setPackage:package asSummary:[self isSummarized]]; | |
327624b6 | 6676 | return cell; |
b4d89997 | 6677 | } |
dc5812ec | 6678 | |
f50860ee | 6679 | - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path { |
327624b6 | 6680 | Package *package([self packageAtIndexPath:path]); |
59c6ae22 | 6681 | package = [database_ packageWithName:[package id]]; |
f50860ee | 6682 | [self didSelectPackage:package]; |
327624b6 JF |
6683 | } |
6684 | ||
6685 | - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView { | |
aeeb755b | 6686 | return thumbs_; |
327624b6 JF |
6687 | } |
6688 | ||
a891c345 | 6689 | - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { |
aeeb755b | 6690 | return offset_[index]; |
dc5812ec JF |
6691 | } |
6692 | ||
59f3d290 JF |
6693 | - (void) updateHeight { |
6694 | [list_ setRowHeight:([self isSummarized] ? 38 : 73)]; | |
6695 | } | |
6696 | ||
f50860ee GP |
6697 | - (id) initWithDatabase:(Database *)database title:(NSString *)title { |
6698 | if ((self = [super init]) != nil) { | |
36bb2ca2 | 6699 | database_ = database; |
f50860ee GP |
6700 | title_ = [title copy]; |
6701 | [[self navigationItem] setTitle:title_]; | |
61cc4dbc JF |
6702 | } return self; |
6703 | } | |
dc5812ec | 6704 | |
61cc4dbc | 6705 | - (void) loadView { |
b62b3788 JF |
6706 | UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]); |
6707 | [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; | |
6708 | [self setView:view]; | |
6709 | ||
6710 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease]; | |
61cc4dbc | 6711 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
b62b3788 | 6712 | [view addSubview:list_]; |
1527b095 | 6713 | |
61cc4dbc JF |
6714 | // XXX: is 20 the most optimal number here? |
6715 | [list_ setSectionIndexMinimumDisplayRowCount:20]; | |
59f3d290 | 6716 | |
61cc4dbc JF |
6717 | [(UITableView *) list_ setDataSource:self]; |
6718 | [list_ setDelegate:self]; | |
6719 | ||
6720 | [self updateHeight]; | |
6721 | } | |
6722 | ||
6723 | - (void) releaseSubviews { | |
6724 | list_ = nil; | |
7be3eb32 | 6725 | |
4f9acb7c JF |
6726 | packages_ = nil; |
6727 | sections_ = nil; | |
aeeb755b JF |
6728 | |
6729 | thumbs_ = nil; | |
6730 | offset_.clear(); | |
4f9acb7c | 6731 | |
7be3eb32 | 6732 | [super releaseSubviews]; |
dc5812ec JF |
6733 | } |
6734 | ||
6735 | - (void) setDelegate:(id)delegate { | |
2367a917 | 6736 | delegate_ = delegate; |
b4d89997 JF |
6737 | } |
6738 | ||
3025d5b4 JF |
6739 | - (bool) shouldYield { |
6740 | return false; | |
6741 | } | |
b4d89997 | 6742 | |
56bf1e78 JF |
6743 | - (bool) shouldBlock { |
6744 | return false; | |
6745 | } | |
6746 | ||
9c5737d5 | 6747 | - (NSMutableArray *) _reloadPackages { |
695fdd5c | 6748 | @synchronized (database_) { |
c28bc6f1 JF |
6749 | era_ = [database_ era]; |
6750 | NSArray *packages([database_ packages]); | |
6751 | ||
9c5737d5 | 6752 | return [NSMutableArray arrayWithArray:packages]; |
695fdd5c | 6753 | } } |
3025d5b4 JF |
6754 | |
6755 | - (void) _reloadData { | |
56bf1e78 JF |
6756 | if (reloading_ != 0) { |
6757 | reloading_ = 2; | |
6758 | return; | |
6759 | } | |
6760 | ||
e5491e28 | 6761 | NSMutableArray *packages; |
ae60e2c1 | 6762 | |
0c8f53c0 | 6763 | reload: |
3025d5b4 | 6764 | if ([self shouldYield]) { |
bec28dda JF |
6765 | do { |
6766 | UIProgressHUD *hud; | |
56bf1e78 | 6767 | |
bec28dda JF |
6768 | if (![self shouldBlock]) |
6769 | hud = nil; | |
6770 | else { | |
6771 | hud = [delegate_ addProgressHUD]; | |
6772 | [hud setText:UCLocalize("LOADING")]; | |
6773 | } | |
56bf1e78 | 6774 | |
56bf1e78 | 6775 | reloading_ = 1; |
ae60e2c1 | 6776 | packages = [self yieldToSelector:@selector(_reloadPackages)]; |
bec28dda JF |
6777 | |
6778 | if (hud != nil) | |
6779 | [delegate_ removeProgressHUD:hud]; | |
56bf1e78 | 6780 | } while (reloading_ == 2); |
3025d5b4 | 6781 | } else { |
ae60e2c1 | 6782 | packages = [self _reloadPackages]; |
3025d5b4 | 6783 | } |
36bb2ca2 | 6784 | |
0c8f53c0 JF |
6785 | @synchronized (database_) { |
6786 | if (era_ != [database_ era]) | |
6787 | goto reload; | |
6788 | reloading_ = 0; | |
6789 | ||
aeeb755b JF |
6790 | thumbs_ = nil; |
6791 | offset_.clear(); | |
6792 | ||
ae60e2c1 | 6793 | packages_ = packages; |
aeeb755b JF |
6794 | |
6795 | if ([self showsSections]) | |
6796 | sections_ = [self sectionsForPackages:packages]; | |
6797 | else { | |
6798 | Section *section([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]); | |
6799 | [section setCount:[packages_ count]]; | |
6800 | sections_ = [NSArray arrayWithObject:section]; | |
6801 | } | |
ae60e2c1 | 6802 | |
e5491e28 JF |
6803 | [self updateHeight]; |
6804 | ||
6805 | _profile(PackageTable$reloadData$List) | |
6806 | [(UITableView *) list_ setDataSource:self]; | |
6807 | [list_ reloadData]; | |
6808 | _end | |
1a83afc6 JF |
6809 | } |
6810 | ||
6811 | PrintTimes(); | |
6812 | } | |
e5491e28 JF |
6813 | |
6814 | - (NSArray *) sectionsForPackages:(NSMutableArray *)packages { | |
aeeb755b JF |
6815 | Section *prefix([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]); |
6816 | size_t end([packages count]); | |
b4d89997 | 6817 | |
aeeb755b JF |
6818 | NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]); |
6819 | Section *section(prefix); | |
c4dcf2c2 | 6820 | |
aeeb755b JF |
6821 | thumbs_ = CollationThumbs_; |
6822 | offset_ = CollationOffset_; | |
b4d89997 | 6823 | |
aeeb755b JF |
6824 | size_t offset(0); |
6825 | size_t offsets([CollationStarts_ count]); | |
b4d89997 | 6826 | |
aeeb755b JF |
6827 | NSString *start([CollationStarts_ objectAtIndex:offset]); |
6828 | size_t length([start length]); | |
327624b6 | 6829 | |
aeeb755b JF |
6830 | for (size_t index(0); index != end; ++index) { |
6831 | if (start != nil) { | |
6832 | Package *package([packages objectAtIndex:index]); | |
22fd24dd | 6833 | NSString *name(PackageName(package, @selector(cyname))); |
a891c345 | 6834 | |
aeeb755b | 6835 | //while ([start compare:name options:NSNumericSearch range:NSMakeRange(0, length) locale:CollationLocale_] != NSOrderedDescending) { |
22fd24dd | 6836 | while (StringNameCompare(start, name, length) != kCFCompareGreaterThan) { |
aeeb755b JF |
6837 | NSString *title([CollationTitles_ objectAtIndex:offset]); |
6838 | section = [[[Section alloc] initWithName:title row:index localize:NO] autorelease]; | |
6839 | [sections addObject:section]; | |
a891c345 | 6840 | |
aeeb755b JF |
6841 | start = ++offset == offsets ? nil : [CollationStarts_ objectAtIndex:offset]; |
6842 | if (start == nil) | |
6843 | break; | |
6844 | length = [start length]; | |
808c6eb6 | 6845 | } |
59f3d290 JF |
6846 | } |
6847 | ||
aeeb755b JF |
6848 | [section addToCount]; |
6849 | } | |
a891c345 | 6850 | |
aeeb755b JF |
6851 | for (; offset != offsets; ++offset) { |
6852 | NSString *title([CollationTitles_ objectAtIndex:offset]); | |
6853 | Section *section([[[Section alloc] initWithName:title row:end localize:NO] autorelease]); | |
6854 | [sections addObject:section]; | |
6855 | } | |
a891c345 | 6856 | |
aeeb755b JF |
6857 | if ([prefix count] != 0) { |
6858 | Section *suffix([sections lastObject]); | |
6859 | [prefix setName:[suffix name]]; | |
6860 | [suffix setName:nil]; | |
6861 | [sections insertObject:prefix atIndex:(offsets - 1)]; | |
a891c345 | 6862 | } |
b4d89997 | 6863 | |
e5491e28 JF |
6864 | return sections; |
6865 | } | |
b4d89997 | 6866 | |
3025d5b4 JF |
6867 | - (void) reloadData { |
6868 | [super reloadData]; | |
6d246265 JF |
6869 | |
6870 | if ([self shouldYield]) | |
6871 | [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0]; | |
6872 | else | |
6873 | [self _reloadData]; | |
3025d5b4 JF |
6874 | } |
6875 | ||
a0be02eb | 6876 | - (void) resetCursor { |
4c6a29cd | 6877 | [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO]; |
a0be02eb JF |
6878 | } |
6879 | ||
59f3d290 JF |
6880 | - (void) clearData { |
6881 | [self updateHeight]; | |
6882 | ||
6883 | [list_ setDataSource:nil]; | |
6884 | [list_ reloadData]; | |
6885 | ||
6886 | [self resetCursor]; | |
6887 | } | |
6888 | ||
a3328c28 JF |
6889 | @end |
6890 | /* }}} */ | |
f50860ee | 6891 | /* Filtered Package List Controller {{{ */ |
89bdef78 JF |
6892 | typedef Function<bool, Package *> PackageFilter; |
6893 | typedef Function<void, NSMutableArray *> PackageSorter; | |
f50860ee | 6894 | @interface FilteredPackageListController : PackageListController { |
89bdef78 JF |
6895 | PackageFilter filter_; |
6896 | PackageSorter sorter_; | |
a3328c28 JF |
6897 | } |
6898 | ||
89bdef78 | 6899 | - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter; |
3025d5b4 | 6900 | |
89bdef78 JF |
6901 | - (void) setFilter:(PackageFilter)filter; |
6902 | - (void) setSorter:(PackageSorter)sorter; | |
a3328c28 JF |
6903 | |
6904 | @end | |
6905 | ||
f50860ee | 6906 | @implementation FilteredPackageListController |
a3328c28 | 6907 | |
89bdef78 | 6908 | - (void) setFilter:(PackageFilter)filter { |
aa32d91b | 6909 | @synchronized (self) { |
01d93940 | 6910 | filter_ = filter; |
55066b9e JF |
6911 | } } |
6912 | ||
89bdef78 | 6913 | - (void) setSorter:(PackageSorter)sorter { |
55066b9e | 6914 | @synchronized (self) { |
89bdef78 | 6915 | sorter_ = sorter; |
d84597fe | 6916 | } } |
01d93940 | 6917 | |
9c5737d5 | 6918 | - (NSMutableArray *) _reloadPackages { |
aa32d91b | 6919 | @synchronized (database_) { |
c28bc6f1 | 6920 | era_ = [database_ era]; |
c28bc6f1 | 6921 | |
dd4e70dc JF |
6922 | NSArray *packages([database_ packages]); |
6923 | NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]); | |
aa32d91b | 6924 | |
89bdef78 | 6925 | PackageFilter filter; |
dd4e70dc | 6926 | PackageSorter sorter; |
aa32d91b JF |
6927 | |
6928 | @synchronized (self) { | |
aa32d91b | 6929 | filter = filter_; |
89bdef78 | 6930 | sorter = sorter_; |
aa32d91b JF |
6931 | } |
6932 | ||
6933 | _profile(PackageTable$reloadData$Filter) | |
6934 | for (Package *package in packages) | |
826318ca | 6935 | if (filter(package)) |
aa32d91b | 6936 | [filtered addObject:package]; |
76933519 | 6937 | _end |
aa32d91b | 6938 | |
89bdef78 JF |
6939 | if (sorter) |
6940 | sorter(filtered); | |
aa32d91b | 6941 | return filtered; |
dd4e70dc | 6942 | } } |
55066b9e | 6943 | |
89bdef78 | 6944 | - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter { |
55066b9e JF |
6945 | if ((self = [super initWithDatabase:database title:title]) != nil) { |
6946 | [self setFilter:filter]; | |
a3328c28 JF |
6947 | } return self; |
6948 | } | |
6949 | ||
dc5812ec | 6950 | @end |
b5e7eebb GP |
6951 | /* }}} */ |
6952 | ||
5829aea2 | 6953 | /* Home Controller {{{ */ |
a576488f | 6954 | @interface HomeController : CydiaWebViewController { |
02f21c73 JF |
6955 | CFRunLoopRef runloop_; |
6956 | SCNetworkReachabilityRef reachability_; | |
b4d89997 | 6957 | } |
6840bff3 | 6958 | |
7b0ce2da | 6959 | @end |
b4d89997 | 6960 | |
5829aea2 | 6961 | @implementation HomeController |
46aa9775 | 6962 | |
02f21c73 JF |
6963 | static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachability, SCNetworkReachabilityFlags flags, void *info) { |
6964 | [(HomeController *) info dispatchEvent:@"CydiaReachabilityCallback"]; | |
6965 | } | |
6966 | ||
3c62d654 JF |
6967 | - (id) init { |
6968 | if ((self = [super init]) != nil) { | |
90351d93 | 6969 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]]; |
ed7bfd8c | 6970 | [self reloadData]; |
02f21c73 JF |
6971 | |
6972 | reachability_ = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "cydia.saurik.com"); | |
6973 | if (reachability_ != NULL) { | |
6974 | SCNetworkReachabilityContext context = {0, self, NULL, NULL, NULL}; | |
6975 | SCNetworkReachabilitySetCallback(reachability_, HomeControllerReachabilityCallback, &context); | |
6976 | ||
6977 | CFRunLoopRef runloop(CFRunLoopGetCurrent()); | |
6978 | if (SCNetworkReachabilityScheduleWithRunLoop(reachability_, runloop, kCFRunLoopDefaultMode)) | |
6979 | runloop_ = runloop; | |
6980 | } | |
3c62d654 JF |
6981 | } return self; |
6982 | } | |
6983 | ||
02f21c73 JF |
6984 | - (void) dealloc { |
6985 | if (reachability_ != NULL && runloop_ != NULL) | |
6986 | SCNetworkReachabilityUnscheduleFromRunLoop(reachability_, runloop_, kCFRunLoopDefaultMode); | |
6987 | [super dealloc]; | |
6988 | } | |
6989 | ||
fe8e721f GP |
6990 | - (NSURL *) navigationURL { |
6991 | return [NSURL URLWithString:@"cydia://home"]; | |
6992 | } | |
6993 | ||
5829aea2 GP |
6994 | - (void) aboutButtonClicked { |
6995 | UIAlertView *alert([[[UIAlertView alloc] init] autorelease]); | |
b4d89997 | 6996 | |
5829aea2 GP |
6997 | [alert setTitle:UCLocalize("ABOUT_CYDIA")]; |
6998 | [alert addButtonWithTitle:UCLocalize("CLOSE")]; | |
6999 | [alert setCancelButtonIndex:0]; | |
46aa9775 | 7000 | |
5829aea2 | 7001 | [alert setMessage: |
4c66fad9 | 7002 | @"Copyright \u00a9 2008-2015\n" |
7e865c1e JF |
7003 | "SaurikIT, LLC\n" |
7004 | "\n" | |
5829aea2 GP |
7005 | "Jay Freeman (saurik)\n" |
7006 | "saurik@saurik.com\n" | |
7007 | "http://www.saurik.com/" | |
7008 | ]; | |
46aa9775 | 7009 | |
5829aea2 | 7010 | [alert show]; |
a0376fc1 JF |
7011 | } |
7012 | ||
e6124cb6 JF |
7013 | - (UIBarButtonItem *) leftButton { |
7014 | return [[[UIBarButtonItem alloc] | |
35f0a3b5 GP |
7015 | initWithTitle:UCLocalize("ABOUT") |
7016 | style:UIBarButtonItemStylePlain | |
7017 | target:self | |
7018 | action:@selector(aboutButtonClicked) | |
e6124cb6 | 7019 | ] autorelease]; |
7b0ce2da JF |
7020 | } |
7021 | ||
5829aea2 GP |
7022 | @end |
7023 | /* }}} */ | |
7b0ce2da | 7024 | |
28e596e4 | 7025 | /* Cydia Navigation Controller Interface {{{ */ |
15f0d613 | 7026 | @interface UINavigationController (Cydia) |
28e596e4 JF |
7027 | |
7028 | - (NSArray *) navigationURLCollection; | |
15f0d613 | 7029 | - (void) unloadData; |
28e596e4 JF |
7030 | |
7031 | @end | |
7032 | /* }}} */ | |
7b0ce2da | 7033 | |
5829aea2 | 7034 | /* Cydia Tab Bar Controller {{{ */ |
5fe2bcc6 | 7035 | @interface CydiaTabBarController : CyteTabBarController < |
9f99f3da | 7036 | UITabBarControllerDelegate, |
21ac0ce2 | 7037 | FetchDelegate |
5829aea2 GP |
7038 | > { |
7039 | _transient Database *database_; | |
7b0ce2da | 7040 | |
e67ebdad JF |
7041 | _H<UIActivityIndicatorView> indicator_; |
7042 | ||
5829aea2 GP |
7043 | bool updating_; |
7044 | // XXX: ok, "updatedelegate_"?... | |
7045 | _transient NSObject<CydiaDelegate> *updatedelegate_; | |
7b0ce2da JF |
7046 | } |
7047 | ||
35f0a3b5 | 7048 | - (NSArray *) navigationURLCollection; |
5829aea2 | 7049 | - (void) beginUpdate; |
5829aea2 | 7050 | - (BOOL) updating; |
1cedb821 | 7051 | |
5829aea2 | 7052 | @end |
2fc76a2d | 7053 | |
5fe2bcc6 | 7054 | @implementation CydiaTabBarController |
9f99f3da | 7055 | |
35f0a3b5 | 7056 | - (NSArray *) navigationURLCollection { |
fe8e721f GP |
7057 | NSMutableArray *items([NSMutableArray array]); |
7058 | ||
35f0a3b5 | 7059 | // XXX: Should this deal with transient view controllers? |
fe8e721f | 7060 | for (id navigation in [self viewControllers]) { |
35f0a3b5 | 7061 | NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)]; |
fe8e721f GP |
7062 | if (stack != nil) |
7063 | [items addObject:stack]; | |
2fc76a2d | 7064 | } |
c713af59 | 7065 | |
fe8e721f GP |
7066 | return items; |
7067 | } | |
7068 | ||
b5e7eebb GP |
7069 | - (id) initWithDatabase:(Database *)database { |
7070 | if ((self = [super init]) != nil) { | |
7b0ce2da | 7071 | database_ = database; |
9f99f3da | 7072 | [self setDelegate:self]; |
04fe1349 | 7073 | |
e67ebdad JF |
7074 | indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteTiny] autorelease]; |
7075 | [indicator_ setOrigin:CGPointMake(kCFCoreFoundationVersionNumber >= 800 ? 2 : 4, 2)]; | |
7b0ce2da | 7076 | |
e67ebdad | 7077 | [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
7b0ce2da JF |
7078 | } return self; |
7079 | } | |
7080 | ||
5829aea2 | 7081 | - (void) beginUpdate { |
20d59843 JF |
7082 | if (updating_) |
7083 | return; | |
7084 | ||
e67ebdad JF |
7085 | UIViewController *controller([[self viewControllers] objectAtIndex:1]); |
7086 | UITabBarItem *item([controller tabBarItem]); | |
7087 | ||
7088 | [item setBadgeValue:@""]; | |
7089 | UIView *badge(MSHookIvar<UIView *>([item view], "_badge")); | |
7090 | ||
7091 | [indicator_ startAnimating]; | |
7092 | [badge addSubview:indicator_]; | |
7b0ce2da | 7093 | |
5829aea2 GP |
7094 | [updatedelegate_ retainNetworkActivityIndicator]; |
7095 | updating_ = true; | |
7b0ce2da | 7096 | |
5829aea2 GP |
7097 | [NSThread |
7098 | detachNewThreadSelector:@selector(performUpdate) | |
7099 | toTarget:self | |
7100 | withObject:nil | |
7101 | ]; | |
7b0ce2da JF |
7102 | } |
7103 | ||
d13edf44 JF |
7104 | - (void) performUpdate { |
7105 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
7106 | ||
21ac0ce2 | 7107 | SourceStatus status(self, database_); |
5829aea2 GP |
7108 | [database_ updateWithStatus:status]; |
7109 | ||
7110 | [self | |
7111 | performSelectorOnMainThread:@selector(completeUpdate) | |
7112 | withObject:nil | |
7113 | waitUntilDone:NO | |
7114 | ]; | |
d13edf44 JF |
7115 | |
7116 | [pool release]; | |
f6e13561 GP |
7117 | } |
7118 | ||
5829aea2 GP |
7119 | - (void) stopUpdateWithSelector:(SEL)selector { |
7120 | updating_ = false; | |
7121 | [updatedelegate_ releaseNetworkActivityIndicator]; | |
b5e7eebb | 7122 | |
e67ebdad JF |
7123 | UIViewController *controller([[self viewControllers] objectAtIndex:1]); |
7124 | [[controller tabBarItem] setBadgeValue:nil]; | |
7125 | ||
7126 | [indicator_ removeFromSuperview]; | |
7127 | [indicator_ stopAnimating]; | |
bc11cf5b | 7128 | |
5829aea2 | 7129 | [updatedelegate_ performSelector:selector withObject:nil afterDelay:0]; |
2bdd73bd GP |
7130 | } |
7131 | ||
5829aea2 GP |
7132 | - (void) completeUpdate { |
7133 | if (!updating_) | |
7134 | return; | |
7135 | [self stopUpdateWithSelector:@selector(reloadData)]; | |
7b0ce2da JF |
7136 | } |
7137 | ||
5829aea2 | 7138 | - (void) cancelUpdate { |
383a58ac | 7139 | [self stopUpdateWithSelector:@selector(updateDataAndLoad)]; |
7b0ce2da JF |
7140 | } |
7141 | ||
5829aea2 GP |
7142 | - (void) cancelPressed { |
7143 | [self cancelUpdate]; | |
7144 | } | |
7b0ce2da | 7145 | |
5829aea2 GP |
7146 | - (BOOL) updating { |
7147 | return updating_; | |
7b0ce2da JF |
7148 | } |
7149 | ||
21ac0ce2 | 7150 | - (bool) isSourceCancelled { |
5829aea2 GP |
7151 | return !updating_; |
7152 | } | |
7b0ce2da | 7153 | |
21ac0ce2 | 7154 | - (void) startSourceFetch:(NSString *)uri { |
7b0ce2da JF |
7155 | } |
7156 | ||
21ac0ce2 | 7157 | - (void) stopSourceFetch:(NSString *)uri { |
bcbac8f7 JF |
7158 | } |
7159 | ||
5829aea2 GP |
7160 | - (void) setUpdateDelegate:(id)delegate { |
7161 | updatedelegate_ = delegate; | |
7b0ce2da JF |
7162 | } |
7163 | ||
7b0ce2da | 7164 | @end |
98228790 | 7165 | /* }}} */ |
f6e13561 | 7166 | |
28e596e4 | 7167 | /* Cydia Navigation Controller Implementation {{{ */ |
15f0d613 | 7168 | @implementation UINavigationController (Cydia) |
bc11cf5b | 7169 | |
35f0a3b5 | 7170 | - (NSArray *) navigationURLCollection { |
fe8e721f GP |
7171 | NSMutableArray *stack([NSMutableArray array]); |
7172 | ||
cd79e8cf | 7173 | for (CyteViewController *controller in [self viewControllers]) { |
fe8e721f GP |
7174 | NSString *url = [[controller navigationURL] absoluteString]; |
7175 | if (url != nil) | |
7176 | [stack addObject:url]; | |
7177 | } | |
7178 | ||
7179 | return stack; | |
7180 | } | |
7181 | ||
15f0d613 JF |
7182 | - (void) reloadData { |
7183 | [super reloadData]; | |
7184 | ||
21263088 JF |
7185 | UIViewController *visible([self visibleViewController]); |
7186 | if (visible != nil) | |
15f0d613 | 7187 | [visible reloadData]; |
21263088 JF |
7188 | |
7189 | // on the iPad, this view controller is ALSO visible. :( | |
7190 | if (IsWildcat_) | |
907ba491 JF |
7191 | if (UIViewController *modal = [self modalViewController]) |
7192 | if ([modal modalPresentationStyle] == UIModalPresentationFormSheet) | |
7193 | if (UIViewController *top = [self topViewController]) | |
7194 | if (top != visible) | |
7195 | [top reloadData]; | |
15f0d613 | 7196 | } |
6c0ba3d9 | 7197 | |
15f0d613 | 7198 | - (void) unloadData { |
cd79e8cf | 7199 | for (CyteViewController *page in [self viewControllers]) |
15f0d613 | 7200 | [page unloadData]; |
6c0ba3d9 | 7201 | |
15f0d613 | 7202 | [super unloadData]; |
dc63e78f JF |
7203 | } |
7204 | ||
5829aea2 GP |
7205 | @end |
7206 | /* }}} */ | |
7b0ce2da | 7207 | |
5829aea2 GP |
7208 | /* Cydia:// Protocol {{{ */ |
7209 | @interface CydiaURLProtocol : NSURLProtocol { | |
9fe5e5f8 JF |
7210 | } |
7211 | ||
7b0ce2da JF |
7212 | @end |
7213 | ||
5829aea2 GP |
7214 | @implementation CydiaURLProtocol |
7215 | ||
7216 | + (BOOL) canInitWithRequest:(NSURLRequest *)request { | |
7217 | NSURL *url([request URL]); | |
7218 | if (url == nil) | |
7219 | return NO; | |
b0a2900d | 7220 | |
5829aea2 | 7221 | NSString *scheme([[url scheme] lowercaseString]); |
b0a2900d JF |
7222 | if (scheme != nil && [scheme isEqualToString:@"cydia"]) |
7223 | return YES; | |
7224 | if ([[url absoluteString] hasPrefix:@"about:cydia-"]) | |
7225 | return YES; | |
7226 | ||
7227 | return NO; | |
aa5e5990 JF |
7228 | } |
7229 | ||
5829aea2 GP |
7230 | + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request { |
7231 | return request; | |
7232 | } | |
aa5e5990 | 7233 | |
5829aea2 GP |
7234 | - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request { |
7235 | id<NSURLProtocolClient> client([self client]); | |
7236 | if (icon == nil) | |
7237 | [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]]; | |
7238 | else { | |
7239 | NSData *data(UIImagePNGRepresentation(icon)); | |
01d93940 | 7240 | |
5829aea2 GP |
7241 | NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]); |
7242 | [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed]; | |
7243 | [client URLProtocol:self didLoadData:data]; | |
7244 | [client URLProtocolDidFinishLoading:self]; | |
7245 | } | |
3931b718 JF |
7246 | } |
7247 | ||
5829aea2 GP |
7248 | - (void) startLoading { |
7249 | id<NSURLProtocolClient> client([self client]); | |
7250 | NSURLRequest *request([self request]); | |
bc11cf5b | 7251 | |
5829aea2 GP |
7252 | NSURL *url([request URL]); |
7253 | NSString *href([url absoluteString]); | |
b0a2900d JF |
7254 | NSString *scheme([[url scheme] lowercaseString]); |
7255 | ||
7256 | NSString *path; | |
7257 | ||
7258 | if ([scheme isEqualToString:@"cydia"]) | |
7259 | path = [href substringFromIndex:8]; | |
7260 | else if ([scheme isEqualToString:@"about"]) | |
7261 | path = [href substringFromIndex:12]; | |
7262 | else _assert(false); | |
bc11cf5b | 7263 | |
5829aea2 | 7264 | NSRange slash([path rangeOfString:@"/"]); |
bc11cf5b | 7265 | |
5829aea2 GP |
7266 | NSString *command; |
7267 | if (slash.location == NSNotFound) { | |
7268 | command = path; | |
7269 | path = nil; | |
7270 | } else { | |
7271 | command = [path substringToIndex:slash.location]; | |
7272 | path = [path substringFromIndex:(slash.location + 1)]; | |
7273 | } | |
39cda3a8 | 7274 | |
5829aea2 | 7275 | Database *database([Database sharedInstance]); |
bc11cf5b | 7276 | |
d0a5ea56 JF |
7277 | if (false); |
7278 | else if ([command isEqualToString:@"application-icon"]) { | |
7279 | if (path == nil) | |
7280 | goto fail; | |
7281 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
c7e78d5f JF |
7282 | |
7283 | UIImage *icon(nil); | |
7284 | ||
7285 | if (icon == nil && $SBSCopyIconImagePNGDataForDisplayIdentifier != NULL) { | |
7286 | NSData *data([$SBSCopyIconImagePNGDataForDisplayIdentifier(path) autorelease]); | |
d0a5ea56 | 7287 | icon = [UIImage imageWithData:data]; |
c7e78d5f JF |
7288 | } |
7289 | ||
7290 | if (icon == nil) | |
7291 | if (NSString *file = SBSCopyIconImagePathForDisplayIdentifier(path)) | |
7292 | icon = [UIImage imageAtPath:file]; | |
7293 | ||
7294 | if (icon == nil) | |
7295 | icon = [UIImage imageNamed:@"unknown.png"]; | |
7296 | ||
d0a5ea56 JF |
7297 | [self _returnPNGWithImage:icon forRequest:request]; |
7298 | } else if ([command isEqualToString:@"package-icon"]) { | |
5829aea2 GP |
7299 | if (path == nil) |
7300 | goto fail; | |
7301 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
7302 | Package *package([database packageWithName:path]); | |
7303 | if (package == nil) | |
7304 | goto fail; | |
eff20a8d | 7305 | [package parse]; |
5829aea2 GP |
7306 | UIImage *icon([package icon]); |
7307 | [self _returnPNGWithImage:icon forRequest:request]; | |
5829aea2 GP |
7308 | } else if ([command isEqualToString:@"uikit-image"]) { |
7309 | if (path == nil) | |
7310 | goto fail; | |
7311 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
7312 | UIImage *icon(_UIImageWithName(path)); | |
7313 | [self _returnPNGWithImage:icon forRequest:request]; | |
7314 | } else if ([command isEqualToString:@"section-icon"]) { | |
7315 | if (path == nil) | |
7316 | goto fail; | |
7317 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
611efc17 | 7318 | UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]); |
5829aea2 | 7319 | if (icon == nil) |
8dbf3abc | 7320 | icon = [UIImage imageNamed:@"unknown.png"]; |
5829aea2 GP |
7321 | [self _returnPNGWithImage:icon forRequest:request]; |
7322 | } else fail: { | |
7323 | [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]]; | |
7324 | } | |
39cda3a8 GP |
7325 | } |
7326 | ||
5829aea2 GP |
7327 | - (void) stopLoading { |
7328 | } | |
807ae6d7 | 7329 | |
5829aea2 GP |
7330 | @end |
7331 | /* }}} */ | |
807ae6d7 | 7332 | |
5829aea2 | 7333 | /* Section Controller {{{ */ |
f50860ee | 7334 | @interface SectionController : FilteredPackageListController { |
55066b9e | 7335 | _H<NSString> key_; |
123b380c | 7336 | _H<NSString> section_; |
5829aea2 | 7337 | } |
807ae6d7 | 7338 | |
55066b9e | 7339 | - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section; |
807ae6d7 | 7340 | |
5829aea2 | 7341 | @end |
bc11cf5b | 7342 | |
5829aea2 | 7343 | @implementation SectionController |
bc11cf5b | 7344 | |
f050e4d9 | 7345 | - (NSURL *) referrerURL { |
55066b9e JF |
7346 | NSString *name(section_); |
7347 | name = name ?: @"*"; | |
7348 | NSString *key(key_); | |
7349 | key = key ?: @"*"; | |
7350 | return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/sections/%@/%@", UI_, [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]]; | |
f050e4d9 JF |
7351 | } |
7352 | ||
fe8e721f | 7353 | - (NSURL *) navigationURL { |
55066b9e JF |
7354 | NSString *name(section_); |
7355 | name = name ?: @"*"; | |
7356 | NSString *key(key_); | |
7357 | key = key ?: @"*"; | |
7358 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@/%@", [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]]; | |
fe8e721f GP |
7359 | } |
7360 | ||
55066b9e | 7361 | - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section { |
5829aea2 | 7362 | NSString *title; |
55066b9e | 7363 | if (section == nil) |
5829aea2 | 7364 | title = UCLocalize("ALL_PACKAGES"); |
55066b9e JF |
7365 | else if (![section isEqual:@""]) |
7366 | title = [[NSBundle mainBundle] localizedStringForKey:Simplify(section) value:nil table:@"Sections"]; | |
3707eb56 | 7367 | else |
5829aea2 | 7368 | title = UCLocalize("NO_SECTION"); |
fe8e721f | 7369 | |
89bdef78 | 7370 | if ((self = [super initWithDatabase:database title:title]) != nil) { |
55066b9e JF |
7371 | key_ = [source key]; |
7372 | section_ = section; | |
5829aea2 | 7373 | } return self; |
b5e7eebb GP |
7374 | } |
7375 | ||
55066b9e | 7376 | - (void) reloadData { |
89bdef78 JF |
7377 | Source *source([database_ sourceWithKey:key_]); |
7378 | _H<NSString> name(section_); | |
7379 | ||
7380 | [self setFilter:[=](Package *package) { | |
7381 | NSString *section([package section]); | |
7382 | ||
7383 | return ( | |
7384 | name == nil || | |
7385 | section == nil && [name length] == 0 || | |
7386 | [name isEqualToString:section] | |
7387 | ) && ( | |
7388 | source == nil || | |
7389 | [package source] == source | |
7390 | ) && [package visible]; | |
7391 | }]; | |
7392 | ||
55066b9e JF |
7393 | [super reloadData]; |
7394 | } | |
7395 | ||
b5e7eebb GP |
7396 | @end |
7397 | /* }}} */ | |
5829aea2 | 7398 | /* Sections Controller {{{ */ |
cd79e8cf | 7399 | @interface SectionsController : CyteViewController < |
5829aea2 GP |
7400 | UITableViewDataSource, |
7401 | UITableViewDelegate | |
7585ce66 | 7402 | > { |
3931b718 | 7403 | _transient Database *database_; |
55066b9e | 7404 | _H<NSString> key_; |
7b33d201 JF |
7405 | _H<NSMutableArray> sections_; |
7406 | _H<NSMutableArray> filtered_; | |
bf7c998c | 7407 | _H<UITableView, 2> list_; |
b5e7eebb GP |
7408 | } |
7409 | ||
55066b9e | 7410 | - (id) initWithDatabase:(Database *)database source:(Source *)source; |
5829aea2 | 7411 | - (void) editButtonClicked; |
7585ce66 | 7412 | |
bc11cf5b | 7413 | @end |
b5e7eebb | 7414 | |
5829aea2 | 7415 | @implementation SectionsController |
b5e7eebb | 7416 | |
fe8e721f | 7417 | - (NSURL *) navigationURL { |
55066b9e JF |
7418 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]]; |
7419 | } | |
7420 | ||
7421 | - (Source *) source { | |
7422 | if (key_ == nil) | |
7423 | return nil; | |
7424 | return [database_ sourceWithKey:key_]; | |
fe8e721f GP |
7425 | } |
7426 | ||
a784d0a4 | 7427 | - (void) updateNavigationItem { |
8e5b801a | 7428 | [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")]; |
a784d0a4 GP |
7429 | if ([sections_ count] == 0) { |
7430 | [[self navigationItem] setRightBarButtonItem:nil]; | |
7431 | } else { | |
7432 | [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc] | |
8e5b801a | 7433 | initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit) |
a784d0a4 GP |
7434 | target:self |
7435 | action:@selector(editButtonClicked) | |
7436 | ] animated:([[self navigationItem] rightBarButtonItem] != nil)]; | |
7437 | } | |
7438 | } | |
7439 | ||
8e5b801a GP |
7440 | - (void) setEditing:(BOOL)editing animated:(BOOL)animated { |
7441 | [super setEditing:editing animated:animated]; | |
35f0a3b5 | 7442 | |
8e5b801a | 7443 | if (editing) |
5829aea2 GP |
7444 | [list_ reloadData]; |
7445 | else | |
7446 | [delegate_ updateData]; | |
7585ce66 | 7447 | |
a784d0a4 | 7448 | [self updateNavigationItem]; |
b5e7eebb GP |
7449 | } |
7450 | ||
5829aea2 GP |
7451 | - (void) viewDidAppear:(BOOL)animated { |
7452 | [super viewDidAppear:animated]; | |
7453 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
7585ce66 JF |
7454 | } |
7455 | ||
5829aea2 GP |
7456 | - (void) viewWillDisappear:(BOOL)animated { |
7457 | [super viewWillDisappear:animated]; | |
31eedaae | 7458 | [self setEditing:NO]; |
7585ce66 JF |
7459 | } |
7460 | ||
5829aea2 | 7461 | - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath { |
b3551da8 | 7462 | Section *section = nil; |
8e5b801a | 7463 | int index = [indexPath row]; |
b3551da8 | 7464 | if (![self isEditing]) { |
666b48ad | 7465 | index -= 1; |
b3551da8 GP |
7466 | if (index >= 0) |
7467 | section = [filtered_ objectAtIndex:index]; | |
7468 | } else { | |
7469 | section = [sections_ objectAtIndex:index]; | |
7470 | } | |
5829aea2 GP |
7471 | return section; |
7472 | } | |
7585ce66 | 7473 | |
5829aea2 | 7474 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
8e5b801a GP |
7475 | if ([self isEditing]) |
7476 | return [sections_ count]; | |
7477 | else | |
7478 | return [filtered_ count] + 1; | |
7585ce66 JF |
7479 | } |
7480 | ||
5829aea2 GP |
7481 | /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
7482 | return 45.0f; | |
7483 | }*/ | |
7585ce66 | 7484 | |
5829aea2 GP |
7485 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
7486 | static NSString *reuseIdentifier = @"SectionCell"; | |
7585ce66 | 7487 | |
35f0a3b5 | 7488 | SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier]; |
5829aea2 GP |
7489 | if (cell == nil) |
7490 | cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease]; | |
7585ce66 | 7491 | |
8e5b801a | 7492 | [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]]; |
54043703 | 7493 | |
5829aea2 | 7494 | return cell; |
54043703 JF |
7495 | } |
7496 | ||
5829aea2 | 7497 | - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
8e5b801a | 7498 | if ([self isEditing]) |
54043703 | 7499 | return; |
7585ce66 | 7500 | |
5829aea2 | 7501 | Section *section = [self sectionAtIndexPath:indexPath]; |
7585ce66 | 7502 | |
5829aea2 GP |
7503 | SectionController *controller = [[[SectionController alloc] |
7504 | initWithDatabase:database_ | |
55066b9e | 7505 | source:[self source] |
5829aea2 GP |
7506 | section:[section name] |
7507 | ] autorelease]; | |
7508 | [controller setDelegate:delegate_]; | |
7585ce66 | 7509 | |
5829aea2 | 7510 | [[self navigationController] pushViewController:controller animated:YES]; |
7585ce66 JF |
7511 | } |
7512 | ||
fe8e721f | 7513 | - (void) loadView { |
e8cbebe4 | 7514 | list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]; |
fe8e721f | 7515 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
86a333c6 | 7516 | [list_ setRowHeight:46]; |
7b33d201 | 7517 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f | 7518 | [list_ setDelegate:self]; |
e8cbebe4 | 7519 | [self setView:list_]; |
fe8e721f GP |
7520 | } |
7521 | ||
7522 | - (void) viewDidLoad { | |
7d887d0b JF |
7523 | [super viewDidLoad]; |
7524 | ||
fe8e721f GP |
7525 | [[self navigationItem] setTitle:UCLocalize("SECTIONS")]; |
7526 | } | |
7527 | ||
7528 | - (void) releaseSubviews { | |
fe8e721f | 7529 | list_ = nil; |
7be3eb32 | 7530 | |
4f9acb7c JF |
7531 | sections_ = nil; |
7532 | filtered_ = nil; | |
7533 | ||
7be3eb32 | 7534 | [super releaseSubviews]; |
fe8e721f GP |
7535 | } |
7536 | ||
55066b9e | 7537 | - (id) initWithDatabase:(Database *)database source:(Source *)source { |
5829aea2 GP |
7538 | if ((self = [super init]) != nil) { |
7539 | database_ = database; | |
55066b9e | 7540 | key_ = [source key]; |
5829aea2 | 7541 | } return self; |
7585ce66 JF |
7542 | } |
7543 | ||
5829aea2 | 7544 | - (void) reloadData { |
fe8e721f GP |
7545 | [super reloadData]; |
7546 | ||
5829aea2 | 7547 | NSArray *packages = [database_ packages]; |
7585ce66 | 7548 | |
4f9acb7c JF |
7549 | sections_ = [NSMutableArray arrayWithCapacity:16]; |
7550 | filtered_ = [NSMutableArray arrayWithCapacity:16]; | |
7585ce66 | 7551 | |
5829aea2 | 7552 | NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]); |
7585ce66 | 7553 | |
55066b9e JF |
7554 | Source *source([self source]); |
7555 | ||
5829aea2 GP |
7556 | _trace(); |
7557 | for (Package *package in packages) { | |
55066b9e JF |
7558 | if (source != nil && [package source] != source) |
7559 | continue; | |
7560 | ||
5829aea2 GP |
7561 | NSString *name([package section]); |
7562 | NSString *key(name == nil ? @"" : name); | |
7585ce66 | 7563 | |
5829aea2 | 7564 | Section *section; |
7585ce66 | 7565 | |
5829aea2 GP |
7566 | _profile(SectionsView$reloadData$Section) |
7567 | section = [sections objectForKey:key]; | |
7568 | if (section == nil) { | |
7569 | _profile(SectionsView$reloadData$Section$Allocate) | |
729bc910 | 7570 | section = [[[Section alloc] initWithName:key localize:YES] autorelease]; |
5829aea2 GP |
7571 | [sections setObject:section forKey:key]; |
7572 | _end | |
7573 | } | |
7574 | _end | |
7585ce66 | 7575 | |
5829aea2 | 7576 | [section addToCount]; |
7585ce66 | 7577 | |
5829aea2 | 7578 | _profile(SectionsView$reloadData$Filter) |
826318ca | 7579 | if (![package visible]) |
5829aea2 GP |
7580 | continue; |
7581 | _end | |
7585ce66 | 7582 | |
5829aea2 GP |
7583 | [section addToRow]; |
7584 | } | |
7585 | _trace(); | |
7585ce66 | 7586 | |
5829aea2 | 7587 | [sections_ addObjectsFromArray:[sections allValues]]; |
7585ce66 | 7588 | |
5829aea2 | 7589 | [sections_ sortUsingSelector:@selector(compareByLocalized:)]; |
7585ce66 | 7590 | |
7b33d201 | 7591 | for (Section *section in (id) sections_) { |
5829aea2 GP |
7592 | size_t count([section row]); |
7593 | if (count == 0) | |
7594 | continue; | |
7585ce66 | 7595 | |
5829aea2 GP |
7596 | section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease]; |
7597 | [section setCount:count]; | |
7598 | [filtered_ addObject:section]; | |
7599 | } | |
7585ce66 | 7600 | |
a784d0a4 | 7601 | [self updateNavigationItem]; |
5829aea2 GP |
7602 | [list_ reloadData]; |
7603 | _trace(); | |
7604 | } | |
7585ce66 | 7605 | |
6840bff3 | 7606 | - (void) editButtonClicked { |
8e5b801a | 7607 | [self setEditing:![self isEditing] animated:YES]; |
5829aea2 | 7608 | } |
7585ce66 | 7609 | |
5829aea2 GP |
7610 | @end |
7611 | /* }}} */ | |
7585ce66 | 7612 | |
5829aea2 | 7613 | /* Changes Controller {{{ */ |
e5491e28 | 7614 | @interface ChangesController : FilteredPackageListController { |
5829aea2 | 7615 | unsigned upgrades_; |
5829aea2 | 7616 | } |
7585ce66 | 7617 | |
ea3bb538 | 7618 | - (id) initWithDatabase:(Database *)database; |
7585ce66 | 7619 | |
5829aea2 | 7620 | @end |
7585ce66 | 7621 | |
5829aea2 | 7622 | @implementation ChangesController |
7585ce66 | 7623 | |
e5491e28 JF |
7624 | - (NSURL *) referrerURL { |
7625 | return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/changes/", UI_]]; | |
b5e7eebb GP |
7626 | } |
7627 | ||
e5491e28 JF |
7628 | - (NSURL *) navigationURL { |
7629 | return [NSURL URLWithString:@"cydia://changes"]; | |
5829aea2 | 7630 | } |
b5e7eebb | 7631 | |
5829aea2 GP |
7632 | - (Package *) packageAtIndexPath:(NSIndexPath *)path { |
7633 | @synchronized (database_) { | |
7634 | if ([database_ era] != era_) | |
7635 | return nil; | |
b5e7eebb | 7636 | |
5829aea2 GP |
7637 | NSUInteger sectionIndex([path section]); |
7638 | if (sectionIndex >= [sections_ count]) | |
7639 | return nil; | |
7640 | Section *section([sections_ objectAtIndex:sectionIndex]); | |
7641 | NSInteger row([path row]); | |
56bf1e78 | 7642 | return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease]; |
5829aea2 | 7643 | } } |
b5e7eebb | 7644 | |
0e15b67c JF |
7645 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
7646 | NSString *context([alert context]); | |
7647 | ||
7648 | if ([context isEqualToString:@"norefresh"]) | |
7649 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
7650 | } | |
7651 | ||
e67ebdad JF |
7652 | - (void) setLeftBarButtonItem { |
7653 | if ([delegate_ updating]) | |
7654 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
7655 | initWithTitle:UCLocalize("CANCEL") | |
7656 | style:UIBarButtonItemStyleDone | |
7657 | target:self | |
7658 | action:@selector(cancelButtonClicked) | |
7659 | ] autorelease] animated:YES]; | |
7660 | else | |
7661 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
7662 | initWithTitle:UCLocalize("REFRESH") | |
7663 | style:UIBarButtonItemStylePlain | |
7664 | target:self | |
7665 | action:@selector(refreshButtonClicked) | |
7666 | ] autorelease] animated:YES]; | |
7667 | } | |
7668 | ||
5829aea2 | 7669 | - (void) refreshButtonClicked { |
e67ebdad JF |
7670 | if ([delegate_ requestUpdate]) |
7671 | [self setLeftBarButtonItem]; | |
7672 | } | |
0e15b67c | 7673 | |
e67ebdad JF |
7674 | - (void) cancelButtonClicked { |
7675 | [delegate_ cancelUpdate]; | |
b5e7eebb GP |
7676 | } |
7677 | ||
5829aea2 GP |
7678 | - (void) upgradeButtonClicked { |
7679 | [delegate_ distUpgrade]; | |
cb6b3a7b | 7680 | [[self navigationItem] setRightBarButtonItem:nil animated:YES]; |
b5e7eebb GP |
7681 | } |
7682 | ||
e5491e28 JF |
7683 | - (bool) shouldYield { |
7684 | return true; | |
fe8e721f GP |
7685 | } |
7686 | ||
e5491e28 JF |
7687 | - (bool) shouldBlock { |
7688 | return true; | |
fe8e721f GP |
7689 | } |
7690 | ||
e5491e28 JF |
7691 | - (void) useFilter { |
7692 | @synchronized (self) { | |
7693 | [self setFilter:[](Package *package) { | |
7694 | return [package upgradableAndEssential:YES] || [package visible]; | |
7695 | }]; | |
4f9acb7c | 7696 | |
e5491e28 JF |
7697 | [self setSorter:[](NSMutableArray *packages) { |
7698 | [packages radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL]; | |
7699 | }]; | |
7700 | } } | |
5829aea2 | 7701 | |
ea3bb538 | 7702 | - (id) initWithDatabase:(Database *)database { |
e5491e28 JF |
7703 | if ((self = [super initWithDatabase:database title:UCLocalize("CHANGES")]) != nil) { |
7704 | [self useFilter]; | |
5829aea2 | 7705 | } return self; |
807ae6d7 JF |
7706 | } |
7707 | ||
946c4377 JF |
7708 | - (void) viewDidLoad { |
7709 | [super viewDidLoad]; | |
7710 | [self setLeftBarButtonItem]; | |
7711 | } | |
7712 | ||
7713 | - (void) viewWillAppear:(BOOL)animated { | |
7714 | [super viewWillAppear:animated]; | |
7715 | [self setLeftBarButtonItem]; | |
7716 | } | |
7717 | ||
e5491e28 | 7718 | - (void) reloadData { |
e67ebdad | 7719 | [self setLeftBarButtonItem]; |
e5491e28 JF |
7720 | [super reloadData]; |
7721 | } | |
e67ebdad | 7722 | |
e5491e28 JF |
7723 | - (NSArray *) sectionsForPackages:(NSMutableArray *)packages { |
7724 | NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]); | |
bdca103d | 7725 | |
5829aea2 GP |
7726 | Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease]; |
7727 | Section *ignored = nil; | |
7728 | Section *section = nil; | |
7729 | time_t last = 0; | |
807ae6d7 | 7730 | |
5829aea2 GP |
7731 | upgrades_ = 0; |
7732 | bool unseens = false; | |
807ae6d7 | 7733 | |
5829aea2 | 7734 | CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle)); |
807ae6d7 | 7735 | |
e5491e28 JF |
7736 | for (size_t offset = 0, count = [packages count]; offset != count; ++offset) { |
7737 | Package *package = [packages objectAtIndex:offset]; | |
807ae6d7 | 7738 | |
5829aea2 | 7739 | BOOL uae = [package upgradableAndEssential:YES]; |
807ae6d7 | 7740 | |
5829aea2 GP |
7741 | if (!uae) { |
7742 | unseens = true; | |
7743 | time_t seen([package seen]); | |
d90a4cd6 | 7744 | |
5829aea2 GP |
7745 | if (section == nil || last != seen) { |
7746 | last = seen; | |
7747 | ||
7748 | NSString *name; | |
7749 | name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]); | |
7750 | [name autorelease]; | |
7751 | ||
7752 | _profile(ChangesController$reloadData$Allocate) | |
7753 | name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name]; | |
7754 | section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease]; | |
e5491e28 | 7755 | [sections addObject:section]; |
5829aea2 GP |
7756 | _end |
7757 | } | |
7758 | ||
7759 | [section addToCount]; | |
7760 | } else if ([package ignored]) { | |
7761 | if (ignored == nil) { | |
7762 | ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease]; | |
7763 | } | |
7764 | [ignored addToCount]; | |
7765 | } else { | |
7766 | ++upgrades_; | |
7767 | [upgradable addToCount]; | |
7768 | } | |
7769 | } | |
7770 | _trace(); | |
7771 | ||
7772 | CFRelease(formatter); | |
7773 | ||
7774 | if (unseens) { | |
e5491e28 | 7775 | Section *last = [sections lastObject]; |
5829aea2 | 7776 | size_t count = [last count]; |
e5491e28 JF |
7777 | [packages removeObjectsInRange:NSMakeRange([packages count] - count, count)]; |
7778 | [sections removeLastObject]; | |
5829aea2 GP |
7779 | } |
7780 | ||
7781 | if ([ignored count] != 0) | |
e5491e28 | 7782 | [sections insertObject:ignored atIndex:0]; |
5829aea2 | 7783 | if (upgrades_ != 0) |
e5491e28 | 7784 | [sections insertObject:upgradable atIndex:0]; |
5829aea2 GP |
7785 | |
7786 | [list_ reloadData]; | |
7787 | ||
cb6b3a7b JF |
7788 | [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc] |
7789 | initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]] | |
7790 | style:UIBarButtonItemStylePlain | |
7791 | target:self | |
7792 | action:@selector(upgradeButtonClicked) | |
7793 | ] autorelease]) animated:YES]; | |
5829aea2 | 7794 | |
e5491e28 | 7795 | return sections; |
a70cd4ba JF |
7796 | } |
7797 | ||
5829aea2 GP |
7798 | @end |
7799 | /* }}} */ | |
7800 | /* Search Controller {{{ */ | |
f50860ee | 7801 | @interface SearchController : FilteredPackageListController < |
5829aea2 GP |
7802 | UISearchBarDelegate |
7803 | > { | |
bf7c998c | 7804 | _H<UISearchBar, 1> search_; |
fe8e721f | 7805 | BOOL searchloaded_; |
89bdef78 | 7806 | bool summary_; |
5829aea2 GP |
7807 | } |
7808 | ||
43625891 | 7809 | - (id) initWithDatabase:(Database *)database query:(NSString *)query; |
5829aea2 | 7810 | - (void) reloadData; |
d90a4cd6 GP |
7811 | |
7812 | @end | |
7813 | ||
5829aea2 | 7814 | @implementation SearchController |
d90a4cd6 | 7815 | |
f050e4d9 JF |
7816 | - (NSURL *) referrerURL { |
7817 | return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/search?q=%@", UI_, [([search_ text] ?: @"") stringByAddingPercentEscapesIncludingReserved]]]; | |
7818 | } | |
7819 | ||
fe8e721f | 7820 | - (NSURL *) navigationURL { |
35f0a3b5 GP |
7821 | if ([search_ text] == nil || [[search_ text] isEqualToString:@""]) |
7822 | return [NSURL URLWithString:@"cydia://search"]; | |
7823 | else | |
b90c7892 | 7824 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [[search_ text] stringByAddingPercentEscapesIncludingReserved]]]; |
fe8e721f GP |
7825 | } |
7826 | ||
096e25d8 | 7827 | - (NSArray *) termsForQuery:(NSString *)query { |
945812b9 JF |
7828 | NSMutableArray *terms([NSMutableArray arrayWithCapacity:2]); |
7829 | for (NSString *component in [query componentsSeparatedByString:@" "]) | |
7830 | if ([component length] != 0) | |
7831 | [terms addObject:component]; | |
7832 | ||
7833 | return terms; | |
096e25d8 JF |
7834 | } |
7835 | ||
59f3d290 | 7836 | - (void) useSearch { |
89bdef78 JF |
7837 | _H<NSArray> query([self termsForQuery:[search_ text]]); |
7838 | summary_ = false; | |
7839 | ||
7840 | @synchronized (self) { | |
7841 | [self setFilter:[=](Package *package) { | |
7842 | if (![package unfiltered]) | |
7843 | return false; | |
7844 | if (![package matches:query]) | |
7845 | return false; | |
7846 | return true; | |
7847 | }]; | |
7848 | ||
7849 | [self setSorter:[](NSMutableArray *packages) { | |
7850 | [packages radixSortUsingSelector:@selector(rank)]; | |
7851 | }]; | |
7852 | } | |
7853 | ||
59f3d290 JF |
7854 | [self clearData]; |
7855 | [self reloadData]; | |
7856 | } | |
7857 | ||
89bdef78 JF |
7858 | - (void) usePrefix:(NSString *)prefix { |
7859 | _H<NSString> query(prefix); | |
7860 | summary_ = true; | |
7861 | ||
7862 | @synchronized (self) { | |
7863 | [self setFilter:[=](Package *package) { | |
7864 | if ([query length] == 0) | |
7865 | return false; | |
7866 | if (![package unfiltered]) | |
7867 | return false; | |
7868 | if ([[package name] compare:query options:MatchCompareOptions_ range:NSMakeRange(0, [query length])] != NSOrderedSame) | |
7869 | return false; | |
7870 | return true; | |
7871 | }]; | |
7872 | ||
7873 | [self setSorter:nullptr]; | |
7874 | } | |
7875 | ||
7876 | [self reloadData]; | |
7877 | } | |
7878 | ||
3025d5b4 | 7879 | - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar { |
59f3d290 | 7880 | [self clearData]; |
89bdef78 | 7881 | [self usePrefix:[search_ text]]; |
3025d5b4 JF |
7882 | } |
7883 | ||
7884 | - (void) searchBarButtonClicked:(UISearchBar *)searchBar { | |
5829aea2 | 7885 | [search_ resignFirstResponder]; |
59f3d290 | 7886 | [self useSearch]; |
5829aea2 GP |
7887 | } |
7888 | ||
3025d5b4 JF |
7889 | - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar { |
7890 | [search_ setText:@""]; | |
7891 | [self searchBarButtonClicked:searchBar]; | |
7892 | } | |
7893 | ||
7894 | - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar { | |
7895 | [self searchBarButtonClicked:searchBar]; | |
7896 | } | |
7897 | ||
5829aea2 | 7898 | - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text { |
89bdef78 | 7899 | [self usePrefix:text]; |
5829aea2 GP |
7900 | } |
7901 | ||
3025d5b4 | 7902 | - (bool) shouldYield { |
56bf1e78 JF |
7903 | return YES; |
7904 | } | |
7905 | ||
7906 | - (bool) shouldBlock { | |
89bdef78 | 7907 | return !summary_; |
3025d5b4 JF |
7908 | } |
7909 | ||
59f3d290 | 7910 | - (bool) isSummarized { |
89bdef78 | 7911 | return summary_; |
59f3d290 JF |
7912 | } |
7913 | ||
9c5737d5 JF |
7914 | - (bool) showsSections { |
7915 | return false; | |
7916 | } | |
7917 | ||
43625891 | 7918 | - (id) initWithDatabase:(Database *)database query:(NSString *)query { |
89bdef78 | 7919 | if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH")])) { |
900095fd | 7920 | search_ = [[[UISearchBar alloc] init] autorelease]; |
830efb5d | 7921 | [search_ setPlaceholder:UCLocalize("SEARCH_EX")]; |
900095fd | 7922 | [search_ setDelegate:self]; |
43625891 | 7923 | |
830efb5d JF |
7924 | UITextField *textField; |
7925 | if ([search_ respondsToSelector:@selector(searchField)]) | |
7926 | textField = [search_ searchField]; | |
7927 | else | |
7928 | textField = MSHookIvar<UITextField *>(search_, "_searchField"); | |
7929 | ||
7930 | [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; | |
7931 | [textField setEnablesReturnKeyAutomatically:NO]; | |
7932 | [[self navigationItem] setTitleView:textField]; | |
7933 | ||
43625891 JF |
7934 | if (query != nil) |
7935 | [search_ setText:query]; | |
89bdef78 | 7936 | [self useSearch]; |
fe8e721f | 7937 | } return self; |
5829aea2 GP |
7938 | } |
7939 | ||
6840bff3 | 7940 | - (void) viewDidAppear:(BOOL)animated { |
5829aea2 | 7941 | [super viewDidAppear:animated]; |
fe8e721f GP |
7942 | |
7943 | if (!searchloaded_) { | |
7944 | searchloaded_ = YES; | |
7945 | [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)]; | |
5829aea2 | 7946 | [search_ layoutSubviews]; |
d90a4cd6 | 7947 | } |
058813ae GP |
7948 | |
7949 | if ([self isSummarized]) | |
7950 | [search_ becomeFirstResponder]; | |
5829aea2 | 7951 | } |
d90a4cd6 | 7952 | |
d90a4cd6 | 7953 | - (void) reloadData { |
f50860ee | 7954 | [self resetCursor]; |
9dac415b | 7955 | [super reloadData]; |
d90a4cd6 GP |
7956 | } |
7957 | ||
5829aea2 GP |
7958 | - (void) didSelectPackage:(Package *)package { |
7959 | [search_ resignFirstResponder]; | |
7960 | [super didSelectPackage:package]; | |
d90a4cd6 GP |
7961 | } |
7962 | ||
7963 | @end | |
7964 | /* }}} */ | |
5829aea2 | 7965 | /* Package Settings Controller {{{ */ |
cd79e8cf | 7966 | @interface PackageSettingsController : CyteViewController < |
c21004b9 JF |
7967 | UITableViewDataSource, |
7968 | UITableViewDelegate | |
7969 | > { | |
807ae6d7 | 7970 | _transient Database *database_; |
7b33d201 JF |
7971 | _H<NSString> name_; |
7972 | _H<Package> package_; | |
bf7c998c | 7973 | _H<UITableView, 2> table_; |
7b33d201 JF |
7974 | _H<UISwitch> subscribedSwitch_; |
7975 | _H<UISwitch> ignoredSwitch_; | |
7976 | _H<UITableViewCell> subscribedCell_; | |
7977 | _H<UITableViewCell> ignoredCell_; | |
807ae6d7 JF |
7978 | } |
7979 | ||
5829aea2 | 7980 | - (id) initWithDatabase:(Database *)database package:(NSString *)package; |
c21004b9 | 7981 | |
807ae6d7 JF |
7982 | @end |
7983 | ||
5829aea2 | 7984 | @implementation PackageSettingsController |
807ae6d7 | 7985 | |
fe8e721f | 7986 | - (NSURL *) navigationURL { |
8861e953 | 7987 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]]; |
fe8e721f GP |
7988 | } |
7989 | ||
5829aea2 GP |
7990 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
7991 | if (package_ == nil) | |
7992 | return 0; | |
e954c30a | 7993 | |
2136717a DH |
7994 | if ([package_ installed] == nil) |
7995 | return 1; | |
7996 | else | |
7997 | return 2; | |
e954c30a GP |
7998 | } |
7999 | ||
5829aea2 GP |
8000 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
8001 | if (package_ == nil) | |
8002 | return 0; | |
8003 | ||
2136717a DH |
8004 | // both sections contain just one item right now. |
8005 | return 1; | |
b5e7eebb GP |
8006 | } |
8007 | ||
5829aea2 | 8008 | - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { |
2136717a | 8009 | return nil; |
e954c30a GP |
8010 | } |
8011 | ||
5829aea2 | 8012 | - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section { |
2136717a DH |
8013 | if (section == 0) |
8014 | return UCLocalize("SHOW_ALL_CHANGES_EX"); | |
8015 | else | |
8016 | return UCLocalize("IGNORE_UPGRADES_EX"); | |
807ae6d7 JF |
8017 | } |
8018 | ||
5829aea2 GP |
8019 | - (void) onSubscribed:(id)control { |
8020 | bool value([control isOn]); | |
8021 | if (package_ == nil) | |
8022 | return; | |
8023 | if ([package_ setSubscribed:value]) | |
8024 | [delegate_ updateData]; | |
807ae6d7 JF |
8025 | } |
8026 | ||
e5e70358 JF |
8027 | - (void) _updateIgnored { |
8028 | const char *package([name_ UTF8String]); | |
8029 | bool on([ignoredSwitch_ isOn]); | |
8030 | ||
55eb40b9 JF |
8031 | FILE *dpkg(popen("/usr/libexec/cydia/cydo --set-selections", "w")); |
8032 | fwrite(package, strlen(package), 1, dpkg); | |
e5e70358 | 8033 | |
55eb40b9 JF |
8034 | if (on) |
8035 | fwrite(" hold\n", 6, 1, dpkg); | |
8036 | else | |
8037 | fwrite(" install\n", 9, 1, dpkg); | |
e5e70358 | 8038 | |
55eb40b9 | 8039 | pclose(dpkg); |
e5e70358 JF |
8040 | } |
8041 | ||
5829aea2 | 8042 | - (void) onIgnored:(id)control { |
e5e70358 JF |
8043 | NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]); |
8044 | [invocation setTarget:self]; | |
8045 | [invocation setSelector:@selector(_updateIgnored)]; | |
8046 | ||
8047 | [delegate_ reloadDataWithInvocation:invocation]; | |
5829aea2 | 8048 | } |
807ae6d7 | 8049 | |
46aa9775 | 8050 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
5829aea2 GP |
8051 | if (package_ == nil) |
8052 | return nil; | |
b5e7eebb | 8053 | |
2136717a | 8054 | switch ([indexPath section]) { |
5829aea2 GP |
8055 | case 0: return subscribedCell_; |
8056 | case 1: return ignoredCell_; | |
36fbb2aa | 8057 | |
5829aea2 GP |
8058 | _nodefault |
8059 | } | |
807ae6d7 | 8060 | |
5829aea2 | 8061 | return nil; |
807ae6d7 JF |
8062 | } |
8063 | ||
fe8e721f | 8064 | - (void) loadView { |
39470a3a JF |
8065 | UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]); |
8066 | [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; | |
8067 | [self setView:view]; | |
807ae6d7 | 8068 | |
7b33d201 | 8069 | table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease]; |
fe8e721f | 8070 | [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
7b33d201 | 8071 | [(UITableView *) table_ setDataSource:self]; |
fe8e721f | 8072 | [table_ setDelegate:self]; |
39470a3a | 8073 | [view addSubview:table_]; |
807ae6d7 | 8074 | |
7b33d201 | 8075 | subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease]; |
fe8e721f GP |
8076 | [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin]; |
8077 | [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged]; | |
807ae6d7 | 8078 | |
7b33d201 | 8079 | ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease]; |
fe8e721f GP |
8080 | [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin]; |
8081 | [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged]; | |
807ae6d7 | 8082 | |
7b33d201 | 8083 | subscribedCell_ = [[[UITableViewCell alloc] init] autorelease]; |
fe8e721f GP |
8084 | [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")]; |
8085 | [subscribedCell_ setAccessoryView:subscribedSwitch_]; | |
8086 | [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone]; | |
5829aea2 | 8087 | |
7b33d201 | 8088 | ignoredCell_ = [[[UITableViewCell alloc] init] autorelease]; |
fe8e721f GP |
8089 | [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")]; |
8090 | [ignoredCell_ setAccessoryView:ignoredSwitch_]; | |
8091 | [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone]; | |
fe8e721f | 8092 | } |
5829aea2 | 8093 | |
fe8e721f | 8094 | - (void) viewDidLoad { |
7d887d0b JF |
8095 | [super viewDidLoad]; |
8096 | ||
fe8e721f GP |
8097 | [[self navigationItem] setTitle:UCLocalize("SETTINGS")]; |
8098 | } | |
5829aea2 | 8099 | |
fe8e721f | 8100 | - (void) releaseSubviews { |
fe8e721f | 8101 | ignoredCell_ = nil; |
fe8e721f | 8102 | subscribedCell_ = nil; |
fe8e721f | 8103 | table_ = nil; |
fe8e721f | 8104 | ignoredSwitch_ = nil; |
fe8e721f | 8105 | subscribedSwitch_ = nil; |
7be3eb32 JF |
8106 | |
8107 | [super releaseSubviews]; | |
fe8e721f GP |
8108 | } |
8109 | ||
8110 | - (id) initWithDatabase:(Database *)database package:(NSString *)package { | |
6840bff3 | 8111 | if ((self = [super init]) != nil) { |
fe8e721f | 8112 | database_ = database; |
7b33d201 | 8113 | name_ = package; |
807ae6d7 JF |
8114 | } return self; |
8115 | } | |
8116 | ||
8117 | - (void) reloadData { | |
fe8e721f GP |
8118 | [super reloadData]; |
8119 | ||
5829aea2 | 8120 | package_ = [database_ packageWithName:name_]; |
f3e2c0ac | 8121 | |
5829aea2 | 8122 | if (package_ != nil) { |
5829aea2 GP |
8123 | [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO]; |
8124 | [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO]; | |
f3e2c0ac | 8125 | } // XXX: what now, G? |
dc5812ec | 8126 | |
5829aea2 GP |
8127 | [table_ reloadData]; |
8128 | } | |
6d9712c4 | 8129 | |
dc5812ec | 8130 | @end |
2367a917 | 8131 | /* }}} */ |
d90a4cd6 | 8132 | |
5829aea2 | 8133 | /* Installed Controller {{{ */ |
f50860ee | 8134 | @interface InstalledController : FilteredPackageListController { |
821b1a0c | 8135 | bool sectioned_; |
dc5812ec JF |
8136 | } |
8137 | ||
5829aea2 | 8138 | - (id) initWithDatabase:(Database *)database; |
5829aea2 | 8139 | - (void) queueStatusDidChange; |
dc5812ec | 8140 | |
dc5812ec JF |
8141 | @end |
8142 | ||
5829aea2 | 8143 | @implementation InstalledController |
b4d89997 | 8144 | |
f050e4d9 JF |
8145 | - (NSURL *) referrerURL { |
8146 | return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/installed/", UI_]]; | |
8147 | } | |
8148 | ||
fe8e721f GP |
8149 | - (NSURL *) navigationURL { |
8150 | return [NSURL URLWithString:@"cydia://installed"]; | |
8151 | } | |
b5e7eebb | 8152 | |
b3906a21 | 8153 | - (void) useRecent { |
821b1a0c JF |
8154 | sectioned_ = false; |
8155 | ||
8156 | @synchronized (self) { | |
8157 | [self setFilter:[](Package *package) { | |
8158 | return ![package uninstalled] && package->role_ < 7; | |
8159 | }]; | |
8160 | ||
8161 | [self setSorter:[](NSMutableArray *packages) { | |
b3906a21 | 8162 | [packages radixSortUsingSelector:@selector(recent)]; |
821b1a0c JF |
8163 | }]; |
8164 | } } | |
8165 | ||
89bdef78 | 8166 | - (void) useFilter:(UISegmentedControl *)segmented { |
821b1a0c JF |
8167 | NSInteger selected([segmented selectedSegmentIndex]); |
8168 | if (selected == 2) | |
b3906a21 | 8169 | return [self useRecent]; |
821b1a0c JF |
8170 | bool simple(selected == 0); |
8171 | sectioned_ = true; | |
89bdef78 JF |
8172 | |
8173 | @synchronized (self) { | |
8174 | [self setFilter:[=](Package *package) { | |
8175 | return ![package uninstalled] && package->role_ <= (simple ? 1 : 3); | |
8176 | }]; | |
821b1a0c JF |
8177 | |
8178 | [self setSorter:nullptr]; | |
89bdef78 JF |
8179 | } } |
8180 | ||
98ddcefd JF |
8181 | - (NSArray *) sectionsForPackages:(NSMutableArray *)packages { |
8182 | if (sectioned_) | |
8183 | return [super sectionsForPackages:packages]; | |
8184 | ||
8185 | CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterLongStyle, kCFDateFormatterNoStyle)); | |
8186 | ||
8187 | NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]); | |
7108bdd2 | 8188 | Section *section(nil); |
98ddcefd JF |
8189 | time_t last(0); |
8190 | ||
8191 | for (size_t offset(0), count([packages count]); offset != count; ++offset) { | |
8192 | Package *package([packages objectAtIndex:offset]); | |
8193 | ||
b3906a21 | 8194 | time_t upgraded([package upgraded]); |
0cadb352 JF |
8195 | if (upgraded < 1168364520) |
8196 | upgraded = 0; | |
8197 | else | |
8198 | upgraded -= upgraded % (60 * 60 * 24); | |
98ddcefd | 8199 | |
b3906a21 JF |
8200 | if (section == nil || upgraded != last) { |
8201 | last = upgraded; | |
98ddcefd JF |
8202 | |
8203 | NSString *name; | |
0cadb352 JF |
8204 | if (upgraded == 0) |
8205 | continue; // XXX: name = UCLocalize("..."); | |
8206 | else { | |
8207 | name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:upgraded]); | |
8208 | [name autorelease]; | |
8209 | } | |
98ddcefd JF |
8210 | |
8211 | section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease]; | |
8212 | [sections addObject:section]; | |
8213 | } | |
8214 | ||
8215 | [section addToCount]; | |
8216 | } | |
8217 | ||
8218 | CFRelease(formatter); | |
8219 | return sections; | |
8220 | } | |
8221 | ||
5829aea2 | 8222 | - (id) initWithDatabase:(Database *)database { |
89bdef78 | 8223 | if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED")]) != nil) { |
c8fbe1f4 | 8224 | UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("USER"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]); |
3544397d JF |
8225 | [segmented setSelectedSegmentIndex:0]; |
8226 | [segmented setSegmentedControlStyle:UISegmentedControlStyleBar]; | |
8227 | [[self navigationItem] setTitleView:segmented]; | |
8228 | ||
8229 | [segmented addTarget:self action:@selector(modeChanged:) forEvents:UIControlEventValueChanged]; | |
89bdef78 | 8230 | [self useFilter:segmented]; |
3544397d | 8231 | |
5829aea2 GP |
8232 | [self queueStatusDidChange]; |
8233 | } return self; | |
dc5812ec JF |
8234 | } |
8235 | ||
5829aea2 GP |
8236 | #if !AlwaysReload |
8237 | - (void) queueButtonClicked { | |
8238 | [delegate_ queue]; | |
dc5812ec | 8239 | } |
5829aea2 | 8240 | #endif |
dc5812ec | 8241 | |
5829aea2 GP |
8242 | - (void) queueStatusDidChange { |
8243 | #if !AlwaysReload | |
55066b9e | 8244 | if (Queuing_) { |
7d3660da | 8245 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] |
55066b9e JF |
8246 | initWithTitle:UCLocalize("QUEUE") |
8247 | style:UIBarButtonItemStyleDone | |
8248 | target:self | |
8249 | action:@selector(queueButtonClicked) | |
8250 | ] autorelease]]; | |
8251 | } else { | |
7d3660da | 8252 | [[self navigationItem] setRightBarButtonItem:nil]; |
5829aea2 GP |
8253 | } |
8254 | #endif | |
dc5812ec JF |
8255 | } |
8256 | ||
3544397d | 8257 | - (void) modeChanged:(UISegmentedControl *)segmented { |
89bdef78 | 8258 | [self useFilter:segmented]; |
f50860ee | 8259 | [self reloadData]; |
9a7b04c5 JF |
8260 | } |
8261 | ||
5829aea2 GP |
8262 | @end |
8263 | /* }}} */ | |
b5e7eebb | 8264 | |
5829aea2 | 8265 | /* Source Cell {{{ */ |
a9311516 | 8266 | @interface SourceCell : CyteTableViewCell < |
21ac0ce2 JF |
8267 | CyteTableViewCellDelegate, |
8268 | SourceDelegate | |
5829aea2 | 8269 | > { |
21ac0ce2 | 8270 | _H<Source, 1> source_; |
02735663 | 8271 | _H<NSURL> url_; |
7b33d201 JF |
8272 | _H<UIImage> icon_; |
8273 | _H<NSString> origin_; | |
8274 | _H<NSString> label_; | |
21ac0ce2 | 8275 | _H<UIActivityIndicatorView> indicator_; |
5829aea2 | 8276 | } |
dc5812ec | 8277 | |
5829aea2 | 8278 | - (void) setSource:(Source *)source; |
21ac0ce2 | 8279 | - (void) setFetch:(NSNumber *)fetch; |
6da1297d | 8280 | |
5829aea2 | 8281 | @end |
dc5812ec | 8282 | |
5829aea2 | 8283 | @implementation SourceCell |
36bb2ca2 | 8284 | |
02735663 JF |
8285 | - (void) _setImage:(NSArray *)data { |
8286 | if ([url_ isEqual:[data objectAtIndex:0]]) { | |
8287 | icon_ = [data objectAtIndex:1]; | |
8288 | [content_ setNeedsDisplay]; | |
8289 | } | |
8252b666 JF |
8290 | } |
8291 | ||
7bd76e97 | 8292 | - (void) _setSource:(NSURL *) url { |
8252b666 JF |
8293 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
8294 | ||
7bd76e97 JF |
8295 | if (NSData *data = [NSURLConnection |
8296 | sendSynchronousRequest:[NSURLRequest | |
8297 | requestWithURL:url | |
de5f2673 JF |
8298 | cachePolicy:NSURLRequestUseProtocolCachePolicy |
8299 | timeoutInterval:10 | |
7bd76e97 JF |
8300 | ] |
8301 | ||
8302 | returningResponse:NULL | |
8303 | error:NULL | |
8304 | ]) | |
8305 | if (UIImage *image = [UIImage imageWithData:data]) | |
02735663 | 8306 | [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO]; |
8252b666 JF |
8307 | |
8308 | [pool release]; | |
8309 | } | |
8310 | ||
5829aea2 | 8311 | - (void) setSource:(Source *)source { |
21ac0ce2 JF |
8312 | source_ = source; |
8313 | [source_ setDelegate:self]; | |
8314 | ||
8315 | [self setFetch:[NSNumber numberWithBool:[source_ fetch]]]; | |
8316 | ||
8dbf3abc | 8317 | icon_ = [UIImage imageNamed:@"unknown.png"]; |
5829aea2 | 8318 | |
7b33d201 | 8319 | origin_ = [source name]; |
7bd76e97 | 8320 | label_ = [source rooturi]; |
5829aea2 GP |
8321 | |
8322 | [content_ setNeedsDisplay]; | |
8252b666 | 8323 | |
02735663 JF |
8324 | url_ = [source iconURL]; |
8325 | [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_]; | |
77801ff1 JF |
8326 | } |
8327 | ||
55066b9e | 8328 | - (void) setAllSource { |
21ac0ce2 JF |
8329 | source_ = nil; |
8330 | [indicator_ stopAnimating]; | |
8331 | ||
8dbf3abc | 8332 | icon_ = [UIImage imageNamed:@"folder.png"]; |
55066b9e JF |
8333 | origin_ = UCLocalize("ALL_SOURCES"); |
8334 | label_ = UCLocalize("ALL_SOURCES_EX"); | |
8335 | [content_ setNeedsDisplay]; | |
8336 | } | |
8337 | ||
5829aea2 GP |
8338 | - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { |
8339 | if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { | |
8340 | UIView *content([self contentView]); | |
8341 | CGRect bounds([content bounds]); | |
77801ff1 | 8342 | |
b97fcfc6 | 8343 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
5829aea2 GP |
8344 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
8345 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
8346 | [content addSubview:content_]; | |
dc5812ec | 8347 | |
5829aea2 GP |
8348 | [content_ setDelegate:self]; |
8349 | [content_ setOpaque:YES]; | |
53db9999 | 8350 | |
21ac0ce2 JF |
8351 | indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGraySmall] autorelease]; |
8352 | [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin];// | UIViewAutoresizingFlexibleBottomMargin]; | |
8353 | [content addSubview:indicator_]; | |
8354 | ||
53db9999 | 8355 | [[content_ layer] setContentsGravity:kCAGravityTopLeft]; |
5829aea2 GP |
8356 | } return self; |
8357 | } | |
b4d89997 | 8358 | |
21ac0ce2 JF |
8359 | - (void) layoutSubviews { |
8360 | [super layoutSubviews]; | |
8361 | ||
8362 | UIView *content([self contentView]); | |
8363 | CGRect bounds([content bounds]); | |
8364 | ||
8365 | CGRect frame([indicator_ frame]); | |
8366 | frame.origin.x = bounds.size.width - frame.size.width; | |
8323c1b9 | 8367 | frame.origin.y = Retina((bounds.size.height - frame.size.height) / 2); |
21ac0ce2 JF |
8368 | |
8369 | if (kCFCoreFoundationVersionNumber < 800) | |
8370 | frame.origin.x -= 8; | |
8371 | [indicator_ setFrame:frame]; | |
8372 | } | |
8373 | ||
003fc610 | 8374 | - (NSString *) accessibilityLabel { |
66abff39 | 8375 | return origin_; |
003fc610 GP |
8376 | } |
8377 | ||
5829aea2 GP |
8378 | - (void) drawContentRect:(CGRect)rect { |
8379 | bool highlighted(highlighted_); | |
8380 | float width(rect.size.width); | |
36bb2ca2 | 8381 | |
25c1dafb JF |
8382 | if (icon_ != nil) { |
8383 | CGRect rect; | |
8384 | rect.size = [(UIImage *) icon_ size]; | |
8385 | ||
8386 | while (rect.size.width > 32 || rect.size.height > 32) { | |
8387 | rect.size.width /= 2; | |
8388 | rect.size.height /= 2; | |
8389 | } | |
8390 | ||
86a333c6 JF |
8391 | rect.origin.x = 26 - rect.size.width / 2; |
8392 | rect.origin.y = 26 - rect.size.height / 2; | |
25c1dafb | 8393 | |
8323c1b9 | 8394 | [icon_ drawInRect:Retina(rect)]; |
25c1dafb | 8395 | } |
36bb2ca2 | 8396 | |
5d0438dc | 8397 | if (highlighted && kCFCoreFoundationVersionNumber < 800) |
5829aea2 | 8398 | UISetColor(White_); |
dc5812ec | 8399 | |
5829aea2 GP |
8400 | if (!highlighted) |
8401 | UISetColor(Black_); | |
ffb4fe6a | 8402 | [origin_ drawAtPoint:CGPointMake(52, 8) forWidth:(width - 49) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail]; |
f79a4512 | 8403 | |
5829aea2 | 8404 | if (!highlighted) |
e93fd095 | 8405 | UISetColor(Gray_); |
ffb4fe6a | 8406 | [label_ drawAtPoint:CGPointMake(52, 29) forWidth:(width - 49) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail]; |
5829aea2 | 8407 | } |
dc5812ec | 8408 | |
21ac0ce2 JF |
8409 | - (void) setFetch:(NSNumber *)fetch { |
8410 | if ([fetch boolValue]) | |
8411 | [indicator_ startAnimating]; | |
8412 | else | |
8413 | [indicator_ stopAnimating]; | |
8414 | } | |
8415 | ||
3f8edf70 GP |
8416 | @end |
8417 | /* }}} */ | |
8418 | /* Sources Controller {{{ */ | |
cd79e8cf | 8419 | @interface SourcesController : CyteViewController < |
5829aea2 GP |
8420 | UITableViewDataSource, |
8421 | UITableViewDelegate | |
8422 | > { | |
8423 | _transient Database *database_; | |
c33064f1 JF |
8424 | unsigned era_; |
8425 | ||
bf7c998c | 8426 | _H<UITableView, 2> list_; |
7b33d201 | 8427 | _H<NSMutableArray> sources_; |
5829aea2 | 8428 | int offset_; |
723a0072 | 8429 | |
7b33d201 JF |
8430 | _H<NSString> href_; |
8431 | _H<UIProgressHUD> hud_; | |
8432 | _H<NSError> error_; | |
dc63e78f | 8433 | |
5829aea2 GP |
8434 | NSURLConnection *trivial_bz2_; |
8435 | NSURLConnection *trivial_gz_; | |
b4d89997 | 8436 | |
5829aea2 GP |
8437 | BOOL cydia_; |
8438 | } | |
dc5812ec | 8439 | |
5829aea2 | 8440 | - (id) initWithDatabase:(Database *)database; |
31eedaae | 8441 | - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated; |
5829aea2 GP |
8442 | |
8443 | @end | |
8444 | ||
8445 | @implementation SourcesController | |
8446 | ||
8447 | - (void) _releaseConnection:(NSURLConnection *)connection { | |
8448 | if (connection != nil) { | |
8449 | [connection cancel]; | |
8450 | //[connection setDelegate:nil]; | |
8451 | [connection release]; | |
36bb2ca2 | 8452 | } |
5829aea2 | 8453 | } |
dc5812ec | 8454 | |
5829aea2 | 8455 | - (void) dealloc { |
5829aea2 GP |
8456 | [self _releaseConnection:trivial_gz_]; |
8457 | [self _releaseConnection:trivial_bz2_]; | |
3178d79b | 8458 | |
5829aea2 GP |
8459 | [super dealloc]; |
8460 | } | |
b5e7eebb | 8461 | |
fe8e721f GP |
8462 | - (NSURL *) navigationURL { |
8463 | return [NSURL URLWithString:@"cydia://sources"]; | |
8464 | } | |
8465 | ||
5829aea2 GP |
8466 | - (void) viewDidAppear:(BOOL)animated { |
8467 | [super viewDidAppear:animated]; | |
8468 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
8469 | } | |
9bb3b295 | 8470 | |
5829aea2 | 8471 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
55066b9e | 8472 | return 2; |
5829aea2 | 8473 | } |
8fe19fc1 | 8474 | |
5829aea2 | 8475 | - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { |
55066b9e JF |
8476 | if (section == 1) |
8477 | return UCLocalize("INDIVIDUAL_SOURCES"); | |
90ba4f86 | 8478 | return nil; |
36bb2ca2 | 8479 | } |
b4d89997 | 8480 | |
5829aea2 | 8481 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
55066b9e JF |
8482 | switch (section) { |
8483 | case 0: return 1; | |
8484 | case 1: return [sources_ count]; | |
8485 | default: return 0; | |
8486 | } | |
5829aea2 | 8487 | } |
3178d79b | 8488 | |
5829aea2 | 8489 | - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath { |
c33064f1 JF |
8490 | @synchronized (database_) { |
8491 | if ([database_ era] != era_) | |
8492 | return nil; | |
55066b9e JF |
8493 | if ([indexPath section] != 1) |
8494 | return nil; | |
8dc0d35d | 8495 | NSUInteger index([indexPath row]); |
55066b9e JF |
8496 | if (index >= [sources_ count]) |
8497 | return nil; | |
8498 | return [sources_ objectAtIndex:index]; | |
c33064f1 | 8499 | } } |
b4d89997 | 8500 | |
5829aea2 GP |
8501 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
8502 | static NSString *cellIdentifier = @"SourceCell"; | |
8503 | ||
8504 | SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; | |
55066b9e | 8505 | if (cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease]; |
b89fa270 | 8506 | [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator]; |
5829aea2 | 8507 | |
55066b9e JF |
8508 | Source *source([self sourceAtIndexPath:indexPath]); |
8509 | if (source == nil) | |
8510 | [cell setAllSource]; | |
8511 | else | |
8512 | [cell setSource:source]; | |
8513 | ||
5829aea2 | 8514 | return cell; |
f6e13561 GP |
8515 | } |
8516 | ||
5829aea2 | 8517 | - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
55066b9e | 8518 | SectionsController *controller([[[SectionsController alloc] |
5829aea2 | 8519 | initWithDatabase:database_ |
55066b9e JF |
8520 | source:[self sourceAtIndexPath:indexPath] |
8521 | ] autorelease]); | |
5829aea2 | 8522 | |
3f8edf70 | 8523 | [controller setDelegate:delegate_]; |
3f8edf70 | 8524 | [[self navigationController] pushViewController:controller animated:YES]; |
36bb2ca2 | 8525 | } |
b4d89997 | 8526 | |
6840bff3 | 8527 | - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { |
55066b9e JF |
8528 | if ([indexPath section] != 1) |
8529 | return false; | |
5829aea2 GP |
8530 | Source *source = [self sourceAtIndexPath:indexPath]; |
8531 | return [source record] != nil; | |
dcb47737 RP |
8532 | } |
8533 | ||
6840bff3 | 8534 | - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
55066b9e | 8535 | _assert([indexPath section] == 1); |
0e1aa02c JF |
8536 | if (editingStyle == UITableViewCellEditingStyleDelete) { |
8537 | Source *source = [self sourceAtIndexPath:indexPath]; | |
8dc0d35d JF |
8538 | if (source == nil) return; |
8539 | ||
0e1aa02c | 8540 | [Sources_ removeObjectForKey:[source key]]; |
c38cbbec | 8541 | |
6406cc32 | 8542 | [delegate_ syncData]; |
0e1aa02c | 8543 | } |
5829aea2 | 8544 | } |
bcccf498 | 8545 | |
51807490 JF |
8546 | - (void) tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath { |
8547 | [self updateButtonsForEditingStatusAnimated:YES]; | |
8548 | } | |
8549 | ||
5829aea2 | 8550 | - (void) complete { |
93460555 | 8551 | [delegate_ addTrivialSource:href_]; |
da3ec19c JF |
8552 | href_ = nil; |
8553 | ||
5829aea2 | 8554 | [delegate_ syncData]; |
3178d79b JF |
8555 | } |
8556 | ||
5829aea2 GP |
8557 | - (NSString *) getWarning { |
8558 | NSString *href(href_); | |
8559 | NSRange colon([href rangeOfString:@"://"]); | |
8560 | if (colon.location != NSNotFound) | |
8561 | href = [href substringFromIndex:(colon.location + 3)]; | |
8562 | href = [href stringByAddingPercentEscapes]; | |
8563 | href = [CydiaURL(@"api/repotag/") stringByAppendingString:href]; | |
5829aea2 GP |
8564 | |
8565 | NSURL *url([NSURL URLWithString:href]); | |
8566 | ||
8567 | NSStringEncoding encoding; | |
8568 | NSError *error(nil); | |
8569 | ||
8570 | if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error]) | |
8571 | return [warning length] == 0 ? nil : warning; | |
8572 | return nil; | |
807ae6d7 | 8573 | } |
b4d89997 | 8574 | |
5829aea2 GP |
8575 | - (void) _endConnection:(NSURLConnection *)connection { |
8576 | // XXX: the memory management in this method is horribly awkward | |
8577 | ||
8578 | NSURLConnection **field = NULL; | |
44990507 | 8579 | if (connection == trivial_bz2_) |
5829aea2 GP |
8580 | field = &trivial_bz2_; |
8581 | else if (connection == trivial_gz_) | |
8582 | field = &trivial_gz_; | |
8583 | _assert(field != NULL); | |
8584 | [connection release]; | |
8585 | *field = nil; | |
8586 | ||
8587 | if ( | |
5829aea2 GP |
8588 | trivial_bz2_ == nil && |
8589 | trivial_gz_ == nil | |
8590 | ) { | |
da3ec19c JF |
8591 | NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil); |
8592 | ||
9eae15b8 JF |
8593 | [delegate_ releaseNetworkActivityIndicator]; |
8594 | ||
8595 | [delegate_ removeProgressHUD:hud_]; | |
9eae15b8 JF |
8596 | hud_ = nil; |
8597 | ||
5829aea2 | 8598 | if (cydia_) { |
da3ec19c | 8599 | if (warning != nil) { |
5829aea2 GP |
8600 | UIAlertView *alert = [[[UIAlertView alloc] |
8601 | initWithTitle:UCLocalize("SOURCE_WARNING") | |
8602 | message:warning | |
8603 | delegate:self | |
8604 | cancelButtonTitle:UCLocalize("CANCEL") | |
1aa29546 JF |
8605 | otherButtonTitles: |
8606 | UCLocalize("ADD_ANYWAY"), | |
8607 | nil | |
5829aea2 GP |
8608 | ] autorelease]; |
8609 | ||
8610 | [alert setContext:@"warning"]; | |
8611 | [alert setNumberOfRows:1]; | |
8612 | [alert show]; | |
708cf61e JF |
8613 | |
8614 | // XXX: there used to be this great mechanism called yieldToPopup... who deleted it? | |
8615 | error_ = nil; | |
8616 | return; | |
8617 | } | |
8618 | ||
8619 | [self complete]; | |
5829aea2 GP |
8620 | } else if (error_ != nil) { |
8621 | UIAlertView *alert = [[[UIAlertView alloc] | |
8622 | initWithTitle:UCLocalize("VERIFICATION_ERROR") | |
8623 | message:[error_ localizedDescription] | |
8624 | delegate:self | |
8625 | cancelButtonTitle:UCLocalize("OK") | |
8626 | otherButtonTitles:nil | |
8627 | ] autorelease]; | |
8628 | ||
8629 | [alert setContext:@"urlerror"]; | |
8630 | [alert show]; | |
da3ec19c JF |
8631 | |
8632 | href_ = nil; | |
5829aea2 GP |
8633 | } else { |
8634 | UIAlertView *alert = [[[UIAlertView alloc] | |
8635 | initWithTitle:UCLocalize("NOT_REPOSITORY") | |
8636 | message:UCLocalize("NOT_REPOSITORY_EX") | |
8637 | delegate:self | |
8638 | cancelButtonTitle:UCLocalize("OK") | |
8639 | otherButtonTitles:nil | |
8640 | ] autorelease]; | |
8641 | ||
8642 | [alert setContext:@"trivial"]; | |
8643 | [alert show]; | |
da3ec19c JF |
8644 | |
8645 | href_ = nil; | |
5829aea2 GP |
8646 | } |
8647 | ||
7b33d201 | 8648 | error_ = nil; |
5829aea2 | 8649 | } |
807ae6d7 | 8650 | } |
8fe19fc1 | 8651 | |
5829aea2 GP |
8652 | - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response { |
8653 | switch ([response statusCode]) { | |
8654 | case 200: | |
8655 | cydia_ = YES; | |
8656 | } | |
8e05f686 RP |
8657 | } |
8658 | ||
5829aea2 | 8659 | - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { |
47ff9ab8 | 8660 | lprintf("connection:\"%s\" didFailWithError:\"%s\"\n", [href_ UTF8String], [[error localizedDescription] UTF8String]); |
7b33d201 | 8661 | error_ = error; |
5829aea2 | 8662 | [self _endConnection:connection]; |
807ae6d7 | 8663 | } |
b4d89997 | 8664 | |
5829aea2 GP |
8665 | - (void) connectionDidFinishLoading:(NSURLConnection *)connection { |
8666 | [self _endConnection:connection]; | |
8667 | } | |
b4d89997 | 8668 | |
5829aea2 | 8669 | - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method { |
2e1652a9 JF |
8670 | NSURL *url([NSURL URLWithString:href]); |
8671 | ||
5829aea2 | 8672 | NSMutableURLRequest *request = [NSMutableURLRequest |
2e1652a9 | 8673 | requestWithURL:url |
5829aea2 | 8674 | cachePolicy:NSURLRequestUseProtocolCachePolicy |
dd6f3b7b | 8675 | timeoutInterval:10 |
5829aea2 | 8676 | ]; |
bc11cf5b | 8677 | |
5829aea2 | 8678 | [request setHTTPMethod:method]; |
b4d89997 | 8679 | |
5829aea2 GP |
8680 | if (Machine_ != NULL) |
8681 | [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"]; | |
2e1652a9 | 8682 | |
1209b7de JF |
8683 | if (UniqueID_ != nil) |
8684 | [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"]; | |
8685 | ||
2e1652a9 | 8686 | if ([url isCydiaSecure]) { |
1209b7de | 8687 | if (UniqueID_ != nil) |
c83678e8 | 8688 | [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"]; |
2e1652a9 | 8689 | } |
b4d89997 | 8690 | |
5829aea2 | 8691 | return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease]; |
3178d79b JF |
8692 | } |
8693 | ||
6840bff3 | 8694 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
5829aea2 | 8695 | NSString *context([alert context]); |
dc5812ec | 8696 | |
5829aea2 GP |
8697 | if ([context isEqualToString:@"source"]) { |
8698 | switch (button) { | |
8699 | case 1: { | |
8700 | NSString *href = [[alert textField] text]; | |
8a2d167a JF |
8701 | href = VerifySource(href); |
8702 | if (href == nil) | |
2595e4c3 | 8703 | break; |
8a2d167a | 8704 | href_ = href; |
b4d89997 | 8705 | |
5829aea2 GP |
8706 | trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain]; |
8707 | trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain]; | |
b4d89997 | 8708 | |
5829aea2 | 8709 | cydia_ = false; |
8fe19fc1 | 8710 | |
5829aea2 | 8711 | // XXX: this is stupid |
7b33d201 | 8712 | hud_ = [delegate_ addProgressHUD]; |
5829aea2 | 8713 | [hud_ setText:UCLocalize("VERIFYING_URL")]; |
dcaecde2 | 8714 | [delegate_ retainNetworkActivityIndicator]; |
5829aea2 | 8715 | } break; |
770f2a8e | 8716 | |
5829aea2 GP |
8717 | case 0: |
8718 | break; | |
bc11cf5b | 8719 | |
5829aea2 GP |
8720 | _nodefault |
8721 | } | |
770f2a8e | 8722 | |
5829aea2 GP |
8723 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
8724 | } else if ([context isEqualToString:@"trivial"]) | |
8725 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
8726 | else if ([context isEqualToString:@"urlerror"]) | |
8727 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
8728 | else if ([context isEqualToString:@"warning"]) { | |
8729 | switch (button) { | |
8730 | case 1: | |
da3ec19c | 8731 | [self performSelector:@selector(complete) withObject:nil afterDelay:0]; |
5829aea2 | 8732 | break; |
770f2a8e | 8733 | |
5829aea2 GP |
8734 | case 0: |
8735 | break; | |
b5e7eebb | 8736 | |
5829aea2 GP |
8737 | _nodefault |
8738 | } | |
770f2a8e | 8739 | |
5829aea2 GP |
8740 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
8741 | } | |
8742 | } | |
770f2a8e | 8743 | |
e67ebdad JF |
8744 | - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated { |
8745 | BOOL editing([list_ isEditing]); | |
8746 | ||
8747 | if (editing) | |
8748 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
8749 | initWithTitle:UCLocalize("ADD") | |
8750 | style:UIBarButtonItemStylePlain | |
8751 | target:self | |
8752 | action:@selector(addButtonClicked) | |
8753 | ] autorelease] animated:animated]; | |
8754 | else if ([delegate_ updating]) | |
8755 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
8756 | initWithTitle:UCLocalize("CANCEL") | |
8757 | style:UIBarButtonItemStyleDone | |
8758 | target:self | |
8759 | action:@selector(cancelButtonClicked) | |
8760 | ] autorelease] animated:animated]; | |
8761 | else | |
8762 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
8763 | initWithTitle:UCLocalize("REFRESH") | |
8764 | style:UIBarButtonItemStylePlain | |
8765 | target:self | |
8766 | action:@selector(refreshButtonClicked) | |
8767 | ] autorelease] animated:animated]; | |
8768 | ||
8769 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] | |
8770 | initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT")) | |
8771 | style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain) | |
8772 | target:self | |
8773 | action:@selector(editButtonClicked) | |
8774 | ] autorelease] animated:animated]; | |
8775 | } | |
8776 | ||
fe8e721f | 8777 | - (void) loadView { |
e8cbebe4 | 8778 | list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain] autorelease]; |
fe8e721f | 8779 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
6ac6e186 | 8780 | [list_ setRowHeight:53]; |
7b33d201 | 8781 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f | 8782 | [list_ setDelegate:self]; |
e8cbebe4 | 8783 | [self setView:list_]; |
fe8e721f | 8784 | } |
770f2a8e | 8785 | |
fe8e721f | 8786 | - (void) viewDidLoad { |
7d887d0b JF |
8787 | [super viewDidLoad]; |
8788 | ||
fe8e721f | 8789 | [[self navigationItem] setTitle:UCLocalize("SOURCES")]; |
31eedaae JF |
8790 | [self updateButtonsForEditingStatusAnimated:NO]; |
8791 | } | |
8792 | ||
393699d7 | 8793 | - (void) viewWillAppear:(BOOL)animated { |
31eedaae JF |
8794 | [super viewWillAppear:animated]; |
8795 | ||
8796 | [list_ setEditing:NO]; | |
8797 | [self updateButtonsForEditingStatusAnimated:NO]; | |
fe8e721f | 8798 | } |
770f2a8e | 8799 | |
fe8e721f | 8800 | - (void) releaseSubviews { |
fe8e721f | 8801 | list_ = nil; |
7be3eb32 | 8802 | |
4f9acb7c JF |
8803 | sources_ = nil; |
8804 | ||
7be3eb32 | 8805 | [super releaseSubviews]; |
fe8e721f | 8806 | } |
770f2a8e | 8807 | |
fe8e721f GP |
8808 | - (id) initWithDatabase:(Database *)database { |
8809 | if ((self = [super init]) != nil) { | |
8810 | database_ = database; | |
807ae6d7 JF |
8811 | } return self; |
8812 | } | |
770f2a8e | 8813 | |
807ae6d7 | 8814 | - (void) reloadData { |
fe8e721f | 8815 | [super reloadData]; |
e67ebdad | 8816 | [self updateButtonsForEditingStatusAnimated:YES]; |
fe8e721f | 8817 | |
c33064f1 JF |
8818 | @synchronized (database_) { |
8819 | era_ = [database_ era]; | |
8820 | ||
4f9acb7c | 8821 | sources_ = [NSMutableArray arrayWithCapacity:16]; |
5829aea2 GP |
8822 | [sources_ addObjectsFromArray:[database_ sources]]; |
8823 | _trace(); | |
90ba4f86 | 8824 | [sources_ sortUsingSelector:@selector(compareByName:)]; |
5829aea2 GP |
8825 | _trace(); |
8826 | ||
8827 | int count([sources_ count]); | |
8828 | offset_ = 0; | |
8829 | for (int i = 0; i != count; i++) { | |
8830 | if ([[sources_ objectAtIndex:i] record] == nil) | |
8831 | break; | |
8832 | offset_++; | |
770f2a8e | 8833 | } |
807ae6d7 | 8834 | |
5829aea2 | 8835 | [list_ reloadData]; |
c33064f1 | 8836 | } } |
770f2a8e | 8837 | |
5829aea2 GP |
8838 | - (void) showAddSourcePrompt { |
8839 | UIAlertView *alert = [[[UIAlertView alloc] | |
8840 | initWithTitle:UCLocalize("ENTER_APT_URL") | |
8841 | message:nil | |
8842 | delegate:self | |
8843 | cancelButtonTitle:UCLocalize("CANCEL") | |
1aa29546 JF |
8844 | otherButtonTitles: |
8845 | UCLocalize("ADD_SOURCE"), | |
8846 | nil | |
5829aea2 | 8847 | ] autorelease]; |
770f2a8e | 8848 | |
5829aea2 | 8849 | [alert setContext:@"source"]; |
770f2a8e | 8850 | |
5829aea2 GP |
8851 | [alert setNumberOfRows:1]; |
8852 | [alert addTextFieldWithValue:@"http://" label:@""]; | |
770f2a8e | 8853 | |
63755c48 | 8854 | NSObject<UITextInputTraits> *traits = [[alert textField] textInputTraits]; |
5829aea2 GP |
8855 | [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone]; |
8856 | [traits setAutocorrectionType:UITextAutocorrectionTypeNo]; | |
8857 | [traits setKeyboardType:UIKeyboardTypeURL]; | |
8858 | // XXX: UIReturnKeyDone | |
8859 | [traits setReturnKeyType:UIReturnKeyNext]; | |
770f2a8e | 8860 | |
5829aea2 | 8861 | [alert show]; |
770f2a8e JF |
8862 | } |
8863 | ||
5829aea2 GP |
8864 | - (void) addButtonClicked { |
8865 | [self showAddSourcePrompt]; | |
770f2a8e JF |
8866 | } |
8867 | ||
e67ebdad JF |
8868 | - (void) refreshButtonClicked { |
8869 | if ([delegate_ requestUpdate]) | |
8870 | [self updateButtonsForEditingStatusAnimated:YES]; | |
8871 | } | |
5829aea2 | 8872 | |
e67ebdad JF |
8873 | - (void) cancelButtonClicked { |
8874 | [delegate_ cancelUpdate]; | |
5829aea2 GP |
8875 | } |
8876 | ||
8877 | - (void) editButtonClicked { | |
8878 | [list_ setEditing:![list_ isEditing] animated:YES]; | |
31eedaae | 8879 | [self updateButtonsForEditingStatusAnimated:YES]; |
770f2a8e JF |
8880 | } |
8881 | ||
21c6da4b GP |
8882 | @end |
8883 | /* }}} */ | |
f3e11d24 | 8884 | |
f3e11d24 | 8885 | /* Stash Controller {{{ */ |
cd79e8cf | 8886 | @interface StashController : CyteViewController { |
7b33d201 JF |
8887 | _H<UIActivityIndicatorView> spinner_; |
8888 | _H<UILabel> status_; | |
8889 | _H<UILabel> caption_; | |
f3e11d24 | 8890 | } |
6840bff3 | 8891 | |
f3e11d24 GP |
8892 | @end |
8893 | ||
5829aea2 | 8894 | @implementation StashController |
f3e11d24 | 8895 | |
fe8e721f | 8896 | - (void) loadView { |
39470a3a JF |
8897 | UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]); |
8898 | [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; | |
8899 | [self setView:view]; | |
8900 | ||
8901 | [view setBackgroundColor:[UIColor viewFlipsideBackgroundColor]]; | |
fe8e721f | 8902 | |
7b33d201 | 8903 | spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease]; |
fe8e721f | 8904 | CGRect spinrect = [spinner_ frame]; |
8323c1b9 | 8905 | spinrect.origin.x = Retina([[self view] frame].size.width / 2 - spinrect.size.width / 2); |
fe8e721f GP |
8906 | spinrect.origin.y = [[self view] frame].size.height - 80.0f; |
8907 | [spinner_ setFrame:spinrect]; | |
8908 | [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin]; | |
39470a3a | 8909 | [view addSubview:spinner_]; |
fe8e721f GP |
8910 | [spinner_ startAnimating]; |
8911 | ||
8912 | CGRect captrect; | |
8913 | captrect.size.width = [[self view] frame].size.width; | |
8914 | captrect.size.height = 40.0f; | |
8915 | captrect.origin.x = 0; | |
8323c1b9 | 8916 | captrect.origin.y = Retina([[self view] frame].size.height / 2 - captrect.size.height * 2); |
7b33d201 | 8917 | caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease]; |
fe8e721f GP |
8918 | [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")]; |
8919 | [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; | |
8920 | [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]]; | |
8921 | [caption_ setTextColor:[UIColor whiteColor]]; | |
8922 | [caption_ setBackgroundColor:[UIColor clearColor]]; | |
8923 | [caption_ setShadowColor:[UIColor blackColor]]; | |
b129e6d9 | 8924 | [caption_ setTextAlignment:NSTextAlignmentCenter]; |
39470a3a | 8925 | [view addSubview:caption_]; |
fe8e721f GP |
8926 | |
8927 | CGRect statusrect; | |
8928 | statusrect.size.width = [[self view] frame].size.width; | |
8929 | statusrect.size.height = 30.0f; | |
8930 | statusrect.origin.x = 0; | |
8323c1b9 | 8931 | statusrect.origin.y = Retina([[self view] frame].size.height / 2 - statusrect.size.height); |
7b33d201 | 8932 | status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease]; |
fe8e721f GP |
8933 | [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; |
8934 | [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")]; | |
8935 | [status_ setFont:[UIFont systemFontOfSize:16.0f]]; | |
8936 | [status_ setTextColor:[UIColor whiteColor]]; | |
8937 | [status_ setBackgroundColor:[UIColor clearColor]]; | |
8938 | [status_ setShadowColor:[UIColor blackColor]]; | |
b129e6d9 | 8939 | [status_ setTextAlignment:NSTextAlignmentCenter]; |
39470a3a | 8940 | [view addSubview:status_]; |
fe8e721f GP |
8941 | } |
8942 | ||
67dd58c7 JF |
8943 | - (void) releaseSubviews { |
8944 | spinner_ = nil; | |
8945 | status_ = nil; | |
8946 | caption_ = nil; | |
7be3eb32 JF |
8947 | |
8948 | [super releaseSubviews]; | |
67dd58c7 JF |
8949 | } |
8950 | ||
770f2a8e | 8951 | @end |
807ae6d7 | 8952 | /* }}} */ |
770f2a8e | 8953 | |
a06e9179 JF |
8954 | @interface CYURLCache : SDURLCache { |
8955 | } | |
8956 | ||
8957 | @end | |
8958 | ||
8959 | @implementation CYURLCache | |
8960 | ||
8961 | - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request { | |
8962 | #if !ForRelease | |
8963 | if (false); | |
8964 | else if ([event isEqualToString:@"no-cache"]) | |
8965 | event = @"!!!"; | |
8966 | else if ([event isEqualToString:@"store"]) | |
8967 | event = @">>>"; | |
8968 | else if ([event isEqualToString:@"invalid"]) | |
8969 | event = @"???"; | |
8970 | else if ([event isEqualToString:@"memory"]) | |
8971 | event = @"mem"; | |
8972 | else if ([event isEqualToString:@"disk"]) | |
8973 | event = @"ssd"; | |
8974 | else if ([event isEqualToString:@"miss"]) | |
8975 | event = @"---"; | |
8976 | ||
8977 | NSLog(@"%@: %@", event, [[request URL] absoluteString]); | |
8978 | #endif | |
8979 | } | |
8980 | ||
5e845121 JF |
8981 | - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request { |
8982 | if (NSURLResponse *response = [cached response]) | |
8983 | if (NSString *mime = [response MIMEType]) | |
8984 | if ([mime isEqualToString:@"text/cache-manifest"]) { | |
8985 | NSURL *url([response URL]); | |
8986 | ||
8987 | #if !ForRelease | |
8988 | NSLog(@"###: %@", [url absoluteString]); | |
8989 | #endif | |
8990 | ||
8991 | @synchronized (HostConfig_) { | |
8992 | [CachedURLs_ addObject:url]; | |
8993 | } | |
8994 | } | |
8995 | ||
8996 | [super storeCachedResponse:cached forRequest:request]; | |
8997 | } | |
8998 | ||
584daea0 JF |
8999 | - (void) createDiskCachePath { |
9000 | [super createDiskCachePath]; | |
584daea0 JF |
9001 | } |
9002 | ||
a06e9179 JF |
9003 | @end |
9004 | ||
2367a917 | 9005 | @interface Cydia : UIApplication < |
adb61bda | 9006 | ConfirmationControllerDelegate, |
6915b806 | 9007 | DatabaseDelegate, |
c88974b1 | 9008 | CydiaDelegate |
2367a917 | 9009 | > { |
7b33d201 | 9010 | _H<UIWindow> window_; |
5fe2bcc6 | 9011 | _H<CydiaTabBarController> tabbar_; |
9549563e | 9012 | _H<CyteTabBarController> emulated_; |
fedd38fe | 9013 | _H<AppCacheController> appcache_; |
3931b718 | 9014 | |
7b33d201 JF |
9015 | _H<NSMutableArray> essential_; |
9016 | _H<NSMutableArray> broken_; | |
dc5812ec JF |
9017 | |
9018 | Database *database_; | |
dc5812ec | 9019 | |
7b33d201 | 9020 | _H<NSURL> starturl_; |
54043703 | 9021 | |
235f5487 | 9022 | unsigned locked_; |
54043703 | 9023 | unsigned activity_; |
9b619239 | 9024 | |
7b33d201 | 9025 | _H<StashController> stash_; |
f3e11d24 | 9026 | |
8c02abc8 | 9027 | bool loaded_; |
dc5812ec JF |
9028 | } |
9029 | ||
fed0d010 | 9030 | - (void) loadData; |
670a0494 | 9031 | |
dc5812ec JF |
9032 | @end |
9033 | ||
9034 | @implementation Cydia | |
9035 | ||
2ef6faad | 9036 | - (void) lockSuspend { |
8a3b565c JF |
9037 | if (locked_++ == 0) { |
9038 | if ($SBSSetInterceptsMenuButtonForever != NULL) | |
9039 | (*$SBSSetInterceptsMenuButtonForever)(true); | |
26c8a4c8 JF |
9040 | |
9041 | [self setIdleTimerDisabled:YES]; | |
8a3b565c | 9042 | } |
2ef6faad JF |
9043 | } |
9044 | ||
9045 | - (void) unlockSuspend { | |
8a3b565c | 9046 | if (--locked_ == 0) { |
26c8a4c8 JF |
9047 | [self setIdleTimerDisabled:NO]; |
9048 | ||
8a3b565c JF |
9049 | if ($SBSSetInterceptsMenuButtonForever != NULL) |
9050 | (*$SBSSetInterceptsMenuButtonForever)(false); | |
9051 | } | |
2ef6faad JF |
9052 | } |
9053 | ||
b5e7eebb | 9054 | - (void) beginUpdate { |
7585ce66 | 9055 | [tabbar_ beginUpdate]; |
b5e7eebb GP |
9056 | } |
9057 | ||
e67ebdad JF |
9058 | - (void) cancelUpdate { |
9059 | [tabbar_ cancelUpdate]; | |
9060 | } | |
9061 | ||
9062 | - (bool) requestUpdate { | |
9063 | if (IsReachable("cydia.saurik.com")) { | |
9064 | [self beginUpdate]; | |
9065 | return true; | |
9066 | } else { | |
9067 | UIAlertView *alert = [[[UIAlertView alloc] | |
9068 | initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("REFRESH")] | |
9069 | message:@"Host Unreachable" // XXX: Localize | |
9070 | delegate:self | |
9071 | cancelButtonTitle:UCLocalize("OK") | |
9072 | otherButtonTitles:nil | |
9073 | ] autorelease]; | |
9074 | ||
9075 | [alert setContext:@"norefresh"]; | |
9076 | [alert show]; | |
9077 | ||
9078 | return false; | |
9079 | } | |
9080 | } | |
9081 | ||
b5e7eebb | 9082 | - (BOOL) updating { |
7585ce66 | 9083 | return [tabbar_ updating]; |
b5e7eebb GP |
9084 | } |
9085 | ||
9bedffaa JF |
9086 | - (void) _loaded { |
9087 | if ([broken_ count] != 0) { | |
9088 | int count = [broken_ count]; | |
9089 | ||
37d2b2a9 | 9090 | UIAlertView *alert = [[[UIAlertView alloc] |
43f3d7f6 | 9091 | initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count]) |
b5e7eebb GP |
9092 | message:UCLocalize("HALFINSTALLED_PACKAGE_EX") |
9093 | delegate:self | |
1dc38e9c | 9094 | cancelButtonTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("FORCIBLY_CLEAR"), UCLocalize("UNSAFE")] |
1aa29546 JF |
9095 | otherButtonTitles: |
9096 | UCLocalize("TEMPORARY_IGNORE"), | |
9097 | nil | |
9bedffaa JF |
9098 | ] autorelease]; |
9099 | ||
37d2b2a9 | 9100 | [alert setContext:@"fixhalf"]; |
59befad5 | 9101 | [alert setNumberOfRows:2]; |
37d2b2a9 | 9102 | [alert show]; |
9bedffaa JF |
9103 | } else if (!Ignored_ && [essential_ count] != 0) { |
9104 | int count = [essential_ count]; | |
9105 | ||
37d2b2a9 | 9106 | UIAlertView *alert = [[[UIAlertView alloc] |
43f3d7f6 | 9107 | initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count]) |
b5e7eebb GP |
9108 | message:UCLocalize("ESSENTIAL_UPGRADE_EX") |
9109 | delegate:self | |
9110 | cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE") | |
1aa29546 JF |
9111 | otherButtonTitles: |
9112 | UCLocalize("UPGRADE_ESSENTIAL"), | |
9113 | UCLocalize("COMPLETE_UPGRADE"), | |
9114 | nil | |
9bedffaa JF |
9115 | ] autorelease]; |
9116 | ||
37d2b2a9 GP |
9117 | [alert setContext:@"upgrade"]; |
9118 | [alert show]; | |
9bedffaa JF |
9119 | } |
9120 | } | |
9121 | ||
2925cbba JF |
9122 | - (void) returnToCydia { |
9123 | [self _loaded]; | |
9124 | } | |
9125 | ||
42bbf27d JF |
9126 | - (void) reloadSpringBoard { |
9127 | if (kCFCoreFoundationVersionNumber >= 700) // XXX: iOS 6.x | |
5652087e | 9128 | system("/usr/libexec/cydia/cydo /bin/launchctl stop com.apple.backboardd"); |
42bbf27d | 9129 | else |
5652087e | 9130 | system("/usr/libexec/cydia/cydo /bin/launchctl stop com.apple.SpringBoard"); |
42bbf27d JF |
9131 | sleep(15); |
9132 | system("/usr/bin/killall backboardd SpringBoard"); | |
9133 | } | |
9134 | ||
7623f855 | 9135 | - (void) _saveConfig { |
4e479350 | 9136 | SaveConfig(database_); |
7623f855 JF |
9137 | } |
9138 | ||
89571a5b | 9139 | // Navigation controller for the queuing badge. |
15f0d613 | 9140 | - (UINavigationController *) queueNavigationController { |
89571a5b GP |
9141 | NSArray *controllers = [tabbar_ viewControllers]; |
9142 | return [controllers objectAtIndex:3]; | |
9143 | } | |
9144 | ||
302bf91c JF |
9145 | - (void) unloadData { |
9146 | [tabbar_ unloadData]; | |
9147 | } | |
9148 | ||
7623f855 JF |
9149 | - (void) _updateData { |
9150 | [self _saveConfig]; | |
302bf91c | 9151 | [self unloadData]; |
f6371a33 | 9152 | |
15f0d613 | 9153 | UINavigationController *navigation = [self queueNavigationController]; |
b5e7eebb | 9154 | |
4305896c | 9155 | id queuedelegate = nil; |
89571a5b GP |
9156 | if ([[navigation viewControllers] count] > 0) |
9157 | queuedelegate = [[navigation viewControllers] objectAtIndex:0]; | |
bc11cf5b | 9158 | |
89571a5b GP |
9159 | [queuedelegate queueStatusDidChange]; |
9160 | [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)]; | |
7623f855 JF |
9161 | } |
9162 | ||
6f87c61a | 9163 | - (void) _refreshIfPossible { |
8c02abc8 | 9164 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
bc11cf5b | 9165 | |
6f87c61a JF |
9166 | NSDate *update([[NSDictionary dictionaryWithContentsOfFile:@ CacheState_] objectForKey:@"LastUpdate"]); |
9167 | ||
45e21ffa | 9168 | bool recently = false; |
45e21ffa GP |
9169 | if (update != nil) { |
9170 | NSTimeInterval interval([update timeIntervalSinceNow]); | |
805ba1b0 | 9171 | if (interval > -(15*60)) |
45e21ffa GP |
9172 | recently = true; |
9173 | } | |
9174 | ||
9175 | // Don't automatic refresh if: | |
9176 | // - We already refreshed recently. | |
9177 | // - We already auto-refreshed this launch. | |
9178 | // - Auto-refresh is disabled. | |
8d3505c5 JF |
9179 | // - Cydia's server is not reachable |
9180 | if (recently || loaded_ || ManualRefresh || !IsReachable("cydia.saurik.com")) { | |
35f0a3b5 | 9181 | // If we are cancelling, we need to make sure it knows it's already loaded. |
45e21ffa | 9182 | loaded_ = true; |
d13edf44 JF |
9183 | |
9184 | [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO]; | |
45e21ffa GP |
9185 | } else { |
9186 | // We are going to load, so remember that. | |
9187 | loaded_ = true; | |
45e21ffa | 9188 | |
6f87c61a | 9189 | [tabbar_ performSelectorOnMainThread:@selector(beginUpdate) withObject:nil waitUntilDone:NO]; |
d13edf44 | 9190 | } |
9aecdc9c | 9191 | |
8c02abc8 | 9192 | [pool release]; |
9aecdc9c GP |
9193 | } |
9194 | ||
9195 | - (void) refreshIfPossible { | |
6f87c61a | 9196 | [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil]; |
9aecdc9c GP |
9197 | } |
9198 | ||
e09e1589 | 9199 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation { |
1a83afc6 | 9200 | _profile(reloadDataWithInvocation) |
e09e1589 | 9201 | @synchronized (self) { |
851f4a99 | 9202 | UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil); |
1450c2b3 JF |
9203 | if (hud != nil) |
9204 | [hud setText:UCLocalize("RELOADING_DATA")]; | |
dc5812ec | 9205 | |
4ba8f30a | 9206 | [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation]; |
d061f4ba | 9207 | |
36bb2ca2 | 9208 | size_t changes(0); |
9bedffaa | 9209 | |
a54b1c10 | 9210 | [essential_ removeAllObjects]; |
9bedffaa | 9211 | [broken_ removeAllObjects]; |
b4d89997 | 9212 | |
1a83afc6 | 9213 | _profile(reloadDataWithInvocation$Essential) |
670a0494 | 9214 | NSArray *packages([database_ packages]); |
affeffc7 | 9215 | for (Package *package in packages) { |
9bedffaa JF |
9216 | if ([package half]) |
9217 | [broken_ addObject:package]; | |
823e2d97 JF |
9218 | if ([package upgradableAndEssential:YES] && ![package ignored]) { |
9219 | if ([package essential] && [package installed] != nil) | |
a54b1c10 | 9220 | [essential_ addObject:package]; |
36bb2ca2 | 9221 | ++changes; |
a54b1c10 | 9222 | } |
36bb2ca2 | 9223 | } |
1a83afc6 | 9224 | _end |
b4d89997 | 9225 | |
89571a5b | 9226 | UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem]; |
36bb2ca2 | 9227 | if (changes != 0) { |
0e1784b4 | 9228 | _trace(); |
36bb2ca2 | 9229 | NSString *badge([[NSNumber numberWithInt:changes] stringValue]); |
45e21ffa | 9230 | [changesItem setBadgeValue:badge]; |
65a03a7a | 9231 | [changesItem setAnimatedBadge:([essential_ count] > 0)]; |
0e1784b4 | 9232 | [self setApplicationIconBadgeNumber:changes]; |
c25a610d | 9233 | } else { |
0e1784b4 | 9234 | _trace(); |
45e21ffa GP |
9235 | [changesItem setBadgeValue:nil]; |
9236 | [changesItem setAnimatedBadge:NO]; | |
0e1784b4 | 9237 | [self setApplicationIconBadgeNumber:0]; |
c25a610d | 9238 | } |
b4d89997 | 9239 | |
838ec6e3 | 9240 | Queuing_ = false; |
7623f855 | 9241 | [self _updateData]; |
be64dfbf JF |
9242 | |
9243 | if (hud != nil) | |
9244 | [self removeProgressHUD:hud]; | |
1a83afc6 JF |
9245 | } |
9246 | _end | |
9247 | ||
9248 | PrintTimes(); | |
9249 | } | |
6d9712c4 | 9250 | |
7b0ce2da | 9251 | - (void) updateData { |
7623f855 | 9252 | [self _updateData]; |
b4d89997 JF |
9253 | } |
9254 | ||
383a58ac JF |
9255 | - (void) updateDataAndLoad { |
9256 | [self _updateData]; | |
9257 | if ([database_ progressDelegate] == nil) | |
9258 | [self _loaded]; | |
9259 | } | |
9260 | ||
7b0ce2da JF |
9261 | - (void) update_ { |
9262 | [database_ update]; | |
fca2f596 | 9263 | [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES]; |
7b0ce2da JF |
9264 | } |
9265 | ||
2e9123cb JF |
9266 | - (void) disemulate { |
9267 | if (emulated_ == nil) | |
9268 | return; | |
9269 | ||
81628115 JF |
9270 | if ([window_ respondsToSelector:@selector(setRootViewController:)]) |
9271 | [window_ setRootViewController:tabbar_]; | |
237c3d1c JF |
9272 | else { |
9273 | [window_ addSubview:[tabbar_ view]]; | |
9274 | [[emulated_ view] removeFromSuperview]; | |
9275 | } | |
9276 | ||
2e9123cb JF |
9277 | emulated_ = nil; |
9278 | [window_ setUserInteractionEnabled:YES]; | |
9279 | } | |
9280 | ||
9281 | - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force { | |
15f0d613 | 9282 | UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]); |
2e9123cb JF |
9283 | |
9284 | UIViewController *parent; | |
9285 | if (emulated_ == nil) | |
9286 | parent = tabbar_; | |
9287 | else if (!force) | |
9288 | parent = emulated_; | |
9289 | else { | |
9290 | [self disemulate]; | |
9291 | parent = tabbar_; | |
9292 | } | |
9293 | ||
483881e4 JF |
9294 | if (IsWildcat_) |
9295 | [navigation setModalPresentationStyle:UIModalPresentationFormSheet]; | |
2e9123cb | 9296 | [parent presentModalViewController:navigation animated:YES]; |
6915b806 JF |
9297 | } |
9298 | ||
9299 | - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title { | |
9300 | ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]); | |
9301 | ||
9302 | if (navigation != nil) | |
9303 | [navigation pushViewController:progress animated:YES]; | |
9304 | else | |
2e9123cb | 9305 | [self presentModalViewController:progress force:YES]; |
6915b806 JF |
9306 | |
9307 | [progress invoke:invocation withTitle:title]; | |
9308 | return progress; | |
9309 | } | |
9310 | ||
9311 | - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title { | |
9312 | [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title]; | |
9313 | } | |
9314 | ||
9315 | - (void) repairWithInvocation:(NSInvocation *)invocation { | |
9316 | _trace(); | |
8d5bc2ad | 9317 | [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"]; |
6915b806 JF |
9318 | _trace(); |
9319 | } | |
9320 | ||
9321 | - (void) repairWithSelector:(SEL)selector { | |
9322 | [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES]; | |
9323 | } | |
9324 | ||
e09e1589 JF |
9325 | - (void) reloadData { |
9326 | [self reloadDataWithInvocation:nil]; | |
2925cbba JF |
9327 | if ([database_ progressDelegate] == nil) |
9328 | [self _loaded]; | |
e09e1589 JF |
9329 | } |
9330 | ||
7b0ce2da | 9331 | - (void) syncData { |
1fe5dc43 | 9332 | [self _saveConfig]; |
33e30380 JF |
9333 | [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"]; |
9334 | } | |
1fe5dc43 | 9335 | |
33e30380 | 9336 | - (void) addSource:(NSDictionary *) source { |
25c1dafb | 9337 | CydiaAddSource(source); |
33e30380 | 9338 | } |
7b0ce2da | 9339 | |
33e30380 | 9340 | - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections { |
25c1dafb | 9341 | CydiaAddSource(href, distribution, sections); |
7b0ce2da JF |
9342 | } |
9343 | ||
8a2d167a JF |
9344 | // XXX: this method should not return anything |
9345 | - (BOOL) addTrivialSource:(NSString *)href { | |
25c1dafb | 9346 | CydiaAddSource(href, @"./"); |
8a2d167a | 9347 | return YES; |
93460555 JF |
9348 | } |
9349 | ||
b4d89997 JF |
9350 | - (void) resolve { |
9351 | pkgProblemResolver *resolver = [database_ resolver]; | |
9352 | ||
9353 | resolver->InstallProtect(); | |
9354 | if (!resolver->Resolve(true)) | |
9355 | _error->Discard(); | |
2367a917 JF |
9356 | } |
9357 | ||
670a0494 | 9358 | - (bool) perform { |
d6c371f5 JF |
9359 | // XXX: this is a really crappy way of doing this. |
9360 | // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that. | |
9361 | // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid | |
9362 | // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing. | |
9363 | if ([tabbar_ updating]) | |
9364 | [tabbar_ cancelUpdate]; | |
9365 | ||
670a0494 JF |
9366 | if (![database_ prepare]) |
9367 | return false; | |
49048579 | 9368 | |
adb61bda | 9369 | ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]); |
affeffc7 | 9370 | [page setDelegate:self]; |
15f0d613 | 9371 | UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]); |
49048579 | 9372 | |
36fbb2aa JF |
9373 | if (IsWildcat_) |
9374 | [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet]; | |
7585ce66 | 9375 | [tabbar_ presentModalViewController:confirm_ animated:YES]; |
670a0494 JF |
9376 | |
9377 | return true; | |
3178d79b JF |
9378 | } |
9379 | ||
dc63e78f JF |
9380 | - (void) queue { |
9381 | @synchronized (self) { | |
9382 | [self perform]; | |
9383 | } | |
9384 | } | |
9385 | ||
9386 | - (void) clearPackage:(Package *)package { | |
9387 | @synchronized (self) { | |
9388 | [package clear]; | |
9389 | [self resolve]; | |
9390 | [self perform]; | |
9391 | } | |
9392 | } | |
9393 | ||
77801ff1 JF |
9394 | - (void) installPackages:(NSArray *)packages { |
9395 | @synchronized (self) { | |
9396 | for (Package *package in packages) | |
9397 | [package install]; | |
9398 | [self resolve]; | |
9399 | [self perform]; | |
9400 | } | |
9401 | } | |
9402 | ||
36bb2ca2 JF |
9403 | - (void) installPackage:(Package *)package { |
9404 | @synchronized (self) { | |
9405 | [package install]; | |
9406 | [self resolve]; | |
9407 | [self perform]; | |
9408 | } | |
9409 | } | |
9410 | ||
9411 | - (void) removePackage:(Package *)package { | |
9412 | @synchronized (self) { | |
9413 | [package remove]; | |
9414 | [self resolve]; | |
9415 | [self perform]; | |
9416 | } | |
9417 | } | |
9418 | ||
9419 | - (void) distUpgrade { | |
9420 | @synchronized (self) { | |
670a0494 JF |
9421 | if (![database_ upgrade]) |
9422 | return; | |
36bb2ca2 JF |
9423 | [self perform]; |
9424 | } | |
b4d89997 JF |
9425 | } |
9426 | ||
780cdb3b JF |
9427 | - (void) _uicache { |
9428 | _trace(); | |
5685d514 | 9429 | system("/usr/bin/uicache"); |
780cdb3b JF |
9430 | _trace(); |
9431 | } | |
9432 | ||
9433 | - (void) uicache { | |
9434 | UIProgressHUD *hud([self addProgressHUD]); | |
9435 | [hud setText:UCLocalize("LOADING")]; | |
9436 | [self yieldToSelector:@selector(_uicache)]; | |
9437 | [self removeProgressHUD:hud]; | |
9438 | } | |
9439 | ||
fca2f596 JF |
9440 | - (void) perform_ { |
9441 | [database_ perform]; | |
9442 | [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES]; | |
780cdb3b | 9443 | [self performSelectorOnMainThread:@selector(uicache) withObject:nil waitUntilDone:YES]; |
fca2f596 JF |
9444 | } |
9445 | ||
b5e7eebb | 9446 | - (void) confirmWithNavigationController:(UINavigationController *)navigation { |
f6371a33 | 9447 | Queuing_ = false; |
2ef6faad | 9448 | [self lockSuspend]; |
fca2f596 | 9449 | [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"]; |
2ef6faad | 9450 | [self unlockSuspend]; |
dc5812ec JF |
9451 | } |
9452 | ||
54043703 JF |
9453 | - (void) retainNetworkActivityIndicator { |
9454 | if (activity_++ == 0) | |
9455 | [self setNetworkActivityIndicatorVisible:YES]; | |
848ed88b JF |
9456 | |
9457 | #if TraceLogging | |
9458 | NSLog(@"retainNetworkActivityIndicator->%d", activity_); | |
9459 | #endif | |
54043703 JF |
9460 | } |
9461 | ||
9462 | - (void) releaseNetworkActivityIndicator { | |
9463 | if (--activity_ == 0) | |
9464 | [self setNetworkActivityIndicatorVisible:NO]; | |
848ed88b JF |
9465 | |
9466 | #if TraceLogging | |
9467 | NSLog(@"releaseNetworkActivityIndicator->%d", activity_); | |
9468 | #endif | |
9469 | ||
54043703 JF |
9470 | } |
9471 | ||
674dce72 GP |
9472 | - (void) cancelAndClear:(bool)clear { |
9473 | @synchronized (self) { | |
9474 | if (clear) { | |
c6ca67ba | 9475 | [database_ clear]; |
b5e7eebb | 9476 | Queuing_ = false; |
674dce72 | 9477 | } else { |
b5e7eebb | 9478 | Queuing_ = true; |
6067f1b8 JF |
9479 | } |
9480 | ||
a4217bbb | 9481 | [self _updateData]; |
674dce72 | 9482 | } |
37d2b2a9 | 9483 | } |
7b0ce2da | 9484 | |
b5e7eebb GP |
9485 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
9486 | NSString *context([alert context]); | |
bc11cf5b | 9487 | |
6915b806 JF |
9488 | if ([context isEqualToString:@"conffile"]) { |
9489 | FILE *input = [database_ input]; | |
9490 | if (button == [alert cancelButtonIndex]) | |
9491 | fprintf(input, "N\n"); | |
9492 | else if (button == [alert firstOtherButtonIndex]) | |
9493 | fprintf(input, "Y\n"); | |
9494 | fflush(input); | |
9495 | ||
9496 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
9497 | } else if ([context isEqualToString:@"fixhalf"]) { | |
efa53fa9 | 9498 | if (button == [alert cancelButtonIndex]) { |
37d2b2a9 | 9499 | @synchronized (self) { |
584daea0 | 9500 | for (Package *broken in (id) broken_) { |
37d2b2a9 | 9501 | [broken remove]; |
d8b0f6e3 | 9502 | NSString *id(ShellEscape([broken id])); |
7cf0c7b3 JF |
9503 | system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/rm -f" |
9504 | " /var/lib/dpkg/info/%@.prerm" | |
9505 | " /var/lib/dpkg/info/%@.postrm" | |
9506 | " /var/lib/dpkg/info/%@.preinst" | |
9507 | " /var/lib/dpkg/info/%@.postinst" | |
9508 | " /var/lib/dpkg/info/%@.extrainst_" | |
9509 | "", id, id, id, id, id] UTF8String]); | |
37d2b2a9 | 9510 | } |
7b0ce2da | 9511 | |
37d2b2a9 GP |
9512 | [self resolve]; |
9513 | [self perform]; | |
9514 | } | |
efa53fa9 | 9515 | } else if (button == [alert firstOtherButtonIndex]) { |
37d2b2a9 GP |
9516 | [broken_ removeAllObjects]; |
9517 | [self _loaded]; | |
7b0ce2da JF |
9518 | } |
9519 | ||
37d2b2a9 | 9520 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 9521 | } else if ([context isEqualToString:@"upgrade"]) { |
37d2b2a9 GP |
9522 | if (button == [alert firstOtherButtonIndex]) { |
9523 | @synchronized (self) { | |
7b33d201 | 9524 | for (Package *essential in (id) essential_) |
37d2b2a9 | 9525 | [essential install]; |
7b0ce2da | 9526 | |
37d2b2a9 GP |
9527 | [self resolve]; |
9528 | [self perform]; | |
9529 | } | |
9530 | } else if (button == [alert firstOtherButtonIndex] + 1) { | |
9531 | [self distUpgrade]; | |
9532 | } else if (button == [alert cancelButtonIndex]) { | |
9533 | Ignored_ = YES; | |
7b0ce2da JF |
9534 | } |
9535 | ||
37d2b2a9 | 9536 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 9537 | } |
7b0ce2da JF |
9538 | } |
9539 | ||
d13edf44 JF |
9540 | - (void) system:(NSString *)command { |
9541 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
9542 | ||
985d2dff | 9543 | _trace(); |
0c0a966b | 9544 | system([command UTF8String]); |
985d2dff | 9545 | _trace(); |
d13edf44 JF |
9546 | |
9547 | [pool release]; | |
670a0494 JF |
9548 | } |
9549 | ||
9550 | - (void) applicationWillSuspend { | |
9551 | [database_ clean]; | |
9552 | [super applicationWillSuspend]; | |
bd150f54 JF |
9553 | } |
9554 | ||
235f5487 | 9555 | - (BOOL) isSafeToSuspend { |
5927fe03 JF |
9556 | if (locked_ != 0) { |
9557 | #if !ForRelease | |
9558 | NSLog(@"isSafeToSuspend: locked_ != 0"); | |
9559 | #endif | |
9560 | return false; | |
9561 | } | |
9562 | ||
7187b5b2 JF |
9563 | if ([tabbar_ modalViewController] != nil) |
9564 | return false; | |
9565 | ||
262afe11 GP |
9566 | // Use external process status API internally. |
9567 | // This is probably a really bad idea. | |
235f5487 | 9568 | // XXX: what is the point of this? does this solve anything at all? |
262afe11 GP |
9569 | uint64_t status = 0; |
9570 | int notify_token; | |
9571 | if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) { | |
9572 | notify_get_state(notify_token, &status); | |
9573 | notify_cancel(notify_token); | |
9574 | } | |
9575 | ||
5927fe03 JF |
9576 | if (status != 0) { |
9577 | #if !ForRelease | |
9578 | NSLog(@"isSafeToSuspend: status != 0"); | |
9579 | #endif | |
9580 | return false; | |
9581 | } | |
9582 | ||
9583 | #if !ForRelease | |
9584 | NSLog(@"isSafeToSuspend: -> true"); | |
9585 | #endif | |
9586 | return true; | |
235f5487 JF |
9587 | } |
9588 | ||
216f3dc6 JF |
9589 | - (void) suspendReturningToLastApp:(BOOL)returning { |
9590 | if ([self isSafeToSuspend]) | |
9591 | [super suspendReturningToLastApp:returning]; | |
9592 | } | |
9593 | ||
9594 | - (void) suspend { | |
9595 | if ([self isSafeToSuspend]) | |
9596 | [super suspend]; | |
9597 | } | |
9598 | ||
9599 | - (void) applicationSuspend { | |
9600 | if ([self isSafeToSuspend]) | |
9601 | [super applicationSuspend]; | |
9602 | } | |
9603 | ||
63755c48 | 9604 | - (void) applicationSuspend:(GSEventRef)event { |
235f5487 | 9605 | if ([self isSafeToSuspend]) |
bd150f54 | 9606 | [super applicationSuspend:event]; |
bd150f54 JF |
9607 | } |
9608 | ||
6d9712c4 | 9609 | - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 { |
235f5487 | 9610 | if ([self isSafeToSuspend]) |
6d9712c4 JF |
9611 | [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3]; |
9612 | } | |
9613 | ||
9614 | - (void) _setSuspended:(BOOL)value { | |
235f5487 | 9615 | if ([self isSafeToSuspend]) |
6d9712c4 JF |
9616 | [super _setSuspended:value]; |
9617 | } | |
9618 | ||
7b0ce2da | 9619 | - (UIProgressHUD *) addProgressHUD { |
8c9453da | 9620 | UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]); |
04fe1349 JF |
9621 | [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
9622 | ||
d061f4ba | 9623 | [window_ setUserInteractionEnabled:NO]; |
534e31fc | 9624 | |
f36e5eac JF |
9625 | UIViewController *target(tabbar_); |
9626 | if (UIViewController *modal = [target modalViewController]) | |
9627 | target = modal; | |
9628 | ||
22b6c4b8 | 9629 | [hud showInView:[target view]]; |
534e31fc | 9630 | |
2ef6faad | 9631 | [self lockSuspend]; |
7b0ce2da JF |
9632 | return hud; |
9633 | } | |
9634 | ||
d061f4ba | 9635 | - (void) removeProgressHUD:(UIProgressHUD *)hud { |
2ef6faad | 9636 | [self unlockSuspend]; |
8c9453da | 9637 | [hud hide]; |
d061f4ba JF |
9638 | [hud removeFromSuperview]; |
9639 | [window_ setUserInteractionEnabled:YES]; | |
9640 | } | |
9641 | ||
f050e4d9 JF |
9642 | - (CyteViewController *) pageForPackage:(NSString *)name withReferrer:(NSString *)referrer { |
9643 | return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name withReferrer:referrer] autorelease]; | |
c390d3ab JF |
9644 | } |
9645 | ||
f050e4d9 | 9646 | - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external withReferrer:(NSString *)referrer { |
e47c4742 | 9647 | NSString *scheme([[url scheme] lowercaseString]); |
f6e13561 | 9648 | if ([[url absoluteString] length] <= [scheme length] + 3) |
e47c4742 | 9649 | return nil; |
f6e13561 | 9650 | NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]); |
3a159223 | 9651 | NSArray *components([path componentsSeparatedByString:@"/"]); |
f6e13561 | 9652 | |
4fd0c466 | 9653 | if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"]) { |
f050e4d9 | 9654 | CyteViewController *controller([self pageForPackage:[components objectAtIndex:1] withReferrer:referrer]); |
4fd0c466 JF |
9655 | if (controller != nil) |
9656 | [controller setDelegate:self]; | |
9657 | return controller; | |
9658 | } | |
f6e13561 GP |
9659 | |
9660 | if ([components count] < 1 || ![scheme isEqualToString:@"cydia"]) | |
e47c4742 | 9661 | return nil; |
f6e13561 GP |
9662 | |
9663 | NSString *base([components objectAtIndex:0]); | |
9664 | ||
cd79e8cf | 9665 | CyteViewController *controller = nil; |
f5a17517 | 9666 | |
f70ea899 | 9667 | if ([base isEqualToString:@"url"]) { |
106d645f GP |
9668 | // This kind of URL can contain slashes in the argument, so we can't parse them below. |
9669 | NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])]; | |
a576488f | 9670 | controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease]; |
028dbd1c | 9671 | } else if (!external && [components count] == 1) { |
f6e13561 | 9672 | if ([base isEqualToString:@"sources"]) { |
f5a17517 | 9673 | controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9674 | } |
9675 | ||
9676 | if ([base isEqualToString:@"home"]) { | |
f5a17517 | 9677 | controller = [[[HomeController alloc] init] autorelease]; |
f6e13561 GP |
9678 | } |
9679 | ||
9680 | if ([base isEqualToString:@"sections"]) { | |
55066b9e | 9681 | controller = [[[SectionsController alloc] initWithDatabase:database_ source:nil] autorelease]; |
f6e13561 GP |
9682 | } |
9683 | ||
9684 | if ([base isEqualToString:@"search"]) { | |
43625891 | 9685 | controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease]; |
f6e13561 GP |
9686 | } |
9687 | ||
9688 | if ([base isEqualToString:@"changes"]) { | |
ea3bb538 | 9689 | controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9690 | } |
9691 | ||
9692 | if ([base isEqualToString:@"installed"]) { | |
f5a17517 | 9693 | controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9694 | } |
9695 | } else if ([components count] == 2) { | |
8912cff7 | 9696 | NSString *argument = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; |
f6e13561 GP |
9697 | |
9698 | if ([base isEqualToString:@"package"]) { | |
f050e4d9 | 9699 | controller = [self pageForPackage:argument withReferrer:referrer]; |
f6e13561 GP |
9700 | } |
9701 | ||
028dbd1c | 9702 | if (!external && [base isEqualToString:@"search"]) { |
8912cff7 | 9703 | controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease]; |
f6e13561 GP |
9704 | } |
9705 | ||
028dbd1c | 9706 | if (!external && [base isEqualToString:@"sections"]) { |
55066b9e | 9707 | if ([argument isEqualToString:@"all"] || [argument isEqualToString:@"*"]) |
f6e13561 | 9708 | argument = nil; |
55066b9e | 9709 | controller = [[[SectionController alloc] initWithDatabase:database_ source:nil section:argument] autorelease]; |
f6e13561 GP |
9710 | } |
9711 | ||
75d2e426 | 9712 | if ([base isEqualToString:@"sources"]) { |
f6e13561 | 9713 | if ([argument isEqualToString:@"add"]) { |
f5a17517 GP |
9714 | controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease]; |
9715 | [(SourcesController *)controller showAddSourcePrompt]; | |
f6e13561 | 9716 | } else { |
8912cff7 | 9717 | Source *source([database_ sourceWithKey:argument]); |
55066b9e | 9718 | controller = [[[SectionsController alloc] initWithDatabase:database_ source:source] autorelease]; |
f6e13561 GP |
9719 | } |
9720 | } | |
9721 | ||
028dbd1c | 9722 | if (!external && [base isEqualToString:@"launch"]) { |
f6e13561 | 9723 | [self launchApplicationWithIdentifier:argument suspended:NO]; |
f5a17517 | 9724 | return nil; |
f6e13561 | 9725 | } |
028dbd1c | 9726 | } else if (!external && [components count] == 3) { |
8912cff7 JF |
9727 | NSString *arg1 = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; |
9728 | NSString *arg2 = [[components objectAtIndex:2] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
f6e13561 GP |
9729 | |
9730 | if ([base isEqualToString:@"package"]) { | |
9731 | if ([arg2 isEqualToString:@"settings"]) { | |
f5a17517 | 9732 | controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease]; |
f6e13561 GP |
9733 | } else if ([arg2 isEqualToString:@"files"]) { |
9734 | if (Package *package = [database_ packageWithName:arg1]) { | |
f5a17517 GP |
9735 | controller = [[[FileTable alloc] initWithDatabase:database_] autorelease]; |
9736 | [(FileTable *)controller setPackage:package]; | |
f6e13561 GP |
9737 | } |
9738 | } | |
c390d3ab | 9739 | } |
55066b9e JF |
9740 | |
9741 | if ([base isEqualToString:@"sections"]) { | |
9742 | Source *source([arg1 isEqualToString:@"*"] ? nil : [database_ sourceWithKey:arg1]); | |
9743 | NSString *section([arg2 isEqualToString:@"*"] ? nil : arg2); | |
9744 | controller = [[[SectionController alloc] initWithDatabase:database_ source:source section:section] autorelease]; | |
9745 | } | |
c390d3ab JF |
9746 | } |
9747 | ||
f5a17517 GP |
9748 | [controller setDelegate:self]; |
9749 | return controller; | |
c390d3ab JF |
9750 | } |
9751 | ||
028dbd1c | 9752 | - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external { |
f050e4d9 | 9753 | CyteViewController *page([self pageForURL:url forExternal:external withReferrer:nil]); |
40364973 | 9754 | |
e965092a JF |
9755 | if (page != nil) |
9756 | [tabbar_ setUnselectedViewController:page]; | |
40364973 | 9757 | |
f6e13561 | 9758 | return page != nil; |
40364973 GP |
9759 | } |
9760 | ||
c390d3ab JF |
9761 | - (void) applicationOpenURL:(NSURL *)url { |
9762 | [super applicationOpenURL:url]; | |
d817e4de | 9763 | |
7b33d201 JF |
9764 | if (!loaded_) |
9765 | starturl_ = url; | |
9766 | else | |
9767 | [self openCydiaURL:url forExternal:YES]; | |
c390d3ab JF |
9768 | } |
9769 | ||
bc11cf5b | 9770 | - (void) applicationWillResignActive:(UIApplication *)application { |
7eff7ea6 | 9771 | // Stop refreshing if you get a phone call or lock the device. |
7585ce66 JF |
9772 | if ([tabbar_ updating]) |
9773 | [tabbar_ cancelUpdate]; | |
bc11cf5b | 9774 | |
ca584c15 GP |
9775 | if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)]) |
9776 | [super applicationWillResignActive:application]; | |
7eff7ea6 GP |
9777 | } |
9778 | ||
9dd3045d | 9779 | - (void) saveState { |
3d1e6f42 JF |
9780 | [[NSDictionary dictionaryWithObjectsAndKeys: |
9781 | @"InterfaceState", [tabbar_ navigationURLCollection], | |
9782 | @"LastClosed", [NSDate date], | |
9783 | @"InterfaceIndex", [NSNumber numberWithInt:[tabbar_ selectedIndex]], | |
9784 | nil] writeToFile:@ SavedState_ atomically:YES]; | |
fe8e721f GP |
9785 | |
9786 | [self _saveConfig]; | |
9787 | } | |
9788 | ||
9dd3045d JF |
9789 | - (void) applicationWillTerminate:(UIApplication *)application { |
9790 | [self saveState]; | |
9791 | } | |
9792 | ||
d4011d57 | 9793 | - (void) applicationDidEnterBackground:(UIApplication *)application { |
2acc4fa4 JF |
9794 | if (kCFCoreFoundationVersionNumber < 1000 && [self isSafeToSuspend]) |
9795 | return [self terminateWithSuccess]; | |
3d1e6f42 | 9796 | Backgrounded_ = [NSDate date]; |
d4011d57 JF |
9797 | [self saveState]; |
9798 | } | |
9799 | ||
9800 | - (void) applicationWillEnterForeground:(UIApplication *)application { | |
3d1e6f42 | 9801 | if (Backgrounded_ == nil) |
95cd61f0 JF |
9802 | return; |
9803 | ||
3d1e6f42 | 9804 | NSTimeInterval interval([Backgrounded_ timeIntervalSinceNow]); |
95cd61f0 | 9805 | |
6218c58c | 9806 | if (interval <= -(30*60)) { |
888667d5 JF |
9807 | [tabbar_ setSelectedIndex:0]; |
9808 | [[[tabbar_ viewControllers] objectAtIndex:0] popToRootViewControllerAnimated:NO]; | |
9809 | } | |
95cd61f0 | 9810 | |
6218c58c | 9811 | if (interval <= -(15*60)) { |
888667d5 JF |
9812 | if (IsReachable("cydia.saurik.com")) { |
9813 | [tabbar_ beginUpdate]; | |
9814 | [appcache_ reloadURLWithCache:YES]; | |
9815 | } | |
9816 | } | |
f26c90b1 JF |
9817 | |
9818 | if ([database_ delocked]) | |
9819 | [self reloadData]; | |
d4011d57 JF |
9820 | } |
9821 | ||
6915b806 | 9822 | - (void) setConfigurationData:(NSString *)data { |
b4fd1197 | 9823 | static RegEx conffile_r("'(.*)' '(.*)' ([01]) ([01])"); |
6915b806 JF |
9824 | |
9825 | if (!conffile_r(data)) { | |
9826 | lprintf("E:invalid conffile\n"); | |
9827 | return; | |
9828 | } | |
9829 | ||
9830 | NSString *ofile = conffile_r[1]; | |
9831 | //NSString *nfile = conffile_r[2]; | |
9832 | ||
9833 | UIAlertView *alert = [[[UIAlertView alloc] | |
9834 | initWithTitle:UCLocalize("CONFIGURATION_UPGRADE") | |
9835 | message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile] | |
9836 | delegate:self | |
9837 | cancelButtonTitle:UCLocalize("KEEP_OLD_COPY") | |
9838 | otherButtonTitles: | |
9839 | UCLocalize("ACCEPT_NEW_COPY"), | |
9840 | // XXX: UCLocalize("SEE_WHAT_CHANGED"), | |
9841 | nil | |
9842 | ] autorelease]; | |
9843 | ||
9844 | [alert setContext:@"conffile"]; | |
a08145a8 | 9845 | [alert setNumberOfRows:2]; |
6915b806 JF |
9846 | [alert show]; |
9847 | } | |
9848 | ||
f3e11d24 | 9849 | - (void) addStashController { |
2ef6faad | 9850 | [self lockSuspend]; |
7b33d201 | 9851 | stash_ = [[[StashController alloc] init] autorelease]; |
f3e11d24 GP |
9852 | [window_ addSubview:[stash_ view]]; |
9853 | } | |
9854 | ||
9855 | - (void) removeStashController { | |
9856 | [[stash_ view] removeFromSuperview]; | |
7b33d201 | 9857 | stash_ = nil; |
2ef6faad | 9858 | [self unlockSuspend]; |
f3e11d24 GP |
9859 | } |
9860 | ||
9861 | - (void) stash { | |
9e1f1e91 | 9862 | [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque]; |
f3e11d24 | 9863 | UpdateExternalStatus(1); |
0c0a966b | 9864 | [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/cydo /usr/libexec/cydia/free.sh"]; |
f3e11d24 | 9865 | UpdateExternalStatus(0); |
f3e11d24 GP |
9866 | |
9867 | [self removeStashController]; | |
42bbf27d | 9868 | [self reloadSpringBoard]; |
f3e11d24 GP |
9869 | } |
9870 | ||
f6e13561 | 9871 | - (void) setupViewControllers { |
5fe2bcc6 | 9872 | tabbar_ = [[[CydiaTabBarController alloc] initWithDatabase:database_] autorelease]; |
851f4a99 | 9873 | |
6445279b JF |
9874 | NSMutableArray *items; |
9875 | if (kCFCoreFoundationVersionNumber < 800) { | |
9876 | items = [NSMutableArray arrayWithObjects: | |
8dbf3abc JF |
9877 | [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home.png"] tag:0] autorelease], |
9878 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install.png"] tag:0] autorelease], | |
9879 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes.png"] tag:0] autorelease], | |
9880 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage.png"] tag:0] autorelease], | |
9881 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search.png"] tag:0] autorelease], | |
6445279b | 9882 | nil]; |
851f4a99 | 9883 | } else { |
6445279b | 9884 | items = [NSMutableArray arrayWithObjects: |
8dbf3abc JF |
9885 | [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home7.png"] selectedImage:[UIImage imageNamed:@"home7s.png"]] autorelease], |
9886 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install7.png"] selectedImage:[UIImage imageNamed:@"install7s.png"]] autorelease], | |
9887 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes7.png"] selectedImage:[UIImage imageNamed:@"changes7s.png"]] autorelease], | |
9888 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage7.png"] selectedImage:[UIImage imageNamed:@"manage7s.png"]] autorelease], | |
9889 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search7.png"] selectedImage:[UIImage imageNamed:@"search7s.png"]] autorelease], | |
6445279b | 9890 | nil]; |
851f4a99 GP |
9891 | } |
9892 | ||
9893 | NSMutableArray *controllers([NSMutableArray array]); | |
851f4a99 | 9894 | for (UITabBarItem *item in items) { |
15f0d613 | 9895 | UINavigationController *controller([[[UINavigationController alloc] init] autorelease]); |
851f4a99 GP |
9896 | [controller setTabBarItem:item]; |
9897 | [controllers addObject:controller]; | |
9898 | } | |
851f4a99 | 9899 | [tabbar_ setViewControllers:controllers]; |
4305896c | 9900 | |
f6e13561 | 9901 | [tabbar_ setUpdateDelegate:self]; |
851f4a99 GP |
9902 | } |
9903 | ||
968afbcd | 9904 | - (void) _sendMemoryWarningNotification { |
85106ebe JF |
9905 | if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: maybe 4_0? |
9906 | [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationMemoryWarningNotification" object:[UIApplication sharedApplication]]; | |
9907 | else | |
9908 | [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]]; | |
968afbcd JF |
9909 | } |
9910 | ||
9911 | - (void) _sendMemoryWarningNotifications { | |
9912 | while (true) { | |
9913 | [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO]; | |
740f9f75 JF |
9914 | sleep(2); |
9915 | //usleep(2000000); | |
968afbcd JF |
9916 | } |
9917 | } | |
9918 | ||
9256a1ce JF |
9919 | - (void) applicationDidReceiveMemoryWarning:(UIApplication *)application { |
9920 | NSLog(@"--"); | |
9921 | [[NSURLCache sharedURLCache] removeAllCachedResponses]; | |
9922 | } | |
9923 | ||
bd150f54 | 9924 | - (void) applicationDidFinishLaunching:(id)unused { |
968afbcd JF |
9925 | //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil]; |
9926 | ||
7e30ba6d | 9927 | _trace(); |
1e94d48b JF |
9928 | if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)]) |
9929 | [self setApplicationSupportsShakeToEdit:NO]; | |
9930 | ||
48f1762f JF |
9931 | @synchronized (HostConfig_) { |
9932 | [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]]; | |
9933 | } | |
3171f7fe | 9934 | |
4058b165 JF |
9935 | [NSURLCache setSharedURLCache:[[[CYURLCache alloc] |
9936 | initWithMemoryCapacity:524288 | |
9937 | diskCapacity:10485760 | |
b44af625 | 9938 | diskPath:Cache("SDURLCache") |
4058b165 | 9939 | ] autorelease]]; |
71cc7be1 | 9940 | |
a576488f | 9941 | [CydiaWebViewController _initialize]; |
ea173384 | 9942 | |
bfc87a4d JF |
9943 | [NSURLProtocol registerClass:[CydiaURLProtocol class]]; |
9944 | ||
793aee35 JF |
9945 | // this would disallow http{,s} URLs from accessing this data |
9946 | //[WebView registerURLSchemeAsLocal:@"cydia"]; | |
9947 | ||
7b33d201 JF |
9948 | Font12_ = [UIFont systemFontOfSize:12]; |
9949 | Font12Bold_ = [UIFont boldSystemFontOfSize:12]; | |
9950 | Font14_ = [UIFont systemFontOfSize:14]; | |
2cdc6e57 | 9951 | Font18_ = [UIFont systemFontOfSize:18]; |
7b33d201 JF |
9952 | Font18Bold_ = [UIFont boldSystemFontOfSize:18]; |
9953 | Font22Bold_ = [UIFont boldSystemFontOfSize:22]; | |
f641a0e5 | 9954 | |
7b33d201 JF |
9955 | essential_ = [NSMutableArray arrayWithCapacity:4]; |
9956 | broken_ = [NSMutableArray arrayWithCapacity:4]; | |
bd150f54 | 9957 | |
4e89e880 | 9958 | // XXX: I really need this thing... like, seriously... I'm sorry |
fedd38fe JF |
9959 | appcache_ = [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] autorelease]; |
9960 | [appcache_ reloadData]; | |
4e89e880 | 9961 | |
7b33d201 | 9962 | window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; |
f641a0e5 JF |
9963 | [window_ orderFront:self]; |
9964 | [window_ makeKey:self]; | |
c390d3ab | 9965 | [window_ setHidden:NO]; |
04fe1349 | 9966 | |
a7b261d9 JF |
9967 | if (access("/.cydia_no_stash", F_OK) == 0); |
9968 | else { | |
9969 | ||
96ed699d | 9970 | if (false) stash: { |
f3e11d24 | 9971 | [self addStashController]; |
3931b718 JF |
9972 | // XXX: this would be much cleaner as a yieldToSelector: |
9973 | // that way the removeStashController could happen right here inline | |
9974 | // we also could no longer require the useless stash_ field anymore | |
f3e11d24 GP |
9975 | [self performSelector:@selector(stash) withObject:nil afterDelay:0]; |
9976 | return; | |
9977 | } | |
9978 | ||
2656fd54 JF |
9979 | struct stat root; |
9980 | int error(stat("/", &root)); | |
9981 | _assert(error != -1); | |
9982 | ||
96ed699d | 9983 | #define Stash_(path) do { \ |
2656fd54 JF |
9984 | struct stat folder; \ |
9985 | int error(lstat((path), &folder)); \ | |
9986 | if (error != -1 && ( \ | |
9987 | folder.st_dev == root.st_dev && \ | |
9988 | S_ISDIR(folder.st_mode) \ | |
9989 | ) || error == -1 && ( \ | |
9990 | errno == ENOENT || \ | |
9991 | errno == ENOTDIR \ | |
9992 | )) goto stash; \ | |
96ed699d JF |
9993 | } while (false) |
9994 | ||
a8c416fa | 9995 | Stash_("/Applications"); |
96ed699d JF |
9996 | Stash_("/Library/Ringtones"); |
9997 | Stash_("/Library/Wallpaper"); | |
9998 | //Stash_("/usr/bin"); | |
9999 | Stash_("/usr/include"); | |
96ed699d JF |
10000 | Stash_("/usr/share"); |
10001 | //Stash_("/var/lib"); | |
10002 | ||
a7b261d9 JF |
10003 | } |
10004 | ||
770f2a8e | 10005 | database_ = [Database sharedInstance]; |
6915b806 | 10006 | [database_ setDelegate:self]; |
bfc87a4d | 10007 | |
89571a5b | 10008 | [window_ setUserInteractionEnabled:NO]; |
0be165c8 | 10009 | [self setupViewControllers]; |
6915b806 | 10010 | |
9549563e JF |
10011 | CydiaLoadingViewController *loading([[[CydiaLoadingViewController alloc] init] autorelease]); |
10012 | UINavigationController *navigation([[[UINavigationController alloc] init] autorelease]); | |
10013 | [navigation setViewControllers:[NSArray arrayWithObject:loading]]; | |
10014 | ||
10015 | emulated_ = [[[CyteTabBarController alloc] init] autorelease]; | |
10016 | [emulated_ setViewControllers:[NSArray arrayWithObject:navigation]]; | |
10017 | [emulated_ setSelectedIndex:0]; | |
1c28763e JF |
10018 | |
10019 | if ([emulated_ respondsToSelector:@selector(concealTabBarSelection)]) | |
10020 | [emulated_ concealTabBarSelection]; | |
9549563e | 10021 | |
81628115 JF |
10022 | if ([window_ respondsToSelector:@selector(setRootViewController:)]) |
10023 | [window_ setRootViewController:emulated_]; | |
237c3d1c JF |
10024 | else |
10025 | [window_ addSubview:[emulated_ view]]; | |
5ccb47d8 | 10026 | |
fed0d010 | 10027 | [self performSelector:@selector(loadData) withObject:nil afterDelay:0]; |
c626a63f | 10028 | _trace(); |
fed0d010 JF |
10029 | } |
10030 | ||
d3a28a81 GP |
10031 | - (NSArray *) defaultStartPages { |
10032 | NSMutableArray *standard = [NSMutableArray array]; | |
10033 | [standard addObject:[NSArray arrayWithObject:@"cydia://home"]]; | |
55066b9e | 10034 | [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]]; |
d3a28a81 | 10035 | [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]]; |
55066b9e | 10036 | [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]]; |
d3a28a81 GP |
10037 | [standard addObject:[NSArray arrayWithObject:@"cydia://search"]]; |
10038 | return standard; | |
10039 | } | |
10040 | ||
fed0d010 | 10041 | - (void) loadData { |
c626a63f | 10042 | _trace(); |
4121c5e0 JF |
10043 | if ([emulated_ modalViewController] != nil) |
10044 | [emulated_ dismissModalViewControllerAnimated:YES]; | |
10045 | [window_ setUserInteractionEnabled:NO]; | |
fed0d010 | 10046 | |
2925cbba JF |
10047 | [self reloadDataWithInvocation:nil]; |
10048 | [self refreshIfPossible]; | |
2e9123cb | 10049 | [self disemulate]; |
5ccb47d8 | 10050 | |
3d1e6f42 JF |
10051 | NSDictionary *state([NSDictionary dictionaryWithContentsOfFile:@ SavedState_]); |
10052 | ||
10053 | int savedIndex = [[state objectForKey:@"InterfaceIndex"] intValue]; | |
10054 | NSArray *saved = [[[state objectForKey:@"InterfaceState"] mutableCopy] autorelease]; | |
d3a28a81 GP |
10055 | int standardIndex = 0; |
10056 | NSArray *standard = [self defaultStartPages]; | |
fe8e721f | 10057 | |
d3a28a81 GP |
10058 | BOOL valid = YES; |
10059 | ||
10060 | if (saved == nil) | |
10061 | valid = NO; | |
10062 | ||
3d1e6f42 | 10063 | NSDate *closed = [state objectForKey:@"LastClosed"]; |
d3a28a81 | 10064 | if (valid && closed != nil) { |
fe8e721f | 10065 | NSTimeInterval interval([closed timeIntervalSinceNow]); |
ade2267f | 10066 | if (interval <= -(30*60)) |
d3a28a81 | 10067 | valid = NO; |
fe8e721f GP |
10068 | } |
10069 | ||
d3a28a81 GP |
10070 | if (valid && [saved count] != [standard count]) |
10071 | valid = NO; | |
efa53fa9 | 10072 | |
d3a28a81 GP |
10073 | if (valid) { |
10074 | for (unsigned int i = 0; i < [standard count]; i++) { | |
10075 | NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i]; | |
10076 | // XXX: The "hasPrefix" sanity check here could be, in theory, fooled, | |
10077 | // but it's good enough for now. | |
10078 | if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) { | |
10079 | valid = NO; | |
10080 | break; | |
10081 | } | |
fe8e721f | 10082 | } |
fe8e721f GP |
10083 | } |
10084 | ||
d3a28a81 GP |
10085 | NSArray *items = nil; |
10086 | if (valid) { | |
10087 | [tabbar_ setSelectedIndex:savedIndex]; | |
10088 | items = saved; | |
10089 | } else { | |
10090 | [tabbar_ setSelectedIndex:standardIndex]; | |
10091 | items = standard; | |
10092 | } | |
10093 | ||
fe8e721f GP |
10094 | for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) { |
10095 | NSArray *stack = [items objectAtIndex:tab]; | |
15f0d613 | 10096 | UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab]; |
fe8e721f GP |
10097 | NSMutableArray *current = [NSMutableArray array]; |
10098 | ||
10099 | for (unsigned int nav = 0; nav < [stack count]; nav++) { | |
10100 | NSString *addr = [stack objectAtIndex:nav]; | |
10101 | NSURL *url = [NSURL URLWithString:addr]; | |
f050e4d9 | 10102 | CyteViewController *page = [self pageForURL:url forExternal:NO withReferrer:nil]; |
fe8e721f GP |
10103 | if (page != nil) |
10104 | [current addObject:page]; | |
10105 | } | |
10106 | ||
10107 | [navigation setViewControllers:current]; | |
10108 | } | |
f6e13561 | 10109 | |
89571a5b | 10110 | // (Try to) show the startup URL. |
f6e13561 | 10111 | if (starturl_ != nil) { |
f14bba69 | 10112 | [self openCydiaURL:starturl_ forExternal:YES]; |
f6e13561 GP |
10113 | starturl_ = nil; |
10114 | } | |
bd150f54 JF |
10115 | } |
10116 | ||
b5e7eebb | 10117 | - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item { |
c9f3aa21 JF |
10118 | if (!IsWildcat_) { |
10119 | [sheet addButtonWithTitle:UCLocalize("CANCEL")]; | |
10120 | [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1]; | |
10121 | } | |
10122 | ||
674dce72 | 10123 | if (item != nil && IsWildcat_) { |
b5e7eebb | 10124 | [sheet showFromBarButtonItem:item animated:YES]; |
674dce72 GP |
10125 | } else { |
10126 | [sheet showInView:window_]; | |
10127 | } | |
36bb2ca2 JF |
10128 | } |
10129 | ||
6915b806 JF |
10130 | - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task { |
10131 | id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]); | |
10132 | [progress setTitle:task]; | |
10133 | [progress addProgressEvent:event]; | |
10134 | } | |
10135 | ||
10136 | - (void) addProgressEventForTask:(NSArray *)data { | |
10137 | CydiaProgressEvent *event([data objectAtIndex:0]); | |
10138 | NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]); | |
10139 | [self addProgressEvent:event forTask:task]; | |
10140 | } | |
10141 | ||
10142 | - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task { | |
10143 | [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES]; | |
10144 | } | |
10145 | ||
dc5812ec JF |
10146 | @end |
10147 | ||
b4d89997 JF |
10148 | /*IMP alloc_; |
10149 | id Alloc_(id self, SEL selector) { | |
10150 | id object = alloc_(self, selector); | |
c390d3ab | 10151 | lprintf("[%s]A-%p\n", self->isa->name, object); |
b4d89997 JF |
10152 | return object; |
10153 | }*/ | |
10154 | ||
36bb2ca2 JF |
10155 | /*IMP dealloc_; |
10156 | id Dealloc_(id self, SEL selector) { | |
10157 | id object = dealloc_(self, selector); | |
c390d3ab | 10158 | lprintf("[%s]D-%p\n", self->isa->name, object); |
36bb2ca2 JF |
10159 | return object; |
10160 | }*/ | |
b4d89997 | 10161 | |
30c5be06 JF |
10162 | Class $NSURLConnection; |
10163 | ||
10164 | MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) { | |
0c4fe0f4 | 10165 | NSMutableURLRequest *copy([[request mutableCopy] autorelease]); |
30c5be06 JF |
10166 | |
10167 | NSURL *url([copy URL]); | |
5e845121 | 10168 | |
30c5be06 | 10169 | NSString *host([url host]); |
e4b48f2f JF |
10170 | NSString *scheme([[url scheme] lowercaseString]); |
10171 | ||
10172 | NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]); | |
30c5be06 | 10173 | |
48f1762f JF |
10174 | @synchronized (HostConfig_) { |
10175 | if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)]) | |
10176 | if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound]) | |
10177 | [copy setHTTPShouldUsePipelining:YES]; | |
5e845121 JF |
10178 | |
10179 | if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"]) | |
10180 | if ([control isEqualToString:@"max-age=0"]) | |
3a23d36e | 10181 | if ([CachedURLs_ containsObject:url]) { |
5e845121 | 10182 | #if !ForRelease |
3a23d36e | 10183 | NSLog(@"~~~: %@", url); |
5e845121 JF |
10184 | #endif |
10185 | ||
10186 | [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad]; | |
10187 | ||
10188 | [copy setValue:nil forHTTPHeaderField:@"Cache-Control"]; | |
10189 | [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"]; | |
10190 | [copy setValue:nil forHTTPHeaderField:@"If-None-Match"]; | |
10191 | } | |
48f1762f | 10192 | } |
30c5be06 JF |
10193 | |
10194 | if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) { | |
10195 | } return self; | |
10196 | } | |
10197 | ||
b1497b56 JF |
10198 | Class $WAKWindow; |
10199 | ||
4cc9e99a | 10200 | static CGSize $WAKWindow$screenSize(WAKWindow *self, SEL _cmd) { |
b1497b56 JF |
10201 | CGSize size([[UIScreen mainScreen] bounds].size); |
10202 | /*if ([$WAKWindow respondsToSelector:@selector(hasLandscapeOrientation)]) | |
10203 | if ([$WAKWindow hasLandscapeOrientation]) | |
10204 | std::swap(size.width, size.height);*/ | |
10205 | return size; | |
438d6708 JF |
10206 | } |
10207 | ||
29cbf4e5 JF |
10208 | Class $NSUserDefaults; |
10209 | ||
10210 | MSHook(id, NSUserDefaults$objectForKey$, NSUserDefaults *self, SEL _cmd, NSString *key) { | |
10211 | if ([key respondsToSelector:@selector(isEqualToString:)] && [key isEqualToString:@"WebKitLocalStorageDatabasePathPreferenceKey"]) | |
b44af625 | 10212 | return Cache("LocalStorage"); |
29cbf4e5 JF |
10213 | return _NSUserDefaults$objectForKey$(self, _cmd, key); |
10214 | } | |
10215 | ||
9adfb865 JF |
10216 | static NSMutableDictionary *AutoreleaseDeepMutableCopyOfDictionary(CFTypeRef type) { |
10217 | if (type == NULL) | |
10218 | return nil; | |
10219 | if (CFGetTypeID(type) != CFDictionaryGetTypeID()) | |
10220 | return nil; | |
10221 | CFTypeRef copy(CFPropertyListCreateDeepCopy(kCFAllocatorDefault, type, kCFPropertyListMutableContainers)); | |
10222 | CFRelease(type); | |
10223 | return [(NSMutableDictionary *) copy autorelease]; | |
10224 | } | |
10225 | ||
0209cce5 JF |
10226 | int main_store(int, char *argv[]); |
10227 | ||
d13edf44 | 10228 | int main(int argc, char *argv[]) { |
0209cce5 JF |
10229 | #ifdef __arm64__ |
10230 | const char *argv0(argv[0]); | |
10231 | if (const char *slash = strrchr(argv0, '/')) | |
10232 | argv0 = slash + 1; | |
10233 | if (false); | |
10234 | else if (!strcmp(argv0, "store")) | |
10235 | return main_store(argc, argv); | |
10236 | #endif | |
10237 | ||
db1e5e0d JF |
10238 | int fd(open("/tmp/cydia.log", O_WRONLY | O_APPEND | O_CREAT, 0644)); |
10239 | dup2(fd, 2); | |
10240 | close(fd); | |
10241 | ||
d13edf44 JF |
10242 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
10243 | ||
d6dad1b4 | 10244 | _trace(); |
f79a4512 | 10245 | |
9a60abe5 JF |
10246 | UpdateExternalStatus(0); |
10247 | ||
57e8b225 JF |
10248 | UIScreen *screen([UIScreen mainScreen]); |
10249 | if ([screen respondsToSelector:@selector(scale)]) | |
10250 | ScreenScale_ = [screen scale]; | |
10251 | else | |
10252 | ScreenScale_ = 1; | |
10253 | ||
c138614d | 10254 | UIDevice *device([UIDevice currentDevice]); |
08157100 | 10255 | if ([device respondsToSelector:@selector(userInterfaceIdiom)]) { |
c138614d | 10256 | UIUserInterfaceIdiom idiom([device userInterfaceIdiom]); |
08157100 JF |
10257 | if (idiom == UIUserInterfaceIdiomPad) |
10258 | IsWildcat_ = true; | |
c138614d JF |
10259 | } |
10260 | ||
08157100 JF |
10261 | Idiom_ = IsWildcat_ ? @"ipad" : @"iphone"; |
10262 | ||
b4fd1197 | 10263 | RegEx pattern("([0-9]+\\.[0-9]+).*"); |
fd825a2d | 10264 | |
9a4a4754 JF |
10265 | if (pattern([device systemVersion])) |
10266 | Firmware_ = pattern[1]; | |
fd825a2d JF |
10267 | if (pattern(Cydia_)) |
10268 | Major_ = pattern[1]; | |
9a4a4754 | 10269 | |
7b33d201 | 10270 | SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4]; |
ef974f52 | 10271 | |
7b33d201 | 10272 | HostConfig_ = [[[NSObject alloc] init] autorelease]; |
48f1762f JF |
10273 | @synchronized (HostConfig_) { |
10274 | BridgedHosts_ = [NSMutableSet setWithCapacity:4]; | |
2e1652a9 | 10275 | InsecureHosts_ = [NSMutableSet setWithCapacity:4]; |
48f1762f | 10276 | PipelinedHosts_ = [NSMutableSet setWithCapacity:4]; |
5e845121 | 10277 | CachedURLs_ = [NSMutableSet setWithCapacity:32]; |
48f1762f | 10278 | } |
5df7ecfb | 10279 | |
de595d91 JF |
10280 | NSString *ui(@"ui/ios"); |
10281 | if (Idiom_ != nil) | |
10282 | ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]]; | |
fd825a2d | 10283 | ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]]; |
de595d91 | 10284 | UI_ = CydiaURL(ui); |
57e8b225 | 10285 | |
df213583 | 10286 | PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname)))); |
677b8415 | 10287 | |
7376b55c JF |
10288 | /* Library Hacks {{{ */ |
10289 | class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16"); | |
10290 | ||
b1497b56 JF |
10291 | $WAKWindow = objc_getClass("WAKWindow"); |
10292 | if ($WAKWindow != NULL) | |
438d6708 JF |
10293 | if (Method method = class_getInstanceMethod($WAKWindow, @selector(screenSize))) |
10294 | method_setImplementation(method, (IMP) &$WAKWindow$screenSize); | |
10295 | ||
30c5be06 JF |
10296 | $NSURLConnection = objc_getClass("NSURLConnection"); |
10297 | Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:))); | |
10298 | if (NSURLConnection$init$ != NULL) { | |
10299 | _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$)); | |
10300 | method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$)); | |
10301 | } | |
29cbf4e5 JF |
10302 | |
10303 | $NSUserDefaults = objc_getClass("NSUserDefaults"); | |
10304 | Method NSUserDefaults$objectForKey$(class_getInstanceMethod($NSUserDefaults, @selector(objectForKey:))); | |
10305 | if (NSUserDefaults$objectForKey$ != NULL) { | |
10306 | _NSUserDefaults$objectForKey$ = reinterpret_cast<id (*)(NSUserDefaults *, SEL, NSString *)>(method_getImplementation(NSUserDefaults$objectForKey$)); | |
10307 | method_setImplementation(NSUserDefaults$objectForKey$, reinterpret_cast<IMP>(&$NSUserDefaults$objectForKey$)); | |
10308 | } | |
7376b55c JF |
10309 | /* }}} */ |
10310 | /* Set Locale {{{ */ | |
f79a4512 | 10311 | Locale_ = CFLocaleCopyCurrent(); |
b1ce61ec | 10312 | Languages_ = [NSLocale preferredLanguages]; |
25fdc941 | 10313 | |
6220fd7d JF |
10314 | std::string languages; |
10315 | const char *translation(NULL); | |
78430d06 | 10316 | |
6220fd7d | 10317 | // XXX: this isn't really a language, but this is compatible with older Cydia builds |
25fdc941 | 10318 | if (Locale_ != NULL) |
6220fd7d JF |
10319 | if (const char *language = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String]) { |
10320 | RegEx pattern("([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?"); | |
10321 | if (pattern(language)) { | |
10322 | translation = strdup([pattern->*@"%1$@%2$@" UTF8String]); | |
10323 | languages += translation; | |
10324 | languages += ","; | |
10325 | } | |
10326 | } | |
78430d06 | 10327 | |
6220fd7d JF |
10328 | if (Languages_ != nil) |
10329 | for (NSString *language : Languages_) { | |
10330 | languages += [language UTF8String]; | |
10331 | languages += ","; | |
10332 | } | |
3caee0a4 | 10333 | |
6220fd7d | 10334 | languages += "en"; |
f886c114 | 10335 | NSLog(@"Setting Language: [%s] %s", translation, languages.c_str()); |
7376b55c | 10336 | /* }}} */ |
aeeb755b | 10337 | /* Index Collation {{{ */ |
42e25bc5 | 10338 | if (Class $UILocalizedIndexedCollation = objc_getClass("UILocalizedIndexedCollation")) { @try { |
aeeb755b JF |
10339 | NSBundle *bundle([NSBundle bundleForClass:$UILocalizedIndexedCollation]); |
10340 | NSString *path([bundle pathForResource:@"UITableViewLocalizedSectionIndex" ofType:@"plist"]); | |
10341 | //path = @"/System/Library/Frameworks/UIKit.framework/.lproj/UITableViewLocalizedSectionIndex.plist"; | |
10342 | NSDictionary *dictionary([NSDictionary dictionaryWithContentsOfFile:path]); | |
1c28763e | 10343 | _H<UILocalizedIndexedCollation> collation([[[$UILocalizedIndexedCollation alloc] initWithDictionary:dictionary] autorelease]); |
aeeb755b JF |
10344 | |
10345 | CollationLocale_ = MSHookIvar<NSLocale *>(collation, "_locale"); | |
10346 | ||
f93f4997 JF |
10347 | if (kCFCoreFoundationVersionNumber >= 800 && [[CollationLocale_ localeIdentifier] isEqualToString:@"zh@collation=stroke"]) { |
10348 | CollationThumbs_ = [NSArray arrayWithObjects:@"1",@"•",@"4",@"•",@"7",@"•",@"10",@"•",@"13",@"•",@"16",@"•",@"19",@"A",@"•",@"E",@"•",@"I",@"•",@"M",@"•",@"R",@"•",@"V",@"•",@"Z",@"#",nil]; | |
10349 | for (NSInteger offset : (NSInteger[]) {0,1,3,4,6,7,9,10,12,13,15,16,18,25,26,29,30,33,34,37,38,42,43,46,47,50,51}) | |
10350 | CollationOffset_.push_back(offset); | |
10351 | CollationTitles_ = [NSArray arrayWithObjects:@"1 畫",@"2 畫",@"3 畫",@"4 畫",@"5 畫",@"6 畫",@"7 畫",@"8 畫",@"9 畫",@"10 畫",@"11 畫",@"12 畫",@"13 畫",@"14 畫",@"15 畫",@"16 畫",@"17 畫",@"18 畫",@"19 畫",@"20 畫",@"21 畫",@"22 畫",@"23 畫",@"24 畫",@"25 畫以上",@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil]; | |
10352 | CollationStarts_ = [NSArray arrayWithObjects:@"一",@"丁",@"丈",@"不",@"且",@"丞",@"串",@"並",@"亭",@"乘",@"乾",@"傀",@"亂",@"僎",@"僵",@"儐",@"償",@"叢",@"儳",@"嚴",@"儷",@"儻",@"囌",@"囑",@"廳",@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"ʒ",nil]; | |
10353 | } else { | |
10354 | ||
aeeb755b JF |
10355 | CollationThumbs_ = [collation sectionIndexTitles]; |
10356 | for (size_t index(0), end([CollationThumbs_ count]); index != end; ++index) | |
10357 | CollationOffset_.push_back([collation sectionForSectionIndexTitleAtIndex:index]); | |
10358 | ||
10359 | CollationTitles_ = [collation sectionTitles]; | |
10360 | CollationStarts_ = MSHookIvar<NSArray *>(collation, "_sectionStartStrings"); | |
10361 | ||
22fd24dd JF |
10362 | NSString *&transform(MSHookIvar<NSString *>(collation, "_transform")); |
10363 | if (&transform != NULL && transform != nil) { | |
10364 | /*if ([collation respondsToSelector:@selector(transformedCollationStringForString:)]) | |
10365 | CollationModify_ = [=](NSString *value) { return [collation transformedCollationStringForString:value]; };*/ | |
10366 | const UChar *uid(reinterpret_cast<const UChar *>([transform cStringUsingEncoding:NSUnicodeStringEncoding])); | |
10367 | UErrorCode code(U_ZERO_ERROR); | |
10368 | CollationTransl_ = utrans_openU(uid, -1, UTRANS_FORWARD, NULL, 0, NULL, &code); | |
10369 | if (!U_SUCCESS(code)) | |
10370 | NSLog(@"%s", u_errorName(code)); | |
10371 | } | |
f93f4997 JF |
10372 | |
10373 | } | |
42e25bc5 JF |
10374 | } @catch (NSException *e) { |
10375 | NSLog(@"%@", e); | |
10376 | goto hard; | |
10377 | } } else hard: { | |
aeeb755b JF |
10378 | CollationLocale_ = [[[NSLocale alloc] initWithLocaleIdentifier:@"en@collation=dictionary"] autorelease]; |
10379 | ||
10380 | CollationThumbs_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil]; | |
10381 | for (NSInteger offset(0); offset != 28; ++offset) | |
10382 | CollationOffset_.push_back(offset); | |
10383 | ||
10384 | CollationTitles_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil]; | |
10385 | CollationStarts_ = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"ʒ",nil]; | |
10386 | } | |
10387 | /* }}} */ | |
7376b55c | 10388 | /* Parse Arguments {{{ */ |
de3b1ab4 JF |
10389 | bool substrate(false); |
10390 | ||
10391 | if (argc != 0) { | |
10392 | char **args(argv); | |
10393 | int arge(1); | |
10394 | ||
10395 | for (int argi(1); argi != argc; ++argi) | |
10396 | if (strcmp(argv[argi], "--") == 0) { | |
10397 | arge = argi; | |
10398 | argv[argi] = argv[0]; | |
10399 | argv += argi; | |
10400 | argc -= argi; | |
10401 | break; | |
10402 | } | |
10403 | ||
10404 | for (int argi(1); argi != arge; ++argi) | |
d791dce4 | 10405 | if (strcmp(args[argi], "--substrate") == 0) |
de3b1ab4 JF |
10406 | substrate = true; |
10407 | else | |
10408 | fprintf(stderr, "unknown argument: %s\n", args[argi]); | |
10409 | } | |
7376b55c | 10410 | /* }}} */ |
d73cede2 | 10411 | |
7376b55c | 10412 | App_ = [[NSBundle mainBundle] bundlePath]; |
d791dce4 | 10413 | Advanced_ = YES; |
7376b55c | 10414 | |
b44af625 | 10415 | Cache_ = [[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia", @"/var/mobile"] retain]; |
57df20ac | 10416 | mkdir([Cache_ UTF8String], 0755); |
d1c7f1fd | 10417 | |
b4d89997 JF |
10418 | /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc)); |
10419 | alloc_ = alloc->method_imp; | |
10420 | alloc->method_imp = (IMP) &Alloc_;*/ | |
10421 | ||
36bb2ca2 JF |
10422 | /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc)); |
10423 | dealloc_ = dealloc->method_imp; | |
10424 | dealloc->method_imp = (IMP) &Dealloc_;*/ | |
10425 | ||
7c80833f JF |
10426 | void *gestalt(dlopen("/usr/lib/libMobileGestalt.dylib", RTLD_GLOBAL | RTLD_LAZY)); |
10427 | $MGCopyAnswer = reinterpret_cast<CFStringRef (*)(CFStringRef)>(dlsym(gestalt, "MGCopyAnswer")); | |
10428 | ||
d791dce4 | 10429 | /* System Information {{{ */ |
3178d79b | 10430 | size_t size; |
c390d3ab JF |
10431 | |
10432 | int maxproc; | |
10433 | size = sizeof(maxproc); | |
10434 | if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1) | |
10435 | perror("sysctlbyname(\"kern.maxproc\", ?)"); | |
10436 | else if (maxproc < 64) { | |
10437 | maxproc = 64; | |
10438 | if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1) | |
10439 | perror("sysctlbyname(\"kern.maxproc\", #)"); | |
10440 | } | |
10441 | ||
bfc87a4d JF |
10442 | sysctlbyname("kern.osversion", NULL, &size, NULL, 0); |
10443 | char *osversion = new char[size]; | |
10444 | if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1) | |
10445 | perror("sysctlbyname(\"kern.osversion\", ?)"); | |
10446 | else | |
10447 | System_ = [NSString stringWithUTF8String:osversion]; | |
10448 | ||
3178d79b JF |
10449 | sysctlbyname("hw.machine", NULL, &size, NULL, 0); |
10450 | char *machine = new char[size]; | |
c390d3ab JF |
10451 | if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1) |
10452 | perror("sysctlbyname(\"hw.machine\", ?)"); | |
10453 | else | |
10454 | Machine_ = machine; | |
3178d79b | 10455 | |
8dcc32d4 | 10456 | int64_t usermem(0); |
ce1901de JF |
10457 | size = sizeof(usermem); |
10458 | if (sysctlbyname("hw.usermem", &usermem, &size, NULL, 0) == -1) | |
10459 | usermem = 0; | |
10460 | ||
c31d7cdc JF |
10461 | SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber"); |
10462 | ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString]; | |
10463 | BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false); | |
59dbe296 | 10464 | |
7c80833f | 10465 | UniqueID_ = UniqueIdentifier(device); |
3178d79b | 10466 | |
3e9c9e85 JF |
10467 | if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) { |
10468 | Product_ = [info objectForKey:@"SafariProductVersion"]; | |
10469 | Safari_ = [info objectForKey:@"CFBundleVersion"]; | |
10470 | } | |
e967efd5 | 10471 | |
dd58e110 | 10472 | NSString *agent([NSString stringWithFormat:@"Cydia/%@ CyF/%.2f", Cydia_, kCFCoreFoundationVersionNumber]); |
e967efd5 | 10473 | |
b4fd1197 JF |
10474 | if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Safari_)) |
10475 | agent = [NSString stringWithFormat:@"Safari/%@ %@", match[1], agent]; | |
10476 | if (RegEx match = RegEx("([0-9]+[A-Z][0-9]+[a-z]?).*", System_)) | |
10477 | agent = [NSString stringWithFormat:@"Mobile/%@ %@", match[1], agent]; | |
10478 | if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Product_)) | |
10479 | agent = [NSString stringWithFormat:@"Version/%@ %@", match[1], agent]; | |
e967efd5 JF |
10480 | |
10481 | UserAgent_ = agent; | |
d791dce4 | 10482 | /* }}} */ |
7376b55c | 10483 | /* Load Database {{{ */ |
4e479350 JF |
10484 | SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease]; |
10485 | ||
d6dad1b4 | 10486 | _trace(); |
4e479350 JF |
10487 | mkdir("/var/mobile/Library/Cydia", 0755); |
10488 | MetaFile_.Open("/var/mobile/Library/Cydia/metadata.cb0"); | |
f79a4512 | 10489 | _trace(); |
d6dad1b4 | 10490 | |
9adfb865 JF |
10491 | Values_ = AutoreleaseDeepMutableCopyOfDictionary(CFPreferencesCopyAppValue(CFSTR("CydiaValues"), CFSTR("com.saurik.Cydia"))); |
10492 | Sections_ = AutoreleaseDeepMutableCopyOfDictionary(CFPreferencesCopyAppValue(CFSTR("CydiaSections"), CFSTR("com.saurik.Cydia"))); | |
10493 | Sources_ = AutoreleaseDeepMutableCopyOfDictionary(CFPreferencesCopyAppValue(CFSTR("CydiaSources"), CFSTR("com.saurik.Cydia"))); | |
4e479350 | 10494 | Version_ = [(NSNumber *) CFPreferencesCopyAppValue(CFSTR("CydiaVersion"), CFSTR("com.saurik.Cydia")) autorelease]; |
ef055c6c | 10495 | |
4e479350 JF |
10496 | _trace(); |
10497 | NSDictionary *metadata([[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease]); | |
7b0ce2da | 10498 | |
4e479350 JF |
10499 | if (Values_ == nil) |
10500 | Values_ = [metadata objectForKey:@"Values"]; | |
10501 | if (Values_ == nil) | |
b3c8e69c | 10502 | Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease]; |
b3c8e69c | 10503 | |
4e479350 JF |
10504 | if (Sections_ == nil) |
10505 | Sections_ = [metadata objectForKey:@"Sections"]; | |
10506 | if (Sections_ == nil) | |
7b0ce2da | 10507 | Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease]; |
7b0ce2da | 10508 | |
4e479350 JF |
10509 | if (Sources_ == nil) |
10510 | Sources_ = [metadata objectForKey:@"Sources"]; | |
10511 | if (Sources_ == nil) | |
7b0ce2da | 10512 | Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease]; |
33e30380 | 10513 | |
4e479350 JF |
10514 | // XXX: this wrong, but in a way that doesn't matter :/ |
10515 | if (Version_ == nil) | |
10516 | Version_ = [metadata objectForKey:@"Version"]; | |
10517 | if (Version_ == nil) | |
33e30380 | 10518 | Version_ = [NSNumber numberWithUnsignedInt:0]; |
4e479350 JF |
10519 | |
10520 | if (NSDictionary *packages = [metadata objectForKey:@"Packages"]) { | |
10521 | bool fail(false); | |
10522 | CFDictionaryApplyFunction((CFDictionaryRef) packages, &PackageImport, &fail); | |
10523 | _trace(); | |
10524 | if (fail) | |
10525 | NSLog(@"unable to import package preferences... from 2010? oh well :/"); | |
33e30380 JF |
10526 | } |
10527 | ||
33e30380 | 10528 | if ([Version_ unsignedIntValue] == 0) { |
25c1dafb JF |
10529 | CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]); |
10530 | CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]); | |
10531 | CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]); | |
10532 | CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./"); | |
33e30380 JF |
10533 | |
10534 | Version_ = [NSNumber numberWithUnsignedInt:1]; | |
33e30380 | 10535 | |
6f87c61a JF |
10536 | if (NSMutableDictionary *cache = [NSMutableDictionary dictionaryWithContentsOfFile:@ CacheState_]) { |
10537 | [cache removeObjectForKey:@"LastUpdate"]; | |
10538 | [cache writeToFile:@ CacheState_ atomically:YES]; | |
10539 | } | |
33e30380 | 10540 | } |
2595e4c3 JF |
10541 | |
10542 | _H<NSMutableArray> broken([NSMutableArray array]); | |
10543 | for (NSString *key in (id) Sources_) | |
d93e3f22 | 10544 | if ([key rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"# "]].location != NSNotFound || ![([[Sources_ objectForKey:key] objectForKey:@"URI"] ?: @"/") hasSuffix:@"/"]) |
2595e4c3 | 10545 | [broken addObject:key]; |
4e479350 | 10546 | if ([broken count] != 0) |
2595e4c3 JF |
10547 | for (NSString *key in (id) broken) |
10548 | [Sources_ removeObjectForKey:key]; | |
4e479350 | 10549 | broken = nil; |
94b0b3e5 | 10550 | |
4e479350 JF |
10551 | SaveConfig(nil); |
10552 | system("/usr/libexec/cydia/cydo /bin/rm -f /var/lib/cydia/metadata.plist"); | |
10553 | /* }}} */ | |
94b0b3e5 | 10554 | |
d791dce4 JF |
10555 | Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil]; |
10556 | ||
6c9fe9af | 10557 | if (kCFCoreFoundationVersionNumber > 1000) |
0c0a966b | 10558 | system("/usr/libexec/cydia/cydo /usr/libexec/cydia/setnsfpn /var/lib"); |
6c9fe9af | 10559 | |
01d93940 JF |
10560 | int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]); |
10561 | ||
ad502f71 | 10562 | if (access("/User", F_OK) != 0 || version != 6) { |
d6dad1b4 | 10563 | _trace(); |
0c0a966b | 10564 | system("/usr/libexec/cydia/cydo /usr/libexec/cydia/firmware.sh"); |
d6dad1b4 JF |
10565 | _trace(); |
10566 | } | |
9e98e020 | 10567 | |
7376b55c | 10568 | if (access("/tmp/cydia.chk", F_OK) == 0) { |
b44af625 | 10569 | if (unlink([Cache("pkgcache.bin") UTF8String]) == -1) |
7376b55c | 10570 | _assert(errno == ENOENT); |
b44af625 | 10571 | if (unlink([Cache("srcpkgcache.bin") UTF8String]) == -1) |
7376b55c JF |
10572 | _assert(errno == ENOENT); |
10573 | } | |
10574 | ||
19cd1e0d JF |
10575 | system("/usr/libexec/cydia/cydo /bin/ln -sf /var/mobile/Library/Caches/com.saurik.Cydia/sources.list /etc/apt/sources.list.d/cydia.list"); |
10576 | ||
59dbe296 | 10577 | /* APT Initialization {{{ */ |
b1ce61ec JF |
10578 | _assert(pkgInitConfig(*_config)); |
10579 | _assert(pkgInitSystem(*_config, _system)); | |
10580 | ||
0209cce5 JF |
10581 | _config->Set("Acquire::AllowInsecureRepositories", true); |
10582 | _config->Set("Acquire::Check-Valid-Until", false); | |
10583 | _config->Set("Dir::Bin::Methods::store", "/Applications/Cydia.app/store"); | |
10584 | ||
10585 | _config->Set("pkgCacheGen::ForceEssential", ""); | |
6220fd7d JF |
10586 | |
10587 | if (translation != NULL) | |
10588 | _config->Set("APT::Acquire::Translation", translation); | |
f886c114 | 10589 | _config->Set("Acquire::Languages", languages); |
cb94ff21 JF |
10590 | |
10591 | // XXX: this timeout might be important :( | |
10592 | //_config->Set("Acquire::http::Timeout", 15); | |
10593 | ||
ce1901de | 10594 | _config->Set("Acquire::http::MaxParallel", usermem >= 384 * 1024 * 1024 ? 16 : 3); |
b44af625 | 10595 | |
b44af625 JF |
10596 | mkdir([Cache("archives") UTF8String], 0755); |
10597 | mkdir([Cache("archives/partial") UTF8String], 0755); | |
10598 | _config->Set("Dir::Cache", [Cache_ UTF8String]); | |
10599 | ||
49cc457a JF |
10600 | symlink("/var/lib/apt/extended_states", [Cache("extended_states") UTF8String]); |
10601 | _config->Set("Dir::State", [Cache_ UTF8String]); | |
10602 | ||
b44af625 JF |
10603 | mkdir([Cache("lists") UTF8String], 0755); |
10604 | mkdir([Cache("lists/partial") UTF8String], 0755); | |
10605 | mkdir([Cache("periodic") UTF8String], 0755); | |
e6446ca0 | 10606 | _config->Set("Dir::State::Lists", [Cache("lists") UTF8String]); |
232b396b JF |
10607 | |
10608 | std::string logs("/var/mobile/Library/Logs/Cydia"); | |
10609 | mkdir(logs.c_str(), 0755); | |
0209cce5 | 10610 | _config->Set("Dir::Log", logs); |
232b396b JF |
10611 | |
10612 | _config->Set("Dir::Bin::dpkg", "/usr/libexec/cydia/cydo"); | |
59dbe296 | 10613 | /* }}} */ |
7376b55c | 10614 | /* Color Choices {{{ */ |
36bb2ca2 JF |
10615 | space_ = CGColorSpaceCreateDeviceRGB(); |
10616 | ||
f641a0e5 | 10617 | Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0); |
77fcccaf | 10618 | Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0); |
36bb2ca2 | 10619 | Black_.Set(space_, 0.0, 0.0, 0.0, 1.0); |
86a333c6 | 10620 | Folder_.Set(space_, 0x8e/255.f, 0x8e/255.f, 0x93/255.f, 1.0); |
baf80942 | 10621 | Off_.Set(space_, 0.9, 0.9, 0.9, 1.0); |
36bb2ca2 | 10622 | White_.Set(space_, 1.0, 1.0, 1.0, 1.0); |
7b0ce2da | 10623 | Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0); |
3bd1c2a2 JF |
10624 | Green_.Set(space_, 0.0, 0.5, 0.0, 1.0); |
10625 | Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0); | |
10626 | Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0); | |
59dbe296 | 10627 | |
dc63e78f JF |
10628 | InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f]; |
10629 | RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f]; | |
7376b55c | 10630 | /* }}}*/ |
7376b55c | 10631 | /* UIKit Configuration {{{ */ |
600d005d JF |
10632 | // XXX: I have a feeling this was important |
10633 | //UIKeyboardDisableAutomaticAppearance(); | |
7376b55c | 10634 | /* }}} */ |
87f46a96 | 10635 | |
8a3b565c | 10636 | $SBSSetInterceptsMenuButtonForever = reinterpret_cast<void (*)(bool)>(dlsym(RTLD_DEFAULT, "SBSSetInterceptsMenuButtonForever")); |
c7e78d5f | 10637 | $SBSCopyIconImagePNGDataForDisplayIdentifier = reinterpret_cast<NSData *(*)(NSString *)>(dlsym(RTLD_DEFAULT, "SBSCopyIconImagePNGDataForDisplayIdentifier")); |
8a3b565c | 10638 | |
b37b0a4a JF |
10639 | const char *symbol(kCFCoreFoundationVersionNumber >= 800 ? "MGGetBoolAnswer" : "GSSystemHasCapability"); |
10640 | BOOL (*GSSystemHasCapability)(CFStringRef) = reinterpret_cast<BOOL (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, symbol)); | |
c73d524b JF |
10641 | bool fast = GSSystemHasCapability != NULL && GSSystemHasCapability(CFSTR("armv7")); |
10642 | ||
c73d524b | 10643 | PulseInterval_ = fast ? 50000 : 500000; |
8731fdb0 | 10644 | |
670a0494 | 10645 | Colon_ = UCLocalize("COLON_DELIMITED"); |
72fb3616 | 10646 | Elision_ = UCLocalize("ELISION"); |
670a0494 JF |
10647 | Error_ = UCLocalize("ERROR"); |
10648 | Warning_ = UCLocalize("WARNING"); | |
10649 | ||
d6dad1b4 | 10650 | _trace(); |
77df4f82 | 10651 | int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia")); |
36bb2ca2 JF |
10652 | |
10653 | CGColorSpaceRelease(space_); | |
199d0ba5 | 10654 | CFRelease(Locale_); |
36bb2ca2 | 10655 | |
d13edf44 | 10656 | [pool release]; |
36bb2ca2 | 10657 | return value; |
6d166849 | 10658 | } |