]> git.saurik.com Git - cydia.git/blob - Cydia.mm
OMG the mechanism for allocating CYNavigationControllers was both incorrect and insane.
[cydia.git] / Cydia.mm
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2010 Jay Freeman (saurik)
3 */
4
5 /* Modified BSD License {{{ */
6 /*
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
18 * distribution.
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38 /* }}} */
39
40 // XXX: wtf/FastMalloc.h... wtf?
41 #define USE_SYSTEM_MALLOC 1
42
43 /* #include Directives {{{ */
44 #include "UICaboodle/UCPlatform.h"
45 #include "UICaboodle/UCLocalize.h"
46
47 #include <objc/objc.h>
48 #include <objc/runtime.h>
49
50 #include <CoreGraphics/CoreGraphics.h>
51 #include <Foundation/Foundation.h>
52
53 #if 0
54 #define DEPLOYMENT_TARGET_MACOSX 1
55 #define CF_BUILDING_CF 1
56 #include <CoreFoundation/CFInternal.h>
57 #endif
58
59 #include <CoreFoundation/CFPriv.h>
60 #include <CoreFoundation/CFUniChar.h>
61
62 #include <UIKit/UIKit.h>
63 #include "iPhonePrivate.h"
64
65 #include <IOKit/IOKitLib.h>
66
67 #include <WebCore/WebCoreThread.h>
68
69 #include <algorithm>
70 #include <iomanip>
71 #include <sstream>
72 #include <string>
73
74 #include <ext/stdio_filebuf.h>
75
76 #undef ABS
77
78 #include <apt-pkg/acquire.h>
79 #include <apt-pkg/acquire-item.h>
80 #include <apt-pkg/algorithms.h>
81 #include <apt-pkg/cachefile.h>
82 #include <apt-pkg/clean.h>
83 #include <apt-pkg/configuration.h>
84 #include <apt-pkg/debindexfile.h>
85 #include <apt-pkg/debmetaindex.h>
86 #include <apt-pkg/error.h>
87 #include <apt-pkg/init.h>
88 #include <apt-pkg/mmap.h>
89 #include <apt-pkg/pkgrecords.h>
90 #include <apt-pkg/sha1.h>
91 #include <apt-pkg/sourcelist.h>
92 #include <apt-pkg/sptr.h>
93 #include <apt-pkg/strutl.h>
94 #include <apt-pkg/tagfile.h>
95
96 #include <apr-1/apr_pools.h>
97
98 #include <sys/types.h>
99 #include <sys/stat.h>
100 #include <sys/sysctl.h>
101 #include <sys/param.h>
102 #include <sys/mount.h>
103
104 #include <fcntl.h>
105 #include <notify.h>
106 #include <dlfcn.h>
107
108 extern "C" {
109 #include <mach-o/nlist.h>
110 }
111
112 #include <cstdio>
113 #include <cstdlib>
114 #include <cstring>
115
116 #include <errno.h>
117 #include <pcre.h>
118
119 #include <ext/hash_map>
120
121 #include "UICaboodle/BrowserView.h"
122 #include "UICaboodle/ResetView.h"
123
124 #include "substrate.h"
125
126 // Apple's sample Reachability code, ASPL licensed.
127 #include "Reachability.h"
128 /* }}} */
129
130 /* Profiler {{{ */
131 struct timeval _ltv;
132 bool _itv;
133
134 #define _timestamp ({ \
135 struct timeval tv; \
136 gettimeofday(&tv, NULL); \
137 tv.tv_sec * 1000000 + tv.tv_usec; \
138 })
139
140 typedef std::vector<class ProfileTime *> TimeList;
141 TimeList times_;
142
143 class ProfileTime {
144 private:
145 const char *name_;
146 uint64_t total_;
147 uint64_t count_;
148
149 public:
150 ProfileTime(const char *name) :
151 name_(name),
152 total_(0)
153 {
154 times_.push_back(this);
155 }
156
157 void AddTime(uint64_t time) {
158 total_ += time;
159 ++count_;
160 }
161
162 void Print() {
163 if (total_ != 0)
164 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
165 total_ = 0;
166 count_ = 0;
167 }
168 };
169
170 class ProfileTimer {
171 private:
172 ProfileTime &time_;
173 uint64_t start_;
174
175 public:
176 ProfileTimer(ProfileTime &time) :
177 time_(time),
178 start_(_timestamp)
179 {
180 }
181
182 ~ProfileTimer() {
183 time_.AddTime(_timestamp - start_);
184 }
185 };
186
187 void PrintTimes() {
188 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
189 (*i)->Print();
190 std::cerr << "========" << std::endl;
191 }
192
193 #define _profile(name) { \
194 static ProfileTime name(#name); \
195 ProfileTimer _ ## name(name);
196
197 #define _end }
198 /* }}} */
199
200 #define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
201
202 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
203
204 void NSLogPoint(const char *fix, const CGPoint &point) {
205 NSLog(@"%s(%g,%g)", fix, point.x, point.y);
206 }
207
208 void NSLogRect(const char *fix, const CGRect &rect) {
209 NSLog(@"%s(%g,%g)+(%g,%g)", fix, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
210 }
211
212 static _finline NSString *CydiaURL(NSString *path) {
213 char page[25];
214 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = ':';
215 page[5] = '/'; page[6] = '/'; page[7] = 'c'; page[8] = 'y'; page[9] = 'd';
216 page[10] = 'i'; page[11] = 'a'; page[12] = '.'; page[13] = 's'; page[14] = 'a';
217 page[15] = 'u'; page[16] = 'r'; page[17] = 'i'; page[18] = 'k'; page[19] = '.';
218 page[20] = 'c'; page[21] = 'o'; page[22] = 'm'; page[23] = '/'; page[24] = '\0';
219 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
220 }
221
222 static _finline void UpdateExternalStatus(uint64_t newStatus) {
223 int notify_token;
224 if (notify_register_check("com.saurik.Cydia.status", &notify_token) == NOTIFY_STATUS_OK) {
225 notify_set_state(notify_token, newStatus);
226 notify_cancel(notify_token);
227 }
228 notify_post("com.saurik.Cydia.status");
229 }
230
231 /* [NSObject yieldToSelector:(withObject:)] {{{*/
232 @interface NSObject (Cydia)
233 - (id) yieldToSelector:(SEL)selector withObject:(id)object;
234 - (id) yieldToSelector:(SEL)selector;
235 @end
236
237 @implementation NSObject (Cydia)
238
239 - (void) doNothing {
240 }
241
242 - (void) _yieldToContext:(NSMutableArray *)context { _pooled
243 SEL selector(reinterpret_cast<SEL>([[context objectAtIndex:0] pointerValue]));
244 id object([[context objectAtIndex:1] nonretainedObjectValue]);
245 volatile bool &stopped(*reinterpret_cast<bool *>([[context objectAtIndex:2] pointerValue]));
246
247 /* XXX: deal with exceptions */
248 id value([self performSelector:selector withObject:object]);
249
250 NSMethodSignature *signature([self methodSignatureForSelector:selector]);
251 [context removeAllObjects];
252 if ([signature methodReturnLength] != 0 && value != nil)
253 [context addObject:value];
254
255 stopped = true;
256
257 [self
258 performSelectorOnMainThread:@selector(doNothing)
259 withObject:nil
260 waitUntilDone:NO
261 ];
262 }
263
264 - (id) yieldToSelector:(SEL)selector withObject:(id)object {
265 /*return [self performSelector:selector withObject:object];*/
266
267 volatile bool stopped(false);
268
269 NSMutableArray *context([NSMutableArray arrayWithObjects:
270 [NSValue valueWithPointer:selector],
271 [NSValue valueWithNonretainedObject:object],
272 [NSValue valueWithPointer:const_cast<bool *>(&stopped)],
273 nil]);
274
275 NSThread *thread([[[NSThread alloc]
276 initWithTarget:self
277 selector:@selector(_yieldToContext:)
278 object:context
279 ] autorelease]);
280
281 [thread start];
282
283 NSRunLoop *loop([NSRunLoop currentRunLoop]);
284 NSDate *future([NSDate distantFuture]);
285
286 while (!stopped && [loop runMode:NSDefaultRunLoopMode beforeDate:future]);
287
288 return [context count] == 0 ? nil : [context objectAtIndex:0];
289 }
290
291 - (id) yieldToSelector:(SEL)selector {
292 return [self yieldToSelector:selector withObject:nil];
293 }
294
295 @end
296 /* }}} */
297
298 @interface CYActionSheet : UIAlertView {
299 unsigned button_;
300 }
301
302 - (int) yieldToPopupAlertAnimated:(BOOL)animated;
303 @end
304
305 @implementation CYActionSheet
306
307 - (id) initWithTitle:(NSString *)title buttons:(NSArray *)buttons defaultButtonIndex:(int)index {
308 if ((self = [super init])) {
309 [self setTitle:title];
310 [self setDelegate:self];
311 for (NSString *button in buttons) [self addButtonWithTitle:button];
312 [self setCancelButtonIndex:index];
313 } return self;
314 }
315
316 - (void)_updateFrameForDisplay {
317 [super _updateFrameForDisplay];
318 if ([self cancelButtonIndex] == -1) {
319 NSArray *buttons = [self buttons];
320 if ([buttons count]) {
321 UIImage *background = [[buttons objectAtIndex:0] backgroundForState:0];
322 for (UIThreePartButton *button in buttons)
323 [button setBackground:background forState:0];
324 }
325 }
326 }
327
328 - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
329 button_ = buttonIndex + 1;
330 }
331
332 - (void) dismiss {
333 [self dismissWithClickedButtonIndex:-1 animated:YES];
334 }
335
336 - (int) yieldToPopupAlertAnimated:(BOOL)animated {
337 [self setRunsModal:YES];
338 button_ = 0;
339 [self show];
340 return button_;
341 }
342
343 @end
344
345 /* NSForcedOrderingSearch doesn't work on the iPhone */
346 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
347 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
348 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
349
350 /* Information Dictionaries {{{ */
351 @interface NSMutableArray (Cydia)
352 - (void) addInfoDictionary:(NSDictionary *)info;
353 @end
354
355 @implementation NSMutableArray (Cydia)
356
357 - (void) addInfoDictionary:(NSDictionary *)info {
358 [self addObject:info];
359 }
360
361 @end
362
363 @interface NSMutableDictionary (Cydia)
364 - (void) addInfoDictionary:(NSDictionary *)info;
365 @end
366
367 @implementation NSMutableDictionary (Cydia)
368
369 - (void) addInfoDictionary:(NSDictionary *)info {
370 [self setObject:info forKey:[info objectForKey:@"CFBundleIdentifier"]];
371 }
372
373 @end
374 /* }}} */
375
376 #define lprintf(args...) fprintf(stderr, args)
377
378 #define ForRelease 0
379 #define TraceLogging (1 && !ForRelease)
380 #define HistogramInsertionSort (0 && !ForRelease)
381 #define ProfileTimes (0 && !ForRelease)
382 #define ForSaurik (0 && !ForRelease)
383 #define LogBrowser (0 && !ForRelease)
384 #define TrackResize (0 && !ForRelease)
385 #define ManualRefresh (0 && !ForRelease)
386 #define ShowInternals (0 && !ForRelease)
387 #define IgnoreInstall (0 && !ForRelease)
388 #define RecycleWebViews 0
389 #define RecyclePackageViews (1 && ForRelease)
390 #define AlwaysReload (1 && !ForRelease)
391
392 #if !TraceLogging
393 #undef _trace
394 #define _trace(args...)
395 #endif
396
397 #if !ProfileTimes
398 #undef _profile
399 #define _profile(name) {
400 #undef _end
401 #define _end }
402 #define PrintTimes() do {} while (false)
403 #endif
404
405 /* Radix Sort {{{ */
406 typedef uint32_t (*SKRadixFunction)(id, void *);
407
408 @interface NSMutableArray (Radix)
409 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object;
410 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument;
411 @end
412
413 struct RadixItem_ {
414 size_t index;
415 uint32_t key;
416 };
417
418 static void RadixSort_(NSMutableArray *self, size_t count, struct RadixItem_ *swap) {
419 struct RadixItem_ *lhs(swap), *rhs(swap + count);
420
421 static const size_t width = 32;
422 static const size_t bits = 11;
423 static const size_t slots = 1 << bits;
424 static const size_t passes = (width + (bits - 1)) / bits;
425
426 size_t *hist(new size_t[slots]);
427
428 for (size_t pass(0); pass != passes; ++pass) {
429 memset(hist, 0, sizeof(size_t) * slots);
430
431 for (size_t i(0); i != count; ++i) {
432 uint32_t key(lhs[i].key);
433 key >>= pass * bits;
434 key &= _not(uint32_t) >> width - bits;
435 ++hist[key];
436 }
437
438 size_t offset(0);
439 for (size_t i(0); i != slots; ++i) {
440 size_t local(offset);
441 offset += hist[i];
442 hist[i] = local;
443 }
444
445 for (size_t i(0); i != count; ++i) {
446 uint32_t key(lhs[i].key);
447 key >>= pass * bits;
448 key &= _not(uint32_t) >> width - bits;
449 rhs[hist[key]++] = lhs[i];
450 }
451
452 RadixItem_ *tmp(lhs);
453 lhs = rhs;
454 rhs = tmp;
455 }
456
457 delete [] hist;
458
459 NSMutableArray *values([NSMutableArray arrayWithCapacity:count]);
460 for (size_t i(0); i != count; ++i)
461 [values addObject:[self objectAtIndex:lhs[i].index]];
462 [self setArray:values];
463
464 delete [] swap;
465 }
466
467 @implementation NSMutableArray (Radix)
468
469 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object {
470 size_t count([self count]);
471 if (count == 0)
472 return;
473
474 #if 0
475 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[NSMethodSignature signatureWithObjCTypes:"L12@0:4@8"]]);
476 [invocation setSelector:selector];
477 [invocation setArgument:&object atIndex:2];
478 #else
479 /* XXX: this is an unsafe optimization of doomy hell */
480 Method method(class_getInstanceMethod([[self objectAtIndex:0] class], selector));
481 _assert(method != NULL);
482 uint32_t (*imp)(id, SEL, id) = reinterpret_cast<uint32_t (*)(id, SEL, id)>(method_getImplementation(method));
483 _assert(imp != NULL);
484 #endif
485
486 struct RadixItem_ *swap(new RadixItem_[count * 2]);
487
488 for (size_t i(0); i != count; ++i) {
489 RadixItem_ &item(swap[i]);
490 item.index = i;
491
492 id object([self objectAtIndex:i]);
493
494 #if 0
495 [invocation setTarget:object];
496 [invocation invoke];
497 [invocation getReturnValue:&item.key];
498 #else
499 item.key = imp(object, selector, object);
500 #endif
501 }
502
503 RadixSort_(self, count, swap);
504 }
505
506 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument {
507 size_t count([self count]);
508 struct RadixItem_ *swap(new RadixItem_[count * 2]);
509
510 for (size_t i(0); i != count; ++i) {
511 RadixItem_ &item(swap[i]);
512 item.index = i;
513
514 id object([self objectAtIndex:i]);
515 item.key = function(object, argument);
516 }
517
518 RadixSort_(self, count, swap);
519 }
520
521 @end
522 /* }}} */
523 /* Insertion Sort {{{ */
524
525 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
526 const char *ptr = (const char *)list;
527 while (0 < count) {
528 CFIndex half = count / 2;
529 const char *probe = ptr + elementSize * half;
530 CFComparisonResult cr = comparator(element, probe, context);
531 if (0 == cr) return (probe - (const char *)list) / elementSize;
532 ptr = (cr < 0) ? ptr : probe + elementSize;
533 count = (cr < 0) ? half : (half + (count & 1) - 1);
534 }
535 return (ptr - (const char *)list) / elementSize;
536 }
537
538 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
539 const char *ptr = (const char *)list;
540 while (0 < count) {
541 CFIndex half = count / 2;
542 const char *probe = ptr + elementSize * half;
543 CFComparisonResult cr = comparator(element, probe, context);
544 if (0 == cr) return (probe - (const char *)list) / elementSize;
545 ptr = (cr < 0) ? ptr : probe + elementSize;
546 count = (cr < 0) ? half : (half + (count & 1) - 1);
547 }
548 return (ptr - (const char *)list) / elementSize;
549 }
550
551 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
552 if (range.length == 0)
553 return;
554 const void **values(new const void *[range.length]);
555 CFArrayGetValues(array, range, values);
556
557 #if HistogramInsertionSort
558 uint32_t total(0), *offsets(new uint32_t[range.length]);
559 #endif
560
561 for (CFIndex index(1); index != range.length; ++index) {
562 const void *value(values[index]);
563 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
564 CFIndex correct(index);
565 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan)
566 if (--correct == 0)
567 break;
568 if (correct != index) {
569 size_t offset(index - correct);
570 #if HistogramInsertionSort
571 total += offset;
572 ++offsets[offset];
573 if (offset > 10)
574 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
575 #endif
576 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
577 values[correct] = value;
578 }
579 }
580
581 CFArrayReplaceValues(array, range, values, range.length);
582 delete [] values;
583
584 #if HistogramInsertionSort
585 for (CFIndex index(0); index != range.length; ++index)
586 if (offsets[index] != 0)
587 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
588 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
589 delete [] offsets;
590 #endif
591 }
592
593 /* }}} */
594
595 /* Apple Bug Fixes {{{ */
596 @implementation UIWebDocumentView (Cydia)
597
598 - (void) _setScrollerOffset:(CGPoint)offset {
599 UIScroller *scroller([self _scroller]);
600
601 CGSize size([scroller contentSize]);
602 CGSize bounds([scroller bounds].size);
603
604 CGPoint max;
605 max.x = size.width - bounds.width;
606 max.y = size.height - bounds.height;
607
608 // wtf Apple?!
609 if (max.x < 0)
610 max.x = 0;
611 if (max.y < 0)
612 max.y = 0;
613
614 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
615 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
616
617 [scroller setOffset:offset];
618 }
619
620 @end
621 /* }}} */
622
623 NSUInteger WebScriptObject$countByEnumeratingWithState$objects$count$(WebScriptObject *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
624 size_t length([self count] - state->state);
625 if (length <= 0)
626 return 0;
627 else if (length > count)
628 length = count;
629 for (size_t i(0); i != length; ++i)
630 objects[i] = [self objectAtIndex:state->state++];
631 state->itemsPtr = objects;
632 state->mutationsPtr = (unsigned long *) self;
633 return length;
634 }
635
636 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
637 size_t length([self length] - state->state);
638 if (length <= 0)
639 return 0;
640 else if (length > count)
641 length = count;
642 for (size_t i(0); i != length; ++i)
643 objects[i] = [self item:state->state++];
644 state->itemsPtr = objects;
645 state->mutationsPtr = (unsigned long *) self;
646 return length;
647 }
648
649 /* Cydia NSString Additions {{{ */
650 @interface NSString (Cydia)
651 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length;
652 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool;
653 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length;
654 - (NSComparisonResult) compareByPath:(NSString *)other;
655 - (NSString *) stringByCachingURLWithCurrentCDN;
656 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
657 @end
658
659 @implementation NSString (Cydia)
660
661 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length {
662 return [[[NSString alloc] initWithBytesNoCopy:const_cast<char *>(bytes) length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
663 }
664
665 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool {
666 char *data(reinterpret_cast<char *>(apr_palloc(pool, length)));
667 memcpy(data, bytes, length);
668 return [[[NSString allocWithZone:zone] initWithBytesNoCopy:data length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
669 }
670
671 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length {
672 return [[[NSString alloc] initWithBytes:bytes length:length encoding:NSUTF8StringEncoding] autorelease];
673 }
674
675 - (NSComparisonResult) compareByPath:(NSString *)other {
676 NSString *prefix = [self commonPrefixWithString:other options:0];
677 size_t length = [prefix length];
678
679 NSRange lrange = NSMakeRange(length, [self length] - length);
680 NSRange rrange = NSMakeRange(length, [other length] - length);
681
682 lrange = [self rangeOfString:@"/" options:0 range:lrange];
683 rrange = [other rangeOfString:@"/" options:0 range:rrange];
684
685 NSComparisonResult value;
686
687 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
688 value = NSOrderedSame;
689 else if (lrange.location == NSNotFound)
690 value = NSOrderedAscending;
691 else if (rrange.location == NSNotFound)
692 value = NSOrderedDescending;
693 else
694 value = NSOrderedSame;
695
696 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
697 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
698 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
699 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
700
701 NSComparisonResult result = [lpath compare:rpath];
702 return result == NSOrderedSame ? value : result;
703 }
704
705 - (NSString *) stringByCachingURLWithCurrentCDN {
706 return [self
707 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
708 withString:@"://cache.cydia.saurik.com/"
709 ];
710 }
711
712 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
713 return [(id)CFURLCreateStringByAddingPercentEscapes(
714 kCFAllocatorDefault,
715 (CFStringRef) self,
716 NULL,
717 CFSTR(";/?:@&=+$,"),
718 kCFStringEncodingUTF8
719 ) autorelease];
720 }
721
722 @end
723 /* }}} */
724
725 /* C++ NSString Wrapper Cache {{{ */
726 class CYString {
727 private:
728 char *data_;
729 size_t size_;
730 CFStringRef cache_;
731
732 _finline void clear_() {
733 if (cache_ != NULL) {
734 CFRelease(cache_);
735 cache_ = NULL;
736 }
737 }
738
739 public:
740 _finline bool empty() const {
741 return size_ == 0;
742 }
743
744 _finline size_t size() const {
745 return size_;
746 }
747
748 _finline char *data() const {
749 return data_;
750 }
751
752 _finline void clear() {
753 size_ = 0;
754 clear_();
755 }
756
757 _finline CYString() :
758 data_(0),
759 size_(0),
760 cache_(NULL)
761 {
762 }
763
764 _finline ~CYString() {
765 clear_();
766 }
767
768 void operator =(const CYString &rhs) {
769 data_ = rhs.data_;
770 size_ = rhs.size_;
771
772 if (rhs.cache_ == nil)
773 cache_ = NULL;
774 else
775 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
776 }
777
778 void set(apr_pool_t *pool, const char *data, size_t size) {
779 if (size == 0)
780 clear();
781 else {
782 clear_();
783
784 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size + 1)));
785 memcpy(temp, data, size);
786 temp[size] = '\0';
787 data_ = temp;
788 size_ = size;
789 }
790 }
791
792 _finline void set(apr_pool_t *pool, const char *data) {
793 set(pool, data, data == NULL ? 0 : strlen(data));
794 }
795
796 _finline void set(apr_pool_t *pool, const std::string &rhs) {
797 set(pool, rhs.data(), rhs.size());
798 }
799
800 bool operator ==(const CYString &rhs) const {
801 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
802 }
803
804 operator CFStringRef() {
805 if (cache_ == NULL) {
806 if (size_ == 0)
807 return nil;
808 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingUTF8, NO, kCFAllocatorNull);
809 if (cache_ == NULL)
810 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
811 } return cache_;
812 }
813
814 _finline operator id() {
815 return (NSString *) static_cast<CFStringRef>(*this);
816 }
817 };
818 /* }}} */
819 /* C++ NSString Algorithm Adapters {{{ */
820 extern "C" {
821 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
822 }
823
824 struct NSStringMapHash :
825 std::unary_function<NSString *, size_t>
826 {
827 _finline size_t operator ()(NSString *value) const {
828 return CFStringHashNSString((CFStringRef) value);
829 }
830 };
831
832 struct NSStringMapLess :
833 std::binary_function<NSString *, NSString *, bool>
834 {
835 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
836 return [lhs compare:rhs] == NSOrderedAscending;
837 }
838 };
839
840 struct NSStringMapEqual :
841 std::binary_function<NSString *, NSString *, bool>
842 {
843 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
844 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
845 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
846 //[lhs isEqualToString:rhs];
847 }
848 };
849 /* }}} */
850
851 /* Perl-Compatible RegEx {{{ */
852 class Pcre {
853 private:
854 pcre *code_;
855 pcre_extra *study_;
856 int capture_;
857 int *matches_;
858 const char *data_;
859
860 public:
861 Pcre(const char *regex) :
862 study_(NULL)
863 {
864 const char *error;
865 int offset;
866 code_ = pcre_compile(regex, 0, &error, &offset, NULL);
867
868 if (code_ == NULL) {
869 lprintf("%d:%s\n", offset, error);
870 _assert(false);
871 }
872
873 pcre_fullinfo(code_, study_, PCRE_INFO_CAPTURECOUNT, &capture_);
874 matches_ = new int[(capture_ + 1) * 3];
875 }
876
877 ~Pcre() {
878 pcre_free(code_);
879 delete matches_;
880 }
881
882 NSString *operator [](size_t match) {
883 return [NSString stringWithUTF8Bytes:(data_ + matches_[match * 2]) length:(matches_[match * 2 + 1] - matches_[match * 2])];
884 }
885
886 bool operator ()(NSString *data) {
887 // XXX: length is for characters, not for bytes
888 return operator ()([data UTF8String], [data length]);
889 }
890
891 bool operator ()(const char *data, size_t size) {
892 data_ = data;
893 return pcre_exec(code_, study_, data, size, 0, 0, matches_, (capture_ + 1) * 3) >= 0;
894 }
895 };
896 /* }}} */
897 /* Mime Addresses {{{ */
898 @interface Address : NSObject {
899 NSString *name_;
900 NSString *address_;
901 }
902
903 - (NSString *) name;
904 - (NSString *) address;
905
906 - (void) setAddress:(NSString *)address;
907
908 + (Address *) addressWithString:(NSString *)string;
909 - (Address *) initWithString:(NSString *)string;
910 @end
911
912 @implementation Address
913
914 - (void) dealloc {
915 [name_ release];
916 if (address_ != nil)
917 [address_ release];
918 [super dealloc];
919 }
920
921 - (NSString *) name {
922 return name_;
923 }
924
925 - (NSString *) address {
926 return address_;
927 }
928
929 - (void) setAddress:(NSString *)address {
930 if (address_ != nil)
931 [address_ autorelease];
932 if (address == nil)
933 address_ = nil;
934 else
935 address_ = [address retain];
936 }
937
938 + (Address *) addressWithString:(NSString *)string {
939 return [[[Address alloc] initWithString:string] autorelease];
940 }
941
942 + (NSArray *) _attributeKeys {
943 return [NSArray arrayWithObjects:@"address", @"name", nil];
944 }
945
946 - (NSArray *) attributeKeys {
947 return [[self class] _attributeKeys];
948 }
949
950 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
951 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
952 }
953
954 - (Address *) initWithString:(NSString *)string {
955 if ((self = [super init]) != nil) {
956 const char *data = [string UTF8String];
957 size_t size = [string length];
958
959 static Pcre address_r("^\"?(.*)\"? <([^>]*)>$");
960
961 if (address_r(data, size)) {
962 name_ = [address_r[1] retain];
963 address_ = [address_r[2] retain];
964 } else {
965 name_ = [string retain];
966 address_ = nil;
967 }
968 } return self;
969 }
970
971 @end
972 /* }}} */
973 /* CoreGraphics Primitives {{{ */
974 class CGColor {
975 private:
976 CGColorRef color_;
977
978 public:
979 CGColor() :
980 color_(NULL)
981 {
982 }
983
984 CGColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
985 color_(NULL)
986 {
987 Set(space, red, green, blue, alpha);
988 }
989
990 void Clear() {
991 if (color_ != NULL)
992 CGColorRelease(color_);
993 }
994
995 ~CGColor() {
996 Clear();
997 }
998
999 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
1000 Clear();
1001 float color[] = {red, green, blue, alpha};
1002 color_ = CGColorCreate(space, color);
1003 }
1004
1005 operator CGColorRef() {
1006 return color_;
1007 }
1008 };
1009 /* }}} */
1010
1011 /* Random Global Variables {{{ */
1012 static const int PulseInterval_ = 50000;
1013 static const int ButtonBarWidth_ = 60;
1014 static const int ButtonBarHeight_ = 48;
1015 static const float KeyboardTime_ = 0.3f;
1016
1017 static int Finish_;
1018 static NSArray *Finishes_;
1019
1020 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
1021 #define NotifyConfig_ "/etc/notify.conf"
1022
1023 static bool Queuing_;
1024
1025 static CGColor Blue_;
1026 static CGColor Blueish_;
1027 static CGColor Black_;
1028 static CGColor Off_;
1029 static CGColor White_;
1030 static CGColor Gray_;
1031 static CGColor Green_;
1032 static CGColor Purple_;
1033 static CGColor Purplish_;
1034
1035 static UIColor *InstallingColor_;
1036 static UIColor *RemovingColor_;
1037
1038 static NSString *App_;
1039 static NSString *Home_;
1040
1041 static BOOL Advanced_;
1042 static BOOL Ignored_;
1043
1044 static UIFont *Font12_;
1045 static UIFont *Font12Bold_;
1046 static UIFont *Font14_;
1047 static UIFont *Font18Bold_;
1048 static UIFont *Font22Bold_;
1049
1050 static const char *Machine_ = NULL;
1051 static const NSString *System_ = NULL;
1052 static const NSString *SerialNumber_ = nil;
1053 static const NSString *ChipID_ = nil;
1054 static const NSString *Token_ = nil;
1055 static const NSString *UniqueID_ = nil;
1056 static const NSString *Build_ = nil;
1057 static const NSString *Product_ = nil;
1058 static const NSString *Safari_ = nil;
1059
1060 static CFLocaleRef Locale_;
1061 static NSArray *Languages_;
1062 static CGColorSpaceRef space_;
1063
1064 static NSDictionary *SectionMap_;
1065 static NSMutableDictionary *Metadata_;
1066 static _transient NSMutableDictionary *Settings_;
1067 static _transient NSString *Role_;
1068 static _transient NSMutableDictionary *Packages_;
1069 static _transient NSMutableDictionary *Sections_;
1070 static _transient NSMutableDictionary *Sources_;
1071 static bool Changed_;
1072 static NSDate *now_;
1073
1074 static bool IsWildcat_;
1075
1076 #if RecycleWebViews
1077 static NSMutableArray *Documents_;
1078 #endif
1079 /* }}} */
1080
1081 /* Display Helpers {{{ */
1082 inline float Interpolate(float begin, float end, float fraction) {
1083 return (end - begin) * fraction + begin;
1084 }
1085
1086 /* XXX: localize this! */
1087 NSString *SizeString(double size) {
1088 bool negative = size < 0;
1089 if (negative)
1090 size = -size;
1091
1092 unsigned power = 0;
1093 while (size > 1024) {
1094 size /= 1024;
1095 ++power;
1096 }
1097
1098 static const char *powers_[] = {"B", "kB", "MB", "GB"};
1099
1100 return [NSString stringWithFormat:@"%s%.1f %s", (negative ? "-" : ""), size, powers_[power]];
1101 }
1102
1103 static _finline CFStringRef CFCString(const char *value) {
1104 return CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(value), strlen(value), kCFStringEncodingUTF8, NO, kCFAllocatorNull);
1105 }
1106
1107 const char *StripVersion_(const char *version) {
1108 const char *colon(strchr(version, ':'));
1109 if (colon != NULL)
1110 version = colon + 1;
1111 return version;
1112 }
1113
1114 CFStringRef StripVersion(const char *version) {
1115 const char *colon(strchr(version, ':'));
1116 if (colon != NULL)
1117 version = colon + 1;
1118 return CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(version), strlen(version), kCFStringEncodingUTF8, NO);
1119 // XXX: performance
1120 return CFCString(version);
1121 }
1122
1123 NSString *LocalizeSection(NSString *section) {
1124 static Pcre title_r("^(.*?) \\((.*)\\)$");
1125 if (title_r(section)) {
1126 NSString *parent(title_r[1]);
1127 NSString *child(title_r[2]);
1128
1129 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
1130 LocalizeSection(parent),
1131 LocalizeSection(child)
1132 ];
1133 }
1134
1135 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
1136 }
1137
1138 NSString *Simplify(NSString *title) {
1139 const char *data = [title UTF8String];
1140 size_t size = [title length];
1141
1142 static Pcre square_r("^\\[(.*)\\]$");
1143 if (square_r(data, size))
1144 return Simplify(square_r[1]);
1145
1146 static Pcre paren_r("^\\((.*)\\)$");
1147 if (paren_r(data, size))
1148 return Simplify(paren_r[1]);
1149
1150 static Pcre title_r("^(.*?) \\((.*)\\)$");
1151 if (title_r(data, size))
1152 return Simplify(title_r[1]);
1153
1154 return title;
1155 }
1156 /* }}} */
1157
1158 NSString *GetLastUpdate() {
1159 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
1160
1161 if (update == nil)
1162 return UCLocalize("NEVER_OR_UNKNOWN");
1163
1164 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
1165 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
1166
1167 CFRelease(formatter);
1168
1169 return [(NSString *) formatted autorelease];
1170 }
1171
1172 bool isSectionVisible(NSString *section) {
1173 NSDictionary *metadata([Sections_ objectForKey:section]);
1174 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
1175 return hidden == nil || ![hidden boolValue];
1176 }
1177
1178 @class Cydia;
1179
1180 /* Delegate Prototypes {{{ */
1181 @class Package;
1182 @class Source;
1183
1184 @interface NSObject (ProgressDelegate)
1185 @end
1186
1187 @protocol ProgressDelegate
1188 - (void) setProgressError:(NSString *)error withTitle:(NSString *)id;
1189 - (void) setProgressTitle:(NSString *)title;
1190 - (void) setProgressPercent:(float)percent;
1191 - (void) startProgress;
1192 - (void) addProgressOutput:(NSString *)output;
1193 - (bool) isCancelling:(size_t)received;
1194 @end
1195
1196 @protocol ConfigurationDelegate
1197 - (void) repairWithSelector:(SEL)selector;
1198 - (void) setConfigurationData:(NSString *)data;
1199 @end
1200
1201 @class PackageController;
1202
1203 @protocol CydiaDelegate
1204 - (void) setPackageController:(PackageController *)view;
1205 - (void) clearPackage:(Package *)package;
1206 - (void) installPackage:(Package *)package;
1207 - (void) installPackages:(NSArray *)packages;
1208 - (void) removePackage:(Package *)package;
1209 - (void) beginUpdate;
1210 - (BOOL) updating;
1211 - (void) distUpgrade;
1212 - (void) updateData;
1213 - (void) syncData;
1214 - (void) showSettings;
1215 - (UIProgressHUD *) addProgressHUD;
1216 - (void) removeProgressHUD:(UIProgressHUD *)hud;
1217 - (UCViewController *) pageForPackage:(NSString *)name;
1218 - (PackageController *) packageController;
1219 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
1220 @end
1221 /* }}} */
1222
1223 /* Status Delegation {{{ */
1224 class Status :
1225 public pkgAcquireStatus
1226 {
1227 private:
1228 _transient NSObject<ProgressDelegate> *delegate_;
1229
1230 public:
1231 Status() :
1232 delegate_(nil)
1233 {
1234 }
1235
1236 void setDelegate(id delegate) {
1237 delegate_ = delegate;
1238 }
1239
1240 NSObject<ProgressDelegate> *getDelegate() const {
1241 return delegate_;
1242 }
1243
1244 virtual bool MediaChange(std::string media, std::string drive) {
1245 return false;
1246 }
1247
1248 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
1249 }
1250
1251 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1252 //NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1253 [delegate_ setProgressTitle:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), [NSString stringWithUTF8String:item.ShortDesc.c_str()]]];
1254 }
1255
1256 virtual void Done(pkgAcquire::ItemDesc &item) {
1257 }
1258
1259 virtual void Fail(pkgAcquire::ItemDesc &item) {
1260 if (
1261 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1262 item.Owner->Status == pkgAcquire::Item::StatDone
1263 )
1264 return;
1265
1266 std::string &error(item.Owner->ErrorText);
1267 if (error.empty())
1268 return;
1269
1270 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1271 NSArray *fields([description componentsSeparatedByString:@" "]);
1272 NSString *source([fields count] == 0 ? nil : [fields objectAtIndex:0]);
1273
1274 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
1275 withObject:[NSArray arrayWithObjects:
1276 [NSString stringWithUTF8String:error.c_str()],
1277 source,
1278 nil]
1279 waitUntilDone:YES
1280 ];
1281 }
1282
1283 virtual bool Pulse(pkgAcquire *Owner) {
1284 bool value = pkgAcquireStatus::Pulse(Owner);
1285
1286 float percent(
1287 double(CurrentBytes + CurrentItems) /
1288 double(TotalBytes + TotalItems)
1289 );
1290
1291 [delegate_ setProgressPercent:percent];
1292 return [delegate_ isCancelling:CurrentBytes] ? false : value;
1293 }
1294
1295 virtual void Start() {
1296 [delegate_ startProgress];
1297 }
1298
1299 virtual void Stop() {
1300 }
1301 };
1302 /* }}} */
1303 /* Progress Delegation {{{ */
1304 class Progress :
1305 public OpProgress
1306 {
1307 private:
1308 _transient id<ProgressDelegate> delegate_;
1309 float percent_;
1310
1311 protected:
1312 virtual void Update() {
1313 /*if (abs(Percent - percent_) > 2)
1314 //NSLog(@"%s:%s:%f", Op.c_str(), SubOp.c_str(), Percent);
1315 percent_ = Percent;
1316 }*/
1317
1318 /*[delegate_ setProgressTitle:[NSString stringWithUTF8String:Op.c_str()]];
1319 [delegate_ setProgressPercent:(Percent / 100)];*/
1320 }
1321
1322 public:
1323 Progress() :
1324 delegate_(nil),
1325 percent_(0)
1326 {
1327 }
1328
1329 void setDelegate(id delegate) {
1330 delegate_ = delegate;
1331 }
1332
1333 id getDelegate() const {
1334 return delegate_;
1335 }
1336
1337 virtual void Done() {
1338 //NSLog(@"DONE");
1339 //[delegate_ setProgressPercent:1];
1340 }
1341 };
1342 /* }}} */
1343
1344 /* Database Interface {{{ */
1345 typedef std::map< unsigned long, _H<Source> > SourceMap;
1346
1347 @interface Database : NSObject {
1348 NSZone *zone_;
1349 apr_pool_t *pool_;
1350
1351 unsigned era_;
1352
1353 pkgCacheFile cache_;
1354 pkgDepCache::Policy *policy_;
1355 pkgRecords *records_;
1356 pkgProblemResolver *resolver_;
1357 pkgAcquire *fetcher_;
1358 FileFd *lock_;
1359 SPtr<pkgPackageManager> manager_;
1360 pkgSourceList *list_;
1361
1362 SourceMap sources_;
1363 NSMutableArray *packages_;
1364
1365 _transient NSObject<ConfigurationDelegate, ProgressDelegate> *delegate_;
1366 Status status_;
1367 Progress progress_;
1368
1369 int cydiafd_;
1370 int statusfd_;
1371 FILE *input_;
1372 }
1373
1374 + (Database *) sharedInstance;
1375 - (unsigned) era;
1376
1377 - (void) _readCydia:(NSNumber *)fd;
1378 - (void) _readStatus:(NSNumber *)fd;
1379 - (void) _readOutput:(NSNumber *)fd;
1380
1381 - (FILE *) input;
1382
1383 - (Package *) packageWithName:(NSString *)name;
1384
1385 - (pkgCacheFile &) cache;
1386 - (pkgDepCache::Policy *) policy;
1387 - (pkgRecords *) records;
1388 - (pkgProblemResolver *) resolver;
1389 - (pkgAcquire &) fetcher;
1390 - (pkgSourceList &) list;
1391 - (NSArray *) packages;
1392 - (NSArray *) sources;
1393 - (void) reloadData;
1394
1395 - (void) configure;
1396 - (bool) prepare;
1397 - (void) perform;
1398 - (bool) upgrade;
1399 - (void) update;
1400
1401 - (void) setVisible;
1402
1403 - (void) updateWithStatus:(Status &)status;
1404
1405 - (void) setDelegate:(id)delegate;
1406 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1407 @end
1408 /* }}} */
1409 /* Delegate Helpers {{{ */
1410 @implementation NSObject (ProgressDelegate)
1411
1412 - (void) _setProgressErrorPackage:(NSArray *)args {
1413 [self performSelector:@selector(setProgressError:forPackage:)
1414 withObject:[args objectAtIndex:0]
1415 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1416 ];
1417 }
1418
1419 - (void) _setProgressErrorTitle:(NSArray *)args {
1420 [self performSelector:@selector(setProgressError:withTitle:)
1421 withObject:[args objectAtIndex:0]
1422 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1423 ];
1424 }
1425
1426 - (void) _setProgressError:(NSString *)error withTitle:(NSString *)title {
1427 [self performSelectorOnMainThread:@selector(_setProgressErrorTitle:)
1428 withObject:[NSArray arrayWithObjects:error, title, nil]
1429 waitUntilDone:YES
1430 ];
1431 }
1432
1433 - (void) setProgressError:(NSString *)error forPackage:(NSString *)id {
1434 Package *package = id == nil ? nil : [[Database sharedInstance] packageWithName:id];
1435 // XXX: holy typecast batman!
1436 [(id<ProgressDelegate>)self setProgressError:error withTitle:(package == nil ? id : [package name])];
1437 }
1438
1439 @end
1440 /* }}} */
1441
1442 /* Source Class {{{ */
1443 @interface Source : NSObject {
1444 CYString depiction_;
1445 CYString description_;
1446 CYString label_;
1447 CYString origin_;
1448 CYString support_;
1449
1450 CYString uri_;
1451 CYString distribution_;
1452 CYString type_;
1453 CYString version_;
1454
1455 NSString *host_;
1456 NSString *authority_;
1457
1458 CYString defaultIcon_;
1459
1460 NSDictionary *record_;
1461 BOOL trusted_;
1462 }
1463
1464 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool;
1465
1466 - (NSComparisonResult) compareByNameAndType:(Source *)source;
1467
1468 - (NSString *) depictionForPackage:(NSString *)package;
1469 - (NSString *) supportForPackage:(NSString *)package;
1470
1471 - (NSDictionary *) record;
1472 - (BOOL) trusted;
1473
1474 - (NSString *) uri;
1475 - (NSString *) distribution;
1476 - (NSString *) type;
1477 - (NSString *) key;
1478 - (NSString *) host;
1479
1480 - (NSString *) name;
1481 - (NSString *) description;
1482 - (NSString *) label;
1483 - (NSString *) origin;
1484 - (NSString *) version;
1485
1486 - (NSString *) defaultIcon;
1487
1488 @end
1489
1490 @implementation Source
1491
1492 - (void) _clear {
1493 uri_.clear();
1494 distribution_.clear();
1495 type_.clear();
1496
1497 description_.clear();
1498 label_.clear();
1499 origin_.clear();
1500 depiction_.clear();
1501 support_.clear();
1502 version_.clear();
1503 defaultIcon_.clear();
1504
1505 if (record_ != nil) {
1506 [record_ release];
1507 record_ = nil;
1508 }
1509
1510 if (host_ != nil) {
1511 [host_ release];
1512 host_ = nil;
1513 }
1514
1515 if (authority_ != nil) {
1516 [authority_ release];
1517 authority_ = nil;
1518 }
1519 }
1520
1521 - (void) dealloc {
1522 [self _clear];
1523 [super dealloc];
1524 }
1525
1526 + (NSArray *) _attributeKeys {
1527 return [NSArray arrayWithObjects:@"description", @"distribution", @"host", @"key", @"label", @"name", @"origin", @"trusted", @"type", @"uri", @"version", nil];
1528 }
1529
1530 - (NSArray *) attributeKeys {
1531 return [[self class] _attributeKeys];
1532 }
1533
1534 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1535 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1536 }
1537
1538 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1539 [self _clear];
1540
1541 trusted_ = index->IsTrusted();
1542
1543 uri_.set(pool, index->GetURI());
1544 distribution_.set(pool, index->GetDist());
1545 type_.set(pool, index->GetType());
1546
1547 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1548 if (dindex != NULL) {
1549 FileFd fd;
1550 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1551 _error->Discard();
1552 else {
1553 pkgTagFile tags(&fd);
1554
1555 pkgTagSection section;
1556 tags.Step(section);
1557
1558 struct {
1559 const char *name_;
1560 CYString *value_;
1561 } names[] = {
1562 {"default-icon", &defaultIcon_},
1563 {"depiction", &depiction_},
1564 {"description", &description_},
1565 {"label", &label_},
1566 {"origin", &origin_},
1567 {"support", &support_},
1568 {"version", &version_},
1569 };
1570
1571 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1572 const char *start, *end;
1573
1574 if (section.Find(names[i].name_, start, end)) {
1575 CYString &value(*names[i].value_);
1576 value.set(pool, start, end - start);
1577 }
1578 }
1579 }
1580 }
1581
1582 record_ = [Sources_ objectForKey:[self key]];
1583 if (record_ != nil)
1584 record_ = [record_ retain];
1585
1586 NSURL *url([NSURL URLWithString:uri_]);
1587
1588 host_ = [url host];
1589 if (host_ != nil)
1590 host_ = [[host_ lowercaseString] retain];
1591
1592 if (host_ != nil)
1593 authority_ = host_;
1594 else
1595 authority_ = [url path];
1596
1597 if (authority_ != nil)
1598 authority_ = [authority_ retain];
1599 }
1600
1601 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1602 if ((self = [super init]) != nil) {
1603 [self setMetaIndex:index inPool:pool];
1604 } return self;
1605 }
1606
1607 - (NSComparisonResult) compareByNameAndType:(Source *)source {
1608 NSDictionary *lhr = [self record];
1609 NSDictionary *rhr = [source record];
1610
1611 if (lhr != rhr)
1612 return lhr == nil ? NSOrderedDescending : NSOrderedAscending;
1613
1614 NSString *lhs = [self name];
1615 NSString *rhs = [source name];
1616
1617 if ([lhs length] != 0 && [rhs length] != 0) {
1618 unichar lhc = [lhs characterAtIndex:0];
1619 unichar rhc = [rhs characterAtIndex:0];
1620
1621 if (isalpha(lhc) && !isalpha(rhc))
1622 return NSOrderedAscending;
1623 else if (!isalpha(lhc) && isalpha(rhc))
1624 return NSOrderedDescending;
1625 }
1626
1627 return [lhs compare:rhs options:LaxCompareOptions_];
1628 }
1629
1630 - (NSString *) depictionForPackage:(NSString *)package {
1631 return depiction_.empty() ? nil : [depiction_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1632 }
1633
1634 - (NSString *) supportForPackage:(NSString *)package {
1635 return support_.empty() ? nil : [support_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1636 }
1637
1638 - (NSDictionary *) record {
1639 return record_;
1640 }
1641
1642 - (BOOL) trusted {
1643 return trusted_;
1644 }
1645
1646 - (NSString *) uri {
1647 return uri_;
1648 }
1649
1650 - (NSString *) distribution {
1651 return distribution_;
1652 }
1653
1654 - (NSString *) type {
1655 return type_;
1656 }
1657
1658 - (NSString *) key {
1659 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1660 }
1661
1662 - (NSString *) host {
1663 return host_;
1664 }
1665
1666 - (NSString *) name {
1667 return origin_.empty() ? authority_ : origin_;
1668 }
1669
1670 - (NSString *) description {
1671 return description_;
1672 }
1673
1674 - (NSString *) label {
1675 return label_.empty() ? authority_ : label_;
1676 }
1677
1678 - (NSString *) origin {
1679 return origin_;
1680 }
1681
1682 - (NSString *) version {
1683 return version_;
1684 }
1685
1686 - (NSString *) defaultIcon {
1687 return defaultIcon_;
1688 }
1689
1690 @end
1691 /* }}} */
1692 /* Relationship Class {{{ */
1693 @interface Relationship : NSObject {
1694 NSString *type_;
1695 NSString *id_;
1696 }
1697
1698 - (NSString *) type;
1699 - (NSString *) id;
1700 - (NSString *) name;
1701
1702 @end
1703
1704 @implementation Relationship
1705
1706 - (void) dealloc {
1707 [type_ release];
1708 [id_ release];
1709 [super dealloc];
1710 }
1711
1712 - (NSString *) type {
1713 return type_;
1714 }
1715
1716 - (NSString *) id {
1717 return id_;
1718 }
1719
1720 - (NSString *) name {
1721 _assert(false);
1722 return nil;
1723 }
1724
1725 @end
1726 /* }}} */
1727 /* Package Class {{{ */
1728 @interface Package : NSObject {
1729 unsigned era_;
1730 apr_pool_t *pool_;
1731
1732 pkgCache::VerIterator version_;
1733 pkgCache::PkgIterator iterator_;
1734 _transient Database *database_;
1735 pkgCache::VerFileIterator file_;
1736
1737 Source *source_;
1738 bool cached_;
1739 bool parsed_;
1740
1741 CYString section_;
1742 NSString *section$_;
1743 bool essential_;
1744 bool required_;
1745 bool visible_;
1746 bool obsolete_;
1747
1748 NSString *latest_;
1749 CYString installed_;
1750
1751 CYString id_;
1752 CYString name_;
1753 CYString tagline_;
1754 CYString icon_;
1755 CYString depiction_;
1756 CYString homepage_;
1757
1758 CYString sponsor_;
1759 Address *sponsor$_;
1760
1761 CYString author_;
1762 Address *author$_;
1763
1764 CYString bugs_;
1765 CYString support_;
1766 NSMutableArray *tags_;
1767 NSString *role_;
1768
1769 NSArray *relationships_;
1770
1771 NSMutableDictionary *metadata_;
1772 _transient NSDate *firstSeen_;
1773 _transient NSDate *lastSeen_;
1774 bool subscribed_;
1775 }
1776
1777 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1778 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1779
1780 - (pkgCache::PkgIterator) iterator;
1781 - (void) parse;
1782
1783 - (NSString *) section;
1784 - (NSString *) simpleSection;
1785
1786 - (NSString *) longSection;
1787 - (NSString *) shortSection;
1788
1789 - (NSString *) uri;
1790
1791 - (Address *) maintainer;
1792 - (size_t) size;
1793 - (NSString *) longDescription;
1794 - (NSString *) shortDescription;
1795 - (unichar) index;
1796
1797 - (NSMutableDictionary *) metadata;
1798 - (NSDate *) seen;
1799 - (BOOL) subscribed;
1800 - (BOOL) ignored;
1801
1802 - (NSString *) latest;
1803 - (NSString *) installed;
1804 - (BOOL) uninstalled;
1805
1806 - (BOOL) valid;
1807 - (BOOL) upgradableAndEssential:(BOOL)essential;
1808 - (BOOL) essential;
1809 - (BOOL) broken;
1810 - (BOOL) unfiltered;
1811 - (BOOL) visible;
1812
1813 - (BOOL) half;
1814 - (BOOL) halfConfigured;
1815 - (BOOL) halfInstalled;
1816 - (BOOL) hasMode;
1817 - (NSString *) mode;
1818
1819 - (void) setVisible;
1820
1821 - (NSString *) id;
1822 - (NSString *) name;
1823 - (UIImage *) icon;
1824 - (NSString *) homepage;
1825 - (NSString *) depiction;
1826 - (Address *) author;
1827
1828 - (NSString *) support;
1829
1830 - (NSArray *) files;
1831 - (NSArray *) relationships;
1832 - (NSArray *) warnings;
1833 - (NSArray *) applications;
1834
1835 - (Source *) source;
1836 - (NSString *) role;
1837
1838 - (BOOL) matches:(NSString *)text;
1839
1840 - (bool) hasSupportingRole;
1841 - (BOOL) hasTag:(NSString *)tag;
1842 - (NSString *) primaryPurpose;
1843 - (NSArray *) purposes;
1844 - (bool) isCommercial;
1845
1846 - (CYString &) cyname;
1847
1848 - (uint32_t) compareBySection:(NSArray *)sections;
1849
1850 - (uint32_t) compareForChanges;
1851
1852 - (void) install;
1853 - (void) remove;
1854
1855 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search;
1856 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1857 - (bool) isInstalledAndVisible:(NSNumber *)number;
1858 - (bool) isVisibleInSection:(NSString *)section;
1859 - (bool) isVisibleInSource:(Source *)source;
1860
1861 @end
1862
1863 uint32_t PackageChangesRadix(Package *self, void *) {
1864 union {
1865 uint32_t key;
1866
1867 struct {
1868 uint32_t timestamp : 30;
1869 uint32_t ignored : 1;
1870 uint32_t upgradable : 1;
1871 } bits;
1872 } value;
1873
1874 bool upgradable([self upgradableAndEssential:YES]);
1875 value.bits.upgradable = upgradable ? 1 : 0;
1876
1877 if (upgradable) {
1878 value.bits.timestamp = 0;
1879 value.bits.ignored = [self ignored] ? 0 : 1;
1880 value.bits.upgradable = 1;
1881 } else {
1882 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
1883 value.bits.ignored = 0;
1884 value.bits.upgradable = 0;
1885 }
1886
1887 return _not(uint32_t) - value.key;
1888 }
1889
1890 _finline static void Stifle(uint8_t &value) {
1891 }
1892
1893 uint32_t PackagePrefixRadix(Package *self, void *context) {
1894 size_t offset(reinterpret_cast<size_t>(context));
1895 CYString &name([self cyname]);
1896
1897 size_t size(name.size());
1898 if (size == 0)
1899 return 0;
1900 char *text(name.data());
1901
1902 size_t zeros;
1903 if (!isdigit(text[0]))
1904 zeros = 0;
1905 else {
1906 size_t digits(1);
1907 while (size != digits && isdigit(text[digits]))
1908 if (++digits == 4)
1909 break;
1910 zeros = 4 - digits;
1911 }
1912
1913 uint8_t data[4];
1914
1915 // 0.607997
1916
1917 if (offset == 0 && zeros != 0) {
1918 memset(data, '0', zeros);
1919 memcpy(data + zeros, text, 4 - zeros);
1920 } else {
1921 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
1922 if (size <= offset - zeros)
1923 return 0;
1924
1925 text += offset - zeros;
1926 size -= offset - zeros;
1927
1928 if (size >= 4)
1929 memcpy(data, text, 4);
1930 else {
1931 memcpy(data, text, size);
1932 memset(data + size, 0, 4 - size);
1933 }
1934
1935 for (size_t i(0); i != 4; ++i)
1936 if (isalpha(data[i]))
1937 data[i] &= 0xdf;
1938 }
1939
1940 if (offset == 0)
1941 data[0] = (data[0] & 0x3f) | "\x80\x00\xc0\x40"[data[0] >> 6];
1942
1943 /* XXX: ntohl may be more honest */
1944 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
1945 }
1946
1947 CYString &(*PackageName)(Package *self, SEL sel);
1948
1949 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
1950 _profile(PackageNameCompare)
1951 CYString &lhi(PackageName(lhs, @selector(cyname)));
1952 CYString &rhi(PackageName(rhs, @selector(cyname)));
1953 CFStringRef lhn(lhi), rhn(rhi);
1954
1955 if (lhn == NULL)
1956 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
1957 else if (rhn == NULL)
1958 return NSOrderedDescending;
1959
1960 _profile(PackageNameCompare$NumbersLast)
1961 if (!lhi.empty() && !rhi.empty()) {
1962 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
1963 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
1964 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
1965 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
1966 return lha ? NSOrderedAscending : NSOrderedDescending;
1967 }
1968 _end
1969
1970 CFIndex length = CFStringGetLength(lhn);
1971
1972 _profile(PackageNameCompare$Compare)
1973 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
1974 _end
1975 _end
1976 }
1977
1978 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
1979 return PackageNameCompare(*lhs, *rhs, context);
1980 }
1981
1982 struct PackageNameOrdering :
1983 std::binary_function<Package *, Package *, bool>
1984 {
1985 _finline bool operator ()(Package *lhs, Package *rhs) const {
1986 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
1987 }
1988 };
1989
1990 @implementation Package
1991
1992 - (NSString *) description {
1993 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
1994 }
1995
1996 - (void) dealloc {
1997 if (source_ != nil)
1998 [source_ release];
1999 if (section$_ != nil)
2000 [section$_ release];
2001
2002 if (latest_ != nil)
2003 [latest_ release];
2004
2005 if (sponsor$_ != nil)
2006 [sponsor$_ release];
2007 if (author$_ != nil)
2008 [author$_ release];
2009 if (tags_ != nil)
2010 [tags_ release];
2011 if (role_ != nil)
2012 [role_ release];
2013
2014 if (relationships_ != nil)
2015 [relationships_ release];
2016 if (metadata_ != nil)
2017 [metadata_ release];
2018
2019 [super dealloc];
2020 }
2021
2022 + (NSString *) webScriptNameForSelector:(SEL)selector {
2023 if (selector == @selector(hasTag:))
2024 return @"hasTag";
2025 else
2026 return nil;
2027 }
2028
2029 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2030 return [self webScriptNameForSelector:selector] == nil;
2031 }
2032
2033 + (NSArray *) _attributeKeys {
2034 return [NSArray arrayWithObjects:@"applications", @"author", @"depiction", @"longDescription", @"essential", @"homepage", @"icon", @"id", @"installed", @"latest", @"longSection", @"maintainer", @"mode", @"name", @"purposes", @"section", @"shortDescription", @"shortSection", @"simpleSection", @"size", @"source", @"sponsor", @"support", @"warnings", nil];
2035 }
2036
2037 - (NSArray *) attributeKeys {
2038 return [[self class] _attributeKeys];
2039 }
2040
2041 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2042 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2043 }
2044
2045 - (void) parse {
2046 if (parsed_)
2047 return;
2048 parsed_ = true;
2049 if (file_.end())
2050 return;
2051
2052 _profile(Package$parse)
2053 pkgRecords::Parser *parser;
2054
2055 _profile(Package$parse$Lookup)
2056 parser = &[database_ records]->Lookup(file_);
2057 _end
2058
2059 CYString website;
2060
2061 _profile(Package$parse$Find)
2062 struct {
2063 const char *name_;
2064 CYString *value_;
2065 } names[] = {
2066 {"icon", &icon_},
2067 {"depiction", &depiction_},
2068 {"homepage", &homepage_},
2069 {"website", &website},
2070 {"bugs", &bugs_},
2071 {"support", &support_},
2072 {"sponsor", &sponsor_},
2073 {"author", &author_},
2074 };
2075
2076 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2077 const char *start, *end;
2078
2079 if (parser->Find(names[i].name_, start, end)) {
2080 CYString &value(*names[i].value_);
2081 _profile(Package$parse$Value)
2082 value.set(pool_, start, end - start);
2083 _end
2084 }
2085 }
2086 _end
2087
2088 _profile(Package$parse$Tagline)
2089 const char *start, *end;
2090 if (parser->ShortDesc(start, end)) {
2091 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2092 if (stop == NULL)
2093 stop = end;
2094 while (stop != start && stop[-1] == '\r')
2095 --stop;
2096 tagline_.set(pool_, start, stop - start);
2097 }
2098 _end
2099
2100 _profile(Package$parse$Retain)
2101 if (homepage_.empty())
2102 homepage_ = website;
2103 if (homepage_ == depiction_)
2104 homepage_.clear();
2105 _end
2106 _end
2107 }
2108
2109 - (void) setVisible {
2110 visible_ = required_ && [self unfiltered];
2111 }
2112
2113 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2114 if ((self = [super init]) != nil) {
2115 _profile(Package$initWithVersion)
2116 @synchronized (database) {
2117 era_ = [database era];
2118 pool_ = pool;
2119
2120 version_ = version;
2121 iterator_ = version.ParentPkg();
2122 database_ = database;
2123
2124 _profile(Package$initWithVersion$Latest)
2125 latest_ = (NSString *) StripVersion(version_.VerStr());
2126 _end
2127
2128 pkgCache::VerIterator current;
2129 _profile(Package$initWithVersion$Versions)
2130 current = iterator_.CurrentVer();
2131 if (!current.end())
2132 installed_.set(pool_, StripVersion_(current.VerStr()));
2133
2134 if (!version_.end())
2135 file_ = version_.FileList();
2136 else {
2137 pkgCache &cache([database_ cache]);
2138 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2139 }
2140 _end
2141
2142 _profile(Package$initWithVersion$Name)
2143 id_.set(pool_, iterator_.Name());
2144 name_.set(pool, iterator_.Display());
2145 _end
2146
2147 if (!file_.end()) {
2148 _profile(Package$initWithVersion$Source)
2149 source_ = [database_ getSource:file_.File()];
2150 if (source_ != nil)
2151 [source_ retain];
2152 cached_ = true;
2153 _end
2154 }
2155
2156 required_ = true;
2157
2158 _profile(Package$initWithVersion$Tags)
2159 pkgCache::TagIterator tag(iterator_.TagList());
2160 if (!tag.end()) {
2161 tags_ = [[NSMutableArray alloc] initWithCapacity:8];
2162 do {
2163 const char *name(tag.Name());
2164 [tags_ addObject:(NSString *)CFCString(name)];
2165 if (role_ == nil && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/)
2166 role_ = (NSString *) CFCString(name + 6);
2167 if (required_ && strncmp(name, "require::", 9) == 0 && (
2168 true
2169 ))
2170 required_ = false;
2171 ++tag;
2172 } while (!tag.end());
2173 }
2174 _end
2175
2176 bool changed(false);
2177 NSString *key([id_ lowercaseString]);
2178
2179 _profile(Package$initWithVersion$Metadata)
2180 metadata_ = [Packages_ objectForKey:key];
2181
2182 if (metadata_ == nil) {
2183 firstSeen_ = now_;
2184
2185 metadata_ = [[NSMutableDictionary dictionaryWithObjectsAndKeys:
2186 firstSeen_, @"FirstSeen",
2187 latest_, @"LastVersion",
2188 nil] mutableCopy];
2189
2190 changed = true;
2191 } else {
2192 firstSeen_ = [metadata_ objectForKey:@"FirstSeen"];
2193 lastSeen_ = [metadata_ objectForKey:@"LastSeen"];
2194
2195 if (NSNumber *subscribed = [metadata_ objectForKey:@"IsSubscribed"])
2196 subscribed_ = [subscribed boolValue];
2197
2198 NSString *version([metadata_ objectForKey:@"LastVersion"]);
2199
2200 if (firstSeen_ == nil) {
2201 firstSeen_ = lastSeen_ == nil ? now_ : lastSeen_;
2202 [metadata_ setObject:firstSeen_ forKey:@"FirstSeen"];
2203 changed = true;
2204 }
2205
2206 if (version == nil) {
2207 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2208 changed = true;
2209 } else if (![version isEqualToString:latest_]) {
2210 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2211 lastSeen_ = now_;
2212 [metadata_ setObject:lastSeen_ forKey:@"LastSeen"];
2213 changed = true;
2214 }
2215 }
2216
2217 metadata_ = [metadata_ retain];
2218
2219 if (changed) {
2220 [Packages_ setObject:metadata_ forKey:key];
2221 Changed_ = true;
2222 }
2223 _end
2224
2225 _profile(Package$initWithVersion$Section)
2226 section_.set(pool_, iterator_.Section());
2227 _end
2228
2229 obsolete_ = [self hasTag:@"cydia::obsolete"];
2230 essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"];
2231 [self setVisible];
2232 } _end } return self;
2233 }
2234
2235 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2236 @synchronized ([Database class]) {
2237 pkgCache::VerIterator version;
2238
2239 _profile(Package$packageWithIterator$GetCandidateVer)
2240 version = [database policy]->GetCandidateVer(iterator);
2241 _end
2242
2243 if (version.end())
2244 return nil;
2245
2246 return [[[Package alloc]
2247 initWithVersion:version
2248 withZone:zone
2249 inPool:pool
2250 database:database
2251 ] autorelease];
2252 } }
2253
2254 - (pkgCache::PkgIterator) iterator {
2255 return iterator_;
2256 }
2257
2258 - (NSString *) section {
2259 if (section$_ == nil) {
2260 if (section_.empty())
2261 return nil;
2262
2263 std::replace(section_.data(), section_.data() + section_.size(), ' ', '_');
2264 NSString *name(section_);
2265
2266 lookup:
2267 if (NSDictionary *value = [SectionMap_ objectForKey:name])
2268 if (NSString *rename = [value objectForKey:@"Rename"]) {
2269 name = rename;
2270 goto lookup;
2271 }
2272
2273 section$_ = [[name stringByReplacingCharacter:'_' withCharacter:' '] retain];
2274 } return section$_;
2275 }
2276
2277 - (NSString *) simpleSection {
2278 if (NSString *section = [self section])
2279 return Simplify(section);
2280 else
2281 return nil;
2282 }
2283
2284 - (NSString *) longSection {
2285 return LocalizeSection([self section]);
2286 }
2287
2288 - (NSString *) shortSection {
2289 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2290 }
2291
2292 - (NSString *) uri {
2293 return nil;
2294 #if 0
2295 pkgIndexFile *index;
2296 pkgCache::PkgFileIterator file(file_.File());
2297 if (![database_ list].FindIndex(file, index))
2298 return nil;
2299 return [NSString stringWithUTF8String:iterator_->Path];
2300 //return [NSString stringWithUTF8String:file.Site()];
2301 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2302 #endif
2303 }
2304
2305 - (Address *) maintainer {
2306 if (file_.end())
2307 return nil;
2308 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2309 const std::string &maintainer(parser->Maintainer());
2310 return maintainer.empty() ? nil : [Address addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2311 }
2312
2313 - (size_t) size {
2314 return version_.end() ? 0 : version_->InstalledSize;
2315 }
2316
2317 - (NSString *) longDescription {
2318 if (file_.end())
2319 return nil;
2320 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2321 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2322
2323 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2324 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2325 if ([lines count] < 2)
2326 return nil;
2327
2328 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2329 for (size_t i(1), e([lines count]); i != e; ++i) {
2330 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2331 [trimmed addObject:trim];
2332 }
2333
2334 return [trimmed componentsJoinedByString:@"\n"];
2335 }
2336
2337 - (NSString *) shortDescription {
2338 return tagline_;
2339 }
2340
2341 - (unichar) index {
2342 _profile(Package$index)
2343 CFStringRef name((CFStringRef) [self name]);
2344 if (CFStringGetLength(name) == 0)
2345 return '#';
2346 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2347 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2348 return '#';
2349 return toupper(character);
2350 _end
2351 }
2352
2353 - (NSMutableDictionary *) metadata {
2354 return metadata_;
2355 }
2356
2357 - (NSDate *) seen {
2358 if (subscribed_ && lastSeen_ != nil)
2359 return lastSeen_;
2360 return firstSeen_;
2361 }
2362
2363 - (BOOL) subscribed {
2364 return subscribed_;
2365 }
2366
2367 - (BOOL) ignored {
2368 NSDictionary *metadata([self metadata]);
2369 if (NSNumber *ignored = [metadata objectForKey:@"IsIgnored"])
2370 return [ignored boolValue];
2371 else
2372 return false;
2373 }
2374
2375 - (NSString *) latest {
2376 return latest_;
2377 }
2378
2379 - (NSString *) installed {
2380 return installed_;
2381 }
2382
2383 - (BOOL) uninstalled {
2384 return installed_.empty();
2385 }
2386
2387 - (BOOL) valid {
2388 return !version_.end();
2389 }
2390
2391 - (BOOL) upgradableAndEssential:(BOOL)essential {
2392 _profile(Package$upgradableAndEssential)
2393 pkgCache::VerIterator current(iterator_.CurrentVer());
2394 if (current.end())
2395 return essential && essential_ && visible_;
2396 else
2397 return !version_.end() && version_ != current;// && (!essential || ![database_ cache][iterator_].Keep());
2398 _end
2399 }
2400
2401 - (BOOL) essential {
2402 return essential_;
2403 }
2404
2405 - (BOOL) broken {
2406 return [database_ cache][iterator_].InstBroken();
2407 }
2408
2409 - (BOOL) unfiltered {
2410 NSString *section([self section]);
2411 return !obsolete_ && [self hasSupportingRole] && (section == nil || isSectionVisible(section));
2412 }
2413
2414 - (BOOL) visible {
2415 return visible_;
2416 }
2417
2418 - (BOOL) half {
2419 unsigned char current(iterator_->CurrentState);
2420 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2421 }
2422
2423 - (BOOL) halfConfigured {
2424 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2425 }
2426
2427 - (BOOL) halfInstalled {
2428 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2429 }
2430
2431 - (BOOL) hasMode {
2432 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2433 return state.Mode != pkgDepCache::ModeKeep;
2434 }
2435
2436 - (NSString *) mode {
2437 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2438
2439 switch (state.Mode) {
2440 case pkgDepCache::ModeDelete:
2441 if ((state.iFlags & pkgDepCache::Purge) != 0)
2442 return @"PURGE";
2443 else
2444 return @"REMOVE";
2445 case pkgDepCache::ModeKeep:
2446 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2447 return @"REINSTALL";
2448 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2449 return nil;*/
2450 else
2451 return nil;
2452 case pkgDepCache::ModeInstall:
2453 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2454 return @"REINSTALL";
2455 else*/ switch (state.Status) {
2456 case -1:
2457 return @"DOWNGRADE";
2458 case 0:
2459 return @"INSTALL";
2460 case 1:
2461 return @"UPGRADE";
2462 case 2:
2463 return @"NEW_INSTALL";
2464 _nodefault
2465 }
2466 _nodefault
2467 }
2468 }
2469
2470 - (NSString *) id {
2471 return id_;
2472 }
2473
2474 - (NSString *) name {
2475 return name_.empty() ? id_ : name_;
2476 }
2477
2478 - (UIImage *) icon {
2479 NSString *section = [self simpleSection];
2480
2481 UIImage *icon(nil);
2482 if (!icon_.empty())
2483 if ([icon_ hasPrefix:@"file:///"])
2484 icon = [UIImage imageAtPath:[icon_ substringFromIndex:7]];
2485 if (icon == nil) if (section != nil)
2486 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]];
2487 if (icon == nil) if (source_ != nil) if (NSString *dicon = [source_ defaultIcon])
2488 if ([dicon hasPrefix:@"file:///"])
2489 icon = [UIImage imageAtPath:[dicon substringFromIndex:7]];
2490 if (icon == nil)
2491 icon = [UIImage applicationImageNamed:@"unknown.png"];
2492 return icon;
2493 }
2494
2495 - (NSString *) homepage {
2496 return homepage_;
2497 }
2498
2499 - (NSString *) depiction {
2500 return !depiction_.empty() ? depiction_ : [[self source] depictionForPackage:id_];
2501 }
2502
2503 - (Address *) sponsor {
2504 if (sponsor$_ == nil) {
2505 if (sponsor_.empty())
2506 return nil;
2507 sponsor$_ = [[Address addressWithString:sponsor_] retain];
2508 } return sponsor$_;
2509 }
2510
2511 - (Address *) author {
2512 if (author$_ == nil) {
2513 if (author_.empty())
2514 return nil;
2515 author$_ = [[Address addressWithString:author_] retain];
2516 } return author$_;
2517 }
2518
2519 - (NSString *) support {
2520 return !bugs_.empty() ? bugs_ : [[self source] supportForPackage:id_];
2521 }
2522
2523 - (NSArray *) files {
2524 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2525 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2526
2527 std::ifstream fin;
2528 fin.open([path UTF8String]);
2529 if (!fin.is_open())
2530 return nil;
2531
2532 std::string line;
2533 while (std::getline(fin, line))
2534 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2535
2536 return files;
2537 }
2538
2539 - (NSArray *) relationships {
2540 return relationships_;
2541 }
2542
2543 - (NSArray *) warnings {
2544 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2545 const char *name(iterator_.Name());
2546
2547 size_t length(strlen(name));
2548 if (length < 2) invalid:
2549 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2550 else for (size_t i(0); i != length; ++i)
2551 if (
2552 /* XXX: technically this is not allowed */
2553 (name[i] < 'A' || name[i] > 'Z') &&
2554 (name[i] < 'a' || name[i] > 'z') &&
2555 (name[i] < '0' || name[i] > '9') &&
2556 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2557 ) goto invalid;
2558
2559 if (strcmp(name, "cydia") != 0) {
2560 bool cydia = false;
2561 bool user = false;
2562 bool _private = false;
2563 bool stash = false;
2564
2565 bool repository = [[self section] isEqualToString:@"Repositories"];
2566
2567 if (NSArray *files = [self files])
2568 for (NSString *file in files)
2569 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2570 cydia = true;
2571 else if (!user && [file isEqualToString:@"/User"])
2572 user = true;
2573 else if (!_private && [file isEqualToString:@"/private"])
2574 _private = true;
2575 else if (!stash && [file isEqualToString:@"/var/stash"])
2576 stash = true;
2577
2578 /* XXX: this is not sensitive enough. only some folders are valid. */
2579 if (cydia && !repository)
2580 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2581 if (user)
2582 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2583 if (_private)
2584 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2585 if (stash)
2586 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2587 }
2588
2589 return [warnings count] == 0 ? nil : warnings;
2590 }
2591
2592 - (NSArray *) applications {
2593 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2594
2595 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2596
2597 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2598 if (NSArray *files = [self files])
2599 for (NSString *file in files)
2600 if (application_r(file)) {
2601 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2602 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2603 if ([id isEqualToString:me])
2604 continue;
2605
2606 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2607 if (display == nil)
2608 display = application_r[1];
2609
2610 NSString *bundle([file stringByDeletingLastPathComponent]);
2611 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2612 if (icon == nil || [icon length] == 0)
2613 icon = @"icon.png";
2614 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2615
2616 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2617 [applications addObject:application];
2618
2619 [application addObject:id];
2620 [application addObject:display];
2621 [application addObject:url];
2622 }
2623
2624 return [applications count] == 0 ? nil : applications;
2625 }
2626
2627 - (Source *) source {
2628 if (!cached_) {
2629 @synchronized (database_) {
2630 if ([database_ era] != era_ || file_.end())
2631 source_ = nil;
2632 else {
2633 source_ = [database_ getSource:file_.File()];
2634 if (source_ != nil)
2635 [source_ retain];
2636 }
2637
2638 cached_ = true;
2639 }
2640 }
2641
2642 return source_;
2643 }
2644
2645 - (NSString *) role {
2646 return role_;
2647 }
2648
2649 - (BOOL) matches:(NSString *)text {
2650 if (text == nil)
2651 return NO;
2652
2653 NSRange range;
2654
2655 range = [[self id] rangeOfString:text options:MatchCompareOptions_];
2656 if (range.location != NSNotFound)
2657 return YES;
2658
2659 range = [[self name] rangeOfString:text options:MatchCompareOptions_];
2660 if (range.location != NSNotFound)
2661 return YES;
2662
2663 range = [[self shortDescription] rangeOfString:text options:MatchCompareOptions_];
2664 if (range.location != NSNotFound)
2665 return YES;
2666
2667 return NO;
2668 }
2669
2670 - (bool) hasSupportingRole {
2671 if (role_ == nil)
2672 return true;
2673 if ([role_ isEqualToString:@"enduser"])
2674 return true;
2675 if ([Role_ isEqualToString:@"User"])
2676 return false;
2677 if ([role_ isEqualToString:@"hacker"])
2678 return true;
2679 if ([Role_ isEqualToString:@"Hacker"])
2680 return false;
2681 if ([role_ isEqualToString:@"developer"])
2682 return true;
2683 if ([Role_ isEqualToString:@"Developer"])
2684 return false;
2685 _assert(false);
2686 }
2687
2688 - (BOOL) hasTag:(NSString *)tag {
2689 return tags_ == nil ? NO : [tags_ containsObject:tag];
2690 }
2691
2692 - (NSString *) primaryPurpose {
2693 for (NSString *tag in tags_)
2694 if ([tag hasPrefix:@"purpose::"])
2695 return [tag substringFromIndex:9];
2696 return nil;
2697 }
2698
2699 - (NSArray *) purposes {
2700 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2701 for (NSString *tag in tags_)
2702 if ([tag hasPrefix:@"purpose::"])
2703 [purposes addObject:[tag substringFromIndex:9]];
2704 return [purposes count] == 0 ? nil : purposes;
2705 }
2706
2707 - (bool) isCommercial {
2708 return [self hasTag:@"cydia::commercial"];
2709 }
2710
2711 - (CYString &) cyname {
2712 return name_.empty() ? id_ : name_;
2713 }
2714
2715 - (uint32_t) compareBySection:(NSArray *)sections {
2716 NSString *section([self section]);
2717 for (size_t i(0), e([sections count]); i != e; ++i) {
2718 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2719 return i;
2720 }
2721
2722 return _not(uint32_t);
2723 }
2724
2725 - (uint32_t) compareForChanges {
2726 union {
2727 uint32_t key;
2728
2729 struct {
2730 uint32_t timestamp : 30;
2731 uint32_t ignored : 1;
2732 uint32_t upgradable : 1;
2733 } bits;
2734 } value;
2735
2736 bool upgradable([self upgradableAndEssential:YES]);
2737 value.bits.upgradable = upgradable ? 1 : 0;
2738
2739 if (upgradable) {
2740 value.bits.timestamp = 0;
2741 value.bits.ignored = [self ignored] ? 0 : 1;
2742 value.bits.upgradable = 1;
2743 } else {
2744 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
2745 value.bits.ignored = 0;
2746 value.bits.upgradable = 0;
2747 }
2748
2749 return _not(uint32_t) - value.key;
2750 }
2751
2752 - (void) clear {
2753 pkgProblemResolver *resolver = [database_ resolver];
2754 resolver->Clear(iterator_);
2755 resolver->Protect(iterator_);
2756 }
2757
2758 - (void) install {
2759 pkgProblemResolver *resolver = [database_ resolver];
2760 resolver->Clear(iterator_);
2761 resolver->Protect(iterator_);
2762 pkgCacheFile &cache([database_ cache]);
2763 cache->MarkInstall(iterator_, false);
2764 pkgDepCache::StateCache &state((*cache)[iterator_]);
2765 if (!state.Install())
2766 cache->SetReInstall(iterator_, true);
2767 }
2768
2769 - (void) remove {
2770 pkgProblemResolver *resolver = [database_ resolver];
2771 resolver->Clear(iterator_);
2772 resolver->Protect(iterator_);
2773 resolver->Remove(iterator_);
2774 [database_ cache]->MarkDelete(iterator_, true);
2775 }
2776
2777 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search {
2778 _profile(Package$isUnfilteredAndSearchedForBy)
2779 bool value(true);
2780
2781 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
2782 value &= [self unfiltered];
2783 _end
2784
2785 _profile(Package$isUnfilteredAndSearchedForBy$Match)
2786 value &= [self matches:search];
2787 _end
2788
2789 return value;
2790 _end
2791 }
2792
2793 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
2794 if ([search length] == 0)
2795 return false;
2796
2797 _profile(Package$isUnfilteredAndSelectedForBy)
2798 bool value(true);
2799
2800 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
2801 value &= [self unfiltered];
2802 _end
2803
2804 _profile(Package$isUnfilteredAndSelectedForBy$Match)
2805 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
2806 _end
2807
2808 return value;
2809 _end
2810 }
2811
2812 - (bool) isInstalledAndVisible:(NSNumber *)number {
2813 return (![number boolValue] || [self visible]) && ![self uninstalled];
2814 }
2815
2816 - (bool) isVisibleInSection:(NSString *)name {
2817 NSString *section = [self section];
2818
2819 return
2820 [self visible] && (
2821 name == nil ||
2822 section == nil && [name length] == 0 ||
2823 [name isEqualToString:section]
2824 );
2825 }
2826
2827 - (bool) isVisibleInSource:(Source *)source {
2828 return [self source] == source && [self visible];
2829 }
2830
2831 @end
2832 /* }}} */
2833 /* Section Class {{{ */
2834 @interface Section : NSObject {
2835 NSString *name_;
2836 unichar index_;
2837 size_t row_;
2838 size_t count_;
2839 NSString *localized_;
2840 }
2841
2842 - (NSComparisonResult) compareByLocalized:(Section *)section;
2843 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
2844 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
2845 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
2846 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
2847 - (NSString *) name;
2848 - (unichar) index;
2849
2850 - (size_t) row;
2851 - (size_t) count;
2852
2853 - (void) addToRow;
2854 - (void) addToCount;
2855
2856 - (void) setCount:(size_t)count;
2857 - (NSString *) localized;
2858
2859 @end
2860
2861 @implementation Section
2862
2863 - (void) dealloc {
2864 [name_ release];
2865 if (localized_ != nil)
2866 [localized_ release];
2867 [super dealloc];
2868 }
2869
2870 - (NSComparisonResult) compareByLocalized:(Section *)section {
2871 NSString *lhs(localized_);
2872 NSString *rhs([section localized]);
2873
2874 /*if ([lhs length] != 0 && [rhs length] != 0) {
2875 unichar lhc = [lhs characterAtIndex:0];
2876 unichar rhc = [rhs characterAtIndex:0];
2877
2878 if (isalpha(lhc) && !isalpha(rhc))
2879 return NSOrderedAscending;
2880 else if (!isalpha(lhc) && isalpha(rhc))
2881 return NSOrderedDescending;
2882 }*/
2883
2884 return [lhs compare:rhs options:LaxCompareOptions_];
2885 }
2886
2887 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
2888 if ((self = [self initWithName:name localize:NO]) != nil) {
2889 if (localized != nil)
2890 localized_ = [localized retain];
2891 } return self;
2892 }
2893
2894 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
2895 return [self initWithName:name row:0 localize:localize];
2896 }
2897
2898 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
2899 if ((self = [super init]) != nil) {
2900 name_ = [name retain];
2901 index_ = '\0';
2902 row_ = row;
2903 if (localize)
2904 localized_ = [LocalizeSection(name_) retain];
2905 } return self;
2906 }
2907
2908 /* XXX: localize the index thingees */
2909 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
2910 if ((self = [super init]) != nil) {
2911 name_ = [[NSString stringWithCharacters:&index length:1] retain];
2912 index_ = index;
2913 row_ = row;
2914 } return self;
2915 }
2916
2917 - (NSString *) name {
2918 return name_;
2919 }
2920
2921 - (unichar) index {
2922 return index_;
2923 }
2924
2925 - (size_t) row {
2926 return row_;
2927 }
2928
2929 - (size_t) count {
2930 return count_;
2931 }
2932
2933 - (void) addToRow {
2934 ++row_;
2935 }
2936
2937 - (void) addToCount {
2938 ++count_;
2939 }
2940
2941 - (void) setCount:(size_t)count {
2942 count_ = count;
2943 }
2944
2945 - (NSString *) localized {
2946 return localized_;
2947 }
2948
2949 @end
2950 /* }}} */
2951
2952 static NSString *Colon_;
2953 static NSString *Error_;
2954 static NSString *Warning_;
2955
2956 /* Database Implementation {{{ */
2957 @implementation Database
2958
2959 + (Database *) sharedInstance {
2960 static Database *instance;
2961 if (instance == nil)
2962 instance = [[Database alloc] init];
2963 return instance;
2964 }
2965
2966 - (unsigned) era {
2967 return era_;
2968 }
2969
2970 - (void) dealloc {
2971 _assert(false);
2972 NSRecycleZone(zone_);
2973 // XXX: malloc_destroy_zone(zone_);
2974 apr_pool_destroy(pool_);
2975 [super dealloc];
2976 }
2977
2978 - (void) _readCydia:(NSNumber *)fd { _pooled
2979 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
2980 std::istream is(&ib);
2981 std::string line;
2982
2983 static Pcre finish_r("^finish:([^:]*)$");
2984
2985 while (std::getline(is, line)) {
2986 const char *data(line.c_str());
2987 size_t size = line.size();
2988 lprintf("C:%s\n", data);
2989
2990 if (finish_r(data, size)) {
2991 NSString *finish = finish_r[1];
2992 int index = [Finishes_ indexOfObject:finish];
2993 if (index != INT_MAX && index > Finish_)
2994 Finish_ = index;
2995 }
2996 }
2997
2998 _assume(false);
2999 }
3000
3001 - (void) _readStatus:(NSNumber *)fd { _pooled
3002 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3003 std::istream is(&ib);
3004 std::string line;
3005
3006 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3007 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3008
3009 while (std::getline(is, line)) {
3010 const char *data(line.c_str());
3011 size_t size(line.size());
3012 lprintf("S:%s\n", data);
3013
3014 if (conffile_r(data, size)) {
3015 [delegate_ setConfigurationData:conffile_r[1]];
3016 } else if (strncmp(data, "status: ", 8) == 0) {
3017 NSString *string = [NSString stringWithUTF8String:(data + 8)];
3018 [delegate_ setProgressTitle:string];
3019 } else if (pmstatus_r(data, size)) {
3020 std::string type([pmstatus_r[1] UTF8String]);
3021 NSString *id = pmstatus_r[2];
3022
3023 float percent([pmstatus_r[3] floatValue]);
3024 [delegate_ setProgressPercent:(percent / 100)];
3025
3026 NSString *string = pmstatus_r[4];
3027
3028 if (type == "pmerror")
3029 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3030 withObject:[NSArray arrayWithObjects:string, id, nil]
3031 waitUntilDone:YES
3032 ];
3033 else if (type == "pmstatus") {
3034 [delegate_ setProgressTitle:string];
3035 } else if (type == "pmconffile")
3036 [delegate_ setConfigurationData:string];
3037 else
3038 lprintf("E:unknown pmstatus\n");
3039 } else
3040 lprintf("E:unknown status\n");
3041 }
3042
3043 _assume(false);
3044 }
3045
3046 - (void) _readOutput:(NSNumber *)fd { _pooled
3047 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3048 std::istream is(&ib);
3049 std::string line;
3050
3051 while (std::getline(is, line)) {
3052 lprintf("O:%s\n", line.c_str());
3053 [delegate_ addProgressOutput:[NSString stringWithUTF8String:line.c_str()]];
3054 }
3055
3056 _assume(false);
3057 }
3058
3059 - (FILE *) input {
3060 return input_;
3061 }
3062
3063 - (Package *) packageWithName:(NSString *)name {
3064 @synchronized ([Database class]) {
3065 if (static_cast<pkgDepCache *>(cache_) == NULL)
3066 return nil;
3067 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3068 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:pool_ database:self];
3069 } }
3070
3071 - (Database *) init {
3072 if ((self = [super init]) != nil) {
3073 policy_ = NULL;
3074 records_ = NULL;
3075 resolver_ = NULL;
3076 fetcher_ = NULL;
3077 lock_ = NULL;
3078
3079 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3080 apr_pool_create(&pool_, NULL);
3081
3082 packages_ = [[NSMutableArray alloc] init];
3083
3084 int fds[2];
3085
3086 _assert(pipe(fds) != -1);
3087 cydiafd_ = fds[1];
3088
3089 _config->Set("APT::Keep-Fds::", cydiafd_);
3090 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3091
3092 [NSThread
3093 detachNewThreadSelector:@selector(_readCydia:)
3094 toTarget:self
3095 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3096 ];
3097
3098 _assert(pipe(fds) != -1);
3099 statusfd_ = fds[1];
3100
3101 [NSThread
3102 detachNewThreadSelector:@selector(_readStatus:)
3103 toTarget:self
3104 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3105 ];
3106
3107 _assert(pipe(fds) != -1);
3108 _assert(dup2(fds[0], 0) != -1);
3109 _assert(close(fds[0]) != -1);
3110
3111 input_ = fdopen(fds[1], "a");
3112
3113 _assert(pipe(fds) != -1);
3114 _assert(dup2(fds[1], 1) != -1);
3115 _assert(close(fds[1]) != -1);
3116
3117 [NSThread
3118 detachNewThreadSelector:@selector(_readOutput:)
3119 toTarget:self
3120 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3121 ];
3122 } return self;
3123 }
3124
3125 - (pkgCacheFile &) cache {
3126 return cache_;
3127 }
3128
3129 - (pkgDepCache::Policy *) policy {
3130 return policy_;
3131 }
3132
3133 - (pkgRecords *) records {
3134 return records_;
3135 }
3136
3137 - (pkgProblemResolver *) resolver {
3138 return resolver_;
3139 }
3140
3141 - (pkgAcquire &) fetcher {
3142 return *fetcher_;
3143 }
3144
3145 - (pkgSourceList &) list {
3146 return *list_;
3147 }
3148
3149 - (NSArray *) packages {
3150 return packages_;
3151 }
3152
3153 - (NSArray *) sources {
3154 NSMutableArray *sources([NSMutableArray arrayWithCapacity:sources_.size()]);
3155 for (SourceMap::const_iterator i(sources_.begin()); i != sources_.end(); ++i)
3156 [sources addObject:i->second];
3157 return sources;
3158 }
3159
3160 - (NSArray *) issues {
3161 if (cache_->BrokenCount() == 0)
3162 return nil;
3163
3164 NSMutableArray *issues([NSMutableArray arrayWithCapacity:4]);
3165
3166 for (Package *package in packages_) {
3167 if (![package broken])
3168 continue;
3169 pkgCache::PkgIterator pkg([package iterator]);
3170
3171 NSMutableArray *entry([NSMutableArray arrayWithCapacity:4]);
3172 [entry addObject:[package name]];
3173 [issues addObject:entry];
3174
3175 pkgCache::VerIterator ver(cache_[pkg].InstVerIter(cache_));
3176 if (ver.end())
3177 continue;
3178
3179 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
3180 pkgCache::DepIterator start;
3181 pkgCache::DepIterator end;
3182 dep.GlobOr(start, end); // ++dep
3183
3184 if (!cache_->IsImportantDep(end))
3185 continue;
3186 if ((cache_[end] & pkgDepCache::DepGInstall) != 0)
3187 continue;
3188
3189 NSMutableArray *failure([NSMutableArray arrayWithCapacity:4]);
3190 [entry addObject:failure];
3191 [failure addObject:[NSString stringWithUTF8String:start.DepType()]];
3192
3193 NSString *name([NSString stringWithUTF8String:start.TargetPkg().Name()]);
3194 if (Package *package = [self packageWithName:name])
3195 name = [package name];
3196 [failure addObject:name];
3197
3198 pkgCache::PkgIterator target(start.TargetPkg());
3199 if (target->ProvidesList != 0)
3200 [failure addObject:@"?"];
3201 else {
3202 pkgCache::VerIterator ver(cache_[target].InstVerIter(cache_));
3203 if (!ver.end())
3204 [failure addObject:[NSString stringWithUTF8String:ver.VerStr()]];
3205 else if (!cache_[target].CandidateVerIter(cache_).end())
3206 [failure addObject:@"-"];
3207 else if (target->ProvidesList == 0)
3208 [failure addObject:@"!"];
3209 else
3210 [failure addObject:@"%"];
3211 }
3212
3213 _forever {
3214 if (start.TargetVer() != 0)
3215 [failure addObject:[NSString stringWithFormat:@"%s %s", start.CompType(), start.TargetVer()]];
3216 if (start == end)
3217 break;
3218 ++start;
3219 }
3220 }
3221 }
3222
3223 return issues;
3224 }
3225
3226 - (bool) popErrorWithTitle:(NSString *)title {
3227 bool fatal(false);
3228 std::string message;
3229
3230 while (!_error->empty()) {
3231 std::string error;
3232 bool warning(!_error->PopMessage(error));
3233 if (!warning)
3234 fatal = true;
3235 for (;;) {
3236 size_t size(error.size());
3237 if (size == 0 || error[size - 1] != '\n')
3238 break;
3239 error.resize(size - 1);
3240 }
3241 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3242
3243 if (!message.empty())
3244 message += "\n\n";
3245 message += error;
3246 }
3247
3248 if (fatal && !message.empty())
3249 [delegate_ _setProgressError:[NSString stringWithUTF8String:message.c_str()] withTitle:[NSString stringWithFormat:Colon_, fatal ? Error_ : Warning_, title]];
3250
3251 return fatal;
3252 }
3253
3254 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3255 return [self popErrorWithTitle:title] || !success;
3256 }
3257
3258 - (void) reloadData { _pooled
3259 @synchronized ([Database class]) {
3260 @synchronized (self) {
3261 ++era_;
3262 }
3263
3264 [packages_ removeAllObjects];
3265 sources_.clear();
3266
3267 _error->Discard();
3268
3269 delete list_;
3270 list_ = NULL;
3271 manager_ = NULL;
3272 delete lock_;
3273 lock_ = NULL;
3274 delete fetcher_;
3275 fetcher_ = NULL;
3276 delete resolver_;
3277 resolver_ = NULL;
3278 delete records_;
3279 records_ = NULL;
3280 delete policy_;
3281 policy_ = NULL;
3282
3283 if (now_ != nil) {
3284 [now_ release];
3285 now_ = nil;
3286 }
3287
3288 cache_.Close();
3289
3290 apr_pool_clear(pool_);
3291 NSRecycleZone(zone_);
3292
3293 int chk(creat("/tmp/cydia.chk", 0644));
3294 if (chk != -1)
3295 close(chk);
3296
3297 NSString *title(UCLocalize("DATABASE"));
3298
3299 _trace();
3300 if (!cache_.Open(progress_, true)) { pop:
3301 std::string error;
3302 bool warning(!_error->PopMessage(error));
3303 lprintf("cache_.Open():[%s]\n", error.c_str());
3304
3305 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3306 [delegate_ repairWithSelector:@selector(configure)];
3307 else if (error == "The package lists or status file could not be parsed or opened.")
3308 [delegate_ repairWithSelector:@selector(update)];
3309 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3310 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3311 // else if (error == "The list of sources could not be read.")
3312 else
3313 [delegate_ _setProgressError:[NSString stringWithUTF8String:error.c_str()] withTitle:[NSString stringWithFormat:Colon_, warning ? Warning_ : Error_, title]];
3314
3315 if (warning)
3316 goto pop;
3317 _error->Discard();
3318 return;
3319 }
3320 _trace();
3321
3322 unlink("/tmp/cydia.chk");
3323
3324 now_ = [[NSDate date] retain];
3325
3326 policy_ = new pkgDepCache::Policy();
3327 records_ = new pkgRecords(cache_);
3328 resolver_ = new pkgProblemResolver(cache_);
3329 fetcher_ = new pkgAcquire(&status_);
3330 lock_ = NULL;
3331
3332 list_ = new pkgSourceList();
3333 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3334 return;
3335
3336 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3337 [delegate_ _setProgressError:@"COUNTS_NONZERO_EX" withTitle:title];
3338 return;
3339 }
3340
3341 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3342 return;
3343
3344 if (cache_->BrokenCount() != 0) {
3345 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3346 return;
3347
3348 if (cache_->BrokenCount() != 0) {
3349 [delegate_ _setProgressError:@"STILL_BROKEN_EX" withTitle:title];
3350 return;
3351 }
3352
3353 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3354 return;
3355 }
3356
3357 _trace();
3358
3359 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3360 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3361 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3362 // XXX: this could be more intelligent
3363 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3364 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3365 if (!cached.end())
3366 sources_[cached->ID] = [[[Source alloc] initWithMetaIndex:*source inPool:pool_] autorelease];
3367 }
3368 }
3369
3370 _trace();
3371
3372 {
3373 /*std::vector<Package *> packages;
3374 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3375 [packages_ release];
3376 packages_ = nil;*/
3377
3378 _trace();
3379
3380 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3381 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3382 //packages.push_back(package);
3383 [packages_ addObject:package];
3384
3385 _trace();
3386
3387 /*if (packages.empty())
3388 packages_ = [[NSArray alloc] init];
3389 else
3390 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3391 _trace();*/
3392
3393 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3394 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3395 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3396
3397 /*_trace();
3398 PrintTimes();
3399 _trace();*/
3400
3401 _trace();
3402
3403 /*if (!packages.empty())
3404 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3405 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3406
3407 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3408
3409 CFArrayInsertionSortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3410
3411 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3412
3413 _trace();
3414 }
3415 } }
3416
3417 - (void) configure {
3418 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3419 system([dpkg UTF8String]);
3420 }
3421
3422 - (bool) clean {
3423 // XXX: I don't remember this condition
3424 if (lock_ != NULL)
3425 return false;
3426
3427 FileFd Lock;
3428 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3429
3430 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3431
3432 if ([self popErrorWithTitle:title])
3433 return false;
3434
3435 pkgAcquire fetcher;
3436 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3437
3438 class LogCleaner :
3439 public pkgArchiveCleaner
3440 {
3441 protected:
3442 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3443 unlink(File);
3444 }
3445 } cleaner;
3446
3447 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3448 return false;
3449
3450 return true;
3451 }
3452
3453 - (bool) prepare {
3454 fetcher_->Shutdown();
3455
3456 pkgRecords records(cache_);
3457
3458 lock_ = new FileFd();
3459 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3460
3461 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3462
3463 if ([self popErrorWithTitle:title])
3464 return false;
3465
3466 pkgSourceList list;
3467 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3468 return false;
3469
3470 manager_ = (_system->CreatePM(cache_));
3471 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3472 return false;
3473
3474 return true;
3475 }
3476
3477 - (void) perform {
3478 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3479
3480 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3481 pkgSourceList list;
3482 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3483 return;
3484 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3485 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3486 }
3487
3488 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3489 _trace();
3490 return;
3491 }
3492
3493 bool failed = false;
3494 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3495 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3496 continue;
3497 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3498 continue;
3499
3500 std::string uri = (*item)->DescURI();
3501 std::string error = (*item)->ErrorText;
3502
3503 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
3504 failed = true;
3505
3506 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3507 withObject:[NSArray arrayWithObjects:
3508 [NSString stringWithUTF8String:error.c_str()],
3509 nil]
3510 waitUntilDone:YES
3511 ];
3512 }
3513
3514 if (failed) {
3515 _trace();
3516 return;
3517 }
3518
3519 _system->UnLock();
3520 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3521
3522 if (_error->PendingError()) {
3523 _trace();
3524 return;
3525 }
3526
3527 if (result == pkgPackageManager::Failed) {
3528 _trace();
3529 return;
3530 }
3531
3532 if (result != pkgPackageManager::Completed) {
3533 _trace();
3534 return;
3535 }
3536
3537 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3538 pkgSourceList list;
3539 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3540 return;
3541 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3542 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3543 }
3544
3545 if (![before isEqualToArray:after])
3546 [self update];
3547 }
3548
3549 - (bool) upgrade {
3550 NSString *title(UCLocalize("UPGRADE"));
3551 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3552 return false;
3553 return true;
3554 }
3555
3556 - (void) update {
3557 [self updateWithStatus:status_];
3558 }
3559
3560 - (void) setVisible {
3561 for (Package *package in packages_)
3562 [package setVisible];
3563 }
3564
3565 - (void) updateWithStatus:(Status &)status {
3566 _transient NSObject<ProgressDelegate> *delegate(status.getDelegate());
3567 NSString *title(UCLocalize("REFRESHING_DATA"));
3568
3569 pkgSourceList list;
3570 if (!list.ReadMainList())
3571 [delegate _setProgressError:@"Unable to read source list." withTitle:title];
3572
3573 FileFd lock;
3574 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3575 if ([self popErrorWithTitle:title])
3576 return;
3577
3578 if ([self popErrorWithTitle:title forOperation:ListUpdate(status, list, PulseInterval_)])
3579 /* XXX: ignore this because users suck and don't understand why refreshing is important: return */;
3580
3581 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3582 Changed_ = true;
3583 }
3584
3585 - (void) setDelegate:(id)delegate {
3586 delegate_ = delegate;
3587 status_.setDelegate(delegate);
3588 progress_.setDelegate(delegate);
3589 }
3590
3591 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3592 SourceMap::const_iterator i(sources_.find(file->ID));
3593 return i == sources_.end() ? nil : i->second;
3594 }
3595
3596 @end
3597 /* }}} */
3598
3599 /* Confirmation Controller {{{ */
3600 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
3601 if (!iterator.end())
3602 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
3603 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
3604 continue;
3605 pkgCache::PkgIterator package(dep.TargetPkg());
3606 if (package.end())
3607 continue;
3608 if (strcmp(package.Name(), "mobilesubstrate") == 0)
3609 return true;
3610 }
3611
3612 return false;
3613 }
3614 /* }}} */
3615
3616 /* Web Scripting {{{ */
3617 @interface CydiaObject : NSObject {
3618 id indirect_;
3619 id delegate_;
3620 }
3621
3622 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3623 @end
3624
3625 @implementation CydiaObject
3626
3627 - (void) dealloc {
3628 [indirect_ release];
3629 [super dealloc];
3630 }
3631
3632 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3633 if ((self = [super init]) != nil) {
3634 indirect_ = [indirect retain];
3635 } return self;
3636 }
3637
3638 - (void) setDelegate:(id)delegate {
3639 delegate_ = delegate;
3640 }
3641
3642 + (NSArray *) _attributeKeys {
3643 return [NSArray arrayWithObjects:@"device", @"firewire", @"imei", @"mac", @"serial", nil];
3644 }
3645
3646 - (NSArray *) attributeKeys {
3647 return [[self class] _attributeKeys];
3648 }
3649
3650 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3651 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3652 }
3653
3654 - (NSString *) device {
3655 return [[UIDevice currentDevice] uniqueIdentifier];
3656 }
3657
3658 #if 0 // XXX: implement!
3659 - (NSString *) mac {
3660 if (![indirect_ promptForSensitive:@"Mac Address"])
3661 return nil;
3662 }
3663
3664 - (NSString *) serial {
3665 if (![indirect_ promptForSensitive:@"Serial #"])
3666 return nil;
3667 }
3668
3669 - (NSString *) firewire {
3670 if (![indirect_ promptForSensitive:@"Firewire GUID"])
3671 return nil;
3672 }
3673
3674 - (NSString *) imei {
3675 if (![indirect_ promptForSensitive:@"IMEI"])
3676 return nil;
3677 }
3678 #endif
3679
3680 + (NSString *) webScriptNameForSelector:(SEL)selector {
3681 if (selector == @selector(close))
3682 return @"close";
3683 else if (selector == @selector(getInstalledPackages))
3684 return @"getInstalledPackages";
3685 else if (selector == @selector(getPackageById:))
3686 return @"getPackageById";
3687 else if (selector == @selector(installPackages:))
3688 return @"installPackages";
3689 else if (selector == @selector(setAutoPopup:))
3690 return @"setAutoPopup";
3691 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
3692 return @"setButtonImage";
3693 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
3694 return @"setButtonTitle";
3695 else if (selector == @selector(setFinishHook:))
3696 return @"setFinishHook";
3697 else if (selector == @selector(setPopupHook:))
3698 return @"setPopupHook";
3699 else if (selector == @selector(setSpecial:))
3700 return @"setSpecial";
3701 else if (selector == @selector(setToken:))
3702 return @"setToken";
3703 else if (selector == @selector(setViewportWidth:))
3704 return @"setViewportWidth";
3705 else if (selector == @selector(supports:))
3706 return @"supports";
3707 else if (selector == @selector(stringWithFormat:arguments:))
3708 return @"format";
3709 else if (selector == @selector(localizedStringForKey:value:table:))
3710 return @"localize";
3711 else if (selector == @selector(du:))
3712 return @"du";
3713 else if (selector == @selector(statfs:))
3714 return @"statfs";
3715 else
3716 return nil;
3717 }
3718
3719 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
3720 return [self webScriptNameForSelector:selector] == nil;
3721 }
3722
3723 - (BOOL) supports:(NSString *)feature {
3724 return [feature isEqualToString:@"window.open"];
3725 }
3726
3727 - (NSArray *) getInstalledPackages {
3728 NSArray *packages([[Database sharedInstance] packages]);
3729 NSMutableArray *installed([NSMutableArray arrayWithCapacity:[packages count]]);
3730 for (Package *package in packages)
3731 if ([package installed] != nil)
3732 [installed addObject:package];
3733 return installed;
3734 }
3735
3736 - (Package *) getPackageById:(NSString *)id {
3737 Package *package([[Database sharedInstance] packageWithName:id]);
3738 [package parse];
3739 return package;
3740 }
3741
3742 - (NSArray *) statfs:(NSString *)path {
3743 struct statfs stat;
3744
3745 if (path == nil || statfs([path UTF8String], &stat) == -1)
3746 return nil;
3747
3748 return [NSArray arrayWithObjects:
3749 [NSNumber numberWithUnsignedLong:stat.f_bsize],
3750 [NSNumber numberWithUnsignedLong:stat.f_blocks],
3751 [NSNumber numberWithUnsignedLong:stat.f_bfree],
3752 nil];
3753 }
3754
3755 - (NSNumber *) du:(NSString *)path {
3756 NSNumber *value(nil);
3757
3758 int fds[2];
3759 _assert(pipe(fds) != -1);
3760
3761 pid_t pid(ExecFork());
3762 if (pid == 0) {
3763 _assert(dup2(fds[1], 1) != -1);
3764 _assert(close(fds[0]) != -1);
3765 _assert(close(fds[1]) != -1);
3766 /* XXX: this should probably not use du */
3767 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
3768 exit(1);
3769 _assert(false);
3770 }
3771
3772 _assert(close(fds[1]) != -1);
3773
3774 if (FILE *du = fdopen(fds[0], "r")) {
3775 char line[1024];
3776 while (fgets(line, sizeof(line), du) != NULL) {
3777 size_t length(strlen(line));
3778 while (length != 0 && line[length - 1] == '\n')
3779 line[--length] = '\0';
3780 if (char *tab = strchr(line, '\t')) {
3781 *tab = '\0';
3782 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
3783 }
3784 }
3785
3786 fclose(du);
3787 } else _assert(close(fds[0]));
3788
3789 int status;
3790 wait:
3791 if (waitpid(pid, &status, 0) == -1)
3792 if (errno == EINTR)
3793 goto wait;
3794 else _assert(false);
3795
3796 return value;
3797 }
3798
3799 - (void) close {
3800 [indirect_ close];
3801 }
3802
3803 - (void) installPackages:(NSArray *)packages {
3804 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
3805 }
3806
3807 - (void) setAutoPopup:(BOOL)popup {
3808 [indirect_ setAutoPopup:popup];
3809 }
3810
3811 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3812 [indirect_ setButtonImage:button withStyle:style toFunction:function];
3813 }
3814
3815 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3816 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
3817 }
3818
3819 - (void) setSpecial:(id)function {
3820 [indirect_ setSpecial:function];
3821 }
3822
3823 - (void) setToken:(NSString *)token {
3824 if (Token_ != nil)
3825 [Token_ release];
3826 Token_ = [token retain];
3827
3828 [Metadata_ setObject:Token_ forKey:@"Token"];
3829 Changed_ = true;
3830 }
3831
3832 - (void) setFinishHook:(id)function {
3833 [indirect_ setFinishHook:function];
3834 }
3835
3836 - (void) setPopupHook:(id)function {
3837 [indirect_ setPopupHook:function];
3838 }
3839
3840 - (void) setViewportWidth:(float)width {
3841 [indirect_ setViewportWidth:width];
3842 }
3843
3844 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
3845 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
3846 unsigned count([arguments count]);
3847 id values[count];
3848 for (unsigned i(0); i != count; ++i)
3849 values[i] = [arguments objectAtIndex:i];
3850 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
3851 }
3852
3853 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
3854 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
3855 value = nil;
3856 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
3857 table = nil;
3858 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
3859 }
3860
3861 @end
3862 /* }}} */
3863
3864 /* Cydia View Controller {{{ */
3865 @interface CYViewController : UCViewController { }
3866 @end
3867
3868 @implementation CYViewController
3869 @end
3870 /* }}} */
3871
3872 @interface CYBrowserController : BrowserController {
3873 CydiaObject *cydia_;
3874 }
3875
3876 @end
3877
3878 @implementation CYBrowserController
3879
3880 - (void) dealloc {
3881 [cydia_ release];
3882 [super dealloc];
3883 }
3884
3885 - (void) setHeaders:(NSDictionary *)headers forHost:(NSString *)host {
3886 }
3887
3888 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
3889 [super webView:sender didClearWindowObject:window forFrame:frame];
3890
3891 WebDataSource *source([frame dataSource]);
3892 NSURLResponse *response([source response]);
3893 NSURL *url([response URL]);
3894 NSString *scheme([url scheme]);
3895
3896 NSHTTPURLResponse *http;
3897 if (scheme != nil && ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]))
3898 http = (NSHTTPURLResponse *) response;
3899 else
3900 http = nil;
3901
3902 NSDictionary *headers([http allHeaderFields]);
3903 NSString *host([url host]);
3904 [self setHeaders:headers forHost:host];
3905
3906 if (
3907 [host isEqualToString:@"cydia.saurik.com"] ||
3908 [host hasSuffix:@".cydia.saurik.com"] ||
3909 [scheme isEqualToString:@"file"]
3910 )
3911 [window setValue:cydia_ forKey:@"cydia"];
3912 }
3913
3914 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
3915 if (System_ != NULL)
3916 [request setValue:System_ forHTTPHeaderField:@"X-System"];
3917 if (Machine_ != NULL)
3918 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
3919 if (Token_ != nil)
3920 [request setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
3921 if (Role_ != nil)
3922 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
3923 }
3924
3925 - (NSURLRequest *) webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)source {
3926 NSMutableURLRequest *copy = [request mutableCopy];
3927 [self _setMoreHeaders:copy];
3928 return copy;
3929 }
3930
3931 - (void) setDelegate:(id)delegate {
3932 [super setDelegate:delegate];
3933 [cydia_ setDelegate:delegate];
3934 }
3935
3936 - (id) init {
3937 if ((self = [super initWithWidth:0 ofClass:[CYBrowserController class]]) != nil) {
3938 cydia_ = [[CydiaObject alloc] initWithDelegate:indirect_];
3939
3940 WebView *webview([document_ webView]);
3941
3942 Package *package([[Database sharedInstance] packageWithName:@"cydia"]);
3943
3944 NSString *application = package == nil ? @"Cydia" : [NSString
3945 stringWithFormat:@"Cydia/%@",
3946 [package installed]
3947 ];
3948
3949 if (Safari_ != nil)
3950 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
3951 if (Build_ != nil)
3952 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
3953 if (Product_ != nil)
3954 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
3955
3956 [webview setApplicationNameForUserAgent:application];
3957 } return self;
3958 }
3959
3960 @end
3961
3962 @protocol ConfirmationControllerDelegate
3963 - (void) cancelAndClear:(bool)clear;
3964 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
3965 - (void) queue;
3966 @end
3967
3968 @interface ConfirmationController : CYBrowserController {
3969 _transient Database *database_;
3970 UIAlertView *essential_;
3971 NSArray *changes_;
3972 NSArray *issues_;
3973 NSArray *sizes_;
3974 BOOL substrate_;
3975 }
3976
3977 - (id) initWithDatabase:(Database *)database;
3978
3979 @end
3980
3981 @implementation ConfirmationController
3982
3983 - (void) dealloc {
3984 [changes_ release];
3985 if (issues_ != nil)
3986 [issues_ release];
3987 [sizes_ release];
3988 if (essential_ != nil)
3989 [essential_ release];
3990 [super dealloc];
3991 }
3992
3993 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
3994 NSString *context([alert context]);
3995
3996 if ([context isEqualToString:@"remove"]) {
3997 if (button == [alert cancelButtonIndex]) {
3998 [self dismissModalViewControllerAnimated:YES];
3999 } else if (button == [alert firstOtherButtonIndex]) {
4000 if (substrate_)
4001 Finish_ = 2;
4002 [delegate_ confirmWithNavigationController:[self navigationController]];
4003 }
4004
4005 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4006 } else if ([context isEqualToString:@"unable"]) {
4007 [self dismissModalViewControllerAnimated:YES];
4008 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4009 } else {
4010 [super alertView:alert clickedButtonAtIndex:button];
4011 }
4012 }
4013
4014 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4015 [self dismissModalViewControllerAnimated:YES];
4016 [delegate_ cancelAndClear:NO];
4017
4018 return nil;
4019 }
4020
4021 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4022 [super webView:sender didClearWindowObject:window forFrame:frame];
4023 [window setValue:changes_ forKey:@"changes"];
4024 [window setValue:issues_ forKey:@"issues"];
4025 [window setValue:sizes_ forKey:@"sizes"];
4026 [window setValue:self forKey:@"queue"];
4027 }
4028
4029 - (id) initWithDatabase:(Database *)database {
4030 if ((self = [super init]) != nil) {
4031 database_ = database;
4032
4033 [[self navigationItem] setTitle:UCLocalize("CONFIRM")];
4034
4035 NSMutableArray *installing = [NSMutableArray arrayWithCapacity:16];
4036 NSMutableArray *reinstalling = [NSMutableArray arrayWithCapacity:16];
4037 NSMutableArray *upgrading = [NSMutableArray arrayWithCapacity:16];
4038 NSMutableArray *downgrading = [NSMutableArray arrayWithCapacity:16];
4039 NSMutableArray *removing = [NSMutableArray arrayWithCapacity:16];
4040
4041 bool remove(false);
4042
4043 pkgDepCache::Policy *policy([database_ policy]);
4044
4045 pkgCacheFile &cache([database_ cache]);
4046 NSArray *packages = [database_ packages];
4047 for (Package *package in packages) {
4048 pkgCache::PkgIterator iterator = [package iterator];
4049 pkgDepCache::StateCache &state(cache[iterator]);
4050
4051 NSString *name([package name]);
4052
4053 if (state.NewInstall())
4054 [installing addObject:name];
4055 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4056 [reinstalling addObject:name];
4057 else if (state.Upgrade())
4058 [upgrading addObject:name];
4059 else if (state.Downgrade())
4060 [downgrading addObject:name];
4061 else if (state.Delete()) {
4062 if ([package essential])
4063 remove = true;
4064 [removing addObject:name];
4065 } else continue;
4066
4067 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4068 substrate_ |= DepSubstrate(iterator.CurrentVer());
4069 }
4070
4071 if (!remove)
4072 essential_ = nil;
4073 else if (Advanced_) {
4074 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4075
4076 essential_ = [[UIAlertView alloc]
4077 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4078 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4079 delegate:self
4080 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4081 otherButtonTitles:[NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")], nil
4082 ];
4083
4084 [essential_ setContext:@"remove"];
4085 } else {
4086 essential_ = [[UIAlertView alloc]
4087 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4088 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4089 delegate:self
4090 cancelButtonTitle:UCLocalize("OKAY")
4091 otherButtonTitles:nil
4092 ];
4093
4094 [essential_ setContext:@"unable"];
4095 }
4096
4097 changes_ = [[NSArray alloc] initWithObjects:
4098 installing,
4099 reinstalling,
4100 upgrading,
4101 downgrading,
4102 removing,
4103 nil];
4104
4105 issues_ = [database_ issues];
4106 if (issues_ != nil)
4107 issues_ = [issues_ retain];
4108
4109 sizes_ = [[NSArray alloc] initWithObjects:
4110 SizeString([database_ fetcher].FetchNeeded()),
4111 SizeString([database_ fetcher].PartialPresent()),
4112 nil];
4113
4114 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"confirm" ofType:@"html"]]];
4115
4116 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
4117 initWithTitle:UCLocalize("CANCEL")
4118 // OLD: [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("CANCEL"), UCLocalize("QUEUE")]
4119 style:UIBarButtonItemStylePlain
4120 target:self
4121 action:@selector(cancelButtonClicked)
4122 ];
4123 [[self navigationItem] setLeftBarButtonItem:leftItem];
4124 [leftItem release];
4125 } return self;
4126 }
4127
4128 - (void) applyRightButton {
4129 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
4130 initWithTitle:UCLocalize("CONFIRM")
4131 style:UIBarButtonItemStylePlain
4132 target:self
4133 action:@selector(confirmButtonClicked)
4134 ];
4135 #if !AlwaysReload && !IgnoreInstall
4136 if (issues_ == nil && ![self isLoading]) [[self navigationItem] setRightBarButtonItem:rightItem];
4137 else [super applyRightButton];
4138 #else
4139 [[self navigationItem] setRightBarButtonItem:nil];
4140 #endif
4141 [rightItem release];
4142 }
4143
4144 - (void) cancelButtonClicked {
4145 [self dismissModalViewControllerAnimated:YES];
4146 [delegate_ cancelAndClear:YES];
4147 }
4148
4149 #if !AlwaysReload
4150 - (void) confirmButtonClicked {
4151 #if IgnoreInstall
4152 return;
4153 #endif
4154 if (essential_ != nil)
4155 [essential_ show];
4156 else {
4157 if (substrate_)
4158 Finish_ = 2;
4159 [delegate_ confirmWithNavigationController:[self navigationController]];
4160 }
4161 }
4162 #endif
4163
4164 @end
4165 /* }}} */
4166
4167 /* Progress Data {{{ */
4168 @interface ProgressData : NSObject {
4169 SEL selector_;
4170 id target_;
4171 id object_;
4172 }
4173
4174 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object;
4175
4176 - (SEL) selector;
4177 - (id) target;
4178 - (id) object;
4179 @end
4180
4181 @implementation ProgressData
4182
4183 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object {
4184 if ((self = [super init]) != nil) {
4185 selector_ = selector;
4186 target_ = target;
4187 object_ = object;
4188 } return self;
4189 }
4190
4191 - (SEL) selector {
4192 return selector_;
4193 }
4194
4195 - (id) target {
4196 return target_;
4197 }
4198
4199 - (id) object {
4200 return object_;
4201 }
4202
4203 @end
4204 /* }}} */
4205 /* Progress Controller {{{ */
4206 @interface ProgressController : CYViewController <
4207 ConfigurationDelegate,
4208 ProgressDelegate
4209 > {
4210 _transient Database *database_;
4211 UIProgressBar *progress_;
4212 UITextView *output_;
4213 UITextLabel *status_;
4214 UIPushButton *close_;
4215 BOOL running_;
4216 SHA1SumValue springlist_;
4217 SHA1SumValue notifyconf_;
4218 NSString *title_;
4219 }
4220
4221 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
4222
4223 - (void) _retachThread;
4224 - (void) _detachNewThreadData:(ProgressData *)data;
4225 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title;
4226
4227 - (BOOL) isRunning;
4228
4229 @end
4230
4231 @protocol ProgressControllerDelegate
4232 - (void) progressControllerIsComplete:(ProgressController *)sender;
4233 @end
4234
4235 @implementation ProgressController
4236
4237 - (void) dealloc {
4238 [database_ setDelegate:nil];
4239 [progress_ release];
4240 [output_ release];
4241 [status_ release];
4242 [close_ release];
4243 if (title_ != nil)
4244 [title_ release];
4245 [super dealloc];
4246 }
4247
4248 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
4249 if ((self = [super init]) != nil) {
4250 database_ = database;
4251 [database_ setDelegate:self];
4252 delegate_ = delegate;
4253
4254 [[self view] setBackgroundColor:[UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:1.0f]];
4255
4256 progress_ = [[UIProgressBar alloc] init];
4257 [progress_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4258 [progress_ setStyle:0];
4259
4260 status_ = [[UITextLabel alloc] init];
4261 [status_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4262 [status_ setColor:[UIColor whiteColor]];
4263 [status_ setBackgroundColor:[UIColor clearColor]];
4264 [status_ setCentersHorizontally:YES];
4265 //[status_ setFont:font];
4266
4267 output_ = [[UITextView alloc] init];
4268
4269 [output_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4270 //[output_ setTextFont:@"Courier New"];
4271 [output_ setFont:[[output_ font] fontWithSize:12]];
4272 [output_ setTextColor:[UIColor whiteColor]];
4273 [output_ setBackgroundColor:[UIColor clearColor]];
4274 [output_ setMarginTop:0];
4275 [output_ setAllowsRubberBanding:YES];
4276 [output_ setEditable:NO];
4277 [[self view] addSubview:output_];
4278
4279 close_ = [[UIPushButton alloc] init];
4280 [close_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4281 [close_ setAutosizesToFit:NO];
4282 [close_ setDrawsShadow:YES];
4283 [close_ setStretchBackground:YES];
4284 [close_ setEnabled:YES];
4285 [close_ setTitleFont:[UIFont boldSystemFontOfSize:22]];
4286 [close_ addTarget:self action:@selector(closeButtonPushed) forEvents:UIControlEventTouchUpInside];
4287 [close_ setBackground:[UIImage applicationImageNamed:@"green-up.png"] forState:0];
4288 [close_ setBackground:[UIImage applicationImageNamed:@"green-dn.png"] forState:1];
4289 } return self;
4290 }
4291
4292 - (void) positionViews {
4293 CGRect bounds = [[self view] bounds];
4294 CGSize prgsize = [UIProgressBar defaultSize];
4295
4296 CGRect prgrect = {{
4297 (bounds.size.width - prgsize.width) / 2,
4298 bounds.size.height - prgsize.height - 64
4299 }, prgsize};
4300
4301 float closewidth = bounds.size.width - 20;
4302 if (closewidth > 300) closewidth = 300;
4303
4304 [progress_ setFrame:prgrect];
4305 [status_ setFrame:CGRectMake(
4306 10,
4307 bounds.size.height - prgsize.height - 94,
4308 bounds.size.width - 20,
4309 24
4310 )];
4311 [output_ setFrame:CGRectMake(
4312 10,
4313 20,
4314 bounds.size.width - 20,
4315 bounds.size.height - 106
4316 )];
4317 [close_ setFrame:CGRectMake(
4318 (bounds.size.width - closewidth) / 2,
4319 bounds.size.height - prgsize.height - 94,
4320 closewidth,
4321 32 + prgsize.height
4322 )];
4323 }
4324
4325 - (void) viewWillAppear:(BOOL)animated {
4326 [super viewDidAppear:animated];
4327 [[self navigationItem] setHidesBackButton:YES];
4328 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
4329
4330 [self positionViews];
4331 }
4332
4333 - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
4334 [self positionViews];
4335 }
4336
4337 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4338 NSString *context([alert context]);
4339
4340 if ([context isEqualToString:@"conffile"]) {
4341 FILE *input = [database_ input];
4342 if (button == [alert cancelButtonIndex]) fprintf(input, "N\n");
4343 else if (button == [alert firstOtherButtonIndex]) fprintf(input, "Y\n");
4344 fflush(input);
4345 }
4346 }
4347
4348 - (void) closeButtonPushed {
4349 running_ = NO;
4350
4351 UpdateExternalStatus(0);
4352
4353 switch (Finish_) {
4354 case 0:
4355 [self dismissModalViewControllerAnimated:YES];
4356 break;
4357
4358 case 1:
4359 [delegate_ terminateWithSuccess];
4360 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
4361 [delegate_ suspendWithAnimation:YES];
4362 else
4363 [delegate_ suspend];*/
4364 break;
4365
4366 case 2:
4367 system("launchctl stop com.apple.SpringBoard");
4368 break;
4369
4370 case 3:
4371 system("launchctl unload "SpringBoard_"; launchctl load "SpringBoard_);
4372 break;
4373
4374 case 4:
4375 system("reboot");
4376 break;
4377 }
4378 }
4379
4380 - (void) _retachThread {
4381 [[self navigationItem] setTitle:UCLocalize("COMPLETE")];
4382
4383 [[self view] addSubview:close_];
4384 [progress_ removeFromSuperview];
4385 [status_ removeFromSuperview];
4386
4387 [database_ popErrorWithTitle:title_];
4388 [delegate_ progressControllerIsComplete:self];
4389
4390 if (Finish_ < 4) {
4391 FileFd file;
4392 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4393 _error->Discard();
4394 else {
4395 MMap mmap(file, MMap::ReadOnly);
4396 SHA1Summation sha1;
4397 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4398 if (!(notifyconf_ == sha1.Result()))
4399 Finish_ = 4;
4400 }
4401 }
4402
4403 if (Finish_ < 3) {
4404 FileFd file;
4405 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4406 _error->Discard();
4407 else {
4408 MMap mmap(file, MMap::ReadOnly);
4409 SHA1Summation sha1;
4410 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4411 if (!(springlist_ == sha1.Result()))
4412 Finish_ = 3;
4413 }
4414 }
4415
4416 switch (Finish_) {
4417 case 0: [close_ setTitle:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
4418 case 1: [close_ setTitle:UCLocalize("CLOSE_CYDIA")]; break;
4419 case 2: [close_ setTitle:UCLocalize("RESTART_SPRINGBOARD")]; break;
4420 case 3: [close_ setTitle:UCLocalize("RELOAD_SPRINGBOARD")]; break;
4421 case 4: [close_ setTitle:UCLocalize("REBOOT_DEVICE")]; break;
4422 }
4423
4424 system("su -c /usr/bin/uicache mobile");
4425
4426 UpdateExternalStatus(Finish_ == 0 ? 2 : 0);
4427
4428 [delegate_ setStatusBarShowsProgress:NO];
4429 }
4430
4431 - (void) _detachNewThreadData:(ProgressData *)data { _pooled
4432 [[data target] performSelector:[data selector] withObject:[data object]];
4433 [data release];
4434
4435 [self performSelectorOnMainThread:@selector(_retachThread) withObject:nil waitUntilDone:YES];
4436 }
4437
4438 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title {
4439 UpdateExternalStatus(1);
4440
4441 if (title_ != nil)
4442 [title_ release];
4443 if (title == nil)
4444 title_ = nil;
4445 else
4446 title_ = [title retain];
4447
4448 [[self navigationItem] setTitle:title_];
4449
4450 [status_ setText:nil];
4451 [output_ setText:@""];
4452 [progress_ setProgress:0];
4453
4454 [close_ removeFromSuperview];
4455 [[self view] addSubview:progress_];
4456 [[self view] addSubview:status_];
4457
4458 [delegate_ setStatusBarShowsProgress:YES];
4459 running_ = YES;
4460
4461 {
4462 FileFd file;
4463 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4464 _error->Discard();
4465 else {
4466 MMap mmap(file, MMap::ReadOnly);
4467 SHA1Summation sha1;
4468 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4469 notifyconf_ = sha1.Result();
4470 }
4471 }
4472
4473 {
4474 FileFd file;
4475 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4476 _error->Discard();
4477 else {
4478 MMap mmap(file, MMap::ReadOnly);
4479 SHA1Summation sha1;
4480 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4481 springlist_ = sha1.Result();
4482 }
4483 }
4484
4485 [NSThread
4486 detachNewThreadSelector:@selector(_detachNewThreadData:)
4487 toTarget:self
4488 withObject:[[ProgressData alloc]
4489 initWithSelector:selector
4490 target:target
4491 object:object
4492 ]
4493 ];
4494 }
4495
4496 - (void) repairWithSelector:(SEL)selector {
4497 [self
4498 detachNewThreadSelector:selector
4499 toTarget:database_
4500 withObject:nil
4501 title:UCLocalize("REPAIRING")
4502 ];
4503 }
4504
4505 - (void) setConfigurationData:(NSString *)data {
4506 [self
4507 performSelectorOnMainThread:@selector(_setConfigurationData:)
4508 withObject:data
4509 waitUntilDone:YES
4510 ];
4511 }
4512
4513 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
4514 CYActionSheet *sheet([[[CYActionSheet alloc]
4515 initWithTitle:title
4516 buttons:[NSArray arrayWithObjects:UCLocalize("OKAY"), nil]
4517 defaultButtonIndex:0
4518 ] autorelease]);
4519
4520 [sheet setMessage:error];
4521 [sheet yieldToPopupAlertAnimated:YES];
4522 [sheet dismiss];
4523 }
4524
4525 - (void) setProgressTitle:(NSString *)title {
4526 [self
4527 performSelectorOnMainThread:@selector(_setProgressTitle:)
4528 withObject:title
4529 waitUntilDone:YES
4530 ];
4531 }
4532
4533 - (void) setProgressPercent:(float)percent {
4534 [self
4535 performSelectorOnMainThread:@selector(_setProgressPercent:)
4536 withObject:[NSNumber numberWithFloat:percent]
4537 waitUntilDone:YES
4538 ];
4539 }
4540
4541 - (void) startProgress {
4542 }
4543
4544 - (void) addProgressOutput:(NSString *)output {
4545 [self
4546 performSelectorOnMainThread:@selector(_addProgressOutput:)
4547 withObject:output
4548 waitUntilDone:YES
4549 ];
4550 }
4551
4552 - (bool) isCancelling:(size_t)received {
4553 return false;
4554 }
4555
4556 - (void) _setConfigurationData:(NSString *)data {
4557 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
4558
4559 if (!conffile_r(data)) {
4560 lprintf("E:invalid conffile\n");
4561 return;
4562 }
4563
4564 NSString *ofile = conffile_r[1];
4565 //NSString *nfile = conffile_r[2];
4566
4567 UIAlertView *alert = [[[UIAlertView alloc]
4568 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
4569 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
4570 delegate:self
4571 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
4572 otherButtonTitles:UCLocalize("ACCEPT_NEW_COPY"),
4573 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
4574 nil
4575 ] autorelease];
4576
4577 [alert setContext:@"conffile"];
4578 [alert show];
4579 }
4580
4581 - (void) _setProgressTitle:(NSString *)title {
4582 NSMutableArray *words([[title componentsSeparatedByString:@" "] mutableCopy]);
4583 for (size_t i(0), e([words count]); i != e; ++i) {
4584 NSString *word([words objectAtIndex:i]);
4585 if (Package *package = [database_ packageWithName:word])
4586 [words replaceObjectAtIndex:i withObject:[package name]];
4587 }
4588
4589 [status_ setText:[words componentsJoinedByString:@" "]];
4590 }
4591
4592 - (void) _setProgressPercent:(NSNumber *)percent {
4593 [progress_ setProgress:[percent floatValue]];
4594 }
4595
4596 - (void) _addProgressOutput:(NSString *)output {
4597 [output_ setText:[NSString stringWithFormat:@"%@\n%@", [output_ text], output]];
4598 CGSize size = [output_ contentSize];
4599 CGRect rect = {{0, size.height}, {size.width, 0}};
4600 [output_ scrollRectToVisible:rect animated:YES];
4601 }
4602
4603 - (BOOL) isRunning {
4604 return running_;
4605 }
4606
4607 @end
4608 /* }}} */
4609
4610 /* Cell Content View {{{ */
4611 @protocol ContentDelegate
4612 - (void) drawContentRect:(CGRect)rect;
4613 @end
4614
4615 @interface ContentView : UIView {
4616 _transient id<ContentDelegate> delegate_;
4617 }
4618
4619 @end
4620
4621 @implementation ContentView
4622 - (id) initWithFrame:(CGRect)frame {
4623 if ((self = [super initWithFrame:frame]) != nil) {
4624 /* Fix landscape stretching. */
4625 [self setNeedsDisplayOnBoundsChange:YES];
4626 } return self;
4627 }
4628
4629 - (void) setDelegate:(id<ContentDelegate>)delegate {
4630 delegate_ = delegate;
4631 }
4632
4633 - (void) drawRect:(CGRect)rect {
4634 [super drawRect:rect];
4635 [delegate_ drawContentRect:rect];
4636 }
4637 @end
4638 /* }}} */
4639 /* Package Cell {{{ */
4640 @interface PackageCell : UITableViewCell <
4641 ContentDelegate
4642 > {
4643 UIImage *icon_;
4644 NSString *name_;
4645 NSString *description_;
4646 bool commercial_;
4647 NSString *source_;
4648 UIImage *badge_;
4649 Package *package_;
4650 UIColor *color_;
4651 ContentView *content_;
4652 BOOL faded_;
4653 float fade_;
4654 UIImage *placard_;
4655 }
4656
4657 - (PackageCell *) init;
4658 - (void) setPackage:(Package *)package;
4659
4660 + (int) heightForPackage:(Package *)package;
4661 - (void) drawContentRect:(CGRect)rect;
4662
4663 @end
4664
4665 @implementation PackageCell
4666
4667 - (void) clearPackage {
4668 if (icon_ != nil) {
4669 [icon_ release];
4670 icon_ = nil;
4671 }
4672
4673 if (name_ != nil) {
4674 [name_ release];
4675 name_ = nil;
4676 }
4677
4678 if (description_ != nil) {
4679 [description_ release];
4680 description_ = nil;
4681 }
4682
4683 if (source_ != nil) {
4684 [source_ release];
4685 source_ = nil;
4686 }
4687
4688 if (badge_ != nil) {
4689 [badge_ release];
4690 badge_ = nil;
4691 }
4692
4693 if (placard_ != nil) {
4694 [placard_ release];
4695 placard_ = nil;
4696 }
4697
4698 [package_ release];
4699 package_ = nil;
4700 }
4701
4702 - (void) dealloc {
4703 [self clearPackage];
4704 [content_ release];
4705 [color_ release];
4706 [super dealloc];
4707 }
4708
4709 - (float) fade {
4710 return faded_ ? [self selectionPercent] : fade_;
4711 }
4712
4713 - (PackageCell *) init {
4714 CGRect frame(CGRectMake(0, 0, 320, 74));
4715 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
4716 UIView *content([self contentView]);
4717 CGRect bounds([content bounds]);
4718
4719 content_ = [[ContentView alloc] initWithFrame:bounds];
4720 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4721 [content addSubview:content_];
4722
4723 [content_ setDelegate:self];
4724 [content_ setOpaque:YES];
4725 if ([self respondsToSelector:@selector(selectionPercent)])
4726 faded_ = YES;
4727 } return self;
4728 }
4729
4730 - (void) _setBackgroundColor {
4731 UIColor *color;
4732 if (NSString *mode = [package_ mode]) {
4733 bool remove([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]);
4734 color = remove ? RemovingColor_ : InstallingColor_;
4735 } else
4736 color = [UIColor whiteColor];
4737
4738 [content_ setBackgroundColor:color];
4739 [self setNeedsDisplay];
4740 }
4741
4742 - (void) setPackage:(Package *)package {
4743 [self clearPackage];
4744 [package parse];
4745
4746 Source *source = [package source];
4747
4748 icon_ = [[package icon] retain];
4749 name_ = [[package name] retain];
4750
4751 if (IsWildcat_)
4752 description_ = [package longDescription];
4753 if (description_ == nil)
4754 description_ = [package shortDescription];
4755 if (description_ != nil)
4756 description_ = [description_ retain];
4757
4758 commercial_ = [package isCommercial];
4759
4760 package_ = [package retain];
4761
4762 NSString *label = nil;
4763 bool trusted = false;
4764
4765 if (source != nil) {
4766 label = [source label];
4767 trusted = [source trusted];
4768 } else if ([[package id] isEqualToString:@"firmware"])
4769 label = UCLocalize("APPLE");
4770 else
4771 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
4772
4773 NSString *from(label);
4774
4775 NSString *section = [package simpleSection];
4776 if (section != nil && ![section isEqualToString:label]) {
4777 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
4778 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
4779 }
4780
4781 from = [NSString stringWithFormat:UCLocalize("FROM"), from];
4782 source_ = [from retain];
4783
4784 if (NSString *purpose = [package primaryPurpose])
4785 if ((badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]) != nil)
4786 badge_ = [badge_ retain];
4787
4788 if ([package installed] != nil)
4789 if ((placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/installed.png", App_]]) != nil)
4790 placard_ = [placard_ retain];
4791
4792 [self _setBackgroundColor];
4793 [content_ setNeedsDisplay];
4794 }
4795
4796 - (void) drawContentRect:(CGRect)rect {
4797 bool selected([self isSelected]);
4798 float width([self bounds].size.width);
4799
4800 #if 0
4801 CGContextRef context(UIGraphicsGetCurrentContext());
4802 [([[self selectedBackgroundView] superview] != nil ? [UIColor clearColor] : [self backgroundColor]) set];
4803 CGContextFillRect(context, rect);
4804 #endif
4805
4806 if (icon_ != nil) {
4807 CGRect rect;
4808 rect.size = [icon_ size];
4809
4810 rect.size.width /= 2;
4811 rect.size.height /= 2;
4812
4813 rect.origin.x = 25 - rect.size.width / 2;
4814 rect.origin.y = 25 - rect.size.height / 2;
4815
4816 [icon_ drawInRect:rect];
4817 }
4818
4819 if (badge_ != nil) {
4820 CGSize size = [badge_ size];
4821
4822 [badge_ drawAtPoint:CGPointMake(
4823 36 - size.width / 2,
4824 36 - size.height / 2
4825 )];
4826 }
4827
4828 if (selected)
4829 UISetColor(White_);
4830
4831 if (!selected)
4832 UISetColor(commercial_ ? Purple_ : Black_);
4833 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
4834 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
4835
4836 if (!selected)
4837 UISetColor(commercial_ ? Purplish_ : Gray_);
4838 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
4839
4840 if (placard_ != nil)
4841 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
4842 }
4843
4844 - (void) setSelected:(BOOL)selected animated:(BOOL)fade {
4845 //[self _setBackgroundColor];
4846 [super setSelected:selected animated:fade];
4847 [content_ setNeedsDisplay];
4848 }
4849
4850 + (int) heightForPackage:(Package *)package {
4851 return 73;
4852 }
4853
4854 @end
4855 /* }}} */
4856 /* Section Cell {{{ */
4857 @interface SectionCell : UITableViewCell <
4858 ContentDelegate
4859 > {
4860 NSString *basic_;
4861 NSString *section_;
4862 NSString *name_;
4863 NSString *count_;
4864 UIImage *icon_;
4865 ContentView *content_;
4866 id switch_;
4867 BOOL editing_;
4868 }
4869
4870 - (void) setSection:(Section *)section editing:(BOOL)editing;
4871
4872 @end
4873
4874 @implementation SectionCell
4875
4876 - (void) clearSection {
4877 if (basic_ != nil) {
4878 [basic_ release];
4879 basic_ = nil;
4880 }
4881
4882 if (section_ != nil) {
4883 [section_ release];
4884 section_ = nil;
4885 }
4886
4887 if (name_ != nil) {
4888 [name_ release];
4889 name_ = nil;
4890 }
4891
4892 if (count_ != nil) {
4893 [count_ release];
4894 count_ = nil;
4895 }
4896 }
4897
4898 - (void) dealloc {
4899 [self clearSection];
4900 [icon_ release];
4901 [switch_ release];
4902 [content_ release];
4903
4904 [super dealloc];
4905 }
4906
4907 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
4908 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
4909 icon_ = [[UIImage applicationImageNamed:@"folder.png"] retain];
4910 switch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(218, 9, 60, 25)];
4911 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
4912
4913 UIView *content([self contentView]);
4914 CGRect bounds([content bounds]);
4915
4916 content_ = [[ContentView alloc] initWithFrame:bounds];
4917 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4918 [content addSubview:content_];
4919 [content_ setBackgroundColor:[UIColor whiteColor]];
4920
4921 [content_ setDelegate:self];
4922 } return self;
4923 }
4924
4925 - (void) onSwitch:(id)sender {
4926 NSMutableDictionary *metadata = [Sections_ objectForKey:basic_];
4927 if (metadata == nil) {
4928 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
4929 [Sections_ setObject:metadata forKey:basic_];
4930 }
4931
4932 Changed_ = true;
4933 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
4934 }
4935
4936 - (void) setSection:(Section *)section editing:(BOOL)editing {
4937 if (editing != editing_) {
4938 if (editing_)
4939 [switch_ removeFromSuperview];
4940 else
4941 [self addSubview:switch_];
4942 editing_ = editing;
4943 }
4944
4945 [self clearSection];
4946
4947 if (section == nil) {
4948 name_ = [UCLocalize("ALL_PACKAGES") retain];
4949 count_ = nil;
4950 } else {
4951 basic_ = [section name];
4952 if (basic_ != nil)
4953 basic_ = [basic_ retain];
4954
4955 section_ = [section localized];
4956 if (section_ != nil)
4957 section_ = [section_ retain];
4958
4959 name_ = [(section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : section_) retain];
4960 count_ = [[NSString stringWithFormat:@"%d", [section count]] retain];
4961
4962 if (editing_)
4963 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
4964 }
4965
4966 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
4967 [content_ setNeedsDisplay];
4968 }
4969
4970 - (void) setFrame:(CGRect)frame {
4971 [super setFrame:frame];
4972
4973 CGRect rect([switch_ frame]);
4974 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
4975 }
4976
4977 - (void) drawContentRect:(CGRect)rect {
4978 BOOL selected = [self isSelected];
4979
4980 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
4981
4982 if (selected)
4983 UISetColor(White_);
4984
4985 if (!selected)
4986 UISetColor(Black_);
4987
4988 float width(rect.size.width);
4989 if (editing_)
4990 width -= 87;
4991
4992 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation];
4993
4994 CGSize size = [count_ sizeWithFont:Font14_];
4995
4996 UISetColor(White_);
4997 if (count_ != nil)
4998 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
4999 }
5000
5001 @end
5002 /* }}} */
5003
5004 /* File Table {{{ */
5005 @interface FileTable : CYViewController <
5006 UITableViewDataSource,
5007 UITableViewDelegate
5008 > {
5009 _transient Database *database_;
5010 Package *package_;
5011 NSString *name_;
5012 NSMutableArray *files_;
5013 UITableView *list_;
5014 }
5015
5016 - (id) initWithDatabase:(Database *)database;
5017 - (void) setPackage:(Package *)package;
5018
5019 @end
5020
5021 @implementation FileTable
5022
5023 - (void) dealloc {
5024 if (package_ != nil)
5025 [package_ release];
5026 if (name_ != nil)
5027 [name_ release];
5028 [files_ release];
5029 [list_ release];
5030 [super dealloc];
5031 }
5032
5033 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)section {
5034 return files_ == nil ? 0 : [files_ count];
5035 }
5036
5037 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5038 return 24.0f;
5039 }*/
5040
5041 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5042 static NSString *reuseIdentifier = @"Cell";
5043
5044 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
5045 if (cell == nil) {
5046 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
5047 [cell setFont:[UIFont systemFontOfSize:16]];
5048 }
5049 [cell setText:[files_ objectAtIndex:indexPath.row]];
5050 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
5051
5052 return cell;
5053 }
5054
5055 - (id) initWithDatabase:(Database *)database {
5056 if ((self = [super init]) != nil) {
5057 database_ = database;
5058
5059 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
5060
5061 files_ = [[NSMutableArray arrayWithCapacity:32] retain];
5062
5063 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
5064 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5065 [list_ setRowHeight:24.0f];
5066 [[self view] addSubview:list_];
5067
5068 [list_ setDataSource:self];
5069 [list_ setDelegate:self];
5070 } return self;
5071 }
5072
5073 - (void) setPackage:(Package *)package {
5074 if (package_ != nil) {
5075 [package_ autorelease];
5076 package_ = nil;
5077 }
5078
5079 if (name_ != nil) {
5080 [name_ release];
5081 name_ = nil;
5082 }
5083
5084 [files_ removeAllObjects];
5085
5086 if (package != nil) {
5087 package_ = [package retain];
5088 name_ = [[package id] retain];
5089
5090 if (NSArray *files = [package files])
5091 [files_ addObjectsFromArray:files];
5092
5093 if ([files_ count] != 0) {
5094 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5095 [files_ removeObjectAtIndex:0];
5096 [files_ sortUsingSelector:@selector(compareByPath:)];
5097
5098 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5099 [stack addObject:@"/"];
5100
5101 for (int i(0), e([files_ count]); i != e; ++i) {
5102 NSString *file = [files_ objectAtIndex:i];
5103 while (![file hasPrefix:[stack lastObject]])
5104 [stack removeLastObject];
5105 NSString *directory = [stack lastObject];
5106 [stack addObject:[file stringByAppendingString:@"/"]];
5107 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
5108 ([stack count] - 2) * 3, "",
5109 [file substringFromIndex:[directory length]]
5110 ]];
5111 }
5112 }
5113 }
5114
5115 [list_ reloadData];
5116 }
5117
5118 - (void) reloadData {
5119 [self setPackage:[database_ packageWithName:name_]];
5120 }
5121
5122 @end
5123 /* }}} */
5124 /* Package Controller {{{ */
5125 @interface PackageController : CYBrowserController <
5126 UIActionSheetDelegate
5127 > {
5128 _transient Database *database_;
5129 Package *package_;
5130 NSString *name_;
5131 bool commercial_;
5132 NSMutableArray *buttons_;
5133 }
5134
5135 - (id) initWithDatabase:(Database *)database;
5136 - (void) setPackage:(Package *)package;
5137
5138 @end
5139
5140 @implementation PackageController
5141
5142 - (void) dealloc {
5143 if (package_ != nil)
5144 [package_ release];
5145 if (name_ != nil)
5146 [name_ release];
5147 [buttons_ release];
5148 [super dealloc];
5149 }
5150
5151 - (void) release {
5152 if ([self retainCount] == 1)
5153 [delegate_ setPackageController:self];
5154 [super release];
5155 }
5156
5157 /* XXX: this is not safe at all... localization of /fail/ */
5158 - (void) _clickButtonWithName:(NSString *)name {
5159 if ([name isEqualToString:UCLocalize("CLEAR")])
5160 [delegate_ clearPackage:package_];
5161 else if ([name isEqualToString:UCLocalize("INSTALL")])
5162 [delegate_ installPackage:package_];
5163 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5164 [delegate_ installPackage:package_];
5165 else if ([name isEqualToString:UCLocalize("REMOVE")])
5166 [delegate_ removePackage:package_];
5167 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5168 [delegate_ installPackage:package_];
5169 else _assert(false);
5170 }
5171
5172 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
5173 NSString *context([sheet context]);
5174
5175 if ([context isEqualToString:@"modify"]) {
5176 if (button != [sheet cancelButtonIndex]) {
5177 NSString *buttonName = [buttons_ objectAtIndex:button];
5178 [self _clickButtonWithName:buttonName];
5179 }
5180
5181 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
5182 }
5183 }
5184
5185 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame {
5186 return [super webView:sender didFinishLoadForFrame:frame];
5187 }
5188
5189 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5190 [super webView:sender didClearWindowObject:window forFrame:frame];
5191 [window setValue:package_ forKey:@"package"];
5192 }
5193
5194 - (bool) _allowJavaScriptPanel {
5195 return commercial_;
5196 }
5197
5198 #if !AlwaysReload
5199 - (void) _customButtonClicked {
5200 int count([buttons_ count]);
5201 if (count == 0)
5202 return;
5203
5204 if (count == 1)
5205 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5206 else {
5207 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
5208 [buttons addObjectsFromArray:buttons_];
5209
5210 UIActionSheet *sheet = [[[UIActionSheet alloc]
5211 initWithTitle:nil
5212 delegate:self
5213 cancelButtonTitle:nil
5214 destructiveButtonTitle:nil
5215 otherButtonTitles:nil
5216 ] autorelease];
5217
5218 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
5219 if (!IsWildcat_) {
5220 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
5221 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
5222 }
5223 [sheet setContext:@"modify"];
5224
5225 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
5226 }
5227 }
5228
5229 - (void) customButtonClicked {
5230 // Wait until it's done loading.
5231 if (![self isLoading])
5232 [self _customButtonClicked];
5233 }
5234
5235 - (void) reloadButtonClicked {
5236 // Don't reload a package view by clicking the button.
5237 }
5238
5239 - (void) applyLoadingTitle {
5240 // Don't show "Loading" as the title. Ever.
5241 }
5242 #endif
5243
5244 - (id) initWithDatabase:(Database *)database {
5245 if ((self = [super init]) != nil) {
5246 database_ = database;
5247 buttons_ = [[NSMutableArray alloc] initWithCapacity:4];
5248 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"package" ofType:@"html"]]];
5249 } return self;
5250 }
5251
5252 - (void) setPackage:(Package *)package {
5253 if (package_ != nil) {
5254 [package_ autorelease];
5255 package_ = nil;
5256 }
5257
5258 if (name_ != nil) {
5259 [name_ release];
5260 name_ = nil;
5261 }
5262
5263 [buttons_ removeAllObjects];
5264
5265 if (package != nil) {
5266 [package parse];
5267
5268 package_ = [package retain];
5269 name_ = [[package id] retain];
5270 commercial_ = [package isCommercial];
5271
5272 if ([package_ mode] != nil)
5273 [buttons_ addObject:UCLocalize("CLEAR")];
5274 if ([package_ source] == nil);
5275 else if ([package_ upgradableAndEssential:NO])
5276 [buttons_ addObject:UCLocalize("UPGRADE")];
5277 else if ([package_ uninstalled])
5278 [buttons_ addObject:UCLocalize("INSTALL")];
5279 else
5280 [buttons_ addObject:UCLocalize("REINSTALL")];
5281 if (![package_ uninstalled])
5282 [buttons_ addObject:UCLocalize("REMOVE")];
5283
5284 if (special_ != NULL) {
5285 CGRect frame([document_ frame]);
5286 frame.size.height = 0;
5287 [document_ setFrame:frame];
5288
5289 if ([scroller_ respondsToSelector:@selector(scrollPointVisibleAtTopLeft:)])
5290 [scroller_ scrollPointVisibleAtTopLeft:CGPointZero];
5291 else
5292 [scroller_ scrollRectToVisible:CGRectZero animated:NO];
5293
5294 WebThreadLock();
5295 [[[document_ webView] windowScriptObject] setValue:package_ forKey:@"package"];
5296
5297 [self setButtonTitle:nil withStyle:nil toFunction:nil];
5298
5299 [self setFinishHook:nil];
5300 [self setPopupHook:nil];
5301 WebThreadUnlock();
5302
5303 //[self yieldToSelector:@selector(callFunction:) withObject:special_];
5304 [super callFunction:special_];
5305 }
5306 }
5307 }
5308
5309 - (void) applyRightButton {
5310 int count = [buttons_ count];
5311 UIBarButtonItem *actionItem = [[UIBarButtonItem alloc]
5312 initWithTitle:count == 0 ? nil : count != 1 ? UCLocalize("MODIFY") : [buttons_ objectAtIndex:0]
5313 style:UIBarButtonItemStylePlain
5314 target:self
5315 action:@selector(customButtonClicked)
5316 ];
5317 if (![self isLoading]) [[self navigationItem] setRightBarButtonItem:actionItem];
5318 else [super applyRightButton];
5319 [actionItem release];
5320 }
5321
5322 - (bool) isLoading {
5323 return commercial_ ? [super isLoading] : false;
5324 }
5325
5326 - (void) reloadData {
5327 [self setPackage:[database_ packageWithName:name_]];
5328 }
5329
5330 @end
5331 /* }}} */
5332 /* Package Table {{{ */
5333 @interface PackageTable : UIView <
5334 UITableViewDataSource,
5335 UITableViewDelegate
5336 > {
5337 _transient Database *database_;
5338 NSMutableArray *packages_;
5339 NSMutableArray *sections_;
5340 UITableView *list_;
5341 NSMutableArray *index_;
5342 NSMutableDictionary *indices_;
5343 id target_;
5344 SEL action_;
5345 id delegate_;
5346 }
5347
5348 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action;
5349
5350 - (void) setDelegate:(id)delegate;
5351
5352 - (void) reloadData;
5353 - (void) resetCursor;
5354
5355 - (UITableView *) list;
5356
5357 - (void) setShouldHideHeaderInShortLists:(BOOL)hide;
5358
5359 - (void) deselectWithAnimation:(BOOL)animated;
5360
5361 @end
5362
5363 @implementation PackageTable
5364
5365 - (void) dealloc {
5366 [packages_ release];
5367 [sections_ release];
5368 [list_ release];
5369 [index_ release];
5370 [indices_ release];
5371
5372 [super dealloc];
5373 }
5374
5375 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
5376 NSInteger count([sections_ count]);
5377 return count == 0 ? 1 : count;
5378 }
5379
5380 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
5381 if ([sections_ count] == 0)
5382 return nil;
5383 return [[sections_ objectAtIndex:section] name];
5384 }
5385
5386 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
5387 if ([sections_ count] == 0)
5388 return 0;
5389 return [[sections_ objectAtIndex:section] count];
5390 }
5391
5392 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
5393 Section *section([sections_ objectAtIndex:[path section]]);
5394 NSInteger row([path row]);
5395 Package *package([packages_ objectAtIndex:([section row] + row)]);
5396 return package;
5397 }
5398
5399 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
5400 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
5401 if (cell == nil)
5402 cell = [[[PackageCell alloc] init] autorelease];
5403 [cell setPackage:[self packageAtIndexPath:path]];
5404 return cell;
5405 }
5406
5407 - (void) deselectWithAnimation:(BOOL)animated {
5408 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5409 }
5410
5411 /*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
5412 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
5413 }*/
5414
5415 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
5416 Package *package([self packageAtIndexPath:path]);
5417 package = [database_ packageWithName:[package id]];
5418 [target_ performSelector:action_ withObject:package];
5419 return path;
5420 }
5421
5422 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
5423 return [packages_ count] > 20 ? index_ : nil;
5424 }
5425
5426 - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
5427 return index;
5428 }
5429
5430 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action {
5431 if ((self = [super initWithFrame:frame]) != nil) {
5432 database_ = database;
5433
5434 target_ = target;
5435 action_ = action;
5436
5437 index_ = [[NSMutableArray alloc] initWithCapacity:32];
5438 indices_ = [[NSMutableDictionary alloc] initWithCapacity:32];
5439
5440 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
5441 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
5442
5443 list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain];
5444 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5445 [list_ setRowHeight:73.0f];
5446 [self addSubview:list_];
5447
5448 [list_ setDataSource:self];
5449 [list_ setDelegate:self];
5450 } return self;
5451 }
5452
5453 - (void) setDelegate:(id)delegate {
5454 delegate_ = delegate;
5455 }
5456
5457 - (bool) hasPackage:(Package *)package {
5458 return true;
5459 }
5460
5461 - (void) reloadData {
5462 NSArray *packages = [database_ packages];
5463
5464 [packages_ removeAllObjects];
5465 [sections_ removeAllObjects];
5466
5467 _profile(PackageTable$reloadData$Filter)
5468 for (Package *package in packages)
5469 if ([self hasPackage:package])
5470 [packages_ addObject:package];
5471 _end
5472
5473 [index_ removeAllObjects];
5474 [indices_ removeAllObjects];
5475
5476 Section *section = nil;
5477
5478 _profile(PackageTable$reloadData$Section)
5479 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
5480 Package *package;
5481 unichar index;
5482
5483 _profile(PackageTable$reloadData$Section$Package)
5484 package = [packages_ objectAtIndex:offset];
5485 index = [package index];
5486 _end
5487
5488 if (section == nil || [section index] != index) {
5489 _profile(PackageTable$reloadData$Section$Allocate)
5490 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
5491 _end
5492
5493 [index_ addObject:[section name]];
5494 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
5495
5496 _profile(PackageTable$reloadData$Section$Add)
5497 [sections_ addObject:section];
5498 _end
5499 }
5500
5501 [section addToCount];
5502 }
5503 _end
5504
5505 _profile(PackageTable$reloadData$List)
5506 [list_ reloadData];
5507 _end
5508 }
5509
5510 - (void) resetCursor {
5511 [list_ scrollRectToVisible:CGRectMake(0, 0, 0, 0) animated:NO];
5512 }
5513
5514 - (UITableView *) list {
5515 return list_;
5516 }
5517
5518 - (void) setShouldHideHeaderInShortLists:(BOOL)hide {
5519 //XXX:[list_ setShouldHideHeaderInShortLists:hide];
5520 }
5521
5522 @end
5523 /* }}} */
5524 /* Filtered Package Table {{{ */
5525 @interface FilteredPackageTable : PackageTable {
5526 SEL filter_;
5527 IMP imp_;
5528 id object_;
5529 }
5530
5531 - (void) setObject:(id)object;
5532 - (void) setObject:(id)object forFilter:(SEL)filter;
5533
5534 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object;
5535
5536 @end
5537
5538 @implementation FilteredPackageTable
5539
5540 - (void) dealloc {
5541 if (object_ != nil)
5542 [object_ release];
5543 [super dealloc];
5544 }
5545
5546 - (void) setFilter:(SEL)filter {
5547 filter_ = filter;
5548
5549 /* XXX: this is an unsafe optimization of doomy hell */
5550 Method method(class_getInstanceMethod([Package class], filter));
5551 _assert(method != NULL);
5552 imp_ = method_getImplementation(method);
5553 _assert(imp_ != NULL);
5554 }
5555
5556 - (void) setObject:(id)object {
5557 if (object_ != nil)
5558 [object_ release];
5559 if (object == nil)
5560 object_ = nil;
5561 else
5562 object_ = [object retain];
5563 }
5564
5565 - (void) setObject:(id)object forFilter:(SEL)filter {
5566 [self setFilter:filter];
5567 [self setObject:object];
5568 }
5569
5570 - (bool) hasPackage:(Package *)package {
5571 _profile(FilteredPackageTable$hasPackage)
5572 return [package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp_))(package, filter_, object_);
5573 _end
5574 }
5575
5576 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object {
5577 if ((self = [super initWithFrame:frame database:database target:target action:action]) != nil) {
5578 [self setFilter:filter];
5579 object_ = [object retain];
5580 [self reloadData];
5581 } return self;
5582 }
5583
5584 @end
5585 /* }}} */
5586
5587 /* Filtered Package Controller {{{ */
5588 @interface FilteredPackageController : CYViewController {
5589 _transient Database *database_;
5590 FilteredPackageTable *packages_;
5591 NSString *title_;
5592 }
5593
5594 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
5595
5596 @end
5597
5598 @implementation FilteredPackageController
5599
5600 - (void) dealloc {
5601 [packages_ release];
5602 [title_ release];
5603
5604 [super dealloc];
5605 }
5606
5607 - (void) viewDidAppear:(BOOL)animated {
5608 [super viewDidAppear:animated];
5609 [packages_ deselectWithAnimation:animated];
5610 }
5611
5612 - (void) didSelectPackage:(Package *)package {
5613 PackageController *view([delegate_ packageController]);
5614 [view setPackage:package];
5615 [view setDelegate:delegate_];
5616 [[self navigationController] pushViewController:view animated:YES];
5617 }
5618
5619 - (id) title { return title_; }
5620
5621 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
5622 if ((self = [super init]) != nil) {
5623 database_ = database;
5624 title_ = [title copy];
5625 [[self navigationItem] setTitle:title_];
5626
5627 packages_ = [[FilteredPackageTable alloc]
5628 initWithFrame:[[self view] bounds]
5629 database:database
5630 target:self
5631 action:@selector(didSelectPackage:)
5632 filter:filter
5633 with:object
5634 ];
5635
5636 [packages_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5637 [[self view] addSubview:packages_];
5638 } return self;
5639 }
5640
5641 - (void) reloadData {
5642 [packages_ reloadData];
5643 }
5644
5645 - (void) setDelegate:(id)delegate {
5646 [super setDelegate:delegate];
5647 [packages_ setDelegate:delegate];
5648 }
5649
5650 @end
5651
5652 /* }}} */
5653
5654 /* Add Source Controller {{{ */
5655 @interface AddSourceController : CYViewController {
5656 _transient Database *database_;
5657 }
5658
5659 - (id) initWithDatabase:(Database *)database;
5660
5661 @end
5662
5663 @implementation AddSourceController
5664
5665 - (id) initWithDatabase:(Database *)database {
5666 if ((self = [super init]) != nil) {
5667 database_ = database;
5668 } return self;
5669 }
5670
5671 @end
5672 /* }}} */
5673 /* Source Cell {{{ */
5674 @interface SourceCell : UITableViewCell <
5675 ContentDelegate
5676 > {
5677 UIImage *icon_;
5678 NSString *origin_;
5679 NSString *description_;
5680 NSString *label_;
5681 ContentView *content_;
5682 }
5683
5684 - (void) setSource:(Source *)source;
5685
5686 @end
5687
5688 @implementation SourceCell
5689
5690 - (void) clearSource {
5691 [icon_ release];
5692 [origin_ release];
5693 [description_ release];
5694 [label_ release];
5695
5696 icon_ = nil;
5697 origin_ = nil;
5698 description_ = nil;
5699 label_ = nil;
5700 }
5701
5702 - (void) setSource:(Source *)source {
5703 [self clearSource];
5704
5705 if (icon_ == nil)
5706 icon_ = [UIImage applicationImageNamed:[NSString stringWithFormat:@"Sources/%@.png", [source host]]];
5707 if (icon_ == nil)
5708 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
5709 icon_ = [icon_ retain];
5710
5711 origin_ = [[source name] retain];
5712 label_ = [[source uri] retain];
5713 description_ = [[source description] retain];
5714
5715 [content_ setNeedsDisplay];
5716 }
5717
5718 - (void) dealloc {
5719 [self clearSource];
5720 [content_ release];
5721 [super dealloc];
5722 }
5723
5724 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5725 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5726 UIView *content([self contentView]);
5727 CGRect bounds([content bounds]);
5728
5729 content_ = [[ContentView alloc] initWithFrame:bounds];
5730 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5731 [content_ setBackgroundColor:[UIColor whiteColor]];
5732 [content addSubview:content_];
5733
5734 [content_ setDelegate:self];
5735 [content_ setOpaque:YES];
5736 } return self;
5737 }
5738
5739 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
5740 [super setSelected:selected animated:animated];
5741 [content_ setNeedsDisplay];
5742 }
5743
5744 - (void) drawContentRect:(CGRect)rect {
5745 bool selected([self isSelected]);
5746 float width(rect.size.width);
5747
5748 if (icon_ != nil)
5749 [icon_ drawInRect:CGRectMake(10, 10, 30, 30)];
5750
5751 if (selected)
5752 UISetColor(White_);
5753
5754 if (!selected)
5755 UISetColor(Black_);
5756 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5757
5758 if (!selected)
5759 UISetColor(Blue_);
5760 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5761
5762 if (!selected)
5763 UISetColor(Gray_);
5764 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 40) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5765 }
5766
5767 @end
5768 /* }}} */
5769 /* Source Table {{{ */
5770 @interface SourceTable : CYViewController <
5771 UITableViewDataSource,
5772 UITableViewDelegate
5773 > {
5774 _transient Database *database_;
5775 UITableView *list_;
5776 NSMutableArray *sources_;
5777 int offset_;
5778
5779 NSString *href_;
5780 UIProgressHUD *hud_;
5781 NSError *error_;
5782
5783 //NSURLConnection *installer_;
5784 NSURLConnection *trivial_;
5785 NSURLConnection *trivial_bz2_;
5786 NSURLConnection *trivial_gz_;
5787 //NSURLConnection *automatic_;
5788
5789 BOOL cydia_;
5790 }
5791
5792 - (id) initWithDatabase:(Database *)database;
5793
5794 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
5795
5796 @end
5797
5798 @implementation SourceTable
5799
5800 - (void) _deallocConnection:(NSURLConnection *)connection {
5801 if (connection != nil) {
5802 [connection cancel];
5803 //[connection setDelegate:nil];
5804 [connection release];
5805 }
5806 }
5807
5808 - (void) dealloc {
5809 if (href_ != nil)
5810 [href_ release];
5811 if (hud_ != nil)
5812 [hud_ release];
5813 if (error_ != nil)
5814 [error_ release];
5815
5816 //[self _deallocConnection:installer_];
5817 [self _deallocConnection:trivial_];
5818 [self _deallocConnection:trivial_gz_];
5819 [self _deallocConnection:trivial_bz2_];
5820 //[self _deallocConnection:automatic_];
5821
5822 [sources_ release];
5823 [list_ release];
5824 [super dealloc];
5825 }
5826
5827 - (void) viewDidAppear:(BOOL)animated {
5828 [super viewDidAppear:animated];
5829 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5830 }
5831
5832 - (int) numberOfSectionsInTableView:(UITableView *)tableView {
5833 return offset_ == 0 ? 1 : 2;
5834 }
5835
5836 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(int)section {
5837 switch (section + (offset_ == 0 ? 1 : 0)) {
5838 case 0: return UCLocalize("ENTERED_BY_USER");
5839 case 1: return UCLocalize("INSTALLED_BY_PACKAGE");
5840
5841 _nodefault
5842 }
5843 }
5844
5845 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)section {
5846 int count = [sources_ count];
5847 switch (section) {
5848 case 0: return (offset_ == 0 ? count : offset_);
5849 case 1: return count - offset_;
5850
5851 _nodefault
5852 }
5853 }
5854
5855 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
5856 unsigned idx = 0;
5857 switch (indexPath.section) {
5858 case 0: idx = indexPath.row; break;
5859 case 1: idx = indexPath.row + offset_; break;
5860
5861 _nodefault
5862 }
5863 return [sources_ objectAtIndex:idx];
5864 }
5865
5866 - (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5867 Source *source = [self sourceAtIndexPath:indexPath];
5868 return [source description] == nil ? 56 : 73;
5869 }
5870
5871 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5872 static NSString *cellIdentifier = @"SourceCell";
5873
5874 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
5875 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
5876 [cell setSource:[self sourceAtIndexPath:indexPath]];
5877
5878 return cell;
5879 }
5880
5881 - (UITableViewCellAccessoryType) tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
5882 return UITableViewCellAccessoryDisclosureIndicator;
5883 }
5884
5885 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
5886 Source *source = [self sourceAtIndexPath:indexPath];
5887
5888 FilteredPackageController *packages = [[[FilteredPackageController alloc]
5889 initWithDatabase:database_
5890 title:[source label]
5891 filter:@selector(isVisibleInSource:)
5892 with:source
5893 ] autorelease];
5894
5895 [packages setDelegate:delegate_];
5896
5897 [[self navigationController] pushViewController:packages animated:YES];
5898 }
5899
5900 - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
5901 Source *source = [self sourceAtIndexPath:indexPath];
5902 return [source record] != nil;
5903 }
5904
5905 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
5906 Source *source = [self sourceAtIndexPath:indexPath];
5907 [Sources_ removeObjectForKey:[source key]];
5908 [delegate_ syncData];
5909 }
5910
5911 - (void) complete {
5912 [Sources_ setObject:[NSDictionary dictionaryWithObjectsAndKeys:
5913 @"deb", @"Type",
5914 href_, @"URI",
5915 @"./", @"Distribution",
5916 nil] forKey:[NSString stringWithFormat:@"deb:%@:./", href_]];
5917
5918 [delegate_ syncData];
5919 }
5920
5921 - (NSString *) getWarning {
5922 NSString *href(href_);
5923 NSRange colon([href rangeOfString:@"://"]);
5924 if (colon.location != NSNotFound)
5925 href = [href substringFromIndex:(colon.location + 3)];
5926 href = [href stringByAddingPercentEscapes];
5927 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
5928 href = [href stringByCachingURLWithCurrentCDN];
5929
5930 NSURL *url([NSURL URLWithString:href]);
5931
5932 NSStringEncoding encoding;
5933 NSError *error(nil);
5934
5935 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
5936 return [warning length] == 0 ? nil : warning;
5937 return nil;
5938 }
5939
5940 - (void) _endConnection:(NSURLConnection *)connection {
5941 NSURLConnection **field = NULL;
5942 if (connection == trivial_)
5943 field = &trivial_;
5944 else if (connection == trivial_bz2_)
5945 field = &trivial_bz2_;
5946 else if (connection == trivial_gz_)
5947 field = &trivial_gz_;
5948 _assert(field != NULL);
5949 [connection release];
5950 *field = nil;
5951
5952 if (
5953 trivial_ == nil &&
5954 trivial_bz2_ == nil &&
5955 trivial_gz_ == nil
5956 ) {
5957 bool defer(false);
5958
5959 if (cydia_) {
5960 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
5961 defer = true;
5962
5963 UIAlertView *alert = [[[UIAlertView alloc]
5964 initWithTitle:UCLocalize("SOURCE_WARNING")
5965 message:warning
5966 delegate:self
5967 cancelButtonTitle:UCLocalize("CANCEL")
5968 otherButtonTitles:UCLocalize("ADD_ANYWAY"), nil
5969 ] autorelease];
5970
5971 [alert setContext:@"warning"];
5972 [alert setNumberOfRows:1];
5973 [alert show];
5974 } else
5975 [self complete];
5976 } else if (error_ != nil) {
5977 UIAlertView *alert = [[[UIAlertView alloc]
5978 initWithTitle:UCLocalize("VERIFICATION_ERROR")
5979 message:[error_ localizedDescription]
5980 delegate:self
5981 cancelButtonTitle:UCLocalize("OK")
5982 otherButtonTitles:nil
5983 ] autorelease];
5984
5985 [alert setContext:@"urlerror"];
5986 [alert show];
5987 } else {
5988 UIAlertView *alert = [[[UIAlertView alloc]
5989 initWithTitle:UCLocalize("NOT_REPOSITORY")
5990 message:UCLocalize("NOT_REPOSITORY_EX")
5991 delegate:self
5992 cancelButtonTitle:UCLocalize("OK")
5993 otherButtonTitles:nil
5994 ] autorelease];
5995
5996 [alert setContext:@"trivial"];
5997 [alert show];
5998 }
5999
6000 [delegate_ setStatusBarShowsProgress:NO];
6001 [delegate_ removeProgressHUD:hud_];
6002
6003 [hud_ autorelease];
6004 hud_ = nil;
6005
6006 if (!defer) {
6007 [href_ release];
6008 href_ = nil;
6009 }
6010
6011 if (error_ != nil) {
6012 [error_ release];
6013 error_ = nil;
6014 }
6015 }
6016 }
6017
6018 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
6019 switch ([response statusCode]) {
6020 case 200:
6021 cydia_ = YES;
6022 }
6023 }
6024
6025 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
6026 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
6027 if (error_ != nil)
6028 error_ = [error retain];
6029 [self _endConnection:connection];
6030 }
6031
6032 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
6033 [self _endConnection:connection];
6034 }
6035
6036 - (id)title { return UCLocalize("SOURCES"); }
6037
6038 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
6039 NSMutableURLRequest *request = [NSMutableURLRequest
6040 requestWithURL:[NSURL URLWithString:href]
6041 cachePolicy:NSURLRequestUseProtocolCachePolicy
6042 timeoutInterval:120.0
6043 ];
6044
6045 [request setHTTPMethod:method];
6046
6047 if (Machine_ != NULL)
6048 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
6049 if (UniqueID_ != nil)
6050 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6051 if (Role_ != nil)
6052 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
6053
6054 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
6055 }
6056
6057 - (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
6058 NSString *context([alert context]);
6059
6060 if ([context isEqualToString:@"source"]) {
6061 switch (button) {
6062 case 1: {
6063 NSString *href = [[alert textField] text];
6064
6065 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
6066
6067 if (![href hasSuffix:@"/"])
6068 href_ = [href stringByAppendingString:@"/"];
6069 else
6070 href_ = href;
6071 href_ = [href_ retain];
6072
6073 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
6074 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
6075 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
6076 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
6077
6078 cydia_ = false;
6079
6080 hud_ = [[delegate_ addProgressHUD] retain];
6081 [hud_ setText:UCLocalize("VERIFYING_URL")];
6082 } break;
6083
6084 case 0:
6085 break;
6086
6087 _nodefault
6088 }
6089
6090 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6091 } else if ([context isEqualToString:@"trivial"])
6092 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6093 else if ([context isEqualToString:@"urlerror"])
6094 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6095 else if ([context isEqualToString:@"warning"]) {
6096 switch (button) {
6097 case 1:
6098 [self complete];
6099 break;
6100
6101 case 0:
6102 break;
6103
6104 _nodefault
6105 }
6106
6107 [href_ release];
6108 href_ = nil;
6109
6110 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6111 }
6112 }
6113
6114 - (id) initWithDatabase:(Database *)database {
6115 if ((self = [super init]) != nil) {
6116 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
6117 [self updateButtonsForEditingStatus:NO animated:NO];
6118
6119 database_ = database;
6120 sources_ = [[NSMutableArray arrayWithCapacity:16] retain];
6121
6122 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
6123 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6124 [[self view] addSubview:list_];
6125
6126 [list_ setDataSource:self];
6127 [list_ setDelegate:self];
6128
6129 [self reloadData];
6130 } return self;
6131 }
6132
6133 - (void) reloadData {
6134 pkgSourceList list;
6135 if (!list.ReadMainList())
6136 return;
6137
6138 [sources_ removeAllObjects];
6139 [sources_ addObjectsFromArray:[database_ sources]];
6140 _trace();
6141 [sources_ sortUsingSelector:@selector(compareByNameAndType:)];
6142 _trace();
6143
6144 int count([sources_ count]);
6145 offset_ = 0;
6146 for (int i = 0; i != count; i++) {
6147 if ([[sources_ objectAtIndex:i] record] == nil) break;
6148 else offset_++;
6149 }
6150
6151 [list_ setEditing:NO];
6152 [self updateButtonsForEditingStatus:NO animated:NO];
6153 [list_ reloadData];
6154 }
6155
6156 - (void) addButtonClicked {
6157 /*[book_ pushPage:[[[AddSourceController alloc]
6158 initWithBook:book_
6159 database:database_
6160 ] autorelease]];*/
6161
6162 UIAlertView *alert = [[[UIAlertView alloc]
6163 initWithTitle:UCLocalize("ENTER_APT_URL")
6164 message:nil
6165 delegate:self
6166 cancelButtonTitle:UCLocalize("CANCEL")
6167 otherButtonTitles:UCLocalize("ADD_SOURCE"), nil
6168 ] autorelease];
6169
6170 [alert setContext:@"source"];
6171 [alert setTransform:CGAffineTransformTranslate([alert transform], 0.0, 100.0)];
6172
6173 [alert setNumberOfRows:1];
6174 [alert addTextFieldWithValue:@"http://" label:@""];
6175
6176 UITextInputTraits *traits = [[alert textField] textInputTraits];
6177 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
6178 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
6179 [traits setKeyboardType:UIKeyboardTypeURL];
6180 // XXX: UIReturnKeyDone
6181 [traits setReturnKeyType:UIReturnKeyNext];
6182
6183 [alert show];
6184 }
6185
6186 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
6187 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
6188 initWithTitle:UCLocalize("ADD")
6189 style:UIBarButtonItemStylePlain
6190 target:self
6191 action:@selector(addButtonClicked)
6192 ];
6193 [[self navigationItem] setLeftBarButtonItem:editing ? leftItem : [[self navigationItem] backBarButtonItem] animated:animated];
6194 [leftItem release];
6195
6196 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6197 initWithTitle:editing ? UCLocalize("DONE") : UCLocalize("EDIT")
6198 style:editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6199 target:self
6200 action:@selector(editButtonClicked)
6201 ];
6202 [[self navigationItem] setRightBarButtonItem:rightItem animated:animated];
6203 [rightItem release];
6204
6205 if (IsWildcat_ && !editing) {
6206 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6207 initWithTitle:UCLocalize("SETTINGS")
6208 style:UIBarButtonItemStylePlain
6209 target:self
6210 action:@selector(settingsButtonClicked)
6211 ];
6212 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6213 [settingsItem release];
6214 }
6215 }
6216
6217 - (void) settingsButtonClicked {
6218 [delegate_ showSettings];
6219 }
6220
6221 - (void) editButtonClicked {
6222 [list_ setEditing:![list_ isEditing] animated:YES];
6223
6224 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
6225 }
6226
6227 @end
6228 /* }}} */
6229
6230 /* Installed Controller {{{ */
6231 @interface InstalledController : FilteredPackageController {
6232 BOOL expert_;
6233 }
6234
6235 - (id) initWithDatabase:(Database *)database;
6236
6237 - (void) updateRoleButton;
6238 - (void) queueStatusDidChange;
6239
6240 @end
6241
6242 @implementation InstalledController
6243
6244 - (void) dealloc {
6245 [super dealloc];
6246 }
6247
6248 - (id) title { return UCLocalize("INSTALLED"); }
6249
6250 - (id) initWithDatabase:(Database *)database {
6251 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndVisible:) with:[NSNumber numberWithBool:YES]]) != nil) {
6252 [self updateRoleButton];
6253 [self queueStatusDidChange];
6254 } return self;
6255 }
6256
6257 #if !AlwaysReload
6258 - (void) queueButtonClicked {
6259 [delegate_ queue];
6260 }
6261 #endif
6262
6263 - (void) queueStatusDidChange {
6264 #if !AlwaysReload
6265 if (IsWildcat_) {
6266 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6267 initWithTitle:UCLocalize("QUEUE")
6268 style:UIBarButtonItemStyleDone
6269 target:self
6270 action:@selector(queueButtonClicked)
6271 ];
6272 if (Queuing_) [[self navigationItem] setLeftBarButtonItem:queueItem];
6273 else [[self navigationItem] setLeftBarButtonItem:nil];
6274 [queueItem release];
6275 }
6276 #endif
6277 }
6278
6279 - (void) reloadData {
6280 [packages_ reloadData];
6281 }
6282
6283 - (void) updateRoleButton {
6284 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6285 initWithTitle:expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE")
6286 style:expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6287 target:self
6288 action:@selector(roleButtonClicked)
6289 ];
6290 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"]) [[self navigationItem] setRightBarButtonItem:rightItem];
6291 [rightItem release];
6292 }
6293
6294 - (void) roleButtonClicked {
6295 [packages_ setObject:[NSNumber numberWithBool:expert_]];
6296 [packages_ reloadData];
6297 expert_ = !expert_;
6298
6299 [self updateRoleButton];
6300 }
6301
6302 - (void) setDelegate:(id)delegate {
6303 [super setDelegate:delegate];
6304 [packages_ setDelegate:delegate];
6305 }
6306
6307 @end
6308 /* }}} */
6309
6310 /* Home Controller {{{ */
6311 @interface HomeController : CYBrowserController {
6312 }
6313
6314 @end
6315
6316 @implementation HomeController
6317
6318 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
6319 [super _setMoreHeaders:request];
6320 if (ChipID_ != nil)
6321 [request setValue:ChipID_ forHTTPHeaderField:@"X-Chip-ID"];
6322 if (UniqueID_ != nil)
6323 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6324 }
6325
6326 - (void) aboutButtonClicked {
6327 UIAlertView *alert = [[[UIAlertView alloc] init] autorelease];
6328 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6329 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6330 [alert setCancelButtonIndex:0];
6331
6332 [alert setMessage:
6333 @"Copyright (C) 2008-2010\n"
6334 "Jay Freeman (saurik)\n"
6335 "saurik@saurik.com\n"
6336 "http://www.saurik.com/"
6337 ];
6338
6339 [alert show];
6340 }
6341
6342 - (void) viewWillAppear:(BOOL)animated {
6343 [super viewWillAppear:animated];
6344 [[self navigationController] setNavigationBarHidden:YES animated:animated];
6345 }
6346
6347 - (void) viewWillDisappear:(BOOL)animated {
6348 [super viewWillDisappear:animated];
6349 [[self navigationController] setNavigationBarHidden:NO animated:animated];
6350 }
6351
6352 - (id) init {
6353 if ((self = [super init]) != nil) {
6354 UIBarButtonItem *aboutItem = [[UIBarButtonItem alloc]
6355 initWithTitle:UCLocalize("ABOUT")
6356 style:UIBarButtonItemStylePlain
6357 target:self
6358 action:@selector(aboutButtonClicked)
6359 ];
6360 [[self navigationItem] setLeftBarButtonItem:aboutItem];
6361 [aboutItem release];
6362 } return self;
6363 }
6364
6365 @end
6366 /* }}} */
6367 /* Manage Controller {{{ */
6368 @interface ManageController : CYBrowserController {
6369 }
6370
6371 - (void) queueStatusDidChange;
6372 @end
6373
6374 @implementation ManageController
6375
6376 - (id) init {
6377 if ((self = [super init]) != nil) {
6378 [[self navigationItem] setTitle:UCLocalize("MANAGE")];
6379
6380 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6381 initWithTitle:UCLocalize("SETTINGS")
6382 style:UIBarButtonItemStylePlain
6383 target:self
6384 action:@selector(settingsButtonClicked)
6385 ];
6386 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6387 [settingsItem release];
6388
6389 [self queueStatusDidChange];
6390 } return self;
6391 }
6392
6393 - (void) settingsButtonClicked {
6394 [delegate_ showSettings];
6395 }
6396
6397 #if !AlwaysReload
6398 - (void) queueButtonClicked {
6399 [delegate_ queue];
6400 }
6401
6402 - (void) applyLoadingTitle {
6403 // No "Loading" title.
6404 }
6405
6406 - (void) applyRightButton {
6407 // No right button.
6408 }
6409 #endif
6410
6411 - (void) queueStatusDidChange {
6412 #if !AlwaysReload
6413 if (!IsWildcat_ && Queuing_) {
6414 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6415 initWithTitle:UCLocalize("QUEUE")
6416 style:UIBarButtonItemStyleDone
6417 target:self
6418 action:@selector(queueButtonClicked)
6419 ];
6420 [[self navigationItem] setRightBarButtonItem:queueItem];
6421
6422 [queueItem release];
6423 } else {
6424 [[self navigationItem] setRightBarButtonItem:nil];
6425 }
6426 #endif
6427 }
6428
6429 - (bool) isLoading {
6430 return false;
6431 }
6432
6433 @end
6434 /* }}} */
6435
6436 /* Refresh Bar {{{ */
6437 @interface RefreshBar : UINavigationBar {
6438 UIProgressIndicator *indicator_;
6439 UITextLabel *prompt_;
6440 UIProgressBar *progress_;
6441 UINavigationButton *cancel_;
6442 }
6443
6444 @end
6445
6446 @implementation RefreshBar
6447
6448 - (void) positionViews {
6449 CGRect frame = [cancel_ frame];
6450 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6451 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6452 [cancel_ setFrame:frame];
6453
6454 CGSize prgsize = {75, 100};
6455 CGRect prgrect = {{
6456 [self frame].size.width - prgsize.width - 10,
6457 ([self frame].size.height - prgsize.height) / 2
6458 } , prgsize};
6459 [progress_ setFrame:prgrect];
6460
6461 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6462 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6463 CGRect indrect = {{indoffset, indoffset}, indsize};
6464 [indicator_ setFrame:indrect];
6465
6466 CGSize prmsize = {215, indsize.height + 4};
6467 CGRect prmrect = {{
6468 indoffset * 2 + indsize.width,
6469 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6470 }, prmsize};
6471 [prompt_ setFrame:prmrect];
6472 }
6473
6474 - (void)setFrame:(CGRect)frame {
6475 [super setFrame:frame];
6476
6477 [self positionViews];
6478 }
6479
6480 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6481 if ((self = [super initWithFrame:frame])) {
6482 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6483
6484 [self setTintColor:[UIColor colorWithRed:0.23 green:0.23 blue:0.23 alpha:1]];
6485 [self setBarStyle:UIBarStyleBlack];
6486
6487 UIBarStyle barstyle([self _barStyle:NO]);
6488 bool ugly(barstyle == UIBarStyleDefault);
6489
6490 UIProgressIndicatorStyle style = ugly ?
6491 UIProgressIndicatorStyleMediumBrown :
6492 UIProgressIndicatorStyleMediumWhite;
6493
6494 indicator_ = [[UIProgressIndicator alloc] initWithFrame:CGRectZero];
6495 [indicator_ setStyle:style];
6496 [indicator_ startAnimation];
6497 [self addSubview:indicator_];
6498
6499 prompt_ = [[UITextLabel alloc] initWithFrame:CGRectZero];
6500 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6501 [prompt_ setBackgroundColor:[UIColor clearColor]];
6502 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6503 [self addSubview:prompt_];
6504
6505 progress_ = [[UIProgressBar alloc] initWithFrame:CGRectZero];
6506 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6507 [progress_ setStyle:0];
6508 [self addSubview:progress_];
6509
6510 cancel_ = [[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted];
6511 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6512 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6513 [cancel_ setBarStyle:barstyle];
6514
6515 [self positionViews];
6516 } return self;
6517 }
6518
6519 - (void) cancel {
6520 [cancel_ removeFromSuperview];
6521 }
6522
6523 - (void) start {
6524 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6525 [progress_ setProgress:0];
6526 [self addSubview:cancel_];
6527 }
6528
6529 - (void) stop {
6530 [cancel_ removeFromSuperview];
6531 }
6532
6533 - (void) setPrompt:(NSString *)prompt {
6534 [prompt_ setText:prompt];
6535 }
6536
6537 - (void) setProgress:(float)progress {
6538 [progress_ setProgress:progress];
6539 }
6540
6541 @end
6542 /* }}} */
6543
6544 @class CYNavigationController;
6545
6546 /* Cydia Tab Bar Controller {{{ */
6547 @interface CYTabBarController : UITabBarController {
6548 Database *database_;
6549 }
6550
6551 @end
6552
6553 @implementation CYTabBarController
6554
6555 /* XXX: some logic should probably go here related to
6556 freeing the view controllers on tab change */
6557
6558 - (void) reloadData {
6559 size_t count([[self viewControllers] count]);
6560 for (size_t i(0); i != count; ++i) {
6561 CYNavigationController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6562 [page reloadData];
6563 }
6564 }
6565
6566 - (id) initWithDatabase: (Database *)database {
6567 if ((self = [super init]) != nil) {
6568 database_ = database;
6569 } return self;
6570 }
6571
6572 @end
6573 /* }}} */
6574
6575 /* Cydia Navigation Controller {{{ */
6576 @interface CYNavigationController : UINavigationController {
6577 _transient Database *database_;
6578 id delegate_;
6579 }
6580
6581 - (id) initWithDatabase:(Database *)database;
6582 - (void) reloadData;
6583
6584 @end
6585
6586
6587 @implementation CYNavigationController
6588
6589 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
6590 // Inherit autorotation settings for modal parents.
6591 if ([self parentViewController] && [[self parentViewController] modalViewController] == self) {
6592 return [[self parentViewController] shouldAutorotateToInterfaceOrientation:orientation];
6593 } else {
6594 return [super shouldAutorotateToInterfaceOrientation:orientation];
6595 }
6596 }
6597
6598 - (void) dealloc {
6599 [super dealloc];
6600 }
6601
6602 - (void) reloadData {
6603 size_t count([[self viewControllers] count]);
6604 for (size_t i(0); i != count; ++i) {
6605 CYViewController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6606 [page reloadData];
6607 }
6608 }
6609
6610 - (void) setDelegate:(id)delegate {
6611 delegate_ = delegate;
6612 }
6613
6614 - (id) initWithDatabase:(Database *)database {
6615 if ((self = [super init]) != nil) {
6616 database_ = database;
6617 } return self;
6618 }
6619
6620 @end
6621 /* }}} */
6622 /* Cydia:// Protocol {{{ */
6623 @interface CydiaURLProtocol : NSURLProtocol {
6624 }
6625
6626 @end
6627
6628 @implementation CydiaURLProtocol
6629
6630 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
6631 NSURL *url([request URL]);
6632 if (url == nil)
6633 return NO;
6634 NSString *scheme([[url scheme] lowercaseString]);
6635 if (scheme == nil || ![scheme isEqualToString:@"cydia"])
6636 return NO;
6637 return YES;
6638 }
6639
6640 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
6641 return request;
6642 }
6643
6644 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
6645 id<NSURLProtocolClient> client([self client]);
6646 if (icon == nil)
6647 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
6648 else {
6649 NSData *data(UIImagePNGRepresentation(icon));
6650
6651 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
6652 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
6653 [client URLProtocol:self didLoadData:data];
6654 [client URLProtocolDidFinishLoading:self];
6655 }
6656 }
6657
6658 - (void) startLoading {
6659 id<NSURLProtocolClient> client([self client]);
6660 NSURLRequest *request([self request]);
6661
6662 NSURL *url([request URL]);
6663 NSString *href([url absoluteString]);
6664
6665 NSString *path([href substringFromIndex:8]);
6666 NSRange slash([path rangeOfString:@"/"]);
6667
6668 NSString *command;
6669 if (slash.location == NSNotFound) {
6670 command = path;
6671 path = nil;
6672 } else {
6673 command = [path substringToIndex:slash.location];
6674 path = [path substringFromIndex:(slash.location + 1)];
6675 }
6676
6677 Database *database([Database sharedInstance]);
6678
6679 if ([command isEqualToString:@"package-icon"]) {
6680 if (path == nil)
6681 goto fail;
6682 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6683 Package *package([database packageWithName:path]);
6684 if (package == nil)
6685 goto fail;
6686 UIImage *icon([package icon]);
6687 [self _returnPNGWithImage:icon forRequest:request];
6688 } else if ([command isEqualToString:@"source-icon"]) {
6689 if (path == nil)
6690 goto fail;
6691 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6692 NSString *source(Simplify(path));
6693 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sources/%@.png", App_, source]]);
6694 if (icon == nil)
6695 icon = [UIImage applicationImageNamed:@"unknown.png"];
6696 [self _returnPNGWithImage:icon forRequest:request];
6697 } else if ([command isEqualToString:@"uikit-image"]) {
6698 if (path == nil)
6699 goto fail;
6700 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6701 UIImage *icon(_UIImageWithName(path));
6702 [self _returnPNGWithImage:icon forRequest:request];
6703 } else if ([command isEqualToString:@"section-icon"]) {
6704 if (path == nil)
6705 goto fail;
6706 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6707 NSString *section(Simplify(path));
6708 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]]);
6709 if (icon == nil)
6710 icon = [UIImage applicationImageNamed:@"unknown.png"];
6711 [self _returnPNGWithImage:icon forRequest:request];
6712 } else fail: {
6713 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
6714 }
6715 }
6716
6717 - (void) stopLoading {
6718 }
6719
6720 @end
6721 /* }}} */
6722
6723 /* Sections Controller {{{ */
6724 @interface SectionsController : CYViewController <
6725 UITableViewDataSource,
6726 UITableViewDelegate
6727 > {
6728 _transient Database *database_;
6729 NSMutableArray *sections_;
6730 NSMutableArray *filtered_;
6731 UITableView *list_;
6732 UIView *accessory_;
6733 BOOL editing_;
6734 }
6735
6736 - (id) initWithDatabase:(Database *)database;
6737 - (void) reloadData;
6738 - (void) resetView;
6739
6740 - (void) editButtonClicked;
6741
6742 @end
6743
6744 @implementation SectionsController
6745
6746 - (void) dealloc {
6747 [list_ setDataSource:nil];
6748 [list_ setDelegate:nil];
6749
6750 [sections_ release];
6751 [filtered_ release];
6752 [list_ release];
6753 [accessory_ release];
6754 [super dealloc];
6755 }
6756
6757 - (void) viewDidAppear:(BOOL)animated {
6758 [super viewDidAppear:animated];
6759 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6760 }
6761
6762 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
6763 Section *section = (editing_ ? [sections_ objectAtIndex:[indexPath row]] : ([indexPath row] == 0 ? nil : [filtered_ objectAtIndex:([indexPath row] - 1)]));
6764 return section;
6765 }
6766
6767 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)section {
6768 return editing_ ? [sections_ count] : [filtered_ count] + 1;
6769 }
6770
6771 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6772 return 45.0f;
6773 }*/
6774
6775 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6776 static NSString *reuseIdentifier = @"SectionCell";
6777
6778 SectionCell *cell = (SectionCell *) [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6779 if (cell == nil) cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6780 [cell setSection:[self sectionAtIndexPath:indexPath] editing:editing_];
6781
6782 return cell;
6783 }
6784
6785 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
6786 Section *section = [self sectionAtIndexPath:indexPath];
6787 NSString *name = [section name];
6788 NSString *title;
6789
6790 if ([indexPath row] == 0) {
6791 section = nil;
6792 name = nil;
6793 title = UCLocalize("ALL_PACKAGES");
6794 } else {
6795 if (name != nil) {
6796 name = [NSString stringWithString:name];
6797 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
6798 } else {
6799 name = @"";
6800 title = UCLocalize("NO_SECTION");
6801 }
6802 }
6803
6804 FilteredPackageController *table = [[[FilteredPackageController alloc]
6805 initWithDatabase:database_
6806 title:title
6807 filter:@selector(isVisibleInSection:)
6808 with:name
6809 ] autorelease];
6810
6811 [table setDelegate:delegate_];
6812
6813 [[self navigationController] pushViewController:table animated:YES];
6814 }
6815
6816 - (id) title { return UCLocalize("SECTIONS"); }
6817
6818 - (id) initWithDatabase:(Database *)database {
6819 if ((self = [super init]) != nil) {
6820 database_ = database;
6821
6822 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
6823
6824 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
6825 filtered_ = [[NSMutableArray arrayWithCapacity:16] retain];
6826
6827 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
6828 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6829 [list_ setRowHeight:45.0f];
6830 [[self view] addSubview:list_];
6831
6832 [list_ setDataSource:self];
6833 [list_ setDelegate:self];
6834
6835 [self reloadData];
6836 } return self;
6837 }
6838
6839 - (void) reloadData {
6840 NSArray *packages = [database_ packages];
6841
6842 [sections_ removeAllObjects];
6843 [filtered_ removeAllObjects];
6844
6845 #if 0
6846 typedef __gnu_cxx::hash_map<NSString *, Section *, NSStringMapHash, NSStringMapEqual> SectionMap;
6847 SectionMap sections;
6848 sections.resize(64);
6849 #else
6850 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
6851 #endif
6852
6853 _trace();
6854 for (Package *package in packages) {
6855 NSString *name([package section]);
6856 NSString *key(name == nil ? @"" : name);
6857
6858 #if 0
6859 Section **section;
6860
6861 _profile(SectionsView$reloadData$Section)
6862 section = &sections[key];
6863 if (*section == nil) {
6864 _profile(SectionsView$reloadData$Section$Allocate)
6865 *section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6866 _end
6867 }
6868 _end
6869
6870 [*section addToCount];
6871
6872 _profile(SectionsView$reloadData$Filter)
6873 if (![package valid] || ![package visible])
6874 continue;
6875 _end
6876
6877 [*section addToRow];
6878 #else
6879 Section *section;
6880
6881 _profile(SectionsView$reloadData$Section)
6882 section = [sections objectForKey:key];
6883 if (section == nil) {
6884 _profile(SectionsView$reloadData$Section$Allocate)
6885 section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6886 [sections setObject:section forKey:key];
6887 _end
6888 }
6889 _end
6890
6891 [section addToCount];
6892
6893 _profile(SectionsView$reloadData$Filter)
6894 if (![package valid] || ![package visible])
6895 continue;
6896 _end
6897
6898 [section addToRow];
6899 #endif
6900 }
6901 _trace();
6902
6903 #if 0
6904 for (SectionMap::const_iterator i(sections.begin()), e(sections.end()); i != e; ++i)
6905 [sections_ addObject:i->second];
6906 #else
6907 [sections_ addObjectsFromArray:[sections allValues]];
6908 #endif
6909
6910 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
6911
6912 for (Section *section in sections_) {
6913 size_t count([section row]);
6914 if (count == 0)
6915 continue;
6916
6917 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
6918 [section setCount:count];
6919 [filtered_ addObject:section];
6920 }
6921
6922 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6923 initWithTitle:[sections_ count] == 0 ? nil : UCLocalize("EDIT")
6924 style:UIBarButtonItemStylePlain
6925 target:self
6926 action:@selector(editButtonClicked)
6927 ];
6928 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] != nil];
6929 [rightItem release];
6930
6931 [list_ reloadData];
6932 _trace();
6933 }
6934
6935 - (void) resetView {
6936 if (editing_)
6937 [self editButtonClicked];
6938 }
6939
6940 - (void) editButtonClicked {
6941 if ((editing_ = !editing_))
6942 [list_ reloadData];
6943 else
6944 [delegate_ updateData];
6945
6946 [[self navigationItem] setTitle:editing_ ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
6947 [[[self navigationItem] rightBarButtonItem] setTitle:[sections_ count] == 0 ? nil : editing_ ? UCLocalize("DONE") : UCLocalize("EDIT")];
6948 [[[self navigationItem] rightBarButtonItem] setStyle:editing_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain];
6949 }
6950
6951 - (UIView *) accessoryView {
6952 return accessory_;
6953 }
6954
6955 @end
6956 /* }}} */
6957 /* Changes Controller {{{ */
6958 @interface ChangesController : CYViewController <
6959 UITableViewDataSource,
6960 UITableViewDelegate
6961 > {
6962 _transient Database *database_;
6963 NSMutableArray *packages_;
6964 NSMutableArray *sections_;
6965 UITableView *list_;
6966 unsigned upgrades_;
6967 BOOL hasSentFirstLoad_;
6968 }
6969
6970 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
6971 - (void) reloadData;
6972
6973 @end
6974
6975 @implementation ChangesController
6976
6977 - (void) dealloc {
6978 [list_ setDelegate:nil];
6979 [list_ setDataSource:nil];
6980
6981 [packages_ release];
6982 [sections_ release];
6983 [list_ release];
6984 [super dealloc];
6985 }
6986
6987 - (void) viewDidAppear:(BOOL)animated {
6988 [super viewDidAppear:animated];
6989 if (!hasSentFirstLoad_) {
6990 hasSentFirstLoad_ = YES;
6991 [self performSelector:@selector(reloadData) withObject:nil afterDelay:0.0];
6992 } else {
6993 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6994 }
6995 }
6996
6997 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6998 NSInteger count([sections_ count]);
6999 return count == 0 ? 1 : count;
7000 }
7001
7002 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
7003 if ([sections_ count] == 0)
7004 return nil;
7005 return [[sections_ objectAtIndex:section] name];
7006 }
7007
7008 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7009 if ([sections_ count] == 0)
7010 return 0;
7011 return [[sections_ objectAtIndex:section] count];
7012 }
7013
7014 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7015 Section *section([sections_ objectAtIndex:[path section]]);
7016 NSInteger row([path row]);
7017 return [packages_ objectAtIndex:([section row] + row)];
7018 }
7019
7020 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
7021 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
7022 if (cell == nil)
7023 cell = [[[PackageCell alloc] init] autorelease];
7024 [cell setPackage:[self packageAtIndexPath:path]];
7025 return cell;
7026 }
7027
7028 /*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
7029 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
7030 }*/
7031
7032 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
7033 Package *package([self packageAtIndexPath:path]);
7034 PackageController *view([delegate_ packageController]);
7035 [view setDelegate:delegate_];
7036 [view setPackage:package];
7037 [[self navigationController] pushViewController:view animated:YES];
7038 return path;
7039 }
7040
7041 - (void) refreshButtonClicked {
7042 [delegate_ beginUpdate];
7043 [[self navigationItem] setLeftBarButtonItem:nil];
7044 }
7045
7046 - (void) upgradeButtonClicked {
7047 [delegate_ distUpgrade];
7048 }
7049
7050 - (id) title { return UCLocalize("CHANGES"); }
7051
7052 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
7053 if ((self = [super init]) != nil) {
7054 database_ = database;
7055 [[self navigationItem] setTitle:UCLocalize("CHANGES")];
7056
7057 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
7058 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7059
7060 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
7061 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7062 [list_ setRowHeight:73.0f];
7063 [[self view] addSubview:list_];
7064
7065 [list_ setDataSource:self];
7066 [list_ setDelegate:self];
7067
7068 delegate_ = delegate;
7069 } return self;
7070 }
7071
7072 - (void) _reloadPackages:(NSArray *)packages {
7073 _trace();
7074 for (Package *package in packages)
7075 if (
7076 [package uninstalled] && [package valid] && [package visible] ||
7077 [package upgradableAndEssential:YES]
7078 )
7079 [packages_ addObject:package];
7080
7081 _trace();
7082 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackageChangesRadix) withContext:NULL];
7083 _trace();
7084 }
7085
7086 - (void) reloadData {
7087 NSArray *packages = [database_ packages];
7088
7089 [packages_ removeAllObjects];
7090 [sections_ removeAllObjects];
7091
7092 UIProgressHUD *hud([delegate_ addProgressHUD]);
7093 // XXX: localize
7094 [hud setText:@"Loading Changes"];
7095 NSLog(@"HUD:%@::%@", delegate_, hud);
7096 [self yieldToSelector:@selector(_reloadPackages:) withObject:packages];
7097 [delegate_ removeProgressHUD:hud];
7098
7099 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7100 Section *ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") localize:NO] autorelease];
7101 Section *section = nil;
7102 NSDate *last = nil;
7103
7104 upgrades_ = 0;
7105 bool unseens = false;
7106
7107 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7108
7109 for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) {
7110 Package *package = [packages_ objectAtIndex:offset];
7111
7112 BOOL uae = [package upgradableAndEssential:YES];
7113
7114 if (!uae) {
7115 unseens = true;
7116 NSDate *seen;
7117
7118 _profile(ChangesController$reloadData$Remember)
7119 seen = [package seen];
7120 _end
7121
7122 if (section == nil || last != seen && (seen == nil || [seen compare:last] != NSOrderedSame)) {
7123 last = seen;
7124
7125 NSString *name;
7126 if (seen == nil)
7127 name = UCLocalize("UNKNOWN");
7128 else {
7129 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) seen);
7130 [name autorelease];
7131 }
7132
7133 _profile(ChangesController$reloadData$Allocate)
7134 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7135 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7136 [sections_ addObject:section];
7137 _end
7138 }
7139
7140 [section addToCount];
7141 } else if ([package ignored])
7142 [ignored addToCount];
7143 else {
7144 ++upgrades_;
7145 [upgradable addToCount];
7146 }
7147 }
7148 _trace();
7149
7150 CFRelease(formatter);
7151
7152 if (unseens) {
7153 Section *last = [sections_ lastObject];
7154 size_t count = [last count];
7155 [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)];
7156 [sections_ removeLastObject];
7157 }
7158
7159 if ([ignored count] != 0)
7160 [sections_ insertObject:ignored atIndex:0];
7161 if (upgrades_ != 0)
7162 [sections_ insertObject:upgradable atIndex:0];
7163
7164 [list_ reloadData];
7165
7166 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7167 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7168 style:UIBarButtonItemStylePlain
7169 target:self
7170 action:@selector(upgradeButtonClicked)
7171 ];
7172 if (upgrades_ > 0) [[self navigationItem] setRightBarButtonItem:rightItem];
7173 [rightItem release];
7174
7175 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
7176 initWithTitle:UCLocalize("REFRESH")
7177 style:UIBarButtonItemStylePlain
7178 target:self
7179 action:@selector(refreshButtonClicked)
7180 ];
7181 if (![delegate_ updating]) [[self navigationItem] setLeftBarButtonItem:leftItem];
7182 [leftItem release];
7183 }
7184
7185 @end
7186 /* }}} */
7187 /* Search Controller {{{ */
7188 @interface SearchController : FilteredPackageController <
7189 UISearchBarDelegate
7190 > {
7191 UISearchBar *search_;
7192 }
7193
7194 - (id) initWithDatabase:(Database *)database;
7195 - (void) reloadData;
7196
7197 @end
7198
7199 @implementation SearchController
7200
7201 - (void) dealloc {
7202 [search_ release];
7203 [super dealloc];
7204 }
7205
7206 - (void) searchBarSearchButtonClicked:(id)searchBar {
7207 [packages_ setObject:[search_ text] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7208 [search_ resignFirstResponder];
7209 [self reloadData];
7210 }
7211
7212 - (void) searchBar:(id)searchBar textDidChange:(NSString *)text {
7213 [packages_ setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7214 [self reloadData];
7215 }
7216
7217 - (id) title { return nil; }
7218
7219 - (id) initWithDatabase:(Database *)database {
7220 return [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:nil];
7221 }
7222
7223 - (void)viewDidAppear:(BOOL)animated {
7224 [super viewDidAppear:animated];
7225 if (!search_) {
7226 search_ = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7227 [search_ layoutSubviews];
7228 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7229 UITextField *textField = [search_ searchField];
7230 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7231 [search_ setDelegate:self];
7232 [textField setEnablesReturnKeyAutomatically:NO];
7233 [[self navigationItem] setTitleView:textField];
7234 }
7235 }
7236
7237 - (void) _reloadData {
7238 }
7239
7240 - (void) reloadData {
7241 _profile(SearchController$reloadData)
7242 [packages_ reloadData];
7243 _end
7244 PrintTimes();
7245 [packages_ resetCursor];
7246 }
7247
7248 - (void) didSelectPackage:(Package *)package {
7249 [search_ resignFirstResponder];
7250 [super didSelectPackage:package];
7251 }
7252
7253 @end
7254 /* }}} */
7255 /* Settings Controller {{{ */
7256 @interface SettingsController : CYViewController <
7257 UITableViewDataSource,
7258 UITableViewDelegate
7259 > {
7260 _transient Database *database_;
7261 NSString *name_;
7262 Package *package_;
7263 UITableView *table_;
7264 id subscribedSwitch_;
7265 id ignoredSwitch_;
7266 UITableViewCell *subscribedCell_;
7267 UITableViewCell *ignoredCell_;
7268 }
7269
7270 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7271
7272 @end
7273
7274 @implementation SettingsController
7275
7276 - (void) dealloc {
7277 [name_ release];
7278 if (package_ != nil)
7279 [package_ release];
7280 [table_ release];
7281 [subscribedSwitch_ release];
7282 [ignoredSwitch_ release];
7283 [subscribedCell_ release];
7284 [ignoredCell_ release];
7285
7286 [super dealloc];
7287 }
7288
7289 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7290 if (package_ == nil)
7291 return 0;
7292
7293 return 1;
7294 }
7295
7296 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7297 if (package_ == nil)
7298 return 0;
7299
7300 return 1;
7301 }
7302
7303 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7304 return UCLocalize("SHOW_ALL_CHANGES_EX");
7305 }
7306
7307 - (void) onSomething:(BOOL)value withKey:(NSString *)key {
7308 if (package_ == nil)
7309 return;
7310
7311 NSMutableDictionary *metadata([package_ metadata]);
7312
7313 BOOL before;
7314 if (NSNumber *number = [metadata objectForKey:key])
7315 before = [number boolValue];
7316 else
7317 before = NO;
7318
7319 if (value != before) {
7320 [metadata setObject:[NSNumber numberWithBool:value] forKey:key];
7321 Changed_ = true;
7322 [delegate_ updateData];
7323 }
7324 }
7325
7326 - (void) onSubscribed:(id)control {
7327 [self onSomething:(int) [control isOn] withKey:@"IsSubscribed"];
7328 }
7329
7330 - (void) onIgnored:(id)control {
7331 [self onSomething:(int) [control isOn] withKey:@"IsIgnored"];
7332 }
7333
7334 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7335 if (package_ == nil)
7336 return nil;
7337
7338 switch ([indexPath row]) {
7339 case 0: return subscribedCell_;
7340 case 1: return ignoredCell_;
7341
7342 _nodefault
7343 }
7344
7345 return nil;
7346 }
7347
7348 - (id) title { return UCLocalize("SETTINGS"); }
7349
7350 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7351 if ((self = [super init])) {
7352 database_ = database;
7353 name_ = [package retain];
7354
7355 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7356
7357 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7358 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7359 [table_ setAllowsSelection:NO];
7360 [[self view] addSubview:table_];
7361
7362 subscribedSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7363 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7364 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7365
7366 ignoredSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7367 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7368 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7369
7370 subscribedCell_ = [[UITableViewCell alloc] init];
7371 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7372 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7373
7374 ignoredCell_ = [[UITableViewCell alloc] init];
7375 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7376 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7377
7378 [table_ setDataSource:self];
7379 [table_ setDelegate:self];
7380 [self reloadData];
7381 } return self;
7382 }
7383
7384 - (void) reloadData {
7385 if (package_ != nil)
7386 [package_ autorelease];
7387 package_ = [database_ packageWithName:name_];
7388 if (package_ != nil) {
7389 [package_ retain];
7390 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7391 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7392 }
7393
7394 [table_ reloadData];
7395 }
7396
7397 @end
7398 /* }}} */
7399
7400 /* Signature Controller {{{ */
7401 @interface SignatureController : CYBrowserController {
7402 _transient Database *database_;
7403 NSString *package_;
7404 }
7405
7406 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7407
7408 @end
7409
7410 @implementation SignatureController
7411
7412 - (void) dealloc {
7413 [package_ release];
7414 [super dealloc];
7415 }
7416
7417 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
7418 // XXX: dude!
7419 [super webView:sender didClearWindowObject:window forFrame:frame];
7420 }
7421
7422 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7423 if ((self = [super init]) != nil) {
7424 database_ = database;
7425 package_ = [package retain];
7426 [self reloadData];
7427 } return self;
7428 }
7429
7430 - (void) reloadData {
7431 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"signature" ofType:@"html"]]];
7432 }
7433
7434 @end
7435 /* }}} */
7436 /* Role Controller {{{ */
7437 @interface RoleController : CYViewController <
7438 UITableViewDataSource,
7439 UITableViewDelegate
7440 > {
7441 _transient Database *database_;
7442 id roledelegate_;
7443 UITableView *table_;
7444 UISegmentedControl *segment_;
7445 UIView *container_;
7446 }
7447
7448 - (void) showDoneButton;
7449 - (void) resizeSegmentedControl;
7450
7451 @end
7452
7453 @implementation RoleController
7454 - (void) dealloc {
7455 [table_ release];
7456 [segment_ release];
7457 [container_ release];
7458
7459 [super dealloc];
7460 }
7461
7462 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
7463 if ((self = [super init])) {
7464 database_ = database;
7465 roledelegate_ = delegate;
7466
7467 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
7468
7469 NSArray *items = [NSArray arrayWithObjects:
7470 UCLocalize("USER"),
7471 UCLocalize("HACKER"),
7472 UCLocalize("DEVELOPER"),
7473 nil];
7474 segment_ = [[UISegmentedControl alloc] initWithItems:items];
7475 container_ = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)];
7476 [container_ addSubview:segment_];
7477
7478 int index = -1;
7479 if ([Role_ isEqualToString:@"User"]) index = 0;
7480 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
7481 if ([Role_ isEqualToString:@"Developer"]) index = 2;
7482 if (index != -1) {
7483 [segment_ setSelectedSegmentIndex:index];
7484 [self showDoneButton];
7485 }
7486
7487 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
7488 [self resizeSegmentedControl];
7489
7490 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7491 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7492 [table_ setDelegate:self];
7493 [table_ setDataSource:self];
7494 [[self view] addSubview:table_];
7495 [table_ reloadData];
7496 } return self;
7497 }
7498
7499 - (void) resizeSegmentedControl {
7500 CGFloat width = [[self view] frame].size.width;
7501 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
7502 }
7503
7504 - (void) viewWillAppear:(BOOL)animated {
7505 [super viewWillAppear:animated];
7506
7507 [self resizeSegmentedControl];
7508 }
7509
7510 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7511 [self resizeSegmentedControl];
7512 }
7513
7514 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7515 [self resizeSegmentedControl];
7516 }
7517
7518 - (void) save {
7519 NSString *role = nil;
7520
7521 switch ([segment_ selectedSegmentIndex]) {
7522 case 0: role = @"User"; break;
7523 case 1: role = @"Hacker"; break;
7524 case 2: role = @"Developer"; break;
7525
7526 _nodefault
7527 }
7528
7529 if (![role isEqualToString:Role_]) {
7530 Role_ = role;
7531
7532 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
7533 Role_, @"Role",
7534 nil];
7535
7536 [Metadata_ setObject:Settings_ forKey:@"Settings"];
7537
7538 Changed_ = true;
7539
7540 [roledelegate_ updateData];
7541 }
7542 }
7543
7544 - (void) segmentChanged:(UISegmentedControl *)control {
7545 [self showDoneButton];
7546 }
7547
7548 - (void) doneButtonClicked {
7549 [self save];
7550 [[self navigationController] dismissModalViewControllerAnimated:YES];
7551 }
7552
7553 - (void) showDoneButton {
7554 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7555 initWithTitle:UCLocalize("DONE")
7556 style:UIBarButtonItemStyleDone
7557 target:self
7558 action:@selector(doneButtonClicked)
7559 ];
7560 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] == nil];
7561 [rightItem release];
7562 }
7563
7564 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7565 // XXX: For not having a single cell in the table, this sure is a lot of sections.
7566 return 6;
7567 }
7568
7569 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7570 return 0; // :(
7571 }
7572
7573 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7574 return nil; // This method is required by the protocol.
7575 }
7576
7577 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7578 if (section == 1)
7579 return UCLocalize("ROLE_EX");
7580 if (section == 4)
7581 return [NSString stringWithFormat:
7582 @"%@: %@\n%@: %@\n%@: %@",
7583 UCLocalize("USER"), UCLocalize("USER_EX"),
7584 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
7585 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
7586 ];
7587 else return nil;
7588 }
7589
7590 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
7591 if (section == 3) return 44.0f;
7592 else return 0;
7593 }
7594
7595 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
7596 if (section == 3) return container_;
7597 else return nil;
7598 }
7599
7600 @end
7601 /* }}} */
7602
7603 /* Cydia Container {{{ */
7604 @interface CYContainer : UIViewController <ProgressDelegate> {
7605 _transient Database *database_;
7606 RefreshBar *refreshbar_;
7607
7608 bool dropped_;
7609 bool updating_;
7610 id updatedelegate_;
7611 UITabBarController *root_;
7612 }
7613
7614 - (void) setTabBarController:(UITabBarController *)controller;
7615
7616 - (void) dropBar:(BOOL)animated;
7617 - (void) beginUpdate;
7618 - (void) raiseBar:(BOOL)animated;
7619
7620 @end
7621
7622 @implementation CYContainer
7623
7624 // NOTE: UIWindow only sends the top controller these messages,
7625 // So we have to forward them on.
7626
7627 - (void) viewDidAppear:(BOOL)animated {
7628 [super viewDidAppear:animated];
7629 [root_ viewDidAppear:animated];
7630 }
7631
7632 - (void) viewWillAppear:(BOOL)animated {
7633 [super viewWillAppear:animated];
7634 [root_ viewWillAppear:animated];
7635 }
7636
7637 - (void) viewDidDisappear:(BOOL)animated {
7638 [super viewDidDisappear:animated];
7639 [root_ viewDidDisappear:animated];
7640 }
7641
7642 - (void) viewWillDisappear:(BOOL)animated {
7643 [super viewWillDisappear:animated];
7644 [root_ viewWillDisappear:animated];
7645 }
7646
7647 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
7648 return YES; /* XXX: return YES; */
7649 }
7650
7651 - (void) setTabBarController:(UITabBarController *)controller {
7652 root_ = controller;
7653 [[self view] addSubview:[root_ view]];
7654 }
7655
7656 - (void) setUpdate:(NSDate *)date {
7657 [self beginUpdate];
7658 }
7659
7660 - (void) beginUpdate {
7661 [self dropBar:YES];
7662 [refreshbar_ start];
7663
7664 updating_ = true;
7665
7666 [NSThread
7667 detachNewThreadSelector:@selector(performUpdate)
7668 toTarget:self
7669 withObject:nil
7670 ];
7671 }
7672
7673 - (void) performUpdate { _pooled
7674 Status status;
7675 status.setDelegate(self);
7676 [database_ updateWithStatus:status];
7677
7678 [self
7679 performSelectorOnMainThread:@selector(completeUpdate)
7680 withObject:nil
7681 waitUntilDone:NO
7682 ];
7683 }
7684
7685 - (void) completeUpdate {
7686 updating_ = false;
7687
7688 [self raiseBar:YES];
7689 [refreshbar_ stop];
7690 [updatedelegate_ performSelector:@selector(reloadData) withObject:nil afterDelay:0];
7691 }
7692
7693 - (void) cancelUpdate {
7694 [refreshbar_ cancel];
7695 [self completeUpdate];
7696 }
7697
7698 - (void) cancelPressed {
7699 [self cancelUpdate];
7700 }
7701
7702 - (BOOL) updating {
7703 return updating_;
7704 }
7705
7706 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
7707 [refreshbar_ setPrompt:[NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), UCLocalize("ERROR"), error]];
7708 }
7709
7710 - (void) startProgress {
7711 }
7712
7713 - (void) setProgressTitle:(NSString *)title {
7714 [self
7715 performSelectorOnMainThread:@selector(_setProgressTitle:)
7716 withObject:title
7717 waitUntilDone:YES
7718 ];
7719 }
7720
7721 - (bool) isCancelling:(size_t)received {
7722 return !updating_;
7723 }
7724
7725 - (void) setProgressPercent:(float)percent {
7726 [self
7727 performSelectorOnMainThread:@selector(_setProgressPercent:)
7728 withObject:[NSNumber numberWithFloat:percent]
7729 waitUntilDone:YES
7730 ];
7731 }
7732
7733 - (void) addProgressOutput:(NSString *)output {
7734 [self
7735 performSelectorOnMainThread:@selector(_addProgressOutput:)
7736 withObject:output
7737 waitUntilDone:YES
7738 ];
7739 }
7740
7741 - (void) _setProgressTitle:(NSString *)title {
7742 [refreshbar_ setPrompt:title];
7743 }
7744
7745 - (void) _setProgressPercent:(NSNumber *)percent {
7746 [refreshbar_ setProgress:[percent floatValue]];
7747 }
7748
7749 - (void) _addProgressOutput:(NSString *)output {
7750 }
7751
7752 - (void) setUpdateDelegate:(id)delegate {
7753 updatedelegate_ = delegate;
7754 }
7755
7756 - (void) dropBar:(BOOL)animated {
7757 if (dropped_) return;
7758 dropped_ = true;
7759
7760 [[self view] addSubview:refreshbar_];
7761
7762 if (animated) [UIView beginAnimations:nil context:NULL];
7763 CGRect barframe = [refreshbar_ frame];
7764 CGRect viewframe = [[root_ view] frame];
7765 viewframe.origin.y += barframe.size.height + 20.0f;
7766 viewframe.size.height -= barframe.size.height + 20.0f;
7767 [[root_ view] setFrame:viewframe];
7768 if (animated) [UIView commitAnimations];
7769
7770 // Ensure bar has the proper width for our view, it might have changed
7771 barframe.size.width = viewframe.size.width;
7772 [refreshbar_ setFrame:barframe];
7773
7774 // XXX: fix Apple's layout bug
7775 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7776 }
7777
7778 - (void) raiseBar:(BOOL)animated {
7779 if (!dropped_) return;
7780 dropped_ = false;
7781
7782 [refreshbar_ removeFromSuperview];
7783
7784 if (animated) [UIView beginAnimations:nil context:NULL];
7785 CGRect barframe = [refreshbar_ frame];
7786 CGRect viewframe = [[root_ view] frame];
7787 viewframe.origin.y -= barframe.size.height + 20.0f;
7788 viewframe.size.height += barframe.size.height + 20.0f;
7789 [[root_ view] setFrame:viewframe];
7790 if (animated) [UIView commitAnimations];
7791
7792 // XXX: fix Apple's layout bug
7793 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7794 }
7795
7796 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7797 // XXX: fix Apple's layout bug
7798 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7799 }
7800
7801 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7802 if (dropped_) {
7803 [self raiseBar:NO];
7804 [self dropBar:NO];
7805 }
7806
7807 // XXX: fix Apple's layout bug
7808 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7809 }
7810
7811 - (void) dealloc {
7812 [refreshbar_ release];
7813 [super dealloc];
7814 }
7815
7816 - (id) initWithDatabase: (Database *)database {
7817 if ((self = [super init]) != nil) {
7818 database_ = database;
7819
7820 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7821
7822 refreshbar_ = [[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self];
7823 } return self;
7824 }
7825
7826 @end
7827 /* }}} */
7828
7829 typedef enum {
7830 kCydiaTag = 0,
7831 kSectionsTag = 1,
7832 kChangesTag = 2,
7833 kManageTag = 3,
7834 kInstalledTag = 4,
7835 kSourcesTag = 5,
7836 kSearchTag = 6
7837 } CYTabTag;
7838
7839 @interface Cydia : UIApplication <
7840 ConfirmationControllerDelegate,
7841 ProgressControllerDelegate,
7842 CydiaDelegate
7843 > {
7844 UIWindow *window_;
7845 CYContainer *container_;
7846
7847 id tabbar_;
7848
7849 NSMutableArray *essential_;
7850 NSMutableArray *broken_;
7851
7852 Database *database_;
7853
7854 int tag_;
7855
7856 UIKeyboard *keyboard_;
7857 UIProgressHUD *hud_;
7858
7859 SectionsController *sections_;
7860 ChangesController *changes_;
7861 ManageController *manage_;
7862 SearchController *search_;
7863 SourceTable *sources_;
7864 InstalledController *installed_;
7865 id queueDelegate_;
7866
7867 #if RecyclePackageViews
7868 NSMutableArray *details_;
7869 #endif
7870
7871 bool loaded_;
7872 }
7873
7874 - (UCViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class;
7875 - (void) setPage:(UCViewController *)page;
7876
7877 @end
7878
7879 static _finline void _setHomePage(Cydia *self) {
7880 [self setPage:[self _pageForURL:[NSURL URLWithString:CydiaURL(@"")] withClass:[HomeController class]]];
7881 }
7882
7883 @implementation Cydia
7884
7885 - (void) beginUpdate {
7886 [container_ beginUpdate];
7887 }
7888
7889 - (BOOL) updating {
7890 return [container_ updating];
7891 }
7892
7893 - (UIView *) rotatingContentViewForWindow:(UIWindow *)window {
7894 return window_;
7895 }
7896
7897 - (void) _loaded {
7898 if ([broken_ count] != 0) {
7899 int count = [broken_ count];
7900
7901 UIAlertView *alert = [[[UIAlertView alloc]
7902 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
7903 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
7904 delegate:self
7905 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
7906 otherButtonTitles:UCLocalize("TEMPORARY_IGNORE"), nil
7907 ] autorelease];
7908
7909 [alert setContext:@"fixhalf"];
7910 [alert show];
7911 } else if (!Ignored_ && [essential_ count] != 0) {
7912 int count = [essential_ count];
7913
7914 UIAlertView *alert = [[[UIAlertView alloc]
7915 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
7916 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
7917 delegate:self
7918 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
7919 otherButtonTitles:UCLocalize("UPGRADE_ESSENTIAL"), UCLocalize("COMPLETE_UPGRADE"), nil
7920 ] autorelease];
7921
7922 [alert setContext:@"upgrade"];
7923 [alert show];
7924 }
7925 }
7926
7927 - (void) _saveConfig {
7928 if (Changed_) {
7929 _trace();
7930 NSString *error(nil);
7931 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
7932 _trace();
7933 NSError *error(nil);
7934 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
7935 NSLog(@"failure to save metadata data: %@", error);
7936 _trace();
7937 } else {
7938 NSLog(@"failure to serialize metadata: %@", error);
7939 return;
7940 }
7941
7942 Changed_ = false;
7943 }
7944 }
7945
7946 - (void) _updateData {
7947 [self _saveConfig];
7948
7949 /* XXX: this is just stupid */
7950 if (tag_ != 1 && sections_ != nil)
7951 [sections_ reloadData];
7952 if (tag_ != 2 && changes_ != nil)
7953 [changes_ reloadData];
7954 if (tag_ != 4 && search_ != nil)
7955 [search_ reloadData];
7956
7957 [(CYNavigationController *)[tabbar_ selectedViewController] reloadData];
7958 }
7959
7960 - (int)indexOfTabWithTag:(int)tag {
7961 int i = 0;
7962 for (UINavigationController *controller in [tabbar_ viewControllers]) {
7963 if ([[controller tabBarItem] tag] == tag) return i;
7964 i += 1;
7965 }
7966
7967 return -1;
7968 }
7969
7970 - (void) _refreshIfPossible {
7971 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
7972
7973 Reachability* reachability = [Reachability reachabilityWithHostName:@"cydia.saurik.com"];
7974 NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
7975
7976 if (loaded_ || ManualRefresh || remoteHostStatus == NotReachable) loaded:
7977 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
7978 else {
7979 loaded_ = true;
7980
7981 NSDate *update([Metadata_ objectForKey:@"LastUpdate"]);
7982
7983 if (update != nil) {
7984 NSTimeInterval interval([update timeIntervalSinceNow]);
7985 if (interval <= 0 && interval > -(15*60))
7986 goto loaded;
7987 }
7988
7989 [container_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
7990 }
7991
7992 [pool release];
7993 }
7994
7995 - (void) refreshIfPossible {
7996 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil];
7997 }
7998
7999 - (void) _reloadData {
8000 UIView *block();
8001
8002 UIProgressHUD *hud([self addProgressHUD]);
8003 [hud setText:(loaded_ ? UCLocalize("RELOADING_DATA") : UCLocalize("LOADING_DATA"))];
8004
8005 [database_ yieldToSelector:@selector(reloadData) withObject:nil];
8006 _trace();
8007
8008 [self removeProgressHUD:hud];
8009
8010 size_t changes(0);
8011
8012 [essential_ removeAllObjects];
8013 [broken_ removeAllObjects];
8014
8015 NSArray *packages([database_ packages]);
8016 for (Package *package in packages) {
8017 if ([package half])
8018 [broken_ addObject:package];
8019 if ([package upgradableAndEssential:NO]) {
8020 if ([package essential])
8021 [essential_ addObject:package];
8022 ++changes;
8023 }
8024 }
8025
8026 if (changes != 0) {
8027 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
8028 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setBadgeValue:badge];
8029 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setAnimatedBadge:YES];
8030
8031 if ([self respondsToSelector:@selector(setApplicationBadge:)])
8032 [self setApplicationBadge:badge];
8033 else
8034 [self setApplicationBadgeString:badge];
8035 } else {
8036 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setBadgeValue:nil];
8037 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setAnimatedBadge:NO];
8038
8039 if ([self respondsToSelector:@selector(removeApplicationBadge)])
8040 [self removeApplicationBadge];
8041 else // XXX: maybe use setApplicationBadgeString also?
8042 [self setApplicationIconBadgeNumber:0];
8043 }
8044
8045 [self _updateData];
8046
8047 [self refreshIfPossible];
8048 }
8049
8050 - (void) updateData {
8051 [database_ setVisible];
8052 [self _updateData];
8053 }
8054
8055 - (void) update_ {
8056 [database_ update];
8057 }
8058
8059 - (void) syncData {
8060 FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w"));
8061 _assert(file != NULL);
8062
8063 for (NSString *key in [Sources_ allKeys]) {
8064 NSDictionary *source([Sources_ objectForKey:key]);
8065
8066 fprintf(file, "%s %s %s\n",
8067 [[source objectForKey:@"Type"] UTF8String],
8068 [[source objectForKey:@"URI"] UTF8String],
8069 [[source objectForKey:@"Distribution"] UTF8String]
8070 );
8071 }
8072
8073 fclose(file);
8074
8075 [self _saveConfig];
8076
8077 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8078 UINavigationController *navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8079 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8080 [container_ presentModalViewController:navigation animated:YES];
8081
8082 [progress
8083 detachNewThreadSelector:@selector(update_)
8084 toTarget:self
8085 withObject:nil
8086 title:UCLocalize("UPDATING_SOURCES")
8087 ];
8088 }
8089
8090 - (void) reloadData {
8091 @synchronized (self) {
8092 [self _reloadData];
8093 }
8094 }
8095
8096 - (void) resolve {
8097 pkgProblemResolver *resolver = [database_ resolver];
8098
8099 resolver->InstallProtect();
8100 if (!resolver->Resolve(true))
8101 _error->Discard();
8102 }
8103
8104 - (CGRect) popUpBounds {
8105 return [[tabbar_ view] bounds];
8106 }
8107
8108 - (bool) perform {
8109 if (![database_ prepare])
8110 return false;
8111
8112 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
8113 [page setDelegate:self];
8114 id confirm_ = [[CYNavigationController alloc] initWithRootViewController:page];
8115 [confirm_ setDelegate:self];
8116
8117 if (IsWildcat_) [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
8118 [container_ presentModalViewController:confirm_ animated:YES];
8119
8120 return true;
8121 }
8122
8123 - (void) queue {
8124 @synchronized (self) {
8125 [self perform];
8126 }
8127 }
8128
8129 - (void) clearPackage:(Package *)package {
8130 @synchronized (self) {
8131 [package clear];
8132 [self resolve];
8133 [self perform];
8134 }
8135 }
8136
8137 - (void) installPackages:(NSArray *)packages {
8138 @synchronized (self) {
8139 for (Package *package in packages)
8140 [package install];
8141 [self resolve];
8142 [self perform];
8143 }
8144 }
8145
8146 - (void) installPackage:(Package *)package {
8147 @synchronized (self) {
8148 [package install];
8149 [self resolve];
8150 [self perform];
8151 }
8152 }
8153
8154 - (void) removePackage:(Package *)package {
8155 @synchronized (self) {
8156 [package remove];
8157 [self resolve];
8158 [self perform];
8159 }
8160 }
8161
8162 - (void) distUpgrade {
8163 @synchronized (self) {
8164 if (![database_ upgrade])
8165 return;
8166 [self perform];
8167 }
8168 }
8169
8170 - (void) complete {
8171 @synchronized (self) {
8172 [self _reloadData];
8173 }
8174 }
8175
8176 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
8177 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8178
8179 if (navigation != nil) {
8180 [navigation pushViewController:progress animated:YES];
8181 } else {
8182 navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8183 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8184 [container_ presentModalViewController:navigation animated:YES];
8185 }
8186
8187 [progress
8188 detachNewThreadSelector:@selector(perform)
8189 toTarget:database_
8190 withObject:nil
8191 title:UCLocalize("RUNNING")
8192 ];
8193 }
8194
8195 - (void) progressControllerIsComplete:(ProgressController *)progress {
8196 [self complete];
8197 }
8198
8199 - (void) setPage:(UCViewController *)page {
8200 [page setDelegate:self];
8201
8202 CYNavigationController *navController = (CYNavigationController *) [tabbar_ selectedViewController];
8203 [navController setViewControllers:[NSArray arrayWithObject:page] animated:NO];
8204 for (CYNavigationController *page in [tabbar_ viewControllers]) {
8205 if (page != navController) [page setViewControllers:nil];
8206 }
8207 }
8208
8209 - (UCViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class {
8210 CYBrowserController *browser = [[[_class alloc] init] autorelease];
8211 [browser loadURL:url];
8212 return browser;
8213 }
8214
8215 - (SectionsController *) sectionsController {
8216 if (sections_ == nil)
8217 sections_ = [[SectionsController alloc] initWithDatabase:database_];
8218 return sections_;
8219 }
8220
8221 - (ChangesController *) changesController {
8222 if (changes_ == nil)
8223 changes_ = [[ChangesController alloc] initWithDatabase:database_ delegate:self];
8224 return changes_;
8225 }
8226
8227 - (ManageController *) manageController {
8228 if (manage_ == nil) {
8229 manage_ = (ManageController *) [[self
8230 _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]
8231 withClass:[ManageController class]
8232 ] retain];
8233 if (!IsWildcat_) queueDelegate_ = manage_;
8234 }
8235 return manage_;
8236 }
8237
8238 - (SearchController *) searchController {
8239 if (search_ == nil)
8240 search_ = [[SearchController alloc] initWithDatabase:database_];
8241 return search_;
8242 }
8243
8244 - (SourceTable *) sourcesController {
8245 if (sources_ == nil)
8246 sources_ = [[SourceTable alloc] initWithDatabase:database_];
8247 return sources_;
8248 }
8249
8250 - (InstalledController *) installedController {
8251 if (installed_ == nil) {
8252 installed_ = [[InstalledController alloc] initWithDatabase:database_];
8253 if (IsWildcat_) queueDelegate_ = installed_;
8254 }
8255 return installed_;
8256 }
8257
8258 - (void) tabBarController:(id)tabBarController didSelectViewController:(UIViewController *)viewController {
8259 int tag = [[viewController tabBarItem] tag];
8260 if (tag == tag_) {
8261 [(CYNavigationController *)[tabbar_ selectedViewController] popToRootViewControllerAnimated:YES];
8262 return;
8263 } else if (tag_ == 1) {
8264 [[self sectionsController] resetView];
8265 }
8266
8267 switch (tag) {
8268 case kCydiaTag: _setHomePage(self); break;
8269
8270 case kSectionsTag: [self setPage:[self sectionsController]]; break;
8271 case kChangesTag: [self setPage:[self changesController]]; break;
8272 case kManageTag: [self setPage:[self manageController]]; break;
8273 case kInstalledTag: [self setPage:[self installedController]]; break;
8274 case kSourcesTag: [self setPage:[self sourcesController]]; break;
8275 case kSearchTag: [self setPage:[self searchController]]; break;
8276
8277 _nodefault
8278 }
8279
8280 tag_ = tag;
8281 }
8282
8283 - (void) showSettings {
8284 RoleController *role = [[RoleController alloc] initWithDatabase:database_ delegate:self];
8285 CYNavigationController *nav = [[CYNavigationController alloc] initWithRootViewController:role];
8286 if (IsWildcat_) [nav setModalPresentationStyle:UIModalPresentationFormSheet];
8287 [container_ presentModalViewController:nav animated:YES];
8288 }
8289
8290 - (void) setPackageController:(PackageController *)view {
8291 WebThreadLock();
8292 [view setPackage:nil];
8293 #if RecyclePackageViews
8294 if ([details_ count] < 3)
8295 [details_ addObject:view];
8296 #endif
8297 WebThreadUnlock();
8298 }
8299
8300 - (PackageController *) _packageController {
8301 return [[[PackageController alloc] initWithDatabase:database_] autorelease];
8302 }
8303
8304 - (PackageController *) packageController {
8305 #if RecyclePackageViews
8306 PackageController *view;
8307 size_t count([details_ count]);
8308
8309 if (count == 0) {
8310 view = [self _packageController];
8311 renew:
8312 [details_ addObject:[self _packageController]];
8313 } else {
8314 view = [[[details_ lastObject] retain] autorelease];
8315 [details_ removeLastObject];
8316 if (count == 1)
8317 goto renew;
8318 }
8319
8320 return view;
8321 #else
8322 return [self _packageController];
8323 #endif
8324 }
8325
8326 - (void) cancelAndClear:(bool)clear {
8327 @synchronized (self) {
8328 if (clear) {
8329 /* XXX: clear marks instead of reloading data */
8330 /*pkgCacheFile &cache([database_ cache]);
8331 for (pkgCache::PkgIterator iterator = cache->PkgBegin(); !iterator.end(); ++iterator) {
8332 if (!cache[iterator].Keep()) cache->MarkKeep(iterator, false, false);
8333 }
8334
8335 [self updateData];
8336
8337 Queuing_ = false;
8338 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kManageTag] != -1 ? [self indexOfTabWithTag:kManageTag] : [self indexOfTabWithTag:kInstalledTag]] tabBarItem] setBadgeValue:nil];
8339 [queueDelegate_ queueStatusDidChange];*/
8340 [self reloadData];
8341 } else {
8342 Queuing_ = true;
8343
8344 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kManageTag] != -1 ? [self indexOfTabWithTag:kManageTag] : [self indexOfTabWithTag:kInstalledTag]] tabBarItem] setBadgeValue:UCLocalize("Q_D")];
8345 [(CYNavigationController *)[tabbar_ selectedViewController] reloadData];
8346
8347 [queueDelegate_ queueStatusDidChange];
8348 }
8349 }
8350 }
8351
8352 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8353 NSString *context([alert context]);
8354
8355 if ([context isEqualToString:@"fixhalf"]) {
8356 if (button == [alert firstOtherButtonIndex]) {
8357 @synchronized (self) {
8358 for (Package *broken in broken_) {
8359 [broken remove];
8360
8361 NSString *id = [broken id];
8362 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
8363 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
8364 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
8365 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
8366 }
8367
8368 [self resolve];
8369 [self perform];
8370 }
8371 } else if (button == [alert cancelButtonIndex]) {
8372 [broken_ removeAllObjects];
8373 [self _loaded];
8374 }
8375
8376 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8377 } else if ([context isEqualToString:@"upgrade"]) {
8378 if (button == [alert firstOtherButtonIndex]) {
8379 @synchronized (self) {
8380 for (Package *essential in essential_)
8381 [essential install];
8382
8383 [self resolve];
8384 [self perform];
8385 }
8386 } else if (button == [alert firstOtherButtonIndex] + 1) {
8387 [self distUpgrade];
8388 } else if (button == [alert cancelButtonIndex]) {
8389 Ignored_ = YES;
8390 }
8391
8392 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8393 }
8394 }
8395
8396 - (void) system:(NSString *)command { _pooled
8397 system([command UTF8String]);
8398 }
8399
8400 - (void) applicationWillSuspend {
8401 [database_ clean];
8402 [super applicationWillSuspend];
8403 }
8404
8405 - (void) applicationSuspend:(__GSEvent *)event {
8406 // FIXME: This needs to be fixed, but we no longer have a progress_.
8407 // What's the best solution?
8408 if (hud_ == nil)// && ![progress_ isRunning])
8409 [super applicationSuspend:event];
8410 }
8411
8412 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
8413 if (hud_ == nil)
8414 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
8415 }
8416
8417 - (void) _setSuspended:(BOOL)value {
8418 if (hud_ == nil)
8419 [super _setSuspended:value];
8420 }
8421
8422 - (UIProgressHUD *) addProgressHUD {
8423 UIProgressHUD *hud([[[UIProgressHUD alloc] initWithWindow:window_] autorelease]);
8424 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8425
8426 [window_ setUserInteractionEnabled:NO];
8427 [hud show:YES];
8428 [[container_ view] addSubview:hud];
8429 return hud;
8430 }
8431
8432 - (void) removeProgressHUD:(UIProgressHUD *)hud {
8433 [hud show:NO];
8434 [hud removeFromSuperview];
8435 [window_ setUserInteractionEnabled:YES];
8436 }
8437
8438 - (UCViewController *) pageForPackage:(NSString *)name {
8439 if (Package *package = [database_ packageWithName:name]) {
8440 PackageController *view([self packageController]);
8441 [view setPackage:package];
8442 return view;
8443 } else {
8444 NSURL *url([NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"unknown" ofType:@"html"]]);
8445 url = [NSURL URLWithString:[[url absoluteString] stringByAppendingString:[NSString stringWithFormat:@"?%@", name]]];
8446 return [self _pageForURL:url withClass:[CYBrowserController class]];
8447 }
8448 }
8449
8450 - (UCViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag {
8451 if (tag != NULL)
8452 *tag = -1;
8453
8454 NSString *href([url absoluteString]);
8455 if ([href hasPrefix:@"apptapp://package/"])
8456 return [self pageForPackage:[href substringFromIndex:18]];
8457
8458 NSString *scheme([[url scheme] lowercaseString]);
8459 if (![scheme isEqualToString:@"cydia"])
8460 return nil;
8461 NSString *path([url absoluteString]);
8462 if ([path length] < 8)
8463 return nil;
8464 path = [path substringFromIndex:8];
8465 if (![path hasPrefix:@"/"])
8466 path = [@"/" stringByAppendingString:path];
8467
8468 if ([path isEqualToString:@"/add-source"])
8469 return [[[AddSourceController alloc] initWithDatabase:database_] autorelease];
8470 else if ([path isEqualToString:@"/storage"])
8471 return [self _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"storage" ofType:@"html"]] withClass:[CYBrowserController class]];
8472 else if ([path isEqualToString:@"/sources"])
8473 return [[[SourceTable alloc] initWithDatabase:database_] autorelease];
8474 else if ([path isEqualToString:@"/packages"])
8475 return [[[InstalledController alloc] initWithDatabase:database_] autorelease];
8476 else if ([path hasPrefix:@"/url/"])
8477 return [self _pageForURL:[NSURL URLWithString:[path substringFromIndex:5]] withClass:[CYBrowserController class]];
8478 else if ([path hasPrefix:@"/launch/"])
8479 [self launchApplicationWithIdentifier:[path substringFromIndex:8] suspended:NO];
8480 else if ([path hasPrefix:@"/package-settings/"])
8481 return [[[SettingsController alloc] initWithDatabase:database_ package:[path substringFromIndex:18]] autorelease];
8482 else if ([path hasPrefix:@"/package-signature/"])
8483 return [[[SignatureController alloc] initWithDatabase:database_ package:[path substringFromIndex:19]] autorelease];
8484 else if ([path hasPrefix:@"/package/"])
8485 return [self pageForPackage:[path substringFromIndex:9]];
8486 else if ([path hasPrefix:@"/files/"]) {
8487 NSString *name = [path substringFromIndex:7];
8488
8489 if (Package *package = [database_ packageWithName:name]) {
8490 FileTable *files = [[[FileTable alloc] initWithDatabase:database_] autorelease];
8491 [files setPackage:package];
8492 return files;
8493 }
8494 }
8495
8496 return nil;
8497 }
8498
8499 - (void) applicationOpenURL:(NSURL *)url {
8500 [super applicationOpenURL:url];
8501 int tag;
8502 if (UCViewController *page = [self pageForURL:url hasTag:&tag]) {
8503 [self setPage:page];
8504 tag_ = tag;
8505 [tabbar_ setSelectedViewController:(tag_ == -1 ? nil : [[tabbar_ viewControllers] objectAtIndex:tag_])];
8506 }
8507 }
8508
8509 - (void) applicationWillResignActive:(UIApplication *)application {
8510 // Stop refreshing if you get a phone call or lock the device.
8511 if ([container_ updating]) [container_ cancelUpdate];
8512
8513 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
8514 [super applicationWillResignActive:application];
8515 }
8516
8517 - (void) applicationDidFinishLaunching:(id)unused {
8518 [CYBrowserController _initialize];
8519
8520 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
8521
8522 Font12_ = [[UIFont systemFontOfSize:12] retain];
8523 Font12Bold_ = [[UIFont boldSystemFontOfSize:12] retain];
8524 Font14_ = [[UIFont systemFontOfSize:14] retain];
8525 Font18Bold_ = [[UIFont boldSystemFontOfSize:18] retain];
8526 Font22Bold_ = [[UIFont boldSystemFontOfSize:22] retain];
8527
8528 tag_ = 0;
8529
8530 essential_ = [[NSMutableArray alloc] initWithCapacity:4];
8531 broken_ = [[NSMutableArray alloc] initWithCapacity:4];
8532
8533 UIScreen *screen([UIScreen mainScreen]);
8534
8535 window_ = [[UIWindow alloc] initWithFrame:[screen bounds]];
8536 [window_ orderFront:self];
8537 [window_ makeKey:self];
8538 [window_ setHidden:NO];
8539
8540 database_ = [Database sharedInstance];
8541
8542 if (
8543 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
8544 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
8545 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
8546 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
8547 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
8548 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
8549 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
8550 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
8551 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
8552 false
8553 ) {
8554 [self setIdleTimerDisabled:YES];
8555
8556 hud_ = [self addProgressHUD];
8557 [hud_ setText:@"Reorganizing:\n\nWill Automatically\nClose When Done"];
8558 [self setStatusBarShowsProgress:YES];
8559
8560 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
8561
8562 [self setStatusBarShowsProgress:NO];
8563 [self removeProgressHUD:hud_];
8564 hud_ = nil;
8565
8566 if (ExecFork() == 0) {
8567 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
8568 perror("launchctl stop");
8569 }
8570
8571 return;
8572 }
8573
8574 if (Role_ == nil)
8575 [self showSettings];
8576
8577 _trace();
8578
8579 NSMutableArray *items([NSMutableArray arrayWithObjects:
8580 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:kCydiaTag] autorelease],
8581 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:kSectionsTag] autorelease],
8582 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:kChangesTag] autorelease],
8583 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:kSearchTag] autorelease],
8584 nil]);
8585
8586 if (IsWildcat_) {
8587 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:kSourcesTag] autorelease] atIndex:3];
8588 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:kInstalledTag] autorelease] atIndex:3];
8589 } else {
8590 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:kManageTag] autorelease] atIndex:3];
8591 }
8592
8593 NSMutableArray *controllers([NSMutableArray array]);
8594
8595 for (UITabBarItem *item in items) {
8596 CYNavigationController *controller([[[CYNavigationController alloc] initWithDatabase:database_] autorelease]);
8597 [controller setTabBarItem:item];
8598 [controllers addObject:controller];
8599 }
8600
8601 tabbar_ = [[CYTabBarController alloc] initWithDatabase:database_];
8602 [tabbar_ setViewControllers:controllers];
8603 [tabbar_ setDelegate:self];
8604 [tabbar_ setSelectedIndex:0];
8605
8606 container_ = [[CYContainer alloc] initWithDatabase:database_];
8607 [container_ setUpdateDelegate:self];
8608 [container_ setTabBarController:tabbar_];
8609 [window_ addSubview:[container_ view]];
8610
8611 [UIKeyboard initImplementationNow];
8612
8613 [self reloadData];
8614
8615 #if RecyclePackageViews
8616 details_ = [[NSMutableArray alloc] initWithCapacity:4];
8617 [details_ addObject:[self _packageController]];
8618 [details_ addObject:[self _packageController]];
8619 #endif
8620
8621 PrintTimes();
8622
8623 _setHomePage(self);
8624 }
8625
8626 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
8627 if (item != nil && IsWildcat_) {
8628 [sheet showFromBarButtonItem:item animated:YES];
8629 } else {
8630 [sheet showInView:window_];
8631 }
8632 }
8633
8634 @end
8635
8636 /*IMP alloc_;
8637 id Alloc_(id self, SEL selector) {
8638 id object = alloc_(self, selector);
8639 lprintf("[%s]A-%p\n", self->isa->name, object);
8640 return object;
8641 }*/
8642
8643 /*IMP dealloc_;
8644 id Dealloc_(id self, SEL selector) {
8645 id object = dealloc_(self, selector);
8646 lprintf("[%s]D-%p\n", self->isa->name, object);
8647 return object;
8648 }*/
8649
8650 Class $WebDefaultUIKitDelegate;
8651
8652 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
8653 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
8654 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
8655 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
8656 }
8657
8658 static NSNumber *shouldPlayKeyboardSounds;
8659
8660 Class $UIHardware;
8661
8662 MSHook(void, UIHardware$_playSystemSound$, Class self, SEL _cmd, int sound) {
8663 switch (sound) {
8664 case 1104: // Keyboard Button Clicked
8665 case 1105: // Keyboard Delete Repeated
8666 if (shouldPlayKeyboardSounds == nil) {
8667 NSDictionary *dict([[[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.apple.preferences.sounds.plist"] autorelease]);
8668 shouldPlayKeyboardSounds = [([dict objectForKey:@"keyboard"] ?: (id) kCFBooleanTrue) retain];
8669 }
8670
8671 if (![shouldPlayKeyboardSounds boolValue])
8672 break;
8673
8674 default:
8675 _UIHardware$_playSystemSound$(self, _cmd, sound);
8676 }
8677 }
8678
8679 int main(int argc, char *argv[]) { _pooled
8680 _trace();
8681
8682 if (Class $UIDevice = objc_getClass("UIDevice")) {
8683 UIDevice *device([$UIDevice currentDevice]);
8684 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
8685 } else
8686 IsWildcat_ = false;
8687
8688 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
8689
8690 /* Library Hacks {{{ */
8691 class_addMethod(objc_getClass("WebScriptObject"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &WebScriptObject$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8692 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8693
8694 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
8695 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
8696 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
8697 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
8698 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
8699 }
8700
8701 $UIHardware = objc_getClass("UIHardware");
8702 Method UIHardware$_playSystemSound$(class_getClassMethod($UIHardware, @selector(_playSystemSound:)));
8703 if (UIHardware$_playSystemSound$ != NULL) {
8704 _UIHardware$_playSystemSound$ = reinterpret_cast<void (*)(Class, SEL, int)>(method_getImplementation(UIHardware$_playSystemSound$));
8705 method_setImplementation(UIHardware$_playSystemSound$, reinterpret_cast<IMP>(&$UIHardware$_playSystemSound$));
8706 }
8707 /* }}} */
8708 /* Set Locale {{{ */
8709 Locale_ = CFLocaleCopyCurrent();
8710 Languages_ = [NSLocale preferredLanguages];
8711 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
8712 //NSLog(@"%@", [Languages_ description]);
8713
8714 const char *lang;
8715 if (Languages_ == nil || [Languages_ count] == 0)
8716 // XXX: consider just setting to C and then falling through?
8717 lang = NULL;
8718 else {
8719 lang = [[Languages_ objectAtIndex:0] UTF8String];
8720 setenv("LANG", lang, true);
8721 }
8722
8723 //std::setlocale(LC_ALL, lang);
8724 NSLog(@"Setting Language: %s", lang);
8725 /* }}} */
8726
8727 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
8728
8729 /* Parse Arguments {{{ */
8730 bool substrate(false);
8731
8732 if (argc != 0) {
8733 char **args(argv);
8734 int arge(1);
8735
8736 for (int argi(1); argi != argc; ++argi)
8737 if (strcmp(argv[argi], "--") == 0) {
8738 arge = argi;
8739 argv[argi] = argv[0];
8740 argv += argi;
8741 argc -= argi;
8742 break;
8743 }
8744
8745 for (int argi(1); argi != arge; ++argi)
8746 if (strcmp(args[argi], "--substrate") == 0)
8747 substrate = true;
8748 else
8749 fprintf(stderr, "unknown argument: %s\n", args[argi]);
8750 }
8751 /* }}} */
8752
8753 App_ = [[NSBundle mainBundle] bundlePath];
8754 Home_ = NSHomeDirectory();
8755 Advanced_ = YES;
8756
8757 setuid(0);
8758 setgid(0);
8759
8760 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
8761 alloc_ = alloc->method_imp;
8762 alloc->method_imp = (IMP) &Alloc_;*/
8763
8764 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
8765 dealloc_ = dealloc->method_imp;
8766 dealloc->method_imp = (IMP) &Dealloc_;*/
8767
8768 /* System Information {{{ */
8769 size_t size;
8770
8771 int maxproc;
8772 size = sizeof(maxproc);
8773 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
8774 perror("sysctlbyname(\"kern.maxproc\", ?)");
8775 else if (maxproc < 64) {
8776 maxproc = 64;
8777 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
8778 perror("sysctlbyname(\"kern.maxproc\", #)");
8779 }
8780
8781 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
8782 char *osversion = new char[size];
8783 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
8784 perror("sysctlbyname(\"kern.osversion\", ?)");
8785 else
8786 System_ = [NSString stringWithUTF8String:osversion];
8787
8788 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
8789 char *machine = new char[size];
8790 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
8791 perror("sysctlbyname(\"hw.machine\", ?)");
8792 else
8793 Machine_ = machine;
8794
8795 if (CFMutableDictionaryRef dict = IOServiceMatching("IOPlatformExpertDevice")) {
8796 if (io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault, dict)) {
8797 if (CFTypeRef serial = IORegistryEntryCreateCFProperty(service, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0)) {
8798 SerialNumber_ = [NSString stringWithString:(NSString *)serial];
8799 CFRelease(serial);
8800 }
8801
8802 if (CFTypeRef ecid = IORegistryEntrySearchCFProperty(service, kIODeviceTreePlane, CFSTR("unique-chip-id"), kCFAllocatorDefault, kIORegistryIterateRecursively)) {
8803 NSData *data((NSData *) ecid);
8804 size_t length([data length]);
8805 uint8_t bytes[length];
8806 [data getBytes:bytes];
8807 char string[length * 2 + 1];
8808 for (size_t i(0); i != length; ++i)
8809 sprintf(string + i * 2, "%.2X", bytes[length - i - 1]);
8810 ChipID_ = [NSString stringWithUTF8String:string];
8811 CFRelease(ecid);
8812 }
8813
8814 IOObjectRelease(service);
8815 }
8816 }
8817
8818 UniqueID_ = [[UIDevice currentDevice] uniqueIdentifier];
8819
8820 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
8821 Build_ = [system objectForKey:@"ProductBuildVersion"];
8822 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
8823 Product_ = [info objectForKey:@"SafariProductVersion"];
8824 Safari_ = [info objectForKey:@"CFBundleVersion"];
8825 }
8826 /* }}} */
8827 /* Load Database {{{ */
8828 _trace();
8829 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
8830 _trace();
8831 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
8832 _trace();
8833
8834 if (Metadata_ == NULL)
8835 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
8836 else {
8837 Settings_ = [Metadata_ objectForKey:@"Settings"];
8838
8839 Packages_ = [Metadata_ objectForKey:@"Packages"];
8840 Sections_ = [Metadata_ objectForKey:@"Sections"];
8841 Sources_ = [Metadata_ objectForKey:@"Sources"];
8842
8843 Token_ = [Metadata_ objectForKey:@"Token"];
8844 }
8845
8846 if (Settings_ != nil)
8847 Role_ = [Settings_ objectForKey:@"Role"];
8848
8849 if (Packages_ == nil) {
8850 Packages_ = [[[NSMutableDictionary alloc] initWithCapacity:128] autorelease];
8851 [Metadata_ setObject:Packages_ forKey:@"Packages"];
8852 }
8853
8854 if (Sections_ == nil) {
8855 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
8856 [Metadata_ setObject:Sections_ forKey:@"Sections"];
8857 }
8858
8859 if (Sources_ == nil) {
8860 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
8861 [Metadata_ setObject:Sources_ forKey:@"Sources"];
8862 }
8863 /* }}} */
8864
8865 #if RecycleWebViews
8866 Documents_ = [[[NSMutableArray alloc] initWithCapacity:4] autorelease];
8867 #endif
8868
8869 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
8870
8871 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", F_OK) == 0)
8872 dlopen("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", RTLD_LAZY | RTLD_GLOBAL);
8873 if (substrate && access("/Applications/WinterBoard.app/WinterBoard.dylib", F_OK) == 0)
8874 dlopen("/Applications/WinterBoard.app/WinterBoard.dylib", RTLD_LAZY | RTLD_GLOBAL);
8875 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
8876 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
8877
8878 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
8879
8880 if (access("/tmp/.cydia.fw", F_OK) == 0) {
8881 unlink("/tmp/.cydia.fw");
8882 goto firmware;
8883 } else if (access("/User", F_OK) != 0 || version < 2) {
8884 firmware:
8885 _trace();
8886 system("/usr/libexec/cydia/firmware.sh");
8887 _trace();
8888 }
8889
8890 _assert([[NSFileManager defaultManager]
8891 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
8892 withIntermediateDirectories:YES
8893 attributes:nil
8894 error:NULL
8895 ]);
8896
8897 if (access("/tmp/cydia.chk", F_OK) == 0) {
8898 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
8899 _assert(errno == ENOENT);
8900 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
8901 _assert(errno == ENOENT);
8902 }
8903
8904 /* APT Initialization {{{ */
8905 _assert(pkgInitConfig(*_config));
8906 _assert(pkgInitSystem(*_config, _system));
8907
8908 if (lang != NULL)
8909 _config->Set("APT::Acquire::Translation", lang);
8910 _config->Set("Acquire::http::Timeout", 15);
8911 _config->Set("Acquire::http::MaxParallel", 3);
8912 /* }}} */
8913 /* Color Choices {{{ */
8914 space_ = CGColorSpaceCreateDeviceRGB();
8915
8916 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
8917 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
8918 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
8919 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
8920 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
8921 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
8922 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
8923 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
8924 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
8925
8926 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
8927 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
8928 /* }}}*/
8929 /* UIKit Configuration {{{ */
8930 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
8931 if ($GSFontSetUseLegacyFontMetrics != NULL)
8932 $GSFontSetUseLegacyFontMetrics(YES);
8933
8934 // XXX: I have a feeling this was important
8935 //UIKeyboardDisableAutomaticAppearance();
8936 /* }}} */
8937
8938 Colon_ = UCLocalize("COLON_DELIMITED");
8939 Error_ = UCLocalize("ERROR");
8940 Warning_ = UCLocalize("WARNING");
8941
8942 _trace();
8943 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
8944
8945 CGColorSpaceRelease(space_);
8946 CFRelease(Locale_);
8947
8948 return value;
8949 }