1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2010 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
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
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.
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.
40 // XXX: wtf/FastMalloc.h... wtf?
41 #define USE_SYSTEM_MALLOC 1
43 /* #include Directives {{{ */
44 #include "UICaboodle/UCPlatform.h"
45 #include "UICaboodle/UCLocalize.h"
47 #include <objc/objc.h>
48 #include <objc/runtime.h>
50 #include <CoreGraphics/CoreGraphics.h>
51 #include <Foundation/Foundation.h>
54 #define DEPLOYMENT_TARGET_MACOSX 1
55 #define CF_BUILDING_CF 1
56 #include <CoreFoundation/CFInternal.h>
59 #include <CoreFoundation/CFPriv.h>
60 #include <CoreFoundation/CFUniChar.h>
62 #include <SystemConfiguration/SystemConfiguration.h>
64 #include <UIKit/UIKit.h>
65 #include "iPhonePrivate.h"
67 #include <IOKit/IOKitLib.h>
69 #include <WebCore/WebCoreThread.h>
76 #include <ext/stdio_filebuf.h>
80 #include <apt-pkg/acquire.h>
81 #include <apt-pkg/acquire-item.h>
82 #include <apt-pkg/algorithms.h>
83 #include <apt-pkg/cachefile.h>
84 #include <apt-pkg/clean.h>
85 #include <apt-pkg/configuration.h>
86 #include <apt-pkg/debindexfile.h>
87 #include <apt-pkg/debmetaindex.h>
88 #include <apt-pkg/error.h>
89 #include <apt-pkg/init.h>
90 #include <apt-pkg/mmap.h>
91 #include <apt-pkg/pkgrecords.h>
92 #include <apt-pkg/sha1.h>
93 #include <apt-pkg/sourcelist.h>
94 #include <apt-pkg/sptr.h>
95 #include <apt-pkg/strutl.h>
96 #include <apt-pkg/tagfile.h>
98 #include <apr-1/apr_pools.h>
100 #include <sys/types.h>
101 #include <sys/stat.h>
102 #include <sys/sysctl.h>
103 #include <sys/param.h>
104 #include <sys/mount.h>
111 #include <mach-o/nlist.h>
121 #include <ext/hash_map>
123 #include "UICaboodle/BrowserView.h"
125 #include "substrate.h"
132 #define _timestamp ({ \
134 gettimeofday(&tv, NULL); \
135 tv.tv_sec * 1000000 + tv.tv_usec; \
138 typedef std::vector<class ProfileTime *> TimeList;
148 ProfileTime(const char *name) :
152 times_.push_back(this);
155 void AddTime(uint64_t time) {
162 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
174 ProfileTimer(ProfileTime &time) :
181 time_.AddTime(_timestamp - start_);
186 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
188 std::cerr << "========" << std::endl;
191 #define _profile(name) { \
192 static ProfileTime name(#name); \
193 ProfileTimer _ ## name(name);
198 #define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
200 #define CYPoolStart() \
201 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
203 #define CYPoolEnd() \
207 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
209 void NSLogPoint(const char *fix, const CGPoint &point) {
210 NSLog(@"%s(%g,%g)", fix, point.x, point.y);
213 void NSLogRect(const char *fix, const CGRect &rect) {
214 NSLog(@"%s(%g,%g)+(%g,%g)", fix, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
217 static _finline NSString *CydiaURL(NSString *path) {
219 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = ':';
220 page[5] = '/'; page[6] = '/'; page[7] = 'c'; page[8] = 'y'; page[9] = 'd';
221 page[10] = 'i'; page[11] = 'a'; page[12] = '.'; page[13] = 's'; page[14] = 'a';
222 page[15] = 'u'; page[16] = 'r'; page[17] = 'i'; page[18] = 'k'; page[19] = '.';
223 page[20] = 'c'; page[21] = 'o'; page[22] = 'm'; page[23] = '/'; page[24] = '\0';
224 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
227 static _finline void UpdateExternalStatus(uint64_t newStatus) {
229 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
230 notify_set_state(notify_token, newStatus);
231 notify_cancel(notify_token);
233 notify_post("com.saurik.Cydia.status");
236 /* [NSObject yieldToSelector:(withObject:)] {{{*/
237 @interface NSObject (Cydia)
238 - (id) yieldToSelector:(SEL)selector withObject:(id)object;
239 - (id) yieldToSelector:(SEL)selector;
242 @implementation NSObject (Cydia)
247 - (void) _yieldToContext:(NSMutableArray *)context { _pooled
248 SEL selector(reinterpret_cast<SEL>([[context objectAtIndex:0] pointerValue]));
249 id object([[context objectAtIndex:1] nonretainedObjectValue]);
250 volatile bool &stopped(*reinterpret_cast<bool *>([[context objectAtIndex:2] pointerValue]));
252 /* XXX: deal with exceptions */
253 id value([self performSelector:selector withObject:object]);
255 NSMethodSignature *signature([self methodSignatureForSelector:selector]);
256 [context removeAllObjects];
257 if ([signature methodReturnLength] != 0 && value != nil)
258 [context addObject:value];
263 performSelectorOnMainThread:@selector(doNothing)
269 - (id) yieldToSelector:(SEL)selector withObject:(id)object {
270 /*return [self performSelector:selector withObject:object];*/
272 volatile bool stopped(false);
274 NSMutableArray *context([NSMutableArray arrayWithObjects:
275 [NSValue valueWithPointer:selector],
276 [NSValue valueWithNonretainedObject:object],
277 [NSValue valueWithPointer:const_cast<bool *>(&stopped)],
280 NSThread *thread([[[NSThread alloc]
282 selector:@selector(_yieldToContext:)
288 NSRunLoop *loop([NSRunLoop currentRunLoop]);
289 NSDate *future([NSDate distantFuture]);
291 while (!stopped && [loop runMode:NSDefaultRunLoopMode beforeDate:future]);
293 return [context count] == 0 ? nil : [context objectAtIndex:0];
296 - (id) yieldToSelector:(SEL)selector {
297 return [self yieldToSelector:selector withObject:nil];
303 /* Cydia Action Sheet {{{ */
304 @interface CYActionSheet : UIAlertView {
308 - (int) yieldToPopupAlertAnimated:(BOOL)animated;
311 @implementation CYActionSheet
313 - (id) initWithTitle:(NSString *)title buttons:(NSArray *)buttons defaultButtonIndex:(int)index {
314 if ((self = [super init])) {
315 [self setTitle:title];
316 [self setDelegate:self];
317 for (NSString *button in buttons) [self addButtonWithTitle:button];
318 [self setCancelButtonIndex:index];
322 - (void) _updateFrameForDisplay {
323 [super _updateFrameForDisplay];
324 if ([self cancelButtonIndex] == -1) {
325 NSArray *buttons = [self buttons];
326 if ([buttons count]) {
327 UIImage *background = [[buttons objectAtIndex:0] backgroundForState:0];
328 for (UIThreePartButton *button in buttons)
329 [button setBackground:background forState:0];
334 - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
335 button_ = buttonIndex + 1;
339 [self dismissWithClickedButtonIndex:-1 animated:YES];
342 - (int) yieldToPopupAlertAnimated:(BOOL)animated {
343 [self setRunsModal:YES];
352 /* NSForcedOrderingSearch doesn't work on the iPhone */
353 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
354 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
355 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
357 /* Information Dictionaries {{{ */
358 @interface NSMutableArray (Cydia)
359 - (void) addInfoDictionary:(NSDictionary *)info;
362 @implementation NSMutableArray (Cydia)
364 - (void) addInfoDictionary:(NSDictionary *)info {
365 [self addObject:info];
370 @interface NSMutableDictionary (Cydia)
371 - (void) addInfoDictionary:(NSDictionary *)info;
374 @implementation NSMutableDictionary (Cydia)
376 - (void) addInfoDictionary:(NSDictionary *)info {
377 [self setObject:info forKey:[info objectForKey:@"CFBundleIdentifier"]];
383 #define lprintf(args...) fprintf(stderr, args)
386 #define TraceLogging (1 && !ForRelease)
387 #define HistogramInsertionSort (!ForRelease ? 0 : 0)
388 #define ProfileTimes (0 && !ForRelease)
389 #define ForSaurik (0 && !ForRelease)
390 #define LogBrowser (0 && !ForRelease)
391 #define TrackResize (0 && !ForRelease)
392 #define ManualRefresh (1 && !ForRelease)
393 #define ShowInternals (0 && !ForRelease)
394 #define IgnoreInstall (0 && !ForRelease)
395 #define AlwaysReload (0 && !ForRelease)
399 #define _trace(args...)
404 #define _profile(name) {
407 #define PrintTimes() do {} while (false)
411 typedef uint32_t (*SKRadixFunction)(id, void *);
413 @interface NSMutableArray (Radix)
414 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument;
422 @implementation NSMutableArray (Radix)
424 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument {
425 size_t count([self count]);
426 struct RadixItem_ *swap(new RadixItem_[count * 2]);
428 for (size_t i(0); i != count; ++i) {
429 RadixItem_ &item(swap[i]);
432 id object([self objectAtIndex:i]);
433 item.key = function(object, argument);
436 struct RadixItem_ *lhs(swap), *rhs(swap + count);
438 static const size_t width = 32;
439 static const size_t bits = 11;
440 static const size_t slots = 1 << bits;
441 static const size_t passes = (width + (bits - 1)) / bits;
443 size_t *hist(new size_t[slots]);
445 for (size_t pass(0); pass != passes; ++pass) {
446 memset(hist, 0, sizeof(size_t) * slots);
448 for (size_t i(0); i != count; ++i) {
449 uint32_t key(lhs[i].key);
451 key &= _not(uint32_t) >> width - bits;
456 for (size_t i(0); i != slots; ++i) {
457 size_t local(offset);
462 for (size_t i(0); i != count; ++i) {
463 uint32_t key(lhs[i].key);
465 key &= _not(uint32_t) >> width - bits;
466 rhs[hist[key]++] = lhs[i];
469 RadixItem_ *tmp(lhs);
476 const void **values(new const void *[count]);
477 for (size_t i(0); i != count; ++i)
478 values[i] = [self objectAtIndex:lhs[i].index];
479 CFArrayReplaceValues((CFMutableArrayRef) self, CFRangeMake(0, count), values, count);
487 /* Insertion Sort {{{ */
489 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
490 const char *ptr = (const char *)list;
492 CFIndex half = count / 2;
493 const char *probe = ptr + elementSize * half;
494 CFComparisonResult cr = comparator(element, probe, context);
495 if (0 == cr) return (probe - (const char *)list) / elementSize;
496 ptr = (cr < 0) ? ptr : probe + elementSize;
497 count = (cr < 0) ? half : (half + (count & 1) - 1);
499 return (ptr - (const char *)list) / elementSize;
502 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
503 const char *ptr = (const char *)list;
505 CFIndex half = count / 2;
506 const char *probe = ptr + elementSize * half;
507 CFComparisonResult cr = comparator(element, probe, context);
508 if (0 == cr) return (probe - (const char *)list) / elementSize;
509 ptr = (cr < 0) ? ptr : probe + elementSize;
510 count = (cr < 0) ? half : (half + (count & 1) - 1);
512 return (ptr - (const char *)list) / elementSize;
515 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
516 if (range.length == 0)
518 const void **values(new const void *[range.length]);
519 CFArrayGetValues(array, range, values);
521 #if HistogramInsertionSort > 0
522 uint32_t total(0), *offsets(new uint32_t[range.length]);
525 for (CFIndex index(1); index != range.length; ++index) {
526 const void *value(values[index]);
527 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
528 CFIndex correct(index);
529 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
530 #if HistogramInsertionSort > 1
531 NSLog(@"%@ < %@", value, values[correct - 1]);
536 if (correct != index) {
537 size_t offset(index - correct);
538 #if HistogramInsertionSort
542 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
544 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
545 values[correct] = value;
549 CFArrayReplaceValues(array, range, values, range.length);
552 #if HistogramInsertionSort > 0
553 for (CFIndex index(0); index != range.length; ++index)
554 if (offsets[index] != 0)
555 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
556 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
563 /* Apple Bug Fixes {{{ */
564 @implementation UIWebDocumentView (Cydia)
566 - (void) _setScrollerOffset:(CGPoint)offset {
567 UIScroller *scroller([self _scroller]);
569 CGSize size([scroller contentSize]);
570 CGSize bounds([scroller bounds].size);
573 max.x = size.width - bounds.width;
574 max.y = size.height - bounds.height;
582 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
583 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
585 [scroller setOffset:offset];
591 @implementation WebScriptObject (NSFastEnumeration)
593 - (NSUInteger) countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)objects count:(NSUInteger)count {
594 size_t length([self count] - state->state);
597 else if (length > count)
599 for (size_t i(0); i != length; ++i)
600 objects[i] = [self objectAtIndex:state->state++];
601 state->itemsPtr = objects;
602 state->mutationsPtr = (unsigned long *) self;
608 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
609 size_t length([self length] - state->state);
612 else if (length > count)
614 for (size_t i(0); i != length; ++i)
615 objects[i] = [self item:state->state++];
616 state->itemsPtr = objects;
617 state->mutationsPtr = (unsigned long *) self;
621 /* Cydia NSString Additions {{{ */
622 @interface NSString (Cydia)
623 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length;
624 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool;
625 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length;
626 - (NSComparisonResult) compareByPath:(NSString *)other;
627 - (NSString *) stringByCachingURLWithCurrentCDN;
628 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
631 @implementation NSString (Cydia)
633 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length {
634 return [[[NSString alloc] initWithBytesNoCopy:const_cast<char *>(bytes) length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
637 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool {
638 char *data(reinterpret_cast<char *>(apr_palloc(pool, length)));
639 memcpy(data, bytes, length);
640 return [[[NSString allocWithZone:zone] initWithBytesNoCopy:data length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
643 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length {
644 return [[[NSString alloc] initWithBytes:bytes length:length encoding:NSUTF8StringEncoding] autorelease];
647 - (NSComparisonResult) compareByPath:(NSString *)other {
648 NSString *prefix = [self commonPrefixWithString:other options:0];
649 size_t length = [prefix length];
651 NSRange lrange = NSMakeRange(length, [self length] - length);
652 NSRange rrange = NSMakeRange(length, [other length] - length);
654 lrange = [self rangeOfString:@"/" options:0 range:lrange];
655 rrange = [other rangeOfString:@"/" options:0 range:rrange];
657 NSComparisonResult value;
659 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
660 value = NSOrderedSame;
661 else if (lrange.location == NSNotFound)
662 value = NSOrderedAscending;
663 else if (rrange.location == NSNotFound)
664 value = NSOrderedDescending;
666 value = NSOrderedSame;
668 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
669 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
670 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
671 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
673 NSComparisonResult result = [lpath compare:rpath];
674 return result == NSOrderedSame ? value : result;
677 - (NSString *) stringByCachingURLWithCurrentCDN {
679 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
680 withString:@"://cache.cydia.saurik.com/"
684 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
685 return [(id)CFURLCreateStringByAddingPercentEscapes(
690 kCFStringEncodingUTF8
697 /* C++ NSString Wrapper Cache {{{ */
698 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
699 return size == 0 ? NULL :
700 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
701 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
704 static _finline CFStringRef CYStringCreate(const char *data) {
705 return CYStringCreate(data, strlen(data));
714 _finline void clear_() {
715 if (cache_ != NULL) {
722 _finline bool empty() const {
726 _finline size_t size() const {
730 _finline char *data() const {
734 _finline void clear() {
739 _finline CYString() :
746 _finline ~CYString() {
750 void operator =(const CYString &rhs) {
754 if (rhs.cache_ == nil)
757 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
760 void set(apr_pool_t *pool, const char *data, size_t size) {
766 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size + 1)));
767 memcpy(temp, data, size);
774 _finline void set(apr_pool_t *pool, const char *data) {
775 set(pool, data, data == NULL ? 0 : strlen(data));
778 _finline void set(apr_pool_t *pool, const std::string &rhs) {
779 set(pool, rhs.data(), rhs.size());
782 bool operator ==(const CYString &rhs) const {
783 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
786 _finline operator CFStringRef() {
788 cache_ = CYStringCreate(data_, size_);
792 _finline operator id() {
793 return (NSString *) static_cast<CFStringRef>(*this);
797 /* C++ NSString Algorithm Adapters {{{ */
799 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
802 struct NSStringMapHash :
803 std::unary_function<NSString *, size_t>
805 _finline size_t operator ()(NSString *value) const {
806 return CFStringHashNSString((CFStringRef) value);
810 struct NSStringMapLess :
811 std::binary_function<NSString *, NSString *, bool>
813 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
814 return [lhs compare:rhs] == NSOrderedAscending;
818 struct NSStringMapEqual :
819 std::binary_function<NSString *, NSString *, bool>
821 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
822 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
823 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
824 //[lhs isEqualToString:rhs];
829 /* Perl-Compatible RegEx {{{ */
839 Pcre(const char *regex) :
844 code_ = pcre_compile(regex, 0, &error, &offset, NULL);
847 lprintf("%d:%s\n", offset, error);
851 pcre_fullinfo(code_, study_, PCRE_INFO_CAPTURECOUNT, &capture_);
852 matches_ = new int[(capture_ + 1) * 3];
860 NSString *operator [](size_t match) {
861 return [NSString stringWithUTF8Bytes:(data_ + matches_[match * 2]) length:(matches_[match * 2 + 1] - matches_[match * 2])];
864 bool operator ()(NSString *data) {
865 // XXX: length is for characters, not for bytes
866 return operator ()([data UTF8String], [data length]);
869 bool operator ()(const char *data, size_t size) {
871 return pcre_exec(code_, study_, data, size, 0, 0, matches_, (capture_ + 1) * 3) >= 0;
875 /* Mime Addresses {{{ */
876 @interface Address : NSObject {
882 - (NSString *) address;
884 - (void) setAddress:(NSString *)address;
886 + (Address *) addressWithString:(NSString *)string;
887 - (Address *) initWithString:(NSString *)string;
890 @implementation Address
899 - (NSString *) name {
903 - (NSString *) address {
907 - (void) setAddress:(NSString *)address {
909 [address_ autorelease];
913 address_ = [address retain];
916 + (Address *) addressWithString:(NSString *)string {
917 return [[[Address alloc] initWithString:string] autorelease];
920 + (NSArray *) _attributeKeys {
921 return [NSArray arrayWithObjects:@"address", @"name", nil];
924 - (NSArray *) attributeKeys {
925 return [[self class] _attributeKeys];
928 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
929 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
932 - (Address *) initWithString:(NSString *)string {
933 if ((self = [super init]) != nil) {
934 const char *data = [string UTF8String];
935 size_t size = [string length];
937 static Pcre address_r("^\"?(.*)\"? <([^>]*)>$");
939 if (address_r(data, size)) {
940 name_ = [address_r[1] retain];
941 address_ = [address_r[2] retain];
943 name_ = [string retain];
951 /* CoreGraphics Primitives {{{ */
962 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
965 Set(space, red, green, blue, alpha);
970 CGColorRelease(color_);
977 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
979 float color[] = {red, green, blue, alpha};
980 color_ = CGColorCreate(space, (CGFloat *) color);
983 operator CGColorRef() {
989 /* Random Global Variables {{{ */
990 static const int PulseInterval_ = 50000;
991 static const int ButtonBarWidth_ = 60;
992 static const int ButtonBarHeight_ = 48;
993 static const float KeyboardTime_ = 0.3f;
996 static NSArray *Finishes_;
998 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
999 #define NotifyConfig_ "/etc/notify.conf"
1001 static bool Queuing_;
1003 static CYColor Blue_;
1004 static CYColor Blueish_;
1005 static CYColor Black_;
1006 static CYColor Off_;
1007 static CYColor White_;
1008 static CYColor Gray_;
1009 static CYColor Green_;
1010 static CYColor Purple_;
1011 static CYColor Purplish_;
1013 static UIColor *InstallingColor_;
1014 static UIColor *RemovingColor_;
1016 static NSString *App_;
1017 static NSString *Home_;
1019 static BOOL Advanced_;
1020 static BOOL Ignored_;
1022 static UIFont *Font12_;
1023 static UIFont *Font12Bold_;
1024 static UIFont *Font14_;
1025 static UIFont *Font18Bold_;
1026 static UIFont *Font22Bold_;
1028 static const char *Machine_ = NULL;
1029 static NSString *System_ = nil;
1030 static NSString *SerialNumber_ = nil;
1031 static NSString *ChipID_ = nil;
1032 static NSString *Token_ = nil;
1033 static NSString *UniqueID_ = nil;
1034 static NSString *PLMN_ = nil;
1035 static NSString *Build_ = nil;
1036 static NSString *Product_ = nil;
1037 static NSString *Safari_ = nil;
1039 static CFLocaleRef Locale_;
1040 static NSArray *Languages_;
1041 static CGColorSpaceRef space_;
1043 static NSDictionary *SectionMap_;
1044 static NSMutableDictionary *Metadata_;
1045 static _transient NSMutableDictionary *Settings_;
1046 static _transient NSString *Role_;
1047 static _transient NSMutableDictionary *Packages_;
1048 static _transient NSMutableDictionary *Sections_;
1049 static _transient NSMutableDictionary *Sources_;
1050 static bool Changed_;
1051 static NSDate *now_;
1053 static bool IsWildcat_;
1056 /* Display Helpers {{{ */
1057 inline float Interpolate(float begin, float end, float fraction) {
1058 return (end - begin) * fraction + begin;
1061 /* XXX: localize this! */
1062 NSString *SizeString(double size) {
1063 bool negative = size < 0;
1068 while (size > 1024) {
1073 static const char *powers_[] = {"B", "kB", "MB", "GB"};
1075 return [NSString stringWithFormat:@"%s%.1f %s", (negative ? "-" : ""), size, powers_[power]];
1078 const char *StripVersion_(const char *version) {
1079 const char *colon(strchr(version, ':'));
1081 version = colon + 1;
1085 CFStringRef StripVersion(const char *version) {
1086 const char *colon(strchr(version, ':'));
1088 version = colon + 1;
1089 return CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(version), strlen(version), kCFStringEncodingUTF8, NO);
1091 return CYStringCreate(version);
1094 NSString *LocalizeSection(NSString *section) {
1095 static Pcre title_r("^(.*?) \\((.*)\\)$");
1096 if (title_r(section)) {
1097 NSString *parent(title_r[1]);
1098 NSString *child(title_r[2]);
1100 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
1101 LocalizeSection(parent),
1102 LocalizeSection(child)
1106 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
1109 NSString *Simplify(NSString *title) {
1110 const char *data = [title UTF8String];
1111 size_t size = [title length];
1113 static Pcre square_r("^\\[(.*)\\]$");
1114 if (square_r(data, size))
1115 return Simplify(square_r[1]);
1117 static Pcre paren_r("^\\((.*)\\)$");
1118 if (paren_r(data, size))
1119 return Simplify(paren_r[1]);
1121 static Pcre title_r("^(.*?) \\((.*)\\)$");
1122 if (title_r(data, size))
1123 return Simplify(title_r[1]);
1129 NSString *GetLastUpdate() {
1130 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
1133 return UCLocalize("NEVER_OR_UNKNOWN");
1135 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
1136 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
1138 CFRelease(formatter);
1140 return [(NSString *) formatted autorelease];
1143 bool isSectionVisible(NSString *section) {
1144 NSDictionary *metadata([Sections_ objectForKey:section]);
1145 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
1146 return hidden == nil || ![hidden boolValue];
1151 /* Delegate Prototypes {{{ */
1155 @interface NSObject (ProgressDelegate)
1158 @protocol ProgressDelegate
1159 - (void) setProgressError:(NSString *)error withTitle:(NSString *)id;
1160 - (void) setProgressTitle:(NSString *)title;
1161 - (void) setProgressPercent:(float)percent;
1162 - (void) startProgress;
1163 - (void) addProgressOutput:(NSString *)output;
1164 - (bool) isCancelling:(size_t)received;
1167 @protocol ConfigurationDelegate
1168 - (void) repairWithSelector:(SEL)selector;
1169 - (void) setConfigurationData:(NSString *)data;
1172 @class PackageController;
1174 @protocol CydiaDelegate
1175 - (void) setPackageController:(PackageController *)view;
1176 - (void) clearPackage:(Package *)package;
1177 - (void) installPackage:(Package *)package;
1178 - (void) installPackages:(NSArray *)packages;
1179 - (void) removePackage:(Package *)package;
1180 - (void) beginUpdate;
1182 - (void) distUpgrade;
1184 - (void) updateData;
1186 - (void) showSettings;
1187 - (UIProgressHUD *) addProgressHUD;
1188 - (void) removeProgressHUD:(UIProgressHUD *)hud;
1189 - (CYViewController *) pageForPackage:(NSString *)name;
1190 - (PackageController *) packageController;
1191 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
1195 /* Status Delegation {{{ */
1197 public pkgAcquireStatus
1200 _transient NSObject<ProgressDelegate> *delegate_;
1208 void setDelegate(id delegate) {
1209 delegate_ = delegate;
1212 NSObject<ProgressDelegate> *getDelegate() const {
1216 virtual bool MediaChange(std::string media, std::string drive) {
1220 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
1223 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1224 //NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1225 [delegate_ setProgressTitle:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), [NSString stringWithUTF8String:item.ShortDesc.c_str()]]];
1228 virtual void Done(pkgAcquire::ItemDesc &item) {
1231 virtual void Fail(pkgAcquire::ItemDesc &item) {
1233 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1234 item.Owner->Status == pkgAcquire::Item::StatDone
1238 std::string &error(item.Owner->ErrorText);
1242 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1243 NSArray *fields([description componentsSeparatedByString:@" "]);
1244 NSString *source([fields count] == 0 ? nil : [fields objectAtIndex:0]);
1246 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
1247 withObject:[NSArray arrayWithObjects:
1248 [NSString stringWithUTF8String:error.c_str()],
1255 virtual bool Pulse(pkgAcquire *Owner) {
1256 bool value = pkgAcquireStatus::Pulse(Owner);
1259 double(CurrentBytes + CurrentItems) /
1260 double(TotalBytes + TotalItems)
1263 [delegate_ setProgressPercent:percent];
1264 return [delegate_ isCancelling:CurrentBytes] ? false : value;
1267 virtual void Start() {
1268 [delegate_ startProgress];
1271 virtual void Stop() {
1275 /* Progress Delegation {{{ */
1280 _transient id<ProgressDelegate> delegate_;
1284 virtual void Update() {
1285 /*if (abs(Percent - percent_) > 2)
1286 //NSLog(@"%s:%s:%f", Op.c_str(), SubOp.c_str(), Percent);
1290 /*[delegate_ setProgressTitle:[NSString stringWithUTF8String:Op.c_str()]];
1291 [delegate_ setProgressPercent:(Percent / 100)];*/
1301 void setDelegate(id delegate) {
1302 delegate_ = delegate;
1305 id getDelegate() const {
1309 virtual void Done() {
1311 //[delegate_ setProgressPercent:1];
1316 /* Database Interface {{{ */
1317 typedef std::map< unsigned long, _H<Source> > SourceMap;
1319 @interface Database : NSObject {
1325 pkgCacheFile cache_;
1326 pkgDepCache::Policy *policy_;
1327 pkgRecords *records_;
1328 pkgProblemResolver *resolver_;
1329 pkgAcquire *fetcher_;
1331 SPtr<pkgPackageManager> manager_;
1332 pkgSourceList *list_;
1335 CFMutableArrayRef packages_;
1337 _transient NSObject<ConfigurationDelegate, ProgressDelegate> *delegate_;
1346 + (Database *) sharedInstance;
1349 - (void) _readCydia:(NSNumber *)fd;
1350 - (void) _readStatus:(NSNumber *)fd;
1351 - (void) _readOutput:(NSNumber *)fd;
1355 - (Package *) packageWithName:(NSString *)name;
1357 - (pkgCacheFile &) cache;
1358 - (pkgDepCache::Policy *) policy;
1359 - (pkgRecords *) records;
1360 - (pkgProblemResolver *) resolver;
1361 - (pkgAcquire &) fetcher;
1362 - (pkgSourceList &) list;
1363 - (NSArray *) packages;
1364 - (NSArray *) sources;
1365 - (void) reloadData;
1373 - (void) setVisible;
1375 - (void) updateWithStatus:(Status &)status;
1377 - (void) setDelegate:(id)delegate;
1378 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1381 /* Delegate Helpers {{{ */
1382 @implementation NSObject (ProgressDelegate)
1384 - (void) _setProgressErrorPackage:(NSArray *)args {
1385 [self performSelector:@selector(setProgressError:forPackage:)
1386 withObject:[args objectAtIndex:0]
1387 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1391 - (void) _setProgressErrorTitle:(NSArray *)args {
1392 [self performSelector:@selector(setProgressError:withTitle:)
1393 withObject:[args objectAtIndex:0]
1394 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1398 - (void) _setProgressError:(NSString *)error withTitle:(NSString *)title {
1399 [self performSelectorOnMainThread:@selector(_setProgressErrorTitle:)
1400 withObject:[NSArray arrayWithObjects:error, title, nil]
1405 - (void) setProgressError:(NSString *)error forPackage:(NSString *)id {
1406 Package *package = id == nil ? nil : [[Database sharedInstance] packageWithName:id];
1408 [self performSelector:@selector(setProgressError:withTitle:)
1410 withObject:(package == nil ? id : [package name])
1417 /* Source Class {{{ */
1418 @interface Source : NSObject {
1419 CYString depiction_;
1420 CYString description_;
1426 CYString distribution_;
1431 NSString *authority_;
1433 CYString defaultIcon_;
1435 NSDictionary *record_;
1439 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool;
1441 - (NSComparisonResult) compareByNameAndType:(Source *)source;
1443 - (NSString *) depictionForPackage:(NSString *)package;
1444 - (NSString *) supportForPackage:(NSString *)package;
1446 - (NSDictionary *) record;
1450 - (NSString *) distribution;
1451 - (NSString *) type;
1453 - (NSString *) host;
1455 - (NSString *) name;
1456 - (NSString *) description;
1457 - (NSString *) label;
1458 - (NSString *) origin;
1459 - (NSString *) version;
1461 - (NSString *) defaultIcon;
1465 @implementation Source
1469 distribution_.clear();
1472 description_.clear();
1478 defaultIcon_.clear();
1480 if (record_ != nil) {
1490 if (authority_ != nil) {
1491 [authority_ release];
1501 + (NSArray *) _attributeKeys {
1502 return [NSArray arrayWithObjects:@"description", @"distribution", @"host", @"key", @"label", @"name", @"origin", @"trusted", @"type", @"uri", @"version", nil];
1505 - (NSArray *) attributeKeys {
1506 return [[self class] _attributeKeys];
1509 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1510 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1513 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1516 trusted_ = index->IsTrusted();
1518 uri_.set(pool, index->GetURI());
1519 distribution_.set(pool, index->GetDist());
1520 type_.set(pool, index->GetType());
1522 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1523 if (dindex != NULL) {
1525 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1528 pkgTagFile tags(&fd);
1530 pkgTagSection section;
1537 {"default-icon", &defaultIcon_},
1538 {"depiction", &depiction_},
1539 {"description", &description_},
1541 {"origin", &origin_},
1542 {"support", &support_},
1543 {"version", &version_},
1546 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1547 const char *start, *end;
1549 if (section.Find(names[i].name_, start, end)) {
1550 CYString &value(*names[i].value_);
1551 value.set(pool, start, end - start);
1557 record_ = [Sources_ objectForKey:[self key]];
1559 record_ = [record_ retain];
1561 NSURL *url([NSURL URLWithString:uri_]);
1565 host_ = [[host_ lowercaseString] retain];
1570 authority_ = [url path];
1572 if (authority_ != nil)
1573 authority_ = [authority_ retain];
1576 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1577 if ((self = [super init]) != nil) {
1578 [self setMetaIndex:index inPool:pool];
1582 - (NSComparisonResult) compareByNameAndType:(Source *)source {
1583 NSDictionary *lhr = [self record];
1584 NSDictionary *rhr = [source record];
1587 return lhr == nil ? NSOrderedDescending : NSOrderedAscending;
1589 NSString *lhs = [self name];
1590 NSString *rhs = [source name];
1592 if ([lhs length] != 0 && [rhs length] != 0) {
1593 unichar lhc = [lhs characterAtIndex:0];
1594 unichar rhc = [rhs characterAtIndex:0];
1596 if (isalpha(lhc) && !isalpha(rhc))
1597 return NSOrderedAscending;
1598 else if (!isalpha(lhc) && isalpha(rhc))
1599 return NSOrderedDescending;
1602 return [lhs compare:rhs options:LaxCompareOptions_];
1605 - (NSString *) depictionForPackage:(NSString *)package {
1606 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1609 - (NSString *) supportForPackage:(NSString *)package {
1610 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1613 - (NSDictionary *) record {
1621 - (NSString *) uri {
1625 - (NSString *) distribution {
1626 return distribution_;
1629 - (NSString *) type {
1633 - (NSString *) key {
1634 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1637 - (NSString *) host {
1641 - (NSString *) name {
1642 return origin_.empty() ? authority_ : origin_;
1645 - (NSString *) description {
1646 return description_;
1649 - (NSString *) label {
1650 return label_.empty() ? authority_ : label_;
1653 - (NSString *) origin {
1657 - (NSString *) version {
1661 - (NSString *) defaultIcon {
1662 return defaultIcon_;
1667 /* Relationship Class {{{ */
1668 @interface Relationship : NSObject {
1673 - (NSString *) type;
1675 - (NSString *) name;
1679 @implementation Relationship
1687 - (NSString *) type {
1695 - (NSString *) name {
1702 /* Package Class {{{ */
1703 @interface Package : NSObject {
1707 pkgCache::VerIterator version_;
1708 pkgCache::PkgIterator iterator_;
1709 _transient Database *database_;
1710 pkgCache::VerFileIterator file_;
1717 NSString *section$_;
1724 CYString installed_;
1730 CYString depiction_;
1741 NSMutableArray *tags_;
1744 NSArray *relationships_;
1746 NSMutableDictionary *metadata_;
1747 _transient NSDate *firstSeen_;
1748 _transient NSDate *lastSeen_;
1752 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1753 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1755 - (pkgCache::PkgIterator) iterator;
1758 - (NSString *) section;
1759 - (NSString *) simpleSection;
1761 - (NSString *) longSection;
1762 - (NSString *) shortSection;
1766 - (Address *) maintainer;
1768 - (NSString *) longDescription;
1769 - (NSString *) shortDescription;
1772 - (NSMutableDictionary *) metadata;
1774 - (BOOL) subscribed;
1777 - (NSString *) latest;
1778 - (NSString *) installed;
1779 - (BOOL) uninstalled;
1782 - (BOOL) upgradableAndEssential:(BOOL)essential;
1785 - (BOOL) unfiltered;
1789 - (BOOL) halfConfigured;
1790 - (BOOL) halfInstalled;
1792 - (NSString *) mode;
1794 - (void) setVisible;
1797 - (NSString *) name;
1799 - (NSString *) homepage;
1800 - (NSString *) depiction;
1801 - (Address *) author;
1803 - (NSString *) support;
1805 - (NSArray *) files;
1806 - (NSArray *) relationships;
1807 - (NSArray *) warnings;
1808 - (NSArray *) applications;
1810 - (Source *) source;
1811 - (NSString *) role;
1813 - (BOOL) matches:(NSString *)text;
1815 - (bool) hasSupportingRole;
1816 - (BOOL) hasTag:(NSString *)tag;
1817 - (NSString *) primaryPurpose;
1818 - (NSArray *) purposes;
1819 - (bool) isCommercial;
1821 - (CYString &) cyname;
1823 - (uint32_t) compareBySection:(NSArray *)sections;
1825 - (uint32_t) compareForChanges;
1830 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search;
1831 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1832 - (bool) isInstalledAndVisible:(NSNumber *)number;
1833 - (bool) isVisibleInSection:(NSString *)section;
1834 - (bool) isVisibleInSource:(Source *)source;
1838 uint32_t PackageChangesRadix(Package *self, void *) {
1843 uint32_t timestamp : 30;
1844 uint32_t ignored : 1;
1845 uint32_t upgradable : 1;
1849 bool upgradable([self upgradableAndEssential:YES]);
1850 value.bits.upgradable = upgradable ? 1 : 0;
1853 value.bits.timestamp = 0;
1854 value.bits.ignored = [self ignored] ? 0 : 1;
1855 value.bits.upgradable = 1;
1857 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
1858 value.bits.ignored = 0;
1859 value.bits.upgradable = 0;
1862 return _not(uint32_t) - value.key;
1865 _finline static void Stifle(uint8_t &value) {
1868 uint32_t PackagePrefixRadix(Package *self, void *context) {
1869 size_t offset(reinterpret_cast<size_t>(context));
1870 CYString &name([self cyname]);
1872 size_t size(name.size());
1875 char *text(name.data());
1878 if (!isdigit(text[0]))
1882 while (size != digits && isdigit(text[digits]))
1892 if (offset == 0 && zeros != 0) {
1893 memset(data, '0', zeros);
1894 memcpy(data + zeros, text, 4 - zeros);
1896 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
1897 if (size <= offset - zeros)
1900 text += offset - zeros;
1901 size -= offset - zeros;
1904 memcpy(data, text, 4);
1906 memcpy(data, text, size);
1907 memset(data + size, 0, 4 - size);
1910 for (size_t i(0); i != 4; ++i)
1911 if (isalpha(data[i]))
1919 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
1921 /* XXX: ntohl may be more honest */
1922 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
1925 CYString &(*PackageName)(Package *self, SEL sel);
1927 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
1928 _profile(PackageNameCompare)
1929 CYString &lhi(PackageName(lhs, @selector(cyname)));
1930 CYString &rhi(PackageName(rhs, @selector(cyname)));
1931 CFStringRef lhn(lhi), rhn(rhi);
1934 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
1935 else if (rhn == NULL)
1936 return NSOrderedDescending;
1938 _profile(PackageNameCompare$NumbersLast)
1939 if (!lhi.empty() && !rhi.empty()) {
1940 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
1941 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
1942 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
1943 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
1944 return lha ? NSOrderedAscending : NSOrderedDescending;
1948 CFIndex length = CFStringGetLength(lhn);
1950 _profile(PackageNameCompare$Compare)
1951 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
1956 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
1957 return PackageNameCompare(*lhs, *rhs, context);
1960 struct PackageNameOrdering :
1961 std::binary_function<Package *, Package *, bool>
1963 _finline bool operator ()(Package *lhs, Package *rhs) const {
1964 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
1968 @implementation Package
1970 - (NSString *) description {
1971 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
1977 if (section$_ != nil)
1978 [section$_ release];
1983 if (sponsor$_ != nil)
1984 [sponsor$_ release];
1985 if (author$_ != nil)
1992 if (relationships_ != nil)
1993 [relationships_ release];
1994 if (metadata_ != nil)
1995 [metadata_ release];
2000 + (NSString *) webScriptNameForSelector:(SEL)selector {
2001 if (selector == @selector(hasTag:))
2007 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2008 return [self webScriptNameForSelector:selector] == nil;
2011 + (NSArray *) _attributeKeys {
2012 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];
2015 - (NSArray *) attributeKeys {
2016 return [[self class] _attributeKeys];
2019 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2020 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2030 _profile(Package$parse)
2031 pkgRecords::Parser *parser;
2033 _profile(Package$parse$Lookup)
2034 parser = &[database_ records]->Lookup(file_);
2039 _profile(Package$parse$Find)
2045 {"depiction", &depiction_},
2046 {"homepage", &homepage_},
2047 {"website", &website},
2049 {"support", &support_},
2050 {"sponsor", &sponsor_},
2051 {"author", &author_},
2054 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2055 const char *start, *end;
2057 if (parser->Find(names[i].name_, start, end)) {
2058 CYString &value(*names[i].value_);
2059 _profile(Package$parse$Value)
2060 value.set(pool_, start, end - start);
2066 _profile(Package$parse$Tagline)
2067 const char *start, *end;
2068 if (parser->ShortDesc(start, end)) {
2069 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2072 while (stop != start && stop[-1] == '\r')
2074 tagline_.set(pool_, start, stop - start);
2078 _profile(Package$parse$Retain)
2079 if (homepage_.empty())
2080 homepage_ = website;
2081 if (homepage_ == depiction_)
2087 - (void) setVisible {
2088 visible_ = required_ && [self unfiltered];
2091 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2092 if ((self = [super init]) != nil) {
2093 _profile(Package$initWithVersion)
2094 era_ = [database era];
2099 _profile(Package$initWithVersion$ParentPkg)
2100 iterator_ = version.ParentPkg();
2103 database_ = database;
2105 _profile(Package$initWithVersion$Latest)
2106 latest_ = (NSString *) StripVersion(version_.VerStr());
2109 pkgCache::VerIterator current;
2110 _profile(Package$initWithVersion$Versions)
2111 current = iterator_.CurrentVer();
2113 installed_.set(pool_, StripVersion_(current.VerStr()));
2115 if (!version_.end())
2116 file_ = version_.FileList();
2118 pkgCache &cache([database_ cache]);
2119 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2123 _profile(Package$initWithVersion$Name)
2124 id_.set(pool_, iterator_.Name());
2125 name_.set(pool, iterator_.Display());
2128 _profile(Package$initWithVersion$lowercaseString)
2129 char *data(id_.data());
2130 for (size_t i(0), e(id_.size()); i != e; ++i)
2131 // XXX: do not use tolower() as this is not locale-specific? :(
2136 _profile(Package$initWithVersion$Source)
2137 source_ = [database_ getSource:file_.File()];
2146 _profile(Package$initWithVersion$Tags)
2147 pkgCache::TagIterator tag(iterator_.TagList());
2149 tags_ = [[NSMutableArray alloc] initWithCapacity:8];
2151 const char *name(tag.Name());
2152 [tags_ addObject:(NSString *)CYStringCreate(name)];
2153 if (role_ == nil && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/)
2154 role_ = (NSString *) CYStringCreate(name + 6);
2155 if (required_ && strncmp(name, "require::", 9) == 0 && (
2160 } while (!tag.end());
2164 bool changed(false);
2166 _profile(Package$initWithVersion$Metadata)
2167 metadata_ = [Packages_ objectForKey:id_];
2169 if (metadata_ == nil) {
2172 metadata_ = [[NSMutableDictionary dictionaryWithObjectsAndKeys:
2173 firstSeen_, @"FirstSeen",
2174 latest_, @"LastVersion",
2179 firstSeen_ = [metadata_ objectForKey:@"FirstSeen"];
2180 lastSeen_ = [metadata_ objectForKey:@"LastSeen"];
2182 if (NSNumber *subscribed = [metadata_ objectForKey:@"IsSubscribed"])
2183 subscribed_ = [subscribed boolValue];
2185 NSString *version([metadata_ objectForKey:@"LastVersion"]);
2187 if (firstSeen_ == nil) {
2188 firstSeen_ = lastSeen_ == nil ? now_ : lastSeen_;
2189 [metadata_ setObject:firstSeen_ forKey:@"FirstSeen"];
2193 if (version == nil) {
2194 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2196 } else if (![version isEqualToString:latest_]) {
2197 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2199 [metadata_ setObject:lastSeen_ forKey:@"LastSeen"];
2204 metadata_ = [metadata_ retain];
2207 [Packages_ setObject:metadata_ forKey:id_];
2212 _profile(Package$initWithVersion$Section)
2213 section_.set(pool_, iterator_.Section());
2216 _profile(Package$initWithVersion$hasTag)
2217 obsolete_ = [self hasTag:@"cydia::obsolete"];
2218 essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"];
2221 _profile(Package$initWithVersion$setVisible)
2227 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2228 pkgCache::VerIterator version;
2230 _profile(Package$packageWithIterator$GetCandidateVer)
2231 version = [database policy]->GetCandidateVer(iterator);
2237 return [[[Package alloc]
2238 initWithVersion:version
2245 - (pkgCache::PkgIterator) iterator {
2249 - (NSString *) section {
2250 if (section$_ == nil) {
2251 if (section_.empty())
2254 std::replace(section_.data(), section_.data() + section_.size(), ' ', '_');
2255 NSString *name(section_);
2258 if (NSDictionary *value = [SectionMap_ objectForKey:name])
2259 if (NSString *rename = [value objectForKey:@"Rename"]) {
2264 section$_ = [[name stringByReplacingCharacter:'_' withCharacter:' '] retain];
2268 - (NSString *) simpleSection {
2269 if (NSString *section = [self section])
2270 return Simplify(section);
2275 - (NSString *) longSection {
2276 return LocalizeSection([self section]);
2279 - (NSString *) shortSection {
2280 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2283 - (NSString *) uri {
2286 pkgIndexFile *index;
2287 pkgCache::PkgFileIterator file(file_.File());
2288 if (![database_ list].FindIndex(file, index))
2290 return [NSString stringWithUTF8String:iterator_->Path];
2291 //return [NSString stringWithUTF8String:file.Site()];
2292 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2296 - (Address *) maintainer {
2299 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2300 const std::string &maintainer(parser->Maintainer());
2301 return maintainer.empty() ? nil : [Address addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2305 return version_.end() ? 0 : version_->InstalledSize;
2308 - (NSString *) longDescription {
2309 @synchronized (database_) {
2310 if ([database_ era] != era_ || file_.end())
2313 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2314 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2316 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2317 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2318 if ([lines count] < 2)
2321 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2322 for (size_t i(1), e([lines count]); i != e; ++i) {
2323 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2324 [trimmed addObject:trim];
2327 return [trimmed componentsJoinedByString:@"\n"];
2330 - (NSString *) shortDescription {
2335 _profile(Package$index)
2336 CFStringRef name((CFStringRef) [self name]);
2337 if (CFStringGetLength(name) == 0)
2339 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2340 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2342 return toupper(character);
2346 - (NSMutableDictionary *) metadata {
2351 if (subscribed_ && lastSeen_ != nil)
2356 - (BOOL) subscribed {
2361 NSDictionary *metadata([self metadata]);
2362 if (NSNumber *ignored = [metadata objectForKey:@"IsIgnored"])
2363 return [ignored boolValue];
2368 - (NSString *) latest {
2372 - (NSString *) installed {
2376 - (BOOL) uninstalled {
2377 return installed_.empty();
2381 return !version_.end();
2384 - (BOOL) upgradableAndEssential:(BOOL)essential {
2385 _profile(Package$upgradableAndEssential)
2386 pkgCache::VerIterator current(iterator_.CurrentVer());
2388 return essential && essential_ && visible_;
2390 return !version_.end() && version_ != current;// && (!essential || ![database_ cache][iterator_].Keep());
2394 - (BOOL) essential {
2399 return [database_ cache][iterator_].InstBroken();
2402 - (BOOL) unfiltered {
2403 _profile(Package$unfiltered$obsolete)
2408 _profile(Package$unfiltered$hasSupportingRole)
2409 if (![self hasSupportingRole])
2415 _profile(Package$unfiltered$section)
2416 section = [self section];
2419 _profile(Package$unfiltered$isSectionVisible)
2420 if (section != nil && !isSectionVisible(section))
2432 unsigned char current(iterator_->CurrentState);
2433 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2436 - (BOOL) halfConfigured {
2437 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2440 - (BOOL) halfInstalled {
2441 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2445 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2446 return state.Mode != pkgDepCache::ModeKeep;
2449 - (NSString *) mode {
2450 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2452 switch (state.Mode) {
2453 case pkgDepCache::ModeDelete:
2454 if ((state.iFlags & pkgDepCache::Purge) != 0)
2458 case pkgDepCache::ModeKeep:
2459 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2460 return @"REINSTALL";
2461 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2465 case pkgDepCache::ModeInstall:
2466 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2467 return @"REINSTALL";
2468 else*/ switch (state.Status) {
2470 return @"DOWNGRADE";
2476 return @"NEW_INSTALL";
2487 - (NSString *) name {
2488 return name_.empty() ? id_ : name_;
2491 - (UIImage *) icon {
2492 NSString *section = [self simpleSection];
2496 if ([static_cast<id>(icon_) hasPrefix:@"file:///"])
2497 // XXX: correct escaping
2498 icon = [UIImage imageAtPath:[static_cast<id>(icon_) substringFromIndex:7]];
2499 if (icon == nil) if (section != nil)
2500 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]];
2501 if (icon == nil) if (source_ != nil) if (NSString *dicon = [source_ defaultIcon])
2502 if ([dicon hasPrefix:@"file:///"])
2503 // XXX: correct escaping
2504 icon = [UIImage imageAtPath:[dicon substringFromIndex:7]];
2506 icon = [UIImage applicationImageNamed:@"unknown.png"];
2510 - (NSString *) homepage {
2514 - (NSString *) depiction {
2515 return !depiction_.empty() ? depiction_ : [[self source] depictionForPackage:id_];
2518 - (Address *) sponsor {
2519 if (sponsor$_ == nil) {
2520 if (sponsor_.empty())
2522 sponsor$_ = [[Address addressWithString:sponsor_] retain];
2526 - (Address *) author {
2527 if (author$_ == nil) {
2528 if (author_.empty())
2530 author$_ = [[Address addressWithString:author_] retain];
2534 - (NSString *) support {
2535 return !bugs_.empty() ? bugs_ : [[self source] supportForPackage:id_];
2538 - (NSArray *) files {
2539 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2540 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2543 fin.open([path UTF8String]);
2548 while (std::getline(fin, line))
2549 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2554 - (NSArray *) relationships {
2555 return relationships_;
2558 - (NSArray *) warnings {
2559 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2560 const char *name(iterator_.Name());
2562 size_t length(strlen(name));
2563 if (length < 2) invalid:
2564 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2565 else for (size_t i(0); i != length; ++i)
2567 /* XXX: technically this is not allowed */
2568 (name[i] < 'A' || name[i] > 'Z') &&
2569 (name[i] < 'a' || name[i] > 'z') &&
2570 (name[i] < '0' || name[i] > '9') &&
2571 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2574 if (strcmp(name, "cydia") != 0) {
2577 bool _private = false;
2580 bool repository = [[self section] isEqualToString:@"Repositories"];
2582 if (NSArray *files = [self files])
2583 for (NSString *file in files)
2584 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2586 else if (!user && [file isEqualToString:@"/User"])
2588 else if (!_private && [file isEqualToString:@"/private"])
2590 else if (!stash && [file isEqualToString:@"/var/stash"])
2593 /* XXX: this is not sensitive enough. only some folders are valid. */
2594 if (cydia && !repository)
2595 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2597 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2599 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2601 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2604 return [warnings count] == 0 ? nil : warnings;
2607 - (NSArray *) applications {
2608 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2610 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2612 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2613 if (NSArray *files = [self files])
2614 for (NSString *file in files)
2615 if (application_r(file)) {
2616 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2617 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2618 if ([id isEqualToString:me])
2621 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2623 display = application_r[1];
2625 NSString *bundle([file stringByDeletingLastPathComponent]);
2626 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2627 if (icon == nil || [icon length] == 0)
2629 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2631 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2632 [applications addObject:application];
2634 [application addObject:id];
2635 [application addObject:display];
2636 [application addObject:url];
2639 return [applications count] == 0 ? nil : applications;
2642 - (Source *) source {
2644 @synchronized (database_) {
2645 if ([database_ era] != era_ || file_.end())
2648 source_ = [database_ getSource:file_.File()];
2660 - (NSString *) role {
2664 - (BOOL) matches:(NSString *)text {
2670 range = [[self id] rangeOfString:text options:MatchCompareOptions_];
2671 if (range.location != NSNotFound)
2674 range = [[self name] rangeOfString:text options:MatchCompareOptions_];
2675 if (range.location != NSNotFound)
2678 range = [[self shortDescription] rangeOfString:text options:MatchCompareOptions_];
2679 if (range.location != NSNotFound)
2685 - (bool) hasSupportingRole {
2688 if ([role_ isEqualToString:@"enduser"])
2690 if ([Role_ isEqualToString:@"User"])
2692 if ([role_ isEqualToString:@"hacker"])
2694 if ([Role_ isEqualToString:@"Hacker"])
2696 if ([role_ isEqualToString:@"developer"])
2698 if ([Role_ isEqualToString:@"Developer"])
2703 - (BOOL) hasTag:(NSString *)tag {
2704 return tags_ == nil ? NO : [tags_ containsObject:tag];
2707 - (NSString *) primaryPurpose {
2708 for (NSString *tag in tags_)
2709 if ([tag hasPrefix:@"purpose::"])
2710 return [tag substringFromIndex:9];
2714 - (NSArray *) purposes {
2715 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2716 for (NSString *tag in tags_)
2717 if ([tag hasPrefix:@"purpose::"])
2718 [purposes addObject:[tag substringFromIndex:9]];
2719 return [purposes count] == 0 ? nil : purposes;
2722 - (bool) isCommercial {
2723 return [self hasTag:@"cydia::commercial"];
2726 - (CYString &) cyname {
2727 return name_.empty() ? id_ : name_;
2730 - (uint32_t) compareBySection:(NSArray *)sections {
2731 NSString *section([self section]);
2732 for (size_t i(0), e([sections count]); i != e; ++i) {
2733 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2737 return _not(uint32_t);
2740 - (uint32_t) compareForChanges {
2745 uint32_t timestamp : 30;
2746 uint32_t ignored : 1;
2747 uint32_t upgradable : 1;
2751 bool upgradable([self upgradableAndEssential:YES]);
2752 value.bits.upgradable = upgradable ? 1 : 0;
2755 value.bits.timestamp = 0;
2756 value.bits.ignored = [self ignored] ? 0 : 1;
2757 value.bits.upgradable = 1;
2759 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
2760 value.bits.ignored = 0;
2761 value.bits.upgradable = 0;
2764 return _not(uint32_t) - value.key;
2768 pkgProblemResolver *resolver = [database_ resolver];
2769 resolver->Clear(iterator_);
2770 resolver->Protect(iterator_);
2774 pkgProblemResolver *resolver = [database_ resolver];
2775 resolver->Clear(iterator_);
2776 resolver->Protect(iterator_);
2777 pkgCacheFile &cache([database_ cache]);
2778 cache->MarkInstall(iterator_, false);
2779 pkgDepCache::StateCache &state((*cache)[iterator_]);
2780 if (!state.Install())
2781 cache->SetReInstall(iterator_, true);
2785 pkgProblemResolver *resolver = [database_ resolver];
2786 resolver->Clear(iterator_);
2787 resolver->Protect(iterator_);
2788 resolver->Remove(iterator_);
2789 [database_ cache]->MarkDelete(iterator_, true);
2792 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search {
2793 _profile(Package$isUnfilteredAndSearchedForBy)
2796 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
2797 value &= [self unfiltered];
2800 _profile(Package$isUnfilteredAndSearchedForBy$Match)
2801 value &= [self matches:search];
2808 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
2809 if ([search length] == 0)
2812 _profile(Package$isUnfilteredAndSelectedForBy)
2815 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
2816 value &= [self unfiltered];
2819 _profile(Package$isUnfilteredAndSelectedForBy$Match)
2820 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
2827 - (bool) isInstalledAndVisible:(NSNumber *)number {
2828 return (![number boolValue] || [self visible]) && ![self uninstalled];
2831 - (bool) isVisibleInSection:(NSString *)name {
2832 NSString *section = [self section];
2837 section == nil && [name length] == 0 ||
2838 [name isEqualToString:section]
2842 - (bool) isVisibleInSource:(Source *)source {
2843 return [self source] == source && [self visible];
2848 /* Section Class {{{ */
2849 @interface Section : NSObject {
2854 NSString *localized_;
2857 - (NSComparisonResult) compareByLocalized:(Section *)section;
2858 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
2859 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
2860 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
2861 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
2862 - (NSString *) name;
2869 - (void) addToCount;
2871 - (void) setCount:(size_t)count;
2872 - (NSString *) localized;
2876 @implementation Section
2880 if (localized_ != nil)
2881 [localized_ release];
2885 - (NSComparisonResult) compareByLocalized:(Section *)section {
2886 NSString *lhs(localized_);
2887 NSString *rhs([section localized]);
2889 /*if ([lhs length] != 0 && [rhs length] != 0) {
2890 unichar lhc = [lhs characterAtIndex:0];
2891 unichar rhc = [rhs characterAtIndex:0];
2893 if (isalpha(lhc) && !isalpha(rhc))
2894 return NSOrderedAscending;
2895 else if (!isalpha(lhc) && isalpha(rhc))
2896 return NSOrderedDescending;
2899 return [lhs compare:rhs options:LaxCompareOptions_];
2902 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
2903 if ((self = [self initWithName:name localize:NO]) != nil) {
2904 if (localized != nil)
2905 localized_ = [localized retain];
2909 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
2910 return [self initWithName:name row:0 localize:localize];
2913 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
2914 if ((self = [super init]) != nil) {
2915 name_ = [name retain];
2919 localized_ = [LocalizeSection(name_) retain];
2923 /* XXX: localize the index thingees */
2924 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
2925 if ((self = [super init]) != nil) {
2926 name_ = [[NSString stringWithCharacters:&index length:1] retain];
2932 - (NSString *) name {
2952 - (void) addToCount {
2956 - (void) setCount:(size_t)count {
2960 - (NSString *) localized {
2967 static NSString *Colon_;
2968 static NSString *Error_;
2969 static NSString *Warning_;
2971 /* Database Implementation {{{ */
2972 @implementation Database
2974 + (Database *) sharedInstance {
2975 static Database *instance;
2976 if (instance == nil)
2977 instance = [[Database alloc] init];
2987 NSRecycleZone(zone_);
2988 // XXX: malloc_destroy_zone(zone_);
2989 apr_pool_destroy(pool_);
2993 - (void) _readCydia:(NSNumber *)fd { _pooled
2994 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
2995 std::istream is(&ib);
2998 static Pcre finish_r("^finish:([^:]*)$");
3000 while (std::getline(is, line)) {
3001 const char *data(line.c_str());
3002 size_t size = line.size();
3003 lprintf("C:%s\n", data);
3005 if (finish_r(data, size)) {
3006 NSString *finish = finish_r[1];
3007 int index = [Finishes_ indexOfObject:finish];
3008 if (index != INT_MAX && index > Finish_)
3016 - (void) _readStatus:(NSNumber *)fd { _pooled
3017 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3018 std::istream is(&ib);
3021 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3022 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3024 while (std::getline(is, line)) {
3025 const char *data(line.c_str());
3026 size_t size(line.size());
3027 lprintf("S:%s\n", data);
3029 if (conffile_r(data, size)) {
3030 [delegate_ setConfigurationData:conffile_r[1]];
3031 } else if (strncmp(data, "status: ", 8) == 0) {
3032 NSString *string = [NSString stringWithUTF8String:(data + 8)];
3033 [delegate_ setProgressTitle:string];
3034 } else if (pmstatus_r(data, size)) {
3035 std::string type([pmstatus_r[1] UTF8String]);
3036 NSString *id = pmstatus_r[2];
3038 float percent([pmstatus_r[3] floatValue]);
3039 [delegate_ setProgressPercent:(percent / 100)];
3041 NSString *string = pmstatus_r[4];
3043 if (type == "pmerror")
3044 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3045 withObject:[NSArray arrayWithObjects:string, id, nil]
3048 else if (type == "pmstatus") {
3049 [delegate_ setProgressTitle:string];
3050 } else if (type == "pmconffile")
3051 [delegate_ setConfigurationData:string];
3053 lprintf("E:unknown pmstatus\n");
3055 lprintf("E:unknown status\n");
3061 - (void) _readOutput:(NSNumber *)fd { _pooled
3062 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3063 std::istream is(&ib);
3066 while (std::getline(is, line)) {
3067 lprintf("O:%s\n", line.c_str());
3068 [delegate_ addProgressOutput:[NSString stringWithUTF8String:line.c_str()]];
3078 - (Package *) packageWithName:(NSString *)name {
3079 @synchronized (self) {
3080 if (static_cast<pkgDepCache *>(cache_) == NULL)
3082 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3083 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:pool_ database:self];
3087 if ((self = [super init]) != nil) {
3094 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3095 apr_pool_create(&pool_, NULL);
3097 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL);
3101 _assert(pipe(fds) != -1);
3104 _config->Set("APT::Keep-Fds::", cydiafd_);
3105 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3108 detachNewThreadSelector:@selector(_readCydia:)
3110 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3113 _assert(pipe(fds) != -1);
3117 detachNewThreadSelector:@selector(_readStatus:)
3119 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3122 _assert(pipe(fds) != -1);
3123 _assert(dup2(fds[0], 0) != -1);
3124 _assert(close(fds[0]) != -1);
3126 input_ = fdopen(fds[1], "a");
3128 _assert(pipe(fds) != -1);
3129 _assert(dup2(fds[1], 1) != -1);
3130 _assert(close(fds[1]) != -1);
3133 detachNewThreadSelector:@selector(_readOutput:)
3135 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3140 - (pkgCacheFile &) cache {
3144 - (pkgDepCache::Policy *) policy {
3148 - (pkgRecords *) records {
3152 - (pkgProblemResolver *) resolver {
3156 - (pkgAcquire &) fetcher {
3160 - (pkgSourceList &) list {
3164 - (NSArray *) packages {
3165 return (NSArray *) packages_;
3168 - (NSArray *) sources {
3169 NSMutableArray *sources([NSMutableArray arrayWithCapacity:sources_.size()]);
3170 for (SourceMap::const_iterator i(sources_.begin()); i != sources_.end(); ++i)
3171 [sources addObject:i->second];
3175 - (NSArray *) issues {
3176 if (cache_->BrokenCount() == 0)
3179 NSMutableArray *issues([NSMutableArray arrayWithCapacity:4]);
3181 for (Package *package in [self packages]) {
3182 if (![package broken])
3184 pkgCache::PkgIterator pkg([package iterator]);
3186 NSMutableArray *entry([NSMutableArray arrayWithCapacity:4]);
3187 [entry addObject:[package name]];
3188 [issues addObject:entry];
3190 pkgCache::VerIterator ver(cache_[pkg].InstVerIter(cache_));
3194 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
3195 pkgCache::DepIterator start;
3196 pkgCache::DepIterator end;
3197 dep.GlobOr(start, end); // ++dep
3199 if (!cache_->IsImportantDep(end))
3201 if ((cache_[end] & pkgDepCache::DepGInstall) != 0)
3204 NSMutableArray *failure([NSMutableArray arrayWithCapacity:4]);
3205 [entry addObject:failure];
3206 [failure addObject:[NSString stringWithUTF8String:start.DepType()]];
3208 NSString *name([NSString stringWithUTF8String:start.TargetPkg().Name()]);
3209 if (Package *package = [self packageWithName:name])
3210 name = [package name];
3211 [failure addObject:name];
3213 pkgCache::PkgIterator target(start.TargetPkg());
3214 if (target->ProvidesList != 0)
3215 [failure addObject:@"?"];
3217 pkgCache::VerIterator ver(cache_[target].InstVerIter(cache_));
3219 [failure addObject:[NSString stringWithUTF8String:ver.VerStr()]];
3220 else if (!cache_[target].CandidateVerIter(cache_).end())
3221 [failure addObject:@"-"];
3222 else if (target->ProvidesList == 0)
3223 [failure addObject:@"!"];
3225 [failure addObject:@"%"];
3229 if (start.TargetVer() != 0)
3230 [failure addObject:[NSString stringWithFormat:@"%s %s", start.CompType(), start.TargetVer()]];
3241 - (bool) popErrorWithTitle:(NSString *)title {
3243 std::string message;
3245 while (!_error->empty()) {
3247 bool warning(!_error->PopMessage(error));
3251 size_t size(error.size());
3252 if (size == 0 || error[size - 1] != '\n')
3254 error.resize(size - 1);
3256 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3258 if (!message.empty())
3263 if (fatal && !message.empty())
3264 [delegate_ _setProgressError:[NSString stringWithUTF8String:message.c_str()] withTitle:[NSString stringWithFormat:Colon_, fatal ? Error_ : Warning_, title]];
3269 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3270 return [self popErrorWithTitle:title] || !success;
3273 - (void) reloadData { CYPoolStart() {
3274 @synchronized (self) {
3277 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3278 CFArrayRemoveAllValues(packages_);
3305 apr_pool_clear(pool_);
3306 NSRecycleZone(zone_);
3308 int chk(creat("/tmp/cydia.chk", 0644));
3312 NSString *title(UCLocalize("DATABASE"));
3315 if (!cache_.Open(progress_, true)) { pop:
3317 bool warning(!_error->PopMessage(error));
3318 lprintf("cache_.Open():[%s]\n", error.c_str());
3320 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3321 [delegate_ repairWithSelector:@selector(configure)];
3322 else if (error == "The package lists or status file could not be parsed or opened.")
3323 [delegate_ repairWithSelector:@selector(update)];
3324 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3325 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3326 // else if (error == "The list of sources could not be read.")
3328 [delegate_ _setProgressError:[NSString stringWithUTF8String:error.c_str()] withTitle:[NSString stringWithFormat:Colon_, warning ? Warning_ : Error_, title]];
3337 unlink("/tmp/cydia.chk");
3339 now_ = [[NSDate date] retain];
3341 policy_ = new pkgDepCache::Policy();
3342 records_ = new pkgRecords(cache_);
3343 resolver_ = new pkgProblemResolver(cache_);
3344 fetcher_ = new pkgAcquire(&status_);
3347 list_ = new pkgSourceList();
3348 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3351 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3352 [delegate_ _setProgressError:@"COUNTS_NONZERO_EX" withTitle:title];
3356 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3359 if (cache_->BrokenCount() != 0) {
3360 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3363 if (cache_->BrokenCount() != 0) {
3364 [delegate_ _setProgressError:@"STILL_BROKEN_EX" withTitle:title];
3368 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3372 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3373 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3374 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3375 // XXX: this could be more intelligent
3376 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3377 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3379 sources_[cached->ID] = [[[Source alloc] initWithMetaIndex:*source inPool:pool_] autorelease];
3384 /*std::vector<Package *> packages;
3385 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3386 [packages_ release];
3391 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3392 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3393 //packages.push_back(package);
3394 CFArrayAppendValue(packages_, [package retain]);
3398 /*if (packages.empty())
3399 packages_ = [[NSArray alloc] init];
3401 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3404 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3405 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3406 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3414 /*if (!packages.empty())
3415 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3416 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3418 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3420 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3422 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3426 } } CYPoolEnd() _trace(); }
3428 - (void) configure {
3429 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3430 system([dpkg UTF8String]);
3434 // XXX: I don't remember this condition
3439 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3441 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3443 if ([self popErrorWithTitle:title])
3447 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3450 public pkgArchiveCleaner
3453 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3458 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3465 fetcher_->Shutdown();
3467 pkgRecords records(cache_);
3469 lock_ = new FileFd();
3470 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3472 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3474 if ([self popErrorWithTitle:title])
3478 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3481 manager_ = (_system->CreatePM(cache_));
3482 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3489 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3491 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3493 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3495 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3496 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3499 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3504 bool failed = false;
3505 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3506 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3508 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3511 std::string uri = (*item)->DescURI();
3512 std::string error = (*item)->ErrorText;
3514 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
3517 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3518 withObject:[NSArray arrayWithObjects:
3519 [NSString stringWithUTF8String:error.c_str()],
3531 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3533 if (_error->PendingError()) {
3538 if (result == pkgPackageManager::Failed) {
3543 if (result != pkgPackageManager::Completed) {
3548 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3550 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3552 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3553 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3556 if (![before isEqualToArray:after])
3561 NSString *title(UCLocalize("UPGRADE"));
3562 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3568 [self updateWithStatus:status_];
3571 - (void) setVisible {
3572 for (Package *package in [self packages])
3573 [package setVisible];
3576 - (void) updateWithStatus:(Status &)status {
3577 _transient NSObject<ProgressDelegate> *delegate(status.getDelegate());
3578 NSString *title(UCLocalize("REFRESHING_DATA"));
3581 if (!list.ReadMainList())
3582 [delegate _setProgressError:@"Unable to read source list." withTitle:title];
3585 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3586 if ([self popErrorWithTitle:title])
3589 if ([self popErrorWithTitle:title forOperation:ListUpdate(status, list, PulseInterval_)])
3590 /* XXX: ignore this because users suck and don't understand why refreshing is important: return */
3591 /* XXX: why the hell is an empty if statement a clang error? */ (void) 0;
3593 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3597 - (void) setDelegate:(id)delegate {
3598 delegate_ = delegate;
3599 status_.setDelegate(delegate);
3600 progress_.setDelegate(delegate);
3603 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3604 SourceMap::const_iterator i(sources_.find(file->ID));
3605 return i == sources_.end() ? nil : i->second;
3611 /* Confirmation Controller {{{ */
3612 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
3613 if (!iterator.end())
3614 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
3615 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
3617 pkgCache::PkgIterator package(dep.TargetPkg());
3620 if (strcmp(package.Name(), "mobilesubstrate") == 0)
3628 /* Web Scripting {{{ */
3629 @interface CydiaObject : NSObject {
3634 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3637 @implementation CydiaObject
3640 [indirect_ release];
3644 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3645 if ((self = [super init]) != nil) {
3646 indirect_ = [indirect retain];
3650 - (void) setDelegate:(id)delegate {
3651 delegate_ = delegate;
3654 + (NSArray *) _attributeKeys {
3655 return [NSArray arrayWithObjects:@"device", @"firewire", @"imei", @"mac", @"serial", nil];
3658 - (NSArray *) attributeKeys {
3659 return [[self class] _attributeKeys];
3662 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3663 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3666 - (NSString *) device {
3667 return [[UIDevice currentDevice] uniqueIdentifier];
3670 #if 0 // XXX: implement!
3671 - (NSString *) mac {
3672 if (![indirect_ promptForSensitive:@"Mac Address"])
3676 - (NSString *) serial {
3677 if (![indirect_ promptForSensitive:@"Serial #"])
3681 - (NSString *) firewire {
3682 if (![indirect_ promptForSensitive:@"Firewire GUID"])
3686 - (NSString *) imei {
3687 if (![indirect_ promptForSensitive:@"IMEI"])
3692 + (NSString *) webScriptNameForSelector:(SEL)selector {
3693 if (selector == @selector(close))
3695 else if (selector == @selector(getInstalledPackages))
3696 return @"getInstalledPackages";
3697 else if (selector == @selector(getPackageById:))
3698 return @"getPackageById";
3699 else if (selector == @selector(installPackages:))
3700 return @"installPackages";
3701 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
3702 return @"setButtonImage";
3703 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
3704 return @"setButtonTitle";
3705 else if (selector == @selector(setPopupHook:))
3706 return @"setPopupHook";
3707 else if (selector == @selector(setSpecial:))
3708 return @"setSpecial";
3709 else if (selector == @selector(setToken:))
3711 else if (selector == @selector(setViewportWidth:))
3712 return @"setViewportWidth";
3713 else if (selector == @selector(supports:))
3715 else if (selector == @selector(stringWithFormat:arguments:))
3717 else if (selector == @selector(localizedStringForKey:value:table:))
3719 else if (selector == @selector(du:))
3721 else if (selector == @selector(statfs:))
3727 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
3728 return [self webScriptNameForSelector:selector] == nil;
3731 - (BOOL) supports:(NSString *)feature {
3732 return [feature isEqualToString:@"window.open"];
3735 - (NSArray *) getInstalledPackages {
3736 NSArray *packages([[Database sharedInstance] packages]);
3737 NSMutableArray *installed([NSMutableArray arrayWithCapacity:[packages count]]);
3738 for (Package *package in packages)
3739 if ([package installed] != nil)
3740 [installed addObject:package];
3744 - (Package *) getPackageById:(NSString *)id {
3745 Package *package([[Database sharedInstance] packageWithName:id]);
3750 - (NSArray *) statfs:(NSString *)path {
3753 if (path == nil || statfs([path UTF8String], &stat) == -1)
3756 return [NSArray arrayWithObjects:
3757 [NSNumber numberWithUnsignedLong:stat.f_bsize],
3758 [NSNumber numberWithUnsignedLong:stat.f_blocks],
3759 [NSNumber numberWithUnsignedLong:stat.f_bfree],
3763 - (NSNumber *) du:(NSString *)path {
3764 NSNumber *value(nil);
3767 _assert(pipe(fds) != -1);
3769 pid_t pid(ExecFork());
3771 _assert(dup2(fds[1], 1) != -1);
3772 _assert(close(fds[0]) != -1);
3773 _assert(close(fds[1]) != -1);
3774 /* XXX: this should probably not use du */
3775 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
3780 _assert(close(fds[1]) != -1);
3782 if (FILE *du = fdopen(fds[0], "r")) {
3784 while (fgets(line, sizeof(line), du) != NULL) {
3785 size_t length(strlen(line));
3786 while (length != 0 && line[length - 1] == '\n')
3787 line[--length] = '\0';
3788 if (char *tab = strchr(line, '\t')) {
3790 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
3795 } else _assert(close(fds[0]));
3799 if (waitpid(pid, &status, 0) == -1)
3802 else _assert(false);
3811 - (void) installPackages:(NSArray *)packages {
3812 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
3815 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3816 [indirect_ setButtonImage:button withStyle:style toFunction:function];
3819 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3820 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
3823 - (void) setSpecial:(id)function {
3824 [indirect_ setSpecial:function];
3827 - (void) setToken:(NSString *)token {
3830 Token_ = [token retain];
3832 [Metadata_ setObject:Token_ forKey:@"Token"];
3836 - (void) setPopupHook:(id)function {
3837 [indirect_ setPopupHook:function];
3840 - (void) setViewportWidth:(float)width {
3841 [indirect_ setViewportWidth:width];
3844 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
3845 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
3846 unsigned count([arguments 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];
3853 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
3854 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
3856 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
3858 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
3864 /* Cydia Browser Controller {{{ */
3865 @interface CYBrowserController : BrowserController {
3866 CydiaObject *cydia_;
3871 @implementation CYBrowserController
3878 - (void) setHeaders:(NSDictionary *)headers forHost:(NSString *)host {
3881 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
3882 [super webView:view didClearWindowObject:window forFrame:frame];
3884 WebDataSource *source([frame dataSource]);
3885 NSURLResponse *response([source response]);
3886 NSURL *url([response URL]);
3887 NSString *scheme([url scheme]);
3889 NSHTTPURLResponse *http;
3890 if (scheme != nil && ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]))
3891 http = (NSHTTPURLResponse *) response;
3895 NSDictionary *headers([http allHeaderFields]);
3896 NSString *host([url host]);
3897 [self setHeaders:headers forHost:host];
3900 [host isEqualToString:@"cydia.saurik.com"] ||
3901 [host hasSuffix:@".cydia.saurik.com"] ||
3902 [scheme isEqualToString:@"file"]
3904 [window setValue:cydia_ forKey:@"cydia"];
3907 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
3908 if (System_ != NULL)
3909 [request setValue:System_ forHTTPHeaderField:@"X-System"];
3910 if (Machine_ != NULL)
3911 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
3913 [request setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
3915 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
3918 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
3919 NSMutableURLRequest *copy([[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source] mutableCopy]);
3920 [self _setMoreHeaders:copy];
3924 - (void) setDelegate:(id)delegate {
3925 [super setDelegate:delegate];
3926 [cydia_ setDelegate:delegate];
3930 if ((self = [super initWithWidth:0 ofClass:[CYBrowserController class]]) != nil) {
3931 cydia_ = [[CydiaObject alloc] initWithDelegate:indirect_];
3933 WebView *webview([[webview_ _documentView] webView]);
3935 Package *package([[Database sharedInstance] packageWithName:@"cydia"]);
3937 NSString *application = package == nil ? @"Cydia" : [NSString
3938 stringWithFormat:@"Cydia/%@",
3943 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
3945 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
3946 if (Product_ != nil)
3947 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
3949 [webview setApplicationNameForUserAgent:application];
3956 /* Confirmation {{{ */
3957 @protocol ConfirmationControllerDelegate
3958 - (void) cancelAndClear:(bool)clear;
3959 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
3963 @interface ConfirmationController : CYBrowserController {
3964 _transient Database *database_;
3965 UIAlertView *essential_;
3972 - (id) initWithDatabase:(Database *)database;
3976 @implementation ConfirmationController
3983 if (essential_ != nil)
3984 [essential_ release];
3988 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
3989 NSString *context([alert context]);
3991 if ([context isEqualToString:@"remove"]) {
3992 if (button == [alert cancelButtonIndex]) {
3993 [self dismissModalViewControllerAnimated:YES];
3994 } else if (button == [alert firstOtherButtonIndex]) {
3997 [delegate_ confirmWithNavigationController:[self navigationController]];
4000 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4001 } else if ([context isEqualToString:@"unable"]) {
4002 [self dismissModalViewControllerAnimated:YES];
4003 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4005 [super alertView:alert clickedButtonAtIndex:button];
4009 - (void) _doContinue {
4010 [self dismissModalViewControllerAnimated:YES];
4011 [delegate_ cancelAndClear:NO];
4014 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4015 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
4019 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4020 [super webView:view didClearWindowObject:window forFrame:frame];
4021 [window setValue:changes_ forKey:@"changes"];
4022 [window setValue:issues_ forKey:@"issues"];
4023 [window setValue:sizes_ forKey:@"sizes"];
4024 [window setValue:self forKey:@"queue"];
4027 - (id) initWithDatabase:(Database *)database {
4028 if ((self = [super init]) != nil) {
4029 database_ = database;
4031 [[self navigationItem] setTitle:UCLocalize("CONFIRM")];
4033 NSMutableArray *installing = [NSMutableArray arrayWithCapacity:16];
4034 NSMutableArray *reinstalling = [NSMutableArray arrayWithCapacity:16];
4035 NSMutableArray *upgrading = [NSMutableArray arrayWithCapacity:16];
4036 NSMutableArray *downgrading = [NSMutableArray arrayWithCapacity:16];
4037 NSMutableArray *removing = [NSMutableArray arrayWithCapacity:16];
4041 pkgDepCache::Policy *policy([database_ policy]);
4043 pkgCacheFile &cache([database_ cache]);
4044 NSArray *packages = [database_ packages];
4045 for (Package *package in packages) {
4046 pkgCache::PkgIterator iterator = [package iterator];
4047 pkgDepCache::StateCache &state(cache[iterator]);
4049 NSString *name([package name]);
4051 if (state.NewInstall())
4052 [installing addObject:name];
4053 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4054 [reinstalling addObject:name];
4055 else if (state.Upgrade())
4056 [upgrading addObject:name];
4057 else if (state.Downgrade())
4058 [downgrading addObject:name];
4059 else if (state.Delete()) {
4060 if ([package essential])
4062 [removing addObject:name];
4065 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4066 substrate_ |= DepSubstrate(iterator.CurrentVer());
4071 else if (Advanced_) {
4072 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4074 essential_ = [[UIAlertView alloc]
4075 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4076 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4078 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4079 otherButtonTitles:[NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")], nil
4082 [essential_ setContext:@"remove"];
4084 essential_ = [[UIAlertView alloc]
4085 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4086 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4088 cancelButtonTitle:UCLocalize("OKAY")
4089 otherButtonTitles:nil
4092 [essential_ setContext:@"unable"];
4095 changes_ = [[NSArray alloc] initWithObjects:
4103 issues_ = [database_ issues];
4105 issues_ = [issues_ retain];
4107 sizes_ = [[NSArray alloc] initWithObjects:
4108 SizeString([database_ fetcher].FetchNeeded()),
4109 SizeString([database_ fetcher].PartialPresent()),
4112 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"confirm" ofType:@"html"]]];
4114 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
4115 initWithTitle:UCLocalize("CANCEL")
4116 // OLD: [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("CANCEL"), UCLocalize("QUEUE")]
4117 style:UIBarButtonItemStylePlain
4119 action:@selector(cancelButtonClicked)
4121 [[self navigationItem] setLeftBarButtonItem:leftItem];
4126 - (void) applyRightButton {
4127 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
4128 initWithTitle:UCLocalize("CONFIRM")
4129 style:UIBarButtonItemStylePlain
4131 action:@selector(confirmButtonClicked)
4133 #if !AlwaysReload && !IgnoreInstall
4134 if (issues_ == nil && ![self isLoading]) [[self navigationItem] setRightBarButtonItem:rightItem];
4135 else [super applyRightButton];
4137 [[self navigationItem] setRightBarButtonItem:nil];
4139 [rightItem release];
4142 - (void) cancelButtonClicked {
4143 [self dismissModalViewControllerAnimated:YES];
4144 [delegate_ cancelAndClear:YES];
4148 - (void) confirmButtonClicked {
4152 if (essential_ != nil)
4157 [delegate_ confirmWithNavigationController:[self navigationController]];
4165 /* Progress Data {{{ */
4166 @interface ProgressData : NSObject {
4172 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object;
4179 @implementation ProgressData
4181 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object {
4182 if ((self = [super init]) != nil) {
4183 selector_ = selector;
4203 /* Progress Controller {{{ */
4204 @interface ProgressController : CYViewController <
4205 ConfigurationDelegate,
4208 _transient Database *database_;
4209 UIProgressBar *progress_;
4210 UITextView *output_;
4211 UITextLabel *status_;
4212 UIPushButton *close_;
4214 SHA1SumValue springlist_;
4215 SHA1SumValue notifyconf_;
4219 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
4221 - (void) _retachThread;
4222 - (void) _detachNewThreadData:(ProgressData *)data;
4223 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title;
4229 @protocol ProgressControllerDelegate
4230 - (void) progressControllerIsComplete:(ProgressController *)sender;
4233 @implementation ProgressController
4236 [database_ setDelegate:nil];
4237 [progress_ release];
4246 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
4247 if ((self = [super init]) != nil) {
4248 database_ = database;
4249 [database_ setDelegate:self];
4250 delegate_ = delegate;
4252 [[self view] setBackgroundColor:[UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:1.0f]];
4254 progress_ = [[UIProgressBar alloc] init];
4255 [progress_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4256 [progress_ setStyle:0];
4258 status_ = [[UITextLabel alloc] init];
4259 [status_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4260 [status_ setColor:[UIColor whiteColor]];
4261 [status_ setBackgroundColor:[UIColor clearColor]];
4262 [status_ setCentersHorizontally:YES];
4263 //[status_ setFont:font];
4265 output_ = [[UITextView alloc] init];
4267 [output_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4268 //[output_ setTextFont:@"Courier New"];
4269 [output_ setFont:[[output_ font] fontWithSize:12]];
4270 [output_ setTextColor:[UIColor whiteColor]];
4271 [output_ setBackgroundColor:[UIColor clearColor]];
4272 [output_ setMarginTop:0];
4273 [output_ setAllowsRubberBanding:YES];
4274 [output_ setEditable:NO];
4275 [[self view] addSubview:output_];
4277 close_ = [[UIPushButton alloc] init];
4278 [close_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4279 [close_ setAutosizesToFit:NO];
4280 [close_ setDrawsShadow:YES];
4281 [close_ setStretchBackground:YES];
4282 [close_ setEnabled:YES];
4283 [close_ setTitleFont:[UIFont boldSystemFontOfSize:22]];
4284 [close_ addTarget:self action:@selector(closeButtonPushed) forEvents:UIControlEventTouchUpInside];
4285 [close_ setBackground:[UIImage applicationImageNamed:@"green-up.png"] forState:0];
4286 [close_ setBackground:[UIImage applicationImageNamed:@"green-dn.png"] forState:1];
4290 - (void) positionViews {
4291 CGRect bounds = [[self view] bounds];
4292 CGSize prgsize = [UIProgressBar defaultSize];
4295 (bounds.size.width - prgsize.width) / 2,
4296 bounds.size.height - prgsize.height - 20
4299 float closewidth = bounds.size.width - 20;
4300 if (closewidth > 300) closewidth = 300;
4302 [progress_ setFrame:prgrect];
4303 [status_ setFrame:CGRectMake(
4305 bounds.size.height - prgsize.height - 50,
4306 bounds.size.width - 20,
4309 [output_ setFrame:CGRectMake(
4312 bounds.size.width - 20,
4313 bounds.size.height - 62
4315 [close_ setFrame:CGRectMake(
4316 (bounds.size.width - closewidth) / 2,
4317 bounds.size.height - prgsize.height - 50,
4323 - (void) viewWillAppear:(BOOL)animated {
4324 [super viewDidAppear:animated];
4325 [[self navigationItem] setHidesBackButton:YES];
4326 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
4328 [self positionViews];
4331 - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
4332 [self positionViews];
4335 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4336 NSString *context([alert context]);
4338 if ([context isEqualToString:@"conffile"]) {
4339 FILE *input = [database_ input];
4340 if (button == [alert cancelButtonIndex]) fprintf(input, "N\n");
4341 else if (button == [alert firstOtherButtonIndex]) fprintf(input, "Y\n");
4346 - (void) closeButtonPushed {
4349 UpdateExternalStatus(0);
4353 [self dismissModalViewControllerAnimated:YES];
4357 [delegate_ terminateWithSuccess];
4358 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
4359 [delegate_ suspendWithAnimation:YES];
4361 [delegate_ suspend];*/
4365 system("launchctl stop com.apple.SpringBoard");
4369 system("launchctl unload "SpringBoard_"; launchctl load "SpringBoard_);
4378 - (void) _retachThread {
4379 [[self navigationItem] setTitle:UCLocalize("COMPLETE")];
4381 [[self view] addSubview:close_];
4382 [progress_ removeFromSuperview];
4383 [status_ removeFromSuperview];
4385 [database_ popErrorWithTitle:title_];
4386 [delegate_ progressControllerIsComplete:self];
4390 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4393 MMap mmap(file, MMap::ReadOnly);
4395 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4396 if (!(notifyconf_ == sha1.Result()))
4403 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4406 MMap mmap(file, MMap::ReadOnly);
4408 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4409 if (!(springlist_ == sha1.Result()))
4415 case 0: [close_ setTitle:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
4416 case 1: [close_ setTitle:UCLocalize("CLOSE_CYDIA")]; break;
4417 case 2: [close_ setTitle:UCLocalize("RESTART_SPRINGBOARD")]; break;
4418 case 3: [close_ setTitle:UCLocalize("RELOAD_SPRINGBOARD")]; break;
4419 case 4: [close_ setTitle:UCLocalize("REBOOT_DEVICE")]; break;
4422 system("su -c /usr/bin/uicache mobile");
4424 UpdateExternalStatus(Finish_ == 0 ? 2 : 0);
4426 [delegate_ setStatusBarShowsProgress:NO];
4429 - (void) _detachNewThreadData:(ProgressData *)data { _pooled
4430 [[data target] performSelector:[data selector] withObject:[data object]];
4433 [self performSelectorOnMainThread:@selector(_retachThread) withObject:nil waitUntilDone:YES];
4436 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title {
4437 UpdateExternalStatus(1);
4444 title_ = [title retain];
4446 [[self navigationItem] setTitle:title_];
4448 [status_ setText:nil];
4449 [output_ setText:@""];
4450 [progress_ setProgress:0];
4452 [close_ removeFromSuperview];
4453 [[self view] addSubview:progress_];
4454 [[self view] addSubview:status_];
4456 [delegate_ setStatusBarShowsProgress:YES];
4461 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4464 MMap mmap(file, MMap::ReadOnly);
4466 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4467 notifyconf_ = sha1.Result();
4473 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4476 MMap mmap(file, MMap::ReadOnly);
4478 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4479 springlist_ = sha1.Result();
4484 detachNewThreadSelector:@selector(_detachNewThreadData:)
4486 withObject:[[ProgressData alloc]
4487 initWithSelector:selector
4494 - (void) repairWithSelector:(SEL)selector {
4496 detachNewThreadSelector:selector
4499 title:UCLocalize("REPAIRING")
4503 - (void) setConfigurationData:(NSString *)data {
4505 performSelectorOnMainThread:@selector(_setConfigurationData:)
4511 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
4512 CYActionSheet *sheet([[[CYActionSheet alloc]
4514 buttons:[NSArray arrayWithObjects:UCLocalize("OKAY"), nil]
4515 defaultButtonIndex:0
4518 [sheet setMessage:error];
4519 [sheet yieldToPopupAlertAnimated:YES];
4523 - (void) setProgressTitle:(NSString *)title {
4525 performSelectorOnMainThread:@selector(_setProgressTitle:)
4531 - (void) setProgressPercent:(float)percent {
4533 performSelectorOnMainThread:@selector(_setProgressPercent:)
4534 withObject:[NSNumber numberWithFloat:percent]
4539 - (void) startProgress {
4542 - (void) addProgressOutput:(NSString *)output {
4544 performSelectorOnMainThread:@selector(_addProgressOutput:)
4550 - (bool) isCancelling:(size_t)received {
4554 - (void) _setConfigurationData:(NSString *)data {
4555 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
4557 if (!conffile_r(data)) {
4558 lprintf("E:invalid conffile\n");
4562 NSString *ofile = conffile_r[1];
4563 //NSString *nfile = conffile_r[2];
4565 UIAlertView *alert = [[[UIAlertView alloc]
4566 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
4567 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
4569 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
4570 otherButtonTitles:UCLocalize("ACCEPT_NEW_COPY"),
4571 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
4575 [alert setContext:@"conffile"];
4579 - (void) _setProgressTitle:(NSString *)title {
4580 NSMutableArray *words([[title componentsSeparatedByString:@" "] mutableCopy]);
4581 for (size_t i(0), e([words count]); i != e; ++i) {
4582 NSString *word([words objectAtIndex:i]);
4583 if (Package *package = [database_ packageWithName:word])
4584 [words replaceObjectAtIndex:i withObject:[package name]];
4587 [status_ setText:[words componentsJoinedByString:@" "]];
4590 - (void) _setProgressPercent:(NSNumber *)percent {
4591 [progress_ setProgress:[percent floatValue]];
4594 - (void) _addProgressOutput:(NSString *)output {
4595 [output_ setText:[NSString stringWithFormat:@"%@\n%@", [output_ text], output]];
4596 CGSize size = [output_ contentSize];
4597 CGRect rect = {{0, size.height}, {size.width, 0}};
4598 [output_ scrollRectToVisible:rect animated:YES];
4601 - (BOOL) isRunning {
4608 /* Cell Content View {{{ */
4609 @protocol ContentDelegate
4610 - (void) drawContentRect:(CGRect)rect;
4613 @interface ContentView : UIView {
4614 _transient id<ContentDelegate> delegate_;
4619 @implementation ContentView
4620 - (id) initWithFrame:(CGRect)frame {
4621 if ((self = [super initWithFrame:frame]) != nil) {
4622 /* Fix landscape stretching. */
4623 [self setNeedsDisplayOnBoundsChange:YES];
4627 - (void) setDelegate:(id<ContentDelegate>)delegate {
4628 delegate_ = delegate;
4631 - (void) drawRect:(CGRect)rect {
4632 [super drawRect:rect];
4633 [delegate_ drawContentRect:rect];
4637 /* Package Cell {{{ */
4638 @interface PackageCell : UITableViewCell <
4643 NSString *description_;
4649 ContentView *content_;
4655 - (PackageCell *) init;
4656 - (void) setPackage:(Package *)package;
4658 + (int) heightForPackage:(Package *)package;
4659 - (void) drawContentRect:(CGRect)rect;
4663 @implementation PackageCell
4665 - (void) clearPackage {
4676 if (description_ != nil) {
4677 [description_ release];
4681 if (source_ != nil) {
4686 if (badge_ != nil) {
4691 if (placard_ != nil) {
4701 [self clearPackage];
4708 return faded_ ? [self selectionPercent] : fade_;
4711 - (PackageCell *) init {
4712 CGRect frame(CGRectMake(0, 0, 320, 74));
4713 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
4714 UIView *content([self contentView]);
4715 CGRect bounds([content bounds]);
4717 content_ = [[ContentView alloc] initWithFrame:bounds];
4718 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4719 [content addSubview:content_];
4721 [content_ setDelegate:self];
4722 [content_ setOpaque:YES];
4723 if ([self respondsToSelector:@selector(selectionPercent)])
4728 - (void) _setBackgroundColor {
4730 if (NSString *mode = [package_ mode]) {
4731 bool remove([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]);
4732 color = remove ? RemovingColor_ : InstallingColor_;
4734 color = [UIColor whiteColor];
4736 [content_ setBackgroundColor:color];
4737 [self setNeedsDisplay];
4740 - (void) setPackage:(Package *)package {
4741 [self clearPackage];
4744 Source *source = [package source];
4746 icon_ = [[package icon] retain];
4747 name_ = [[package name] retain];
4750 description_ = [package longDescription];
4751 if (description_ == nil)
4752 description_ = [package shortDescription];
4753 if (description_ != nil)
4754 description_ = [description_ retain];
4756 commercial_ = [package isCommercial];
4758 package_ = [package retain];
4760 NSString *label = nil;
4761 bool trusted = false;
4763 if (source != nil) {
4764 label = [source label];
4765 trusted = [source trusted];
4766 } else if ([[package id] isEqualToString:@"firmware"])
4767 label = UCLocalize("APPLE");
4769 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
4771 NSString *from(label);
4773 NSString *section = [package simpleSection];
4774 if (section != nil && ![section isEqualToString:label]) {
4775 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
4776 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
4779 from = [NSString stringWithFormat:UCLocalize("FROM"), from];
4780 source_ = [from retain];
4782 if (NSString *purpose = [package primaryPurpose])
4783 if ((badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]) != nil)
4784 badge_ = [badge_ retain];
4786 if ([package installed] != nil)
4787 if ((placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/installed.png", App_]]) != nil)
4788 placard_ = [placard_ retain];
4790 [self _setBackgroundColor];
4791 [content_ setNeedsDisplay];
4794 - (void) drawContentRect:(CGRect)rect {
4795 bool selected([self isSelected]);
4796 float width([self bounds].size.width);
4799 CGContextRef context(UIGraphicsGetCurrentContext());
4800 [([[self selectedBackgroundView] superview] != nil ? [UIColor clearColor] : [self backgroundColor]) set];
4801 CGContextFillRect(context, rect);
4806 rect.size = [icon_ size];
4808 rect.size.width /= 2;
4809 rect.size.height /= 2;
4811 rect.origin.x = 25 - rect.size.width / 2;
4812 rect.origin.y = 25 - rect.size.height / 2;
4814 [icon_ drawInRect:rect];
4817 if (badge_ != nil) {
4818 CGSize size = [badge_ size];
4820 [badge_ drawAtPoint:CGPointMake(
4821 36 - size.width / 2,
4822 36 - size.height / 2
4830 UISetColor(commercial_ ? Purple_ : Black_);
4831 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
4832 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
4835 UISetColor(commercial_ ? Purplish_ : Gray_);
4836 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
4838 if (placard_ != nil)
4839 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
4842 - (void) setSelected:(BOOL)selected animated:(BOOL)fade {
4843 //[self _setBackgroundColor];
4844 [super setSelected:selected animated:fade];
4845 [content_ setNeedsDisplay];
4848 + (int) heightForPackage:(Package *)package {
4854 /* Section Cell {{{ */
4855 @interface SectionCell : UITableViewCell <
4863 ContentView *content_;
4868 - (void) setSection:(Section *)section editing:(BOOL)editing;
4872 @implementation SectionCell
4874 - (void) clearSection {
4875 if (basic_ != nil) {
4880 if (section_ != nil) {
4890 if (count_ != nil) {
4897 [self clearSection];
4905 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
4906 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
4907 icon_ = [[UIImage applicationImageNamed:@"folder.png"] retain];
4908 switch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(218, 9, 60, 25)];
4909 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
4911 UIView *content([self contentView]);
4912 CGRect bounds([content bounds]);
4914 content_ = [[ContentView alloc] initWithFrame:bounds];
4915 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4916 [content addSubview:content_];
4917 [content_ setBackgroundColor:[UIColor whiteColor]];
4919 [content_ setDelegate:self];
4923 - (void) onSwitch:(id)sender {
4924 NSMutableDictionary *metadata = [Sections_ objectForKey:basic_];
4925 if (metadata == nil) {
4926 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
4927 [Sections_ setObject:metadata forKey:basic_];
4931 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
4934 - (void) setSection:(Section *)section editing:(BOOL)editing {
4935 if (editing != editing_) {
4937 [switch_ removeFromSuperview];
4939 [self addSubview:switch_];
4943 [self clearSection];
4945 if (section == nil) {
4946 name_ = [UCLocalize("ALL_PACKAGES") retain];
4949 basic_ = [section name];
4951 basic_ = [basic_ retain];
4953 section_ = [section localized];
4954 if (section_ != nil)
4955 section_ = [section_ retain];
4957 name_ = [(section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : section_) retain];
4958 count_ = [[NSString stringWithFormat:@"%d", [section count]] retain];
4961 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
4964 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
4965 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
4967 [content_ setNeedsDisplay];
4970 - (void) setFrame:(CGRect)frame {
4971 [super setFrame:frame];
4973 CGRect rect([switch_ frame]);
4974 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
4977 - (void) drawContentRect:(CGRect)rect {
4978 BOOL selected = [self isSelected];
4980 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
4988 float width(rect.size.width);
4992 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation];
4994 CGSize size = [count_ sizeWithFont:Font14_];
4998 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
5004 /* File Table {{{ */
5005 @interface FileTable : CYViewController <
5006 UITableViewDataSource,
5009 _transient Database *database_;
5012 NSMutableArray *files_;
5016 - (id) initWithDatabase:(Database *)database;
5017 - (void) setPackage:(Package *)package;
5021 @implementation FileTable
5024 if (package_ != nil)
5033 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5034 return files_ == nil ? 0 : [files_ count];
5037 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5041 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5042 static NSString *reuseIdentifier = @"Cell";
5044 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
5046 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
5047 [cell setFont:[UIFont systemFontOfSize:16]];
5049 [cell setText:[files_ objectAtIndex:indexPath.row]];
5050 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
5055 - (id) initWithDatabase:(Database *)database {
5056 if ((self = [super init]) != nil) {
5057 database_ = database;
5059 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
5061 files_ = [[NSMutableArray arrayWithCapacity:32] retain];
5063 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
5064 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5065 [list_ setRowHeight:24.0f];
5066 [[self view] addSubview:list_];
5068 [list_ setDataSource:self];
5069 [list_ setDelegate:self];
5073 - (void) setPackage:(Package *)package {
5074 if (package_ != nil) {
5075 [package_ autorelease];
5084 [files_ removeAllObjects];
5086 if (package != nil) {
5087 package_ = [package retain];
5088 name_ = [[package id] retain];
5090 if (NSArray *files = [package files])
5091 [files_ addObjectsFromArray:files];
5093 if ([files_ count] != 0) {
5094 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5095 [files_ removeObjectAtIndex:0];
5096 [files_ sortUsingSelector:@selector(compareByPath:)];
5098 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5099 [stack addObject:@"/"];
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]]
5118 - (void) reloadData {
5119 [self setPackage:[database_ packageWithName:name_]];
5124 /* Package Controller {{{ */
5125 @interface PackageController : CYBrowserController <
5126 UIActionSheetDelegate
5128 _transient Database *database_;
5132 NSMutableArray *buttons_;
5133 UIBarButtonItem *button_;
5136 - (id) initWithDatabase:(Database *)database;
5137 - (void) setPackage:(Package *)package;
5141 @implementation PackageController
5144 if (package_ != nil)
5158 if ([self retainCount] == 1)
5159 [delegate_ setPackageController:self];
5163 /* XXX: this is not safe at all... localization of /fail/ */
5164 - (void) _clickButtonWithName:(NSString *)name {
5165 if ([name isEqualToString:UCLocalize("CLEAR")])
5166 [delegate_ clearPackage:package_];
5167 else if ([name isEqualToString:UCLocalize("INSTALL")])
5168 [delegate_ installPackage:package_];
5169 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5170 [delegate_ installPackage:package_];
5171 else if ([name isEqualToString:UCLocalize("REMOVE")])
5172 [delegate_ removePackage:package_];
5173 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5174 [delegate_ installPackage:package_];
5175 else _assert(false);
5178 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
5179 NSString *context([sheet context]);
5181 if ([context isEqualToString:@"modify"]) {
5182 if (button != [sheet cancelButtonIndex]) {
5183 NSString *buttonName = [buttons_ objectAtIndex:button];
5184 [self _clickButtonWithName:buttonName];
5187 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
5191 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5192 [super webView:view didClearWindowObject:window forFrame:frame];
5193 [window setValue:package_ forKey:@"package"];
5196 - (bool) _allowJavaScriptPanel {
5201 - (void) _customButtonClicked {
5202 int count([buttons_ count]);
5207 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5209 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
5210 [buttons addObjectsFromArray:buttons_];
5212 UIActionSheet *sheet = [[[UIActionSheet alloc]
5215 cancelButtonTitle:nil
5216 destructiveButtonTitle:nil
5217 otherButtonTitles:nil
5220 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
5222 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
5223 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
5225 [sheet setContext:@"modify"];
5227 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
5231 // We don't want to allow non-commercial packages to do custom things to the install button,
5232 // so it must call customButtonClicked with a custom commercial_ == 1 fallthrough.
5233 - (void) customButtonClicked {
5235 [super customButtonClicked];
5237 [self _customButtonClicked];
5240 - (void) reloadButtonClicked {
5241 // Don't reload a package view by clicking the button.
5244 - (void) applyLoadingTitle {
5245 // Don't show "Loading" as the title. Ever.
5248 - (UIBarButtonItem *) rightButton {
5253 - (id) initWithDatabase:(Database *)database {
5254 if ((self = [super init]) != nil) {
5255 database_ = database;
5256 buttons_ = [[NSMutableArray alloc] initWithCapacity:4];
5257 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"package" ofType:@"html"]]];
5261 - (void) setPackage:(Package *)package {
5262 if (package_ != nil) {
5263 [package_ autorelease];
5272 [buttons_ removeAllObjects];
5274 if (package != nil) {
5277 package_ = [package retain];
5278 name_ = [[package id] retain];
5279 commercial_ = [package isCommercial];
5281 if ([package_ mode] != nil)
5282 [buttons_ addObject:UCLocalize("CLEAR")];
5283 if ([package_ source] == nil);
5284 else if ([package_ upgradableAndEssential:NO])
5285 [buttons_ addObject:UCLocalize("UPGRADE")];
5286 else if ([package_ uninstalled])
5287 [buttons_ addObject:UCLocalize("INSTALL")];
5289 [buttons_ addObject:UCLocalize("REINSTALL")];
5290 if (![package_ uninstalled])
5291 [buttons_ addObject:UCLocalize("REMOVE")];
5298 switch ([buttons_ count]) {
5299 case 0: title = nil; break;
5300 case 1: title = [buttons_ objectAtIndex:0]; break;
5301 default: title = UCLocalize("MODIFY"); break;
5304 button_ = [[UIBarButtonItem alloc]
5306 style:UIBarButtonItemStylePlain
5308 action:@selector(customButtonClicked)
5312 - (bool) isLoading {
5313 return commercial_ ? [super isLoading] : false;
5316 - (void) reloadData {
5317 [self setPackage:[database_ packageWithName:name_]];
5322 /* Package Table {{{ */
5323 @interface PackageTable : UIView <
5324 UITableViewDataSource,
5327 _transient Database *database_;
5328 NSMutableArray *packages_;
5329 NSMutableArray *sections_;
5331 NSMutableArray *index_;
5332 NSMutableDictionary *indices_;
5338 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action;
5340 - (void) setDelegate:(id)delegate;
5342 - (void) reloadData;
5343 - (void) resetCursor;
5345 - (UITableView *) list;
5347 - (void) setShouldHideHeaderInShortLists:(BOOL)hide;
5349 - (void) deselectWithAnimation:(BOOL)animated;
5353 @implementation PackageTable
5356 [packages_ release];
5357 [sections_ release];
5365 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
5366 NSInteger count([sections_ count]);
5367 return count == 0 ? 1 : count;
5370 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
5371 if ([sections_ count] == 0)
5373 return [[sections_ objectAtIndex:section] name];
5376 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
5377 if ([sections_ count] == 0)
5379 return [[sections_ objectAtIndex:section] count];
5382 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
5383 Section *section([sections_ objectAtIndex:[path section]]);
5384 NSInteger row([path row]);
5385 Package *package([packages_ objectAtIndex:([section row] + row)]);
5389 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
5390 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
5392 cell = [[[PackageCell alloc] init] autorelease];
5393 [cell setPackage:[self packageAtIndexPath:path]];
5397 - (void) deselectWithAnimation:(BOOL)animated {
5398 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5401 /*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
5402 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
5405 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
5406 Package *package([self packageAtIndexPath:path]);
5407 package = [database_ packageWithName:[package id]];
5408 [target_ performSelector:action_ withObject:package];
5412 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
5413 return [packages_ count] > 20 ? index_ : nil;
5416 - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
5420 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action {
5421 if ((self = [super initWithFrame:frame]) != nil) {
5422 database_ = database;
5427 index_ = [[NSMutableArray alloc] initWithCapacity:32];
5428 indices_ = [[NSMutableDictionary alloc] initWithCapacity:32];
5430 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
5431 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
5433 list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain];
5434 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5435 [list_ setRowHeight:73.0f];
5436 [self addSubview:list_];
5438 [list_ setDataSource:self];
5439 [list_ setDelegate:self];
5443 - (void) setDelegate:(id)delegate {
5444 delegate_ = delegate;
5447 - (bool) hasPackage:(Package *)package {
5451 - (void) reloadData {
5452 NSArray *packages = [database_ packages];
5454 [packages_ removeAllObjects];
5455 [sections_ removeAllObjects];
5457 _profile(PackageTable$reloadData$Filter)
5458 for (Package *package in packages)
5459 if ([self hasPackage:package])
5460 [packages_ addObject:package];
5463 [index_ removeAllObjects];
5464 [indices_ removeAllObjects];
5466 Section *section = nil;
5468 _profile(PackageTable$reloadData$Section)
5469 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
5473 _profile(PackageTable$reloadData$Section$Package)
5474 package = [packages_ objectAtIndex:offset];
5475 index = [package index];
5478 if (section == nil || [section index] != index) {
5479 _profile(PackageTable$reloadData$Section$Allocate)
5480 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
5483 [index_ addObject:[section name]];
5484 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
5486 _profile(PackageTable$reloadData$Section$Add)
5487 [sections_ addObject:section];
5491 [section addToCount];
5495 _profile(PackageTable$reloadData$List)
5500 - (void) resetCursor {
5501 [list_ scrollRectToVisible:CGRectMake(0, 0, 0, 0) animated:NO];
5504 - (UITableView *) list {
5508 - (void) setShouldHideHeaderInShortLists:(BOOL)hide {
5509 //XXX:[list_ setShouldHideHeaderInShortLists:hide];
5514 /* Filtered Package Table {{{ */
5515 @interface FilteredPackageTable : PackageTable {
5521 - (void) setObject:(id)object;
5522 - (void) setObject:(id)object forFilter:(SEL)filter;
5524 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object;
5528 @implementation FilteredPackageTable
5536 - (void) setFilter:(SEL)filter {
5539 /* XXX: this is an unsafe optimization of doomy hell */
5540 Method method(class_getInstanceMethod([Package class], filter));
5541 _assert(method != NULL);
5542 imp_ = method_getImplementation(method);
5543 _assert(imp_ != NULL);
5546 - (void) setObject:(id)object {
5552 object_ = [object retain];
5555 - (void) setObject:(id)object forFilter:(SEL)filter {
5556 [self setFilter:filter];
5557 [self setObject:object];
5560 - (bool) hasPackage:(Package *)package {
5561 _profile(FilteredPackageTable$hasPackage)
5562 return [package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp_))(package, filter_, object_);
5566 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object {
5567 if ((self = [super initWithFrame:frame database:database target:target action:action]) != nil) {
5568 [self setFilter:filter];
5569 object_ = [object retain];
5577 /* Filtered Package Controller {{{ */
5578 @interface FilteredPackageController : CYViewController {
5579 _transient Database *database_;
5580 FilteredPackageTable *packages_;
5584 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
5588 @implementation FilteredPackageController
5591 [packages_ release];
5597 - (void) viewDidAppear:(BOOL)animated {
5598 [super viewDidAppear:animated];
5599 [packages_ deselectWithAnimation:animated];
5602 - (void) didSelectPackage:(Package *)package {
5603 PackageController *view([delegate_ packageController]);
5604 [view setPackage:package];
5605 [view setDelegate:delegate_];
5606 [[self navigationController] pushViewController:view animated:YES];
5609 - (NSString *) title { return title_; }
5611 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
5612 if ((self = [super init]) != nil) {
5613 database_ = database;
5614 title_ = [title copy];
5615 [[self navigationItem] setTitle:title_];
5617 packages_ = [[FilteredPackageTable alloc]
5618 initWithFrame:[[self view] bounds]
5621 action:@selector(didSelectPackage:)
5626 [packages_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5627 [[self view] addSubview:packages_];
5631 - (void) reloadData {
5632 [packages_ reloadData];
5635 - (void) setDelegate:(id)delegate {
5636 [super setDelegate:delegate];
5637 [packages_ setDelegate:delegate];
5644 /* Add Source Controller {{{ */
5645 @interface AddSourceController : CYViewController {
5646 _transient Database *database_;
5649 - (id) initWithDatabase:(Database *)database;
5653 @implementation AddSourceController
5655 - (id) initWithDatabase:(Database *)database {
5656 if ((self = [super init]) != nil) {
5657 database_ = database;
5663 /* Source Cell {{{ */
5664 @interface SourceCell : UITableViewCell <
5669 NSString *description_;
5671 ContentView *content_;
5674 - (void) setSource:(Source *)source;
5678 @implementation SourceCell
5680 - (void) clearSource {
5683 [description_ release];
5692 - (void) setSource:(Source *)source {
5696 icon_ = [UIImage applicationImageNamed:[NSString stringWithFormat:@"Sources/%@.png", [source host]]];
5698 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
5699 icon_ = [icon_ retain];
5701 origin_ = [[source name] retain];
5702 label_ = [[source uri] retain];
5703 description_ = [[source description] retain];
5705 [content_ setNeedsDisplay];
5714 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5715 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5716 UIView *content([self contentView]);
5717 CGRect bounds([content bounds]);
5719 content_ = [[ContentView alloc] initWithFrame:bounds];
5720 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5721 [content_ setBackgroundColor:[UIColor whiteColor]];
5722 [content addSubview:content_];
5724 [content_ setDelegate:self];
5725 [content_ setOpaque:YES];
5729 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
5730 [super setSelected:selected animated:animated];
5731 [content_ setNeedsDisplay];
5734 - (void) drawContentRect:(CGRect)rect {
5735 bool selected([self isSelected]);
5736 float width(rect.size.width);
5739 [icon_ drawInRect:CGRectMake(10, 10, 30, 30)];
5746 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5750 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5754 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 40) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5759 /* Source Table {{{ */
5760 @interface SourceTable : CYViewController <
5761 UITableViewDataSource,
5764 _transient Database *database_;
5766 NSMutableArray *sources_;
5770 UIProgressHUD *hud_;
5773 //NSURLConnection *installer_;
5774 NSURLConnection *trivial_;
5775 NSURLConnection *trivial_bz2_;
5776 NSURLConnection *trivial_gz_;
5777 //NSURLConnection *automatic_;
5782 - (id) initWithDatabase:(Database *)database;
5784 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
5788 @implementation SourceTable
5790 - (void) _deallocConnection:(NSURLConnection *)connection {
5791 if (connection != nil) {
5792 [connection cancel];
5793 //[connection setDelegate:nil];
5794 [connection release];
5806 //[self _deallocConnection:installer_];
5807 [self _deallocConnection:trivial_];
5808 [self _deallocConnection:trivial_gz_];
5809 [self _deallocConnection:trivial_bz2_];
5810 //[self _deallocConnection:automatic_];
5817 - (void) viewDidAppear:(BOOL)animated {
5818 [super viewDidAppear:animated];
5819 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5822 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
5823 return offset_ == 0 ? 1 : 2;
5826 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
5827 switch (section + (offset_ == 0 ? 1 : 0)) {
5828 case 0: return UCLocalize("ENTERED_BY_USER");
5829 case 1: return UCLocalize("INSTALLED_BY_PACKAGE");
5835 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5836 int count = [sources_ count];
5838 case 0: return (offset_ == 0 ? count : offset_);
5839 case 1: return count - offset_;
5845 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
5847 switch (indexPath.section) {
5848 case 0: idx = indexPath.row; break;
5849 case 1: idx = indexPath.row + offset_; break;
5853 return [sources_ objectAtIndex:idx];
5856 - (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5857 Source *source = [self sourceAtIndexPath:indexPath];
5858 return [source description] == nil ? 56 : 73;
5861 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5862 static NSString *cellIdentifier = @"SourceCell";
5864 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
5865 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
5866 [cell setSource:[self sourceAtIndexPath:indexPath]];
5871 - (UITableViewCellAccessoryType) tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
5872 return UITableViewCellAccessoryDisclosureIndicator;
5875 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
5876 Source *source = [self sourceAtIndexPath:indexPath];
5878 FilteredPackageController *packages = [[[FilteredPackageController alloc]
5879 initWithDatabase:database_
5880 title:[source label]
5881 filter:@selector(isVisibleInSource:)
5885 [packages setDelegate:delegate_];
5887 [[self navigationController] pushViewController:packages animated:YES];
5890 - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
5891 Source *source = [self sourceAtIndexPath:indexPath];
5892 return [source record] != nil;
5895 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
5896 Source *source = [self sourceAtIndexPath:indexPath];
5897 [Sources_ removeObjectForKey:[source key]];
5898 [delegate_ syncData];
5902 [Sources_ setObject:[NSDictionary dictionaryWithObjectsAndKeys:
5905 @"./", @"Distribution",
5906 nil] forKey:[NSString stringWithFormat:@"deb:%@:./", href_]];
5908 [delegate_ syncData];
5911 - (NSString *) getWarning {
5912 NSString *href(href_);
5913 NSRange colon([href rangeOfString:@"://"]);
5914 if (colon.location != NSNotFound)
5915 href = [href substringFromIndex:(colon.location + 3)];
5916 href = [href stringByAddingPercentEscapes];
5917 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
5918 href = [href stringByCachingURLWithCurrentCDN];
5920 NSURL *url([NSURL URLWithString:href]);
5922 NSStringEncoding encoding;
5923 NSError *error(nil);
5925 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
5926 return [warning length] == 0 ? nil : warning;
5930 - (void) _endConnection:(NSURLConnection *)connection {
5931 NSURLConnection **field = NULL;
5932 if (connection == trivial_)
5934 else if (connection == trivial_bz2_)
5935 field = &trivial_bz2_;
5936 else if (connection == trivial_gz_)
5937 field = &trivial_gz_;
5938 _assert(field != NULL);
5939 [connection release];
5944 trivial_bz2_ == nil &&
5950 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
5953 UIAlertView *alert = [[[UIAlertView alloc]
5954 initWithTitle:UCLocalize("SOURCE_WARNING")
5957 cancelButtonTitle:UCLocalize("CANCEL")
5958 otherButtonTitles:UCLocalize("ADD_ANYWAY"), nil
5961 [alert setContext:@"warning"];
5962 [alert setNumberOfRows:1];
5966 } else if (error_ != nil) {
5967 UIAlertView *alert = [[[UIAlertView alloc]
5968 initWithTitle:UCLocalize("VERIFICATION_ERROR")
5969 message:[error_ localizedDescription]
5971 cancelButtonTitle:UCLocalize("OK")
5972 otherButtonTitles:nil
5975 [alert setContext:@"urlerror"];
5978 UIAlertView *alert = [[[UIAlertView alloc]
5979 initWithTitle:UCLocalize("NOT_REPOSITORY")
5980 message:UCLocalize("NOT_REPOSITORY_EX")
5982 cancelButtonTitle:UCLocalize("OK")
5983 otherButtonTitles:nil
5986 [alert setContext:@"trivial"];
5990 [delegate_ setStatusBarShowsProgress:NO];
5991 [delegate_ removeProgressHUD:hud_];
6001 if (error_ != nil) {
6008 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
6009 switch ([response statusCode]) {
6015 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
6016 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
6018 error_ = [error retain];
6019 [self _endConnection:connection];
6022 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
6023 [self _endConnection:connection];
6026 - (NSString *) title { return UCLocalize("SOURCES"); }
6028 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
6029 NSMutableURLRequest *request = [NSMutableURLRequest
6030 requestWithURL:[NSURL URLWithString:href]
6031 cachePolicy:NSURLRequestUseProtocolCachePolicy
6032 timeoutInterval:120.0
6035 [request setHTTPMethod:method];
6037 if (Machine_ != NULL)
6038 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
6039 if (UniqueID_ != nil)
6040 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6042 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
6044 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
6047 - (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
6048 NSString *context([alert context]);
6050 if ([context isEqualToString:@"source"]) {
6053 NSString *href = [[alert textField] text];
6055 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
6057 if (![href hasSuffix:@"/"])
6058 href_ = [href stringByAppendingString:@"/"];
6061 href_ = [href_ retain];
6063 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
6064 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
6065 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
6066 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
6070 hud_ = [[delegate_ addProgressHUD] retain];
6071 [hud_ setText:UCLocalize("VERIFYING_URL")];
6080 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6081 } else if ([context isEqualToString:@"trivial"])
6082 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6083 else if ([context isEqualToString:@"urlerror"])
6084 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6085 else if ([context isEqualToString:@"warning"]) {
6100 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6104 - (id) initWithDatabase:(Database *)database {
6105 if ((self = [super init]) != nil) {
6106 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
6107 [self updateButtonsForEditingStatus:NO animated:NO];
6109 database_ = database;
6110 sources_ = [[NSMutableArray arrayWithCapacity:16] retain];
6112 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
6113 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6114 [[self view] addSubview:list_];
6116 [list_ setDataSource:self];
6117 [list_ setDelegate:self];
6123 - (void) reloadData {
6125 if (!list.ReadMainList())
6128 [sources_ removeAllObjects];
6129 [sources_ addObjectsFromArray:[database_ sources]];
6131 [sources_ sortUsingSelector:@selector(compareByNameAndType:)];
6134 int count([sources_ count]);
6136 for (int i = 0; i != count; i++) {
6137 if ([[sources_ objectAtIndex:i] record] == nil) break;
6141 [list_ setEditing:NO];
6142 [self updateButtonsForEditingStatus:NO animated:NO];
6146 - (void) addButtonClicked {
6147 /*[book_ pushPage:[[[AddSourceController alloc]
6152 UIAlertView *alert = [[[UIAlertView alloc]
6153 initWithTitle:UCLocalize("ENTER_APT_URL")
6156 cancelButtonTitle:UCLocalize("CANCEL")
6157 otherButtonTitles:UCLocalize("ADD_SOURCE"), nil
6160 [alert setContext:@"source"];
6161 [alert setTransform:CGAffineTransformTranslate([alert transform], 0.0, 100.0)];
6163 [alert setNumberOfRows:1];
6164 [alert addTextFieldWithValue:@"http://" label:@""];
6166 UITextInputTraits *traits = [[alert textField] textInputTraits];
6167 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
6168 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
6169 [traits setKeyboardType:UIKeyboardTypeURL];
6170 // XXX: UIReturnKeyDone
6171 [traits setReturnKeyType:UIReturnKeyNext];
6176 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
6177 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
6178 initWithTitle:UCLocalize("ADD")
6179 style:UIBarButtonItemStylePlain
6181 action:@selector(addButtonClicked)
6183 [[self navigationItem] setLeftBarButtonItem:editing ? leftItem : [[self navigationItem] backBarButtonItem] animated:animated];
6186 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6187 initWithTitle:editing ? UCLocalize("DONE") : UCLocalize("EDIT")
6188 style:editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6190 action:@selector(editButtonClicked)
6192 [[self navigationItem] setRightBarButtonItem:rightItem animated:animated];
6193 [rightItem release];
6195 if (IsWildcat_ && !editing) {
6196 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6197 initWithTitle:UCLocalize("SETTINGS")
6198 style:UIBarButtonItemStylePlain
6200 action:@selector(settingsButtonClicked)
6202 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6203 [settingsItem release];
6207 - (void) settingsButtonClicked {
6208 [delegate_ showSettings];
6211 - (void) editButtonClicked {
6212 [list_ setEditing:![list_ isEditing] animated:YES];
6214 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
6220 /* Installed Controller {{{ */
6221 @interface InstalledController : FilteredPackageController {
6225 - (id) initWithDatabase:(Database *)database;
6227 - (void) updateRoleButton;
6228 - (void) queueStatusDidChange;
6232 @implementation InstalledController
6238 - (NSString *) title { return UCLocalize("INSTALLED"); }
6240 - (id) initWithDatabase:(Database *)database {
6241 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndVisible:) with:[NSNumber numberWithBool:YES]]) != nil) {
6242 [self updateRoleButton];
6243 [self queueStatusDidChange];
6248 - (void) queueButtonClicked {
6253 - (void) queueStatusDidChange {
6256 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6257 initWithTitle:UCLocalize("QUEUE")
6258 style:UIBarButtonItemStyleDone
6260 action:@selector(queueButtonClicked)
6262 if (Queuing_) [[self navigationItem] setLeftBarButtonItem:queueItem];
6263 else [[self navigationItem] setLeftBarButtonItem:nil];
6264 [queueItem release];
6269 - (void) reloadData {
6270 [packages_ reloadData];
6273 - (void) updateRoleButton {
6274 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6275 initWithTitle:expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE")
6276 style:expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6278 action:@selector(roleButtonClicked)
6280 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"]) [[self navigationItem] setRightBarButtonItem:rightItem];
6281 [rightItem release];
6284 - (void) roleButtonClicked {
6285 [packages_ setObject:[NSNumber numberWithBool:expert_]];
6286 [packages_ reloadData];
6289 [self updateRoleButton];
6292 - (void) setDelegate:(id)delegate {
6293 [super setDelegate:delegate];
6294 [packages_ setDelegate:delegate];
6300 /* Home Controller {{{ */
6301 @interface HomeController : CYBrowserController {
6306 @implementation HomeController
6308 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
6309 [super _setMoreHeaders:request];
6312 [request setValue:ChipID_ forHTTPHeaderField:@"X-Chip-ID"];
6313 if (UniqueID_ != nil)
6314 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6316 [request setValue:PLMN_ forHTTPHeaderField:@"X-Carrier-ID"];
6319 - (void) aboutButtonClicked {
6320 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6322 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6323 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6324 [alert setCancelButtonIndex:0];
6327 @"Copyright (C) 2008-2010\n"
6328 "Jay Freeman (saurik)\n"
6329 "saurik@saurik.com\n"
6330 "http://www.saurik.com/"
6336 - (void) viewWillAppear:(BOOL)animated {
6337 [super viewWillAppear:animated];
6338 //[[self navigationController] setNavigationBarHidden:YES animated:animated];
6341 - (void) viewWillDisappear:(BOOL)animated {
6342 [super viewWillDisappear:animated];
6343 //[[self navigationController] setNavigationBarHidden:NO animated:animated];
6347 if ((self = [super init]) != nil) {
6348 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
6349 initWithTitle:UCLocalize("ABOUT")
6350 style:UIBarButtonItemStylePlain
6352 action:@selector(aboutButtonClicked)
6359 /* Manage Controller {{{ */
6360 @interface ManageController : CYBrowserController {
6363 - (void) queueStatusDidChange;
6366 @implementation ManageController
6369 if ((self = [super init]) != nil) {
6370 [[self navigationItem] setTitle:UCLocalize("MANAGE")];
6372 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6373 initWithTitle:UCLocalize("SETTINGS")
6374 style:UIBarButtonItemStylePlain
6376 action:@selector(settingsButtonClicked)
6378 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6379 [settingsItem release];
6381 [self queueStatusDidChange];
6385 - (void) settingsButtonClicked {
6386 [delegate_ showSettings];
6390 - (void) queueButtonClicked {
6394 - (void) applyLoadingTitle {
6395 // No "Loading" title.
6398 - (void) applyRightButton {
6403 - (void) queueStatusDidChange {
6405 if (!IsWildcat_ && Queuing_) {
6406 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6407 initWithTitle:UCLocalize("QUEUE")
6408 style:UIBarButtonItemStyleDone
6410 action:@selector(queueButtonClicked)
6412 [[self navigationItem] setRightBarButtonItem:queueItem];
6414 [queueItem release];
6416 [[self navigationItem] setRightBarButtonItem:nil];
6421 - (bool) isLoading {
6428 /* Refresh Bar {{{ */
6429 @interface RefreshBar : UINavigationBar {
6430 UIProgressIndicator *indicator_;
6431 UITextLabel *prompt_;
6432 UIProgressBar *progress_;
6433 UINavigationButton *cancel_;
6438 @implementation RefreshBar
6440 - (void) positionViews {
6441 CGRect frame = [cancel_ frame];
6442 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6443 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6444 [cancel_ setFrame:frame];
6446 CGSize prgsize = {75, 100};
6448 [self frame].size.width - prgsize.width - 10,
6449 ([self frame].size.height - prgsize.height) / 2
6451 [progress_ setFrame:prgrect];
6453 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6454 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6455 CGRect indrect = {{indoffset, indoffset}, indsize};
6456 [indicator_ setFrame:indrect];
6458 CGSize prmsize = {215, indsize.height + 4};
6460 indoffset * 2 + indsize.width,
6461 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6463 [prompt_ setFrame:prmrect];
6466 - (void)setFrame:(CGRect)frame {
6467 [super setFrame:frame];
6469 [self positionViews];
6472 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6473 if ((self = [super initWithFrame:frame])) {
6474 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6476 [self setTintColor:[UIColor colorWithRed:0.23 green:0.23 blue:0.23 alpha:1]];
6477 [self setBarStyle:UIBarStyleBlack];
6479 UIBarStyle barstyle([self _barStyle:NO]);
6480 bool ugly(barstyle == UIBarStyleDefault);
6482 UIProgressIndicatorStyle style = ugly ?
6483 UIProgressIndicatorStyleMediumBrown :
6484 UIProgressIndicatorStyleMediumWhite;
6486 indicator_ = [[UIProgressIndicator alloc] initWithFrame:CGRectZero];
6487 [indicator_ setStyle:style];
6488 [indicator_ startAnimation];
6489 [self addSubview:indicator_];
6491 prompt_ = [[UITextLabel alloc] initWithFrame:CGRectZero];
6492 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6493 [prompt_ setBackgroundColor:[UIColor clearColor]];
6494 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6495 [self addSubview:prompt_];
6497 progress_ = [[UIProgressBar alloc] initWithFrame:CGRectZero];
6498 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6499 [progress_ setStyle:0];
6500 [self addSubview:progress_];
6502 cancel_ = [[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted];
6503 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6504 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6505 [cancel_ setBarStyle:barstyle];
6507 [self positionViews];
6512 [cancel_ removeFromSuperview];
6516 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6517 [progress_ setProgress:0];
6518 [self addSubview:cancel_];
6522 [cancel_ removeFromSuperview];
6525 - (void) setPrompt:(NSString *)prompt {
6526 [prompt_ setText:prompt];
6529 - (void) setProgress:(float)progress {
6530 [progress_ setProgress:progress];
6536 @class CYNavigationController;
6538 /* Cydia Tab Bar Controller {{{ */
6539 @interface CYTabBarController : UITabBarController {
6540 Database *database_;
6545 @implementation CYTabBarController
6547 /* XXX: some logic should probably go here related to
6548 freeing the view controllers on tab change */
6550 - (void) reloadData {
6551 size_t count([[self viewControllers] count]);
6552 for (size_t i(0); i != count; ++i) {
6553 CYNavigationController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6558 - (id) initWithDatabase:(Database *)database {
6559 if ((self = [super init]) != nil) {
6560 database_ = database;
6567 /* Cydia Navigation Controller {{{ */
6568 @interface CYNavigationController : UINavigationController {
6569 _transient Database *database_;
6570 id<UINavigationControllerDelegate> delegate_;
6573 - (id) initWithDatabase:(Database *)database;
6574 - (void) reloadData;
6579 @implementation CYNavigationController
6581 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
6582 // Inherit autorotation settings for modal parents.
6583 if ([self parentViewController] && [[self parentViewController] modalViewController] == self) {
6584 return [[self parentViewController] shouldAutorotateToInterfaceOrientation:orientation];
6586 return [super shouldAutorotateToInterfaceOrientation:orientation];
6594 - (void) reloadData {
6595 size_t count([[self viewControllers] count]);
6596 for (size_t i(0); i != count; ++i) {
6597 CYViewController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6602 - (void) setDelegate:(id<UINavigationControllerDelegate>)delegate {
6603 delegate_ = delegate;
6606 - (id) initWithDatabase:(Database *)database {
6607 if ((self = [super init]) != nil) {
6608 database_ = database;
6614 /* Cydia:// Protocol {{{ */
6615 @interface CydiaURLProtocol : NSURLProtocol {
6620 @implementation CydiaURLProtocol
6622 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
6623 NSURL *url([request URL]);
6626 NSString *scheme([[url scheme] lowercaseString]);
6627 if (scheme == nil || ![scheme isEqualToString:@"cydia"])
6632 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
6636 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
6637 id<NSURLProtocolClient> client([self client]);
6639 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
6641 NSData *data(UIImagePNGRepresentation(icon));
6643 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
6644 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
6645 [client URLProtocol:self didLoadData:data];
6646 [client URLProtocolDidFinishLoading:self];
6650 - (void) startLoading {
6651 id<NSURLProtocolClient> client([self client]);
6652 NSURLRequest *request([self request]);
6654 NSURL *url([request URL]);
6655 NSString *href([url absoluteString]);
6657 NSString *path([href substringFromIndex:8]);
6658 NSRange slash([path rangeOfString:@"/"]);
6661 if (slash.location == NSNotFound) {
6665 command = [path substringToIndex:slash.location];
6666 path = [path substringFromIndex:(slash.location + 1)];
6669 Database *database([Database sharedInstance]);
6671 if ([command isEqualToString:@"package-icon"]) {
6674 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6675 Package *package([database packageWithName:path]);
6678 UIImage *icon([package icon]);
6679 [self _returnPNGWithImage:icon forRequest:request];
6680 } else if ([command isEqualToString:@"source-icon"]) {
6683 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6684 NSString *source(Simplify(path));
6685 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sources/%@.png", App_, source]]);
6687 icon = [UIImage applicationImageNamed:@"unknown.png"];
6688 [self _returnPNGWithImage:icon forRequest:request];
6689 } else if ([command isEqualToString:@"uikit-image"]) {
6692 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6693 UIImage *icon(_UIImageWithName(path));
6694 [self _returnPNGWithImage:icon forRequest:request];
6695 } else if ([command isEqualToString:@"section-icon"]) {
6698 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6699 NSString *section(Simplify(path));
6700 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]]);
6702 icon = [UIImage applicationImageNamed:@"unknown.png"];
6703 [self _returnPNGWithImage:icon forRequest:request];
6705 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
6709 - (void) stopLoading {
6715 /* Sections Controller {{{ */
6716 @interface SectionsController : CYViewController <
6717 UITableViewDataSource,
6720 _transient Database *database_;
6721 NSMutableArray *sections_;
6722 NSMutableArray *filtered_;
6728 - (id) initWithDatabase:(Database *)database;
6729 - (void) reloadData;
6732 - (void) editButtonClicked;
6736 @implementation SectionsController
6739 [list_ setDataSource:nil];
6740 [list_ setDelegate:nil];
6742 [sections_ release];
6743 [filtered_ release];
6745 [accessory_ release];
6749 - (void) viewDidAppear:(BOOL)animated {
6750 [super viewDidAppear:animated];
6751 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6754 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
6755 Section *section = (editing_ ? [sections_ objectAtIndex:[indexPath row]] : ([indexPath row] == 0 ? nil : [filtered_ objectAtIndex:([indexPath row] - 1)]));
6759 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6760 return editing_ ? [sections_ count] : [filtered_ count] + 1;
6763 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6767 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6768 static NSString *reuseIdentifier = @"SectionCell";
6770 SectionCell *cell = (SectionCell *) [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6771 if (cell == nil) cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6772 [cell setSection:[self sectionAtIndexPath:indexPath] editing:editing_];
6777 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
6781 Section *section = [self sectionAtIndexPath:indexPath];
6782 NSString *name = [section name];
6785 if ([indexPath row] == 0) {
6788 title = UCLocalize("ALL_PACKAGES");
6791 name = [NSString stringWithString:name];
6792 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
6795 title = UCLocalize("NO_SECTION");
6799 FilteredPackageController *table = [[[FilteredPackageController alloc]
6800 initWithDatabase:database_
6802 filter:@selector(isVisibleInSection:)
6806 [table setDelegate:delegate_];
6808 [[self navigationController] pushViewController:table animated:YES];
6811 - (NSString *) title { return UCLocalize("SECTIONS"); }
6813 - (id) initWithDatabase:(Database *)database {
6814 if ((self = [super init]) != nil) {
6815 database_ = database;
6817 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
6819 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
6820 filtered_ = [[NSMutableArray arrayWithCapacity:16] retain];
6822 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
6823 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6824 [list_ setRowHeight:45.0f];
6825 [[self view] addSubview:list_];
6827 [list_ setDataSource:self];
6828 [list_ setDelegate:self];
6834 - (void) reloadData {
6835 NSArray *packages = [database_ packages];
6837 [sections_ removeAllObjects];
6838 [filtered_ removeAllObjects];
6841 typedef __gnu_cxx::hash_map<NSString *, Section *, NSStringMapHash, NSStringMapEqual> SectionMap;
6842 SectionMap sections;
6843 sections.resize(64);
6845 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
6849 for (Package *package in packages) {
6850 NSString *name([package section]);
6851 NSString *key(name == nil ? @"" : name);
6856 _profile(SectionsView$reloadData$Section)
6857 section = §ions[key];
6858 if (*section == nil) {
6859 _profile(SectionsView$reloadData$Section$Allocate)
6860 *section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6865 [*section addToCount];
6867 _profile(SectionsView$reloadData$Filter)
6868 if (![package valid] || ![package visible])
6872 [*section addToRow];
6876 _profile(SectionsView$reloadData$Section)
6877 section = [sections objectForKey:key];
6878 if (section == nil) {
6879 _profile(SectionsView$reloadData$Section$Allocate)
6880 section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6881 [sections setObject:section forKey:key];
6886 [section addToCount];
6888 _profile(SectionsView$reloadData$Filter)
6889 if (![package valid] || ![package visible])
6899 for (SectionMap::const_iterator i(sections.begin()), e(sections.end()); i != e; ++i)
6900 [sections_ addObject:i->second];
6902 [sections_ addObjectsFromArray:[sections allValues]];
6905 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
6907 for (Section *section in sections_) {
6908 size_t count([section row]);
6912 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
6913 [section setCount:count];
6914 [filtered_ addObject:section];
6917 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6918 initWithTitle:[sections_ count] == 0 ? nil : UCLocalize("EDIT")
6919 style:UIBarButtonItemStylePlain
6921 action:@selector(editButtonClicked)
6923 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] != nil];
6924 [rightItem release];
6930 - (void) resetView {
6932 [self editButtonClicked];
6935 - (void) editButtonClicked {
6936 if ((editing_ = !editing_))
6939 [delegate_ updateData];
6941 [[self navigationItem] setTitle:editing_ ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
6942 [[[self navigationItem] rightBarButtonItem] setTitle:[sections_ count] == 0 ? nil : editing_ ? UCLocalize("DONE") : UCLocalize("EDIT")];
6943 [[[self navigationItem] rightBarButtonItem] setStyle:editing_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain];
6946 - (UIView *) accessoryView {
6952 /* Changes Controller {{{ */
6953 @interface ChangesController : CYViewController <
6954 UITableViewDataSource,
6957 _transient Database *database_;
6958 CFMutableArrayRef packages_;
6959 NSMutableArray *sections_;
6962 BOOL hasSentFirstLoad_;
6965 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
6966 - (void) reloadData;
6970 @implementation ChangesController
6973 [list_ setDelegate:nil];
6974 [list_ setDataSource:nil];
6976 CFRelease(packages_);
6978 [sections_ release];
6983 - (void) viewDidAppear:(BOOL)animated {
6984 [super viewDidAppear:animated];
6985 if (!hasSentFirstLoad_) {
6986 hasSentFirstLoad_ = YES;
6987 [self performSelector:@selector(reloadData) withObject:nil afterDelay:0.0];
6989 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6993 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6994 NSInteger count([sections_ count]);
6995 return count == 0 ? 1 : count;
6998 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6999 if ([sections_ count] == 0)
7001 return [[sections_ objectAtIndex:section] name];
7004 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7005 if ([sections_ count] == 0)
7007 return [[sections_ objectAtIndex:section] count];
7010 - (Package *) packageAtIndex:(NSUInteger)index {
7011 return (Package *) CFArrayGetValueAtIndex(packages_, index);
7014 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7015 Section *section([sections_ objectAtIndex:[path section]]);
7016 NSInteger row([path row]);
7017 return [self packageAtIndex:([section row] + row)];
7020 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
7021 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
7023 cell = [[[PackageCell alloc] init] autorelease];
7024 [cell setPackage:[self packageAtIndexPath:path]];
7028 /*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
7029 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
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];
7041 - (void) refreshButtonClicked {
7042 [delegate_ beginUpdate];
7043 [[self navigationItem] setLeftBarButtonItem:nil animated:YES];
7046 - (void) upgradeButtonClicked {
7047 [delegate_ distUpgrade];
7050 - (NSString *) title { return UCLocalize("CHANGES"); }
7052 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
7053 if ((self = [super init]) != nil) {
7054 database_ = database;
7055 [[self navigationItem] setTitle:UCLocalize("CHANGES")];
7057 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL);
7059 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7061 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
7062 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7063 [list_ setRowHeight:73.0f];
7064 [[self view] addSubview:list_];
7066 [list_ setDataSource:self];
7067 [list_ setDelegate:self];
7069 delegate_ = delegate;
7073 - (void) _reloadPackages:(NSArray *)packages {
7075 for (Package *package in packages)
7077 [package uninstalled] && [package valid] && [package visible] ||
7078 [package upgradableAndEssential:YES]
7080 CFArrayAppendValue(packages_, package);
7083 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackageChangesRadix) withContext:NULL];
7087 - (void) reloadData {
7088 NSArray *packages = [database_ packages];
7090 CFArrayRemoveAllValues(packages_);
7092 [sections_ removeAllObjects];
7095 UIProgressHUD *hud([delegate_ addProgressHUD]);
7097 [hud setText:@"Loading Changes"];
7098 //NSLog(@"HUD:%@::%@", delegate_, hud);
7099 [self yieldToSelector:@selector(_reloadPackages:) withObject:packages];
7100 [delegate_ removeProgressHUD:hud];
7102 [self _reloadPackages:packages];
7105 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7106 Section *ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") localize:NO] autorelease];
7107 Section *section = nil;
7111 bool unseens = false;
7113 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7115 for (size_t offset = 0, count = CFArrayGetCount(packages_); offset != count; ++offset) {
7116 Package *package = [self packageAtIndex:offset];
7118 BOOL uae = [package upgradableAndEssential:YES];
7124 _profile(ChangesController$reloadData$Remember)
7125 seen = [package seen];
7128 if (section == nil || last != seen && (seen == nil || [seen compare:last] != NSOrderedSame)) {
7133 name = UCLocalize("UNKNOWN");
7135 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) seen);
7139 _profile(ChangesController$reloadData$Allocate)
7140 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7141 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7142 [sections_ addObject:section];
7146 [section addToCount];
7147 } else if ([package ignored])
7148 [ignored addToCount];
7151 [upgradable addToCount];
7156 CFRelease(formatter);
7159 Section *last = [sections_ lastObject];
7160 size_t count = [last count];
7161 CFArrayReplaceValues(packages_, CFRangeMake(CFArrayGetCount(packages_) - count, count), NULL, 0);
7162 [sections_ removeLastObject];
7165 if ([ignored count] != 0)
7166 [sections_ insertObject:ignored atIndex:0];
7168 [sections_ insertObject:upgradable atIndex:0];
7172 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7173 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7174 style:UIBarButtonItemStylePlain
7176 action:@selector(upgradeButtonClicked)
7178 if (upgrades_ > 0) [[self navigationItem] setRightBarButtonItem:rightItem];
7179 [rightItem release];
7181 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
7182 initWithTitle:UCLocalize("REFRESH")
7183 style:UIBarButtonItemStylePlain
7185 action:@selector(refreshButtonClicked)
7187 if (![delegate_ updating]) [[self navigationItem] setLeftBarButtonItem:leftItem];
7193 /* Search Controller {{{ */
7194 @interface SearchController : FilteredPackageController <
7197 UISearchBar *search_;
7200 - (id) initWithDatabase:(Database *)database;
7201 - (void) reloadData;
7205 @implementation SearchController
7212 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7213 [packages_ setObject:[search_ text] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7214 [search_ resignFirstResponder];
7218 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7219 [packages_ setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7223 - (NSString *) title { return nil; }
7225 - (id) initWithDatabase:(Database *)database {
7226 return [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:nil];
7229 - (void)viewDidAppear:(BOOL)animated {
7230 [super viewDidAppear:animated];
7232 search_ = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7233 [search_ layoutSubviews];
7234 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7235 UITextField *textField = [search_ searchField];
7236 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7237 [search_ setDelegate:self];
7238 [textField setEnablesReturnKeyAutomatically:NO];
7239 [[self navigationItem] setTitleView:textField];
7243 - (void) _reloadData {
7246 - (void) reloadData {
7247 _profile(SearchController$reloadData)
7248 [packages_ reloadData];
7251 [packages_ resetCursor];
7254 - (void) didSelectPackage:(Package *)package {
7255 [search_ resignFirstResponder];
7256 [super didSelectPackage:package];
7261 /* Settings Controller {{{ */
7262 @interface SettingsController : CYViewController <
7263 UITableViewDataSource,
7266 _transient Database *database_;
7269 UITableView *table_;
7270 id subscribedSwitch_;
7272 UITableViewCell *subscribedCell_;
7273 UITableViewCell *ignoredCell_;
7276 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7280 @implementation SettingsController
7284 if (package_ != nil)
7287 [subscribedSwitch_ release];
7288 [ignoredSwitch_ release];
7289 [subscribedCell_ release];
7290 [ignoredCell_ release];
7295 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7296 if (package_ == nil)
7302 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7303 if (package_ == nil)
7309 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7310 return UCLocalize("SHOW_ALL_CHANGES_EX");
7313 - (void) onSomething:(BOOL)value withKey:(NSString *)key {
7314 if (package_ == nil)
7317 NSMutableDictionary *metadata([package_ metadata]);
7320 if (NSNumber *number = [metadata objectForKey:key])
7321 before = [number boolValue];
7325 if (value != before) {
7326 [metadata setObject:[NSNumber numberWithBool:value] forKey:key];
7328 [delegate_ updateData];
7332 - (void) onSubscribed:(id)control {
7333 [self onSomething:(int) [control isOn] withKey:@"IsSubscribed"];
7336 - (void) onIgnored:(id)control {
7337 [self onSomething:(int) [control isOn] withKey:@"IsIgnored"];
7340 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7341 if (package_ == nil)
7344 switch ([indexPath row]) {
7345 case 0: return subscribedCell_;
7346 case 1: return ignoredCell_;
7354 - (NSString *) title { return UCLocalize("SETTINGS"); }
7356 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7357 if ((self = [super init])) {
7358 database_ = database;
7359 name_ = [package retain];
7361 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7363 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7364 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7365 [[self view] addSubview:table_];
7367 subscribedSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7368 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7369 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7371 ignoredSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7372 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7373 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7375 subscribedCell_ = [[UITableViewCell alloc] init];
7376 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7377 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7378 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7380 ignoredCell_ = [[UITableViewCell alloc] init];
7381 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7382 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7383 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7385 [table_ setDataSource:self];
7386 [table_ setDelegate:self];
7391 - (void) reloadData {
7392 if (package_ != nil)
7393 [package_ autorelease];
7394 package_ = [database_ packageWithName:name_];
7395 if (package_ != nil) {
7397 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7398 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7401 [table_ reloadData];
7406 /* Signature Controller {{{ */
7407 @interface SignatureController : CYBrowserController {
7408 _transient Database *database_;
7412 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7416 @implementation SignatureController
7423 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
7425 [super webView:view didClearWindowObject:window forFrame:frame];
7428 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7429 if ((self = [super init]) != nil) {
7430 database_ = database;
7431 package_ = [package retain];
7436 - (void) reloadData {
7437 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"signature" ofType:@"html"]]];
7443 /* Role Controller {{{ */
7444 @interface RoleController : CYViewController <
7445 UITableViewDataSource,
7448 _transient Database *database_;
7450 UITableView *table_;
7451 UISegmentedControl *segment_;
7455 - (void) showDoneButton;
7456 - (void) resizeSegmentedControl;
7460 @implementation RoleController
7464 [container_ release];
7469 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
7470 if ((self = [super init])) {
7471 database_ = database;
7472 roledelegate_ = delegate;
7474 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
7476 NSArray *items = [NSArray arrayWithObjects:
7478 UCLocalize("HACKER"),
7479 UCLocalize("DEVELOPER"),
7481 segment_ = [[UISegmentedControl alloc] initWithItems:items];
7482 container_ = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)];
7483 [container_ addSubview:segment_];
7486 if ([Role_ isEqualToString:@"User"]) index = 0;
7487 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
7488 if ([Role_ isEqualToString:@"Developer"]) index = 2;
7490 [segment_ setSelectedSegmentIndex:index];
7491 [self showDoneButton];
7494 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
7495 [self resizeSegmentedControl];
7497 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7498 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7499 [table_ setDelegate:self];
7500 [table_ setDataSource:self];
7501 [[self view] addSubview:table_];
7502 [table_ reloadData];
7506 - (void) resizeSegmentedControl {
7507 CGFloat width = [[self view] frame].size.width;
7508 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
7511 - (void) viewWillAppear:(BOOL)animated {
7512 [super viewWillAppear:animated];
7514 [self resizeSegmentedControl];
7517 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7518 [self resizeSegmentedControl];
7521 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7522 [self resizeSegmentedControl];
7526 NSString *role(nil);
7528 switch ([segment_ selectedSegmentIndex]) {
7529 case 0: role = @"User"; break;
7530 case 1: role = @"Hacker"; break;
7531 case 2: role = @"Developer"; break;
7536 if (![role isEqualToString:Role_]) {
7537 bool rolling(Role_ == nil);
7540 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
7544 [Metadata_ setObject:Settings_ forKey:@"Settings"];
7549 [roledelegate_ loadData];
7551 [roledelegate_ updateData];
7555 - (void) segmentChanged:(UISegmentedControl *)control {
7556 [self showDoneButton];
7559 - (void) doneButtonClicked {
7561 [[self navigationController] dismissModalViewControllerAnimated:YES];
7564 - (void) showDoneButton {
7565 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7566 initWithTitle:UCLocalize("DONE")
7567 style:UIBarButtonItemStyleDone
7569 action:@selector(doneButtonClicked)
7571 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] == nil];
7572 [rightItem release];
7575 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7576 // XXX: For not having a single cell in the table, this sure is a lot of sections.
7580 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7584 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7585 return nil; // This method is required by the protocol.
7588 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7590 return UCLocalize("ROLE_EX");
7592 return [NSString stringWithFormat:
7593 @"%@: %@\n%@: %@\n%@: %@",
7594 UCLocalize("USER"), UCLocalize("USER_EX"),
7595 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
7596 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
7601 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
7602 if (section == 3) return 44.0f;
7606 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
7607 if (section == 3) return container_;
7613 /* Stash Controller {{{ */
7614 @interface CYStashController : CYViewController {
7615 UIActivityIndicatorView *spinner_;
7621 @implementation CYStashController
7623 if ((self = [super init])) {
7624 [[self view] setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
7626 spinner_ = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
7627 CGRect spinrect = [spinner_ frame];
7628 spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2);
7629 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
7630 [spinner_ setFrame:spinrect];
7631 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
7632 [[self view] addSubview:spinner_];
7634 [spinner_ startAnimating];
7637 captrect.size.width = [[self view] frame].size.width;
7638 captrect.size.height = 40.0f;
7639 captrect.origin.x = 0;
7640 captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2);
7641 caption_ = [[UILabel alloc] initWithFrame:captrect];
7642 [caption_ setText:@"Initializing Filesystem"];
7643 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7644 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
7645 [caption_ setTextColor:[UIColor whiteColor]];
7646 [caption_ setBackgroundColor:[UIColor clearColor]];
7647 [caption_ setShadowColor:[UIColor blackColor]];
7648 [caption_ setTextAlignment:UITextAlignmentCenter];
7649 [[self view] addSubview:caption_];
7653 statusrect.size.width = [[self view] frame].size.width;
7654 statusrect.size.height = 30.0f;
7655 statusrect.origin.x = 0;
7656 statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height;
7657 status_ = [[UILabel alloc] initWithFrame:statusrect];
7658 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7659 [status_ setText:@"(Cydia will exit when complete.)"];
7660 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
7661 [status_ setTextColor:[UIColor whiteColor]];
7662 [status_ setBackgroundColor:[UIColor clearColor]];
7663 [status_ setShadowColor:[UIColor blackColor]];
7664 [status_ setTextAlignment:UITextAlignmentCenter];
7665 [[self view] addSubview:status_];
7670 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
7671 return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
7676 /* Cydia Container {{{ */
7677 @interface CYContainer : UIViewController <ProgressDelegate> {
7678 _transient Database *database_;
7679 RefreshBar *refreshbar_;
7684 UITabBarController *root_;
7687 - (void) setTabBarController:(UITabBarController *)controller;
7689 - (void) dropBar:(BOOL)animated;
7690 - (void) beginUpdate;
7691 - (void) raiseBar:(BOOL)animated;
7696 @implementation CYContainer
7698 - (BOOL) _reallyWantsFullScreenLayout {
7702 // NOTE: UIWindow only sends the top controller these messages,
7703 // So we have to forward them on.
7705 - (void) viewDidAppear:(BOOL)animated {
7706 [super viewDidAppear:animated];
7707 [root_ viewDidAppear:animated];
7710 - (void) viewWillAppear:(BOOL)animated {
7711 [super viewWillAppear:animated];
7712 [root_ viewWillAppear:animated];
7715 - (void) viewDidDisappear:(BOOL)animated {
7716 [super viewDidDisappear:animated];
7717 [root_ viewDidDisappear:animated];
7720 - (void) viewWillDisappear:(BOOL)animated {
7721 [super viewWillDisappear:animated];
7722 [root_ viewWillDisappear:animated];
7725 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
7726 return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
7729 - (void) setTabBarController:(UITabBarController *)controller {
7731 [[self view] addSubview:[root_ view]];
7734 - (void) setUpdate:(NSDate *)date {
7738 - (void) beginUpdate {
7740 [refreshbar_ start];
7745 detachNewThreadSelector:@selector(performUpdate)
7751 - (void) performUpdate { _pooled
7753 status.setDelegate(self);
7754 [database_ updateWithStatus:status];
7757 performSelectorOnMainThread:@selector(completeUpdate)
7763 - (void) completeUpdate {
7764 if (!updating_) return;
7767 [self raiseBar:YES];
7769 [updatedelegate_ performSelector:@selector(reloadData) withObject:nil afterDelay:0];
7772 - (void) cancelUpdate {
7774 [self raiseBar:YES];
7776 [updatedelegate_ performSelector:@selector(updateData) withObject:nil afterDelay:0];
7779 - (void) cancelPressed {
7780 [self cancelUpdate];
7787 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
7788 [refreshbar_ setPrompt:[NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), UCLocalize("ERROR"), error]];
7791 - (void) startProgress {
7794 - (void) setProgressTitle:(NSString *)title {
7796 performSelectorOnMainThread:@selector(_setProgressTitle:)
7802 - (bool) isCancelling:(size_t)received {
7806 - (void) setProgressPercent:(float)percent {
7808 performSelectorOnMainThread:@selector(_setProgressPercent:)
7809 withObject:[NSNumber numberWithFloat:percent]
7814 - (void) addProgressOutput:(NSString *)output {
7816 performSelectorOnMainThread:@selector(_addProgressOutput:)
7822 - (void) _setProgressTitle:(NSString *)title {
7823 [refreshbar_ setPrompt:title];
7826 - (void) _setProgressPercent:(NSNumber *)percent {
7827 [refreshbar_ setProgress:[percent floatValue]];
7830 - (void) _addProgressOutput:(NSString *)output {
7833 - (void) setUpdateDelegate:(id)delegate {
7834 updatedelegate_ = delegate;
7837 - (CGFloat) statusBarHeight {
7838 if (UIInterfaceOrientationIsPortrait([self interfaceOrientation])) {
7839 return [[UIApplication sharedApplication] statusBarFrame].size.height;
7841 return [[UIApplication sharedApplication] statusBarFrame].size.width;
7845 - (void) dropBar:(BOOL)animated {
7846 if (dropped_) return;
7849 [[self view] addSubview:refreshbar_];
7851 CGFloat sboffset = [self statusBarHeight];
7853 CGRect barframe = [refreshbar_ frame];
7854 barframe.origin.y = sboffset;
7855 [refreshbar_ setFrame:barframe];
7857 if (animated) [UIView beginAnimations:nil context:NULL];
7858 CGRect viewframe = [[root_ view] frame];
7859 viewframe.origin.y += barframe.size.height + sboffset;
7860 viewframe.size.height -= barframe.size.height + sboffset;
7861 [[root_ view] setFrame:viewframe];
7862 if (animated) [UIView commitAnimations];
7864 // Ensure bar has the proper width for our view, it might have changed
7865 barframe.size.width = viewframe.size.width;
7866 [refreshbar_ setFrame:barframe];
7868 // XXX: fix Apple's layout bug
7869 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7872 - (void) raiseBar:(BOOL)animated {
7873 if (!dropped_) return;
7876 [refreshbar_ removeFromSuperview];
7878 CGFloat sboffset = [self statusBarHeight];
7880 if (animated) [UIView beginAnimations:nil context:NULL];
7881 CGRect barframe = [refreshbar_ frame];
7882 CGRect viewframe = [[root_ view] frame];
7883 viewframe.origin.y -= barframe.size.height + sboffset;
7884 viewframe.size.height += barframe.size.height + sboffset;
7885 [[root_ view] setFrame:viewframe];
7886 if (animated) [UIView commitAnimations];
7888 // XXX: fix Apple's layout bug
7889 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7892 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7893 // XXX: fix Apple's layout bug
7894 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7897 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7903 // XXX: fix Apple's layout bug
7904 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7907 - (void) statusBarFrameChanged:(NSNotification *)notification {
7915 [refreshbar_ release];
7916 [[NSNotificationCenter defaultCenter] removeObserver:self];
7920 - (id) initWithDatabase:(Database *)database {
7921 if ((self = [super init]) != nil) {
7922 database_ = database;
7924 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7925 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
7927 refreshbar_ = [[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self];
7944 @interface Cydia : UIApplication <
7945 ConfirmationControllerDelegate,
7946 ProgressControllerDelegate,
7948 UINavigationControllerDelegate
7951 CYContainer *container_;
7954 NSMutableArray *essential_;
7955 NSMutableArray *broken_;
7957 Database *database_;
7961 UIKeyboard *keyboard_;
7962 UIProgressHUD *hud_;
7964 SectionsController *sections_;
7965 ChangesController *changes_;
7966 ManageController *manage_;
7967 SearchController *search_;
7968 SourceTable *sources_;
7969 InstalledController *installed_;
7972 CYStashController *stash_;
7977 - (CYViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class;
7978 - (void) setPage:(CYViewController *)page;
7983 static _finline void _setHomePage(Cydia *self) {
7984 [self setPage:[self _pageForURL:[NSURL URLWithString:CydiaURL(@"")] withClass:[HomeController class]]];
7987 @implementation Cydia
7989 - (void) beginUpdate {
7990 [container_ beginUpdate];
7994 return [container_ updating];
7997 - (UIView *) rotatingContentViewForWindow:(UIWindow *)window {
8002 if ([broken_ count] != 0) {
8003 int count = [broken_ count];
8005 UIAlertView *alert = [[[UIAlertView alloc]
8006 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8007 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8009 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
8010 otherButtonTitles:UCLocalize("TEMPORARY_IGNORE"), nil
8013 [alert setContext:@"fixhalf"];
8015 } else if (!Ignored_ && [essential_ count] != 0) {
8016 int count = [essential_ count];
8018 UIAlertView *alert = [[[UIAlertView alloc]
8019 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8020 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8022 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8023 otherButtonTitles:UCLocalize("UPGRADE_ESSENTIAL"), UCLocalize("COMPLETE_UPGRADE"), nil
8026 [alert setContext:@"upgrade"];
8031 - (void) _saveConfig {
8034 NSString *error(nil);
8035 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
8037 NSError *error(nil);
8038 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
8039 NSLog(@"failure to save metadata data: %@", error);
8042 NSLog(@"failure to serialize metadata: %@", error);
8050 - (void) _updateData {
8053 /* XXX: this is just stupid */
8054 if (tag_ != 1 && sections_ != nil)
8055 [sections_ reloadData];
8056 if (tag_ != 2 && changes_ != nil)
8057 [changes_ reloadData];
8058 if (tag_ != 4 && search_ != nil)
8059 [search_ reloadData];
8061 [(CYNavigationController *)[tabbar_ selectedViewController] reloadData];
8064 - (int)indexOfTabWithTag:(int)tag {
8066 for (UINavigationController *controller in [tabbar_ viewControllers]) {
8067 if ([[controller tabBarItem] tag] == tag) return i;
8074 - (void) _refreshIfPossible {
8075 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
8077 bool recently = false;
8078 NSDate *update([Metadata_ objectForKey:@"LastUpdate"]);
8079 if (update != nil) {
8080 NSTimeInterval interval([update timeIntervalSinceNow]);
8081 if (interval <= 0 && interval > -(15*60))
8085 // Don't automatic refresh if:
8086 // - We already refreshed recently.
8087 // - We already auto-refreshed this launch.
8088 // - Auto-refresh is disabled.
8089 if (recently || loaded_ || ManualRefresh) {
8090 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
8092 // If we are cancelling due to ManualRefresh or a recent refresh
8093 // we need to make sure it knows it's already loaded.
8097 // We are going to load, so remember that.
8101 SCNetworkReachabilityFlags flags; {
8102 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(NULL, "cydia.saurik.com"));
8103 SCNetworkReachabilityGetFlags(reachability, &flags);
8104 CFRelease(reachability);
8107 // XXX: this elaborate mess is what Apple is using to determine this? :(
8108 // XXX: do we care if the user has to intervene? maybe that's ok?
8110 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
8111 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
8112 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
8113 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
8114 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
8115 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
8119 // If we can reach the server, auto-refresh!
8121 [container_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
8126 - (void) refreshIfPossible {
8127 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil];
8130 - (void) _reloadData {
8131 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
8132 [hud setText:UCLocalize("RELOADING_DATA")];
8134 [database_ yieldToSelector:@selector(reloadData) withObject:nil];
8136 if (hud) [self removeProgressHUD:hud];
8140 [essential_ removeAllObjects];
8141 [broken_ removeAllObjects];
8143 NSArray *packages([database_ packages]);
8144 for (Package *package in packages) {
8146 [broken_ addObject:package];
8147 if ([package upgradableAndEssential:NO]) {
8148 if ([package essential])
8149 [essential_ addObject:package];
8154 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem];
8156 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
8157 [changesItem setBadgeValue:badge];
8158 [changesItem setAnimatedBadge:([essential_ count] > 0)];
8160 if ([self respondsToSelector:@selector(setApplicationBadge:)])
8161 [self setApplicationBadge:badge];
8163 [self setApplicationBadgeString:badge];
8165 [changesItem setBadgeValue:nil];
8166 [changesItem setAnimatedBadge:NO];
8168 if ([self respondsToSelector:@selector(removeApplicationBadge)])
8169 [self removeApplicationBadge];
8170 else // XXX: maybe use setApplicationBadgeString also?
8171 [self setApplicationIconBadgeNumber:0];
8176 [self refreshIfPossible];
8179 - (void) updateData {
8180 [database_ setVisible];
8189 FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w"));
8190 _assert(file != NULL);
8192 for (NSString *key in [Sources_ allKeys]) {
8193 NSDictionary *source([Sources_ objectForKey:key]);
8195 fprintf(file, "%s %s %s\n",
8196 [[source objectForKey:@"Type"] UTF8String],
8197 [[source objectForKey:@"URI"] UTF8String],
8198 [[source objectForKey:@"Distribution"] UTF8String]
8206 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8207 CYNavigationController *navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8208 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8209 [container_ presentModalViewController:navigation animated:YES];
8212 detachNewThreadSelector:@selector(update_)
8215 title:UCLocalize("UPDATING_SOURCES")
8219 - (void) reloadData {
8220 @synchronized (self) {
8226 pkgProblemResolver *resolver = [database_ resolver];
8228 resolver->InstallProtect();
8229 if (!resolver->Resolve(true))
8233 - (CGRect) popUpBounds {
8234 return [[tabbar_ view] bounds];
8238 if (![database_ prepare])
8241 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
8242 [page setDelegate:self];
8243 CYNavigationController *confirm_ = [[CYNavigationController alloc] initWithRootViewController:page];
8244 [confirm_ setDelegate:self];
8246 if (IsWildcat_) [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
8247 [container_ presentModalViewController:confirm_ animated:YES];
8253 @synchronized (self) {
8258 - (void) clearPackage:(Package *)package {
8259 @synchronized (self) {
8266 - (void) installPackages:(NSArray *)packages {
8267 @synchronized (self) {
8268 for (Package *package in packages)
8275 - (void) installPackage:(Package *)package {
8276 @synchronized (self) {
8283 - (void) removePackage:(Package *)package {
8284 @synchronized (self) {
8291 - (void) distUpgrade {
8292 @synchronized (self) {
8293 if (![database_ upgrade])
8300 @synchronized (self) {
8305 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
8306 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8308 if (navigation != nil) {
8309 [navigation pushViewController:progress animated:YES];
8311 navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8312 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8313 [container_ presentModalViewController:navigation animated:YES];
8317 detachNewThreadSelector:@selector(perform)
8320 title:UCLocalize("RUNNING")
8324 - (void) progressControllerIsComplete:(ProgressController *)progress {
8328 - (void) setPage:(CYViewController *)page {
8329 [page setDelegate:self];
8331 CYNavigationController *navController = (CYNavigationController *) [tabbar_ selectedViewController];
8332 [navController setViewControllers:[NSArray arrayWithObject:page]];
8333 for (CYNavigationController *page in [tabbar_ viewControllers]) {
8334 if (page != navController) [page setViewControllers:nil];
8338 - (CYViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class {
8339 CYBrowserController *browser = [[[_class alloc] init] autorelease];
8340 [browser loadURL:url];
8344 - (SectionsController *) sectionsController {
8345 if (sections_ == nil)
8346 sections_ = [[SectionsController alloc] initWithDatabase:database_];
8350 - (ChangesController *) changesController {
8351 if (changes_ == nil)
8352 changes_ = [[ChangesController alloc] initWithDatabase:database_ delegate:self];
8356 - (ManageController *) manageController {
8357 if (manage_ == nil) {
8358 manage_ = (ManageController *) [[self
8359 _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]
8360 withClass:[ManageController class]
8362 if (!IsWildcat_) queueDelegate_ = manage_;
8367 - (SearchController *) searchController {
8369 search_ = [[SearchController alloc] initWithDatabase:database_];
8373 - (SourceTable *) sourcesController {
8374 if (sources_ == nil)
8375 sources_ = [[SourceTable alloc] initWithDatabase:database_];
8379 - (InstalledController *) installedController {
8380 if (installed_ == nil) {
8381 installed_ = [[InstalledController alloc] initWithDatabase:database_];
8382 if (IsWildcat_) queueDelegate_ = installed_;
8387 - (void) tabBarController:(id)tabBarController didSelectViewController:(UIViewController *)viewController {
8388 int tag = [[viewController tabBarItem] tag];
8390 [(CYNavigationController *)[tabbar_ selectedViewController] popToRootViewControllerAnimated:YES];
8392 } else if (tag_ == 1) {
8393 [[self sectionsController] resetView];
8397 case kCydiaTag: _setHomePage(self); break;
8399 case kSectionsTag: [self setPage:[self sectionsController]]; break;
8400 case kChangesTag: [self setPage:[self changesController]]; break;
8401 case kManageTag: [self setPage:[self manageController]]; break;
8402 case kInstalledTag: [self setPage:[self installedController]]; break;
8403 case kSourcesTag: [self setPage:[self sourcesController]]; break;
8404 case kSearchTag: [self setPage:[self searchController]]; break;
8412 - (void) showSettings {
8413 RoleController *role = [[RoleController alloc] initWithDatabase:database_ delegate:self];
8414 CYNavigationController *nav = [[CYNavigationController alloc] initWithRootViewController:role];
8415 if (IsWildcat_) [nav setModalPresentationStyle:UIModalPresentationFormSheet];
8416 [container_ presentModalViewController:nav animated:YES];
8419 - (void) setPackageController:(PackageController *)view {
8421 [view setPackage:nil];
8425 - (PackageController *) _packageController {
8426 return [[[PackageController alloc] initWithDatabase:database_] autorelease];
8429 - (PackageController *) packageController {
8430 return [self _packageController];
8433 // Returns the navigation controller for the queuing badge.
8434 - (id) queueBadgeController {
8435 int index = [self indexOfTabWithTag:kManageTag];
8436 if (index == -1) index = [self indexOfTabWithTag:kInstalledTag];
8438 return [[tabbar_ viewControllers] objectAtIndex:index];
8441 - (void) cancelAndClear:(bool)clear {
8442 @synchronized (self) {
8445 pkgCacheFile &cache([database_ cache]);
8446 for (pkgCache::PkgIterator iterator = cache->PkgBegin(); !iterator.end(); ++iterator) {
8447 // Unmark method taken from Synaptic Package Manager.
8448 // Thanks for being sane, unlike Aptitude.
8449 if (!cache[iterator].Keep()) {
8450 cache->MarkKeep(iterator, false);
8451 cache->SetReInstall(iterator, false);
8457 [[[self queueBadgeController] tabBarItem] setBadgeValue:nil];
8461 [[[self queueBadgeController] tabBarItem] setBadgeValue:UCLocalize("Q_D")];
8464 // Show the changes in the current view.
8465 [(CYNavigationController *) [tabbar_ selectedViewController] reloadData];
8466 [queueDelegate_ queueStatusDidChange];
8470 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8471 NSString *context([alert context]);
8473 if ([context isEqualToString:@"fixhalf"]) {
8474 if (button == [alert firstOtherButtonIndex]) {
8475 @synchronized (self) {
8476 for (Package *broken in broken_) {
8479 NSString *id = [broken id];
8480 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
8481 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
8482 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
8483 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
8489 } else if (button == [alert cancelButtonIndex]) {
8490 [broken_ removeAllObjects];
8494 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8495 } else if ([context isEqualToString:@"upgrade"]) {
8496 if (button == [alert firstOtherButtonIndex]) {
8497 @synchronized (self) {
8498 for (Package *essential in essential_)
8499 [essential install];
8504 } else if (button == [alert firstOtherButtonIndex] + 1) {
8506 } else if (button == [alert cancelButtonIndex]) {
8510 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8514 - (void) system:(NSString *)command { _pooled
8515 system([command UTF8String]);
8518 - (void) applicationWillSuspend {
8520 [super applicationWillSuspend];
8523 - (void) applicationSuspend:(__GSEvent *)event {
8524 // Use external process status API internally.
8525 // This is probably a really bad idea.
8526 uint64_t status = 0;
8528 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
8529 notify_get_state(notify_token, &status);
8530 notify_cancel(notify_token);
8533 if (hud_ == nil && status == 0)
8534 [super applicationSuspend:event];
8537 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
8539 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
8542 - (void) _setSuspended:(BOOL)value {
8544 [super _setSuspended:value];
8547 - (UIProgressHUD *) addProgressHUD {
8548 UIProgressHUD *hud([[[UIProgressHUD alloc] initWithWindow:window_] autorelease]);
8549 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8551 [window_ setUserInteractionEnabled:NO];
8554 UIViewController *target = container_;
8555 while ([target modalViewController] != nil) target = [target modalViewController];
8556 [[target view] addSubview:hud];
8561 - (void) removeProgressHUD:(UIProgressHUD *)hud {
8563 [hud removeFromSuperview];
8564 [window_ setUserInteractionEnabled:YES];
8567 - (CYViewController *) pageForPackage:(NSString *)name {
8568 if (Package *package = [database_ packageWithName:name]) {
8569 PackageController *view([self packageController]);
8570 [view setPackage:package];
8573 NSURL *url([NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"unknown" ofType:@"html"]]);
8574 url = [NSURL URLWithString:[[url absoluteString] stringByAppendingString:[NSString stringWithFormat:@"?%@", name]]];
8575 return [self _pageForURL:url withClass:[CYBrowserController class]];
8579 - (CYViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag {
8583 NSString *href([url absoluteString]);
8584 if ([href hasPrefix:@"apptapp://package/"])
8585 return [self pageForPackage:[href substringFromIndex:18]];
8587 NSString *scheme([[url scheme] lowercaseString]);
8588 if (![scheme isEqualToString:@"cydia"])
8590 NSString *path([url absoluteString]);
8591 if ([path length] < 8)
8593 path = [path substringFromIndex:8];
8594 if (![path hasPrefix:@"/"])
8595 path = [@"/" stringByAppendingString:path];
8597 if ([path isEqualToString:@"/add-source"])
8598 return [[[AddSourceController alloc] initWithDatabase:database_] autorelease];
8599 else if ([path isEqualToString:@"/storage"])
8600 return [self _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"storage" ofType:@"html"]] withClass:[CYBrowserController class]];
8601 else if ([path isEqualToString:@"/sources"])
8602 return [[[SourceTable alloc] initWithDatabase:database_] autorelease];
8603 else if ([path isEqualToString:@"/packages"])
8604 return [[[InstalledController alloc] initWithDatabase:database_] autorelease];
8605 else if ([path hasPrefix:@"/url/"])
8606 return [self _pageForURL:[NSURL URLWithString:[path substringFromIndex:5]] withClass:[CYBrowserController class]];
8607 else if ([path hasPrefix:@"/launch/"])
8608 [self launchApplicationWithIdentifier:[path substringFromIndex:8] suspended:NO];
8609 else if ([path hasPrefix:@"/package-settings/"])
8610 return [[[SettingsController alloc] initWithDatabase:database_ package:[path substringFromIndex:18]] autorelease];
8611 else if ([path hasPrefix:@"/package-signature/"])
8612 return [[[SignatureController alloc] initWithDatabase:database_ package:[path substringFromIndex:19]] autorelease];
8613 else if ([path hasPrefix:@"/package/"])
8614 return [self pageForPackage:[path substringFromIndex:9]];
8615 else if ([path hasPrefix:@"/files/"]) {
8616 NSString *name = [path substringFromIndex:7];
8618 if (Package *package = [database_ packageWithName:name]) {
8619 FileTable *files = [[[FileTable alloc] initWithDatabase:database_] autorelease];
8620 [files setPackage:package];
8628 - (void) applicationOpenURL:(NSURL *)url {
8629 [super applicationOpenURL:url];
8631 if (CYViewController *page = [self pageForURL:url hasTag:&tag]) {
8632 [self setPage:page];
8634 [tabbar_ setSelectedViewController:(tag_ == -1 ? nil : [[tabbar_ viewControllers] objectAtIndex:tag_])];
8638 - (void) applicationWillResignActive:(UIApplication *)application {
8639 // Stop refreshing if you get a phone call or lock the device.
8640 if ([container_ updating]) [container_ cancelUpdate];
8642 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
8643 [super applicationWillResignActive:application];
8646 - (void) addStashController {
8647 stash_ = [[CYStashController alloc] init];
8648 [window_ addSubview:[stash_ view]];
8651 - (void) removeStashController {
8652 [[stash_ view] removeFromSuperview];
8657 [self setIdleTimerDisabled:YES];
8659 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
8660 [self setStatusBarShowsProgress:YES];
8661 UpdateExternalStatus(1);
8663 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
8665 UpdateExternalStatus(0);
8666 [self setStatusBarShowsProgress:NO];
8668 [self removeStashController];
8670 if (ExecFork() == 0) {
8671 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
8672 perror("launchctl stop");
8676 - (void) setupTabBarController {
8677 tabbar_ = [[CYTabBarController alloc] initWithDatabase:database_];
8678 [tabbar_ setDelegate:self];
8680 NSMutableArray *items([NSMutableArray arrayWithObjects:
8681 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:kCydiaTag] autorelease],
8682 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:kSectionsTag] autorelease],
8683 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:kChangesTag] autorelease],
8684 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:kSearchTag] autorelease],
8688 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:kSourcesTag] autorelease] atIndex:3];
8689 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:kInstalledTag] autorelease] atIndex:3];
8691 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:kManageTag] autorelease] atIndex:3];
8694 NSMutableArray *controllers([NSMutableArray array]);
8696 for (UITabBarItem *item in items) {
8697 CYNavigationController *controller([[[CYNavigationController alloc] initWithDatabase:database_] autorelease]);
8698 [controller setTabBarItem:item];
8699 [controllers addObject:controller];
8702 [tabbar_ setViewControllers:controllers];
8705 - (void) applicationDidFinishLaunching:(id)unused {
8706 [CYBrowserController _initialize];
8708 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
8710 Font12_ = [[UIFont systemFontOfSize:12] retain];
8711 Font12Bold_ = [[UIFont boldSystemFontOfSize:12] retain];
8712 Font14_ = [[UIFont systemFontOfSize:14] retain];
8713 Font18Bold_ = [[UIFont boldSystemFontOfSize:18] retain];
8714 Font22Bold_ = [[UIFont boldSystemFontOfSize:22] retain];
8718 essential_ = [[NSMutableArray alloc] initWithCapacity:4];
8719 broken_ = [[NSMutableArray alloc] initWithCapacity:4];
8721 UIScreen *screen([UIScreen mainScreen]);
8723 window_ = [[UIWindow alloc] initWithFrame:[screen bounds]];
8724 [window_ orderFront:self];
8725 [window_ makeKey:self];
8726 [window_ setHidden:NO];
8729 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
8730 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
8731 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
8732 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
8733 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
8734 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
8735 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
8736 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
8737 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
8740 [self addStashController];
8741 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
8745 database_ = [Database sharedInstance];
8747 [self setupTabBarController];
8749 container_ = [[CYContainer alloc] initWithDatabase:database_];
8750 [container_ setUpdateDelegate:self];
8751 [container_ setTabBarController:tabbar_];
8752 [window_ addSubview:[container_ view]];
8754 // Show pinstripes while loading data.
8755 [[container_ view] setBackgroundColor:[UIColor pinStripeColor]];
8757 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
8764 [self showSettings];
8768 [window_ setUserInteractionEnabled:NO];
8770 UIView *container = [[UIView alloc] init];
8771 [container setAutoresizingMask:UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin];
8773 UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
8774 [spinner startAnimating];
8775 [container addSubview:spinner];
8778 UILabel *label = [[UILabel alloc] init];
8779 [label setFont:[UIFont boldSystemFontOfSize:15.0f]];
8780 [label setBackgroundColor:[UIColor clearColor]];
8781 [label setTextColor:[UIColor blackColor]];
8782 [label setShadowColor:[UIColor whiteColor]];
8783 [label setShadowOffset:CGSizeMake(0, 1)];
8784 [label setText:UCLocalize("LOADING_DATA")];
8785 [container addSubview:label];
8788 CGSize viewsize = [[tabbar_ view] frame].size;
8789 CGSize spinnersize = [spinner bounds].size;
8790 CGSize textsize = [[label text] sizeWithFont:[label font]];
8791 float bothwidth = spinnersize.width + textsize.width + 5.0f;
8793 CGRect containrect = {
8794 CGPointMake(floorf((viewsize.width / 2) - (bothwidth / 2)), floorf((viewsize.height / 2) - (spinnersize.height / 2))),
8795 CGSizeMake(bothwidth, spinnersize.height)
8798 CGPointMake(spinnersize.width + 5.0f, floorf((spinnersize.height / 2) - (textsize.height / 2))),
8806 [container setFrame:containrect];
8807 [spinner setFrame:spinrect];
8808 [label setFrame:textrect];
8809 [[container_ view] addSubview:container];
8810 [container release];
8815 // Show the home page
8816 [tabbar_ setSelectedIndex:0];
8818 [window_ setUserInteractionEnabled:YES];
8820 // XXX: does this actually slow anything down?
8821 [[container_ view] setBackgroundColor:[UIColor clearColor]];
8822 [container removeFromSuperview];
8825 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
8826 if (item != nil && IsWildcat_) {
8827 [sheet showFromBarButtonItem:item animated:YES];
8829 [sheet showInView:window_];
8836 id Alloc_(id self, SEL selector) {
8837 id object = alloc_(self, selector);
8838 lprintf("[%s]A-%p\n", self->isa->name, object);
8843 id Dealloc_(id self, SEL selector) {
8844 id object = dealloc_(self, selector);
8845 lprintf("[%s]D-%p\n", self->isa->name, object);
8849 Class $WebDefaultUIKitDelegate;
8851 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
8852 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
8853 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
8854 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
8857 static NSNumber *shouldPlayKeyboardSounds;
8861 MSHook(void, UIHardware$_playSystemSound$, Class self, SEL _cmd, int sound) {
8863 case 1104: // Keyboard Button Clicked
8864 case 1105: // Keyboard Delete Repeated
8865 if (shouldPlayKeyboardSounds == nil) {
8866 NSDictionary *dict([[[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.apple.preferences.sounds.plist"] autorelease]);
8867 shouldPlayKeyboardSounds = [([dict objectForKey:@"keyboard"] ?: (id) kCFBooleanTrue) retain];
8870 if (![shouldPlayKeyboardSounds boolValue])
8874 _UIHardware$_playSystemSound$(self, _cmd, sound);
8878 int main(int argc, char *argv[]) { _pooled
8881 if (Class $UIDevice = objc_getClass("UIDevice")) {
8882 UIDevice *device([$UIDevice currentDevice]);
8883 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
8887 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
8889 /* Library Hacks {{{ */
8890 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8892 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
8893 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
8894 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
8895 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
8896 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
8899 $UIHardware = objc_getClass("UIHardware");
8900 Method UIHardware$_playSystemSound$(class_getClassMethod($UIHardware, @selector(_playSystemSound:)));
8901 if (UIHardware$_playSystemSound$ != NULL) {
8902 _UIHardware$_playSystemSound$ = reinterpret_cast<void (*)(Class, SEL, int)>(method_getImplementation(UIHardware$_playSystemSound$));
8903 method_setImplementation(UIHardware$_playSystemSound$, reinterpret_cast<IMP>(&$UIHardware$_playSystemSound$));
8906 /* Set Locale {{{ */
8907 Locale_ = CFLocaleCopyCurrent();
8908 Languages_ = [NSLocale preferredLanguages];
8909 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
8910 //NSLog(@"%@", [Languages_ description]);
8913 if (Languages_ == nil || [Languages_ count] == 0)
8914 // XXX: consider just setting to C and then falling through?
8917 lang = [[Languages_ objectAtIndex:0] UTF8String];
8918 setenv("LANG", lang, true);
8921 //std::setlocale(LC_ALL, lang);
8922 NSLog(@"Setting Language: %s", lang);
8925 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
8927 /* Parse Arguments {{{ */
8928 bool substrate(false);
8934 for (int argi(1); argi != argc; ++argi)
8935 if (strcmp(argv[argi], "--") == 0) {
8937 argv[argi] = argv[0];
8943 for (int argi(1); argi != arge; ++argi)
8944 if (strcmp(args[argi], "--substrate") == 0)
8947 fprintf(stderr, "unknown argument: %s\n", args[argi]);
8951 App_ = [[NSBundle mainBundle] bundlePath];
8952 Home_ = NSHomeDirectory();
8958 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
8959 alloc_ = alloc->method_imp;
8960 alloc->method_imp = (IMP) &Alloc_;*/
8962 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
8963 dealloc_ = dealloc->method_imp;
8964 dealloc->method_imp = (IMP) &Dealloc_;*/
8966 /* System Information {{{ */
8970 size = sizeof(maxproc);
8971 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
8972 perror("sysctlbyname(\"kern.maxproc\", ?)");
8973 else if (maxproc < 64) {
8975 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
8976 perror("sysctlbyname(\"kern.maxproc\", #)");
8979 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
8980 char *osversion = new char[size];
8981 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
8982 perror("sysctlbyname(\"kern.osversion\", ?)");
8984 System_ = [NSString stringWithUTF8String:osversion];
8986 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
8987 char *machine = new char[size];
8988 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
8989 perror("sysctlbyname(\"hw.machine\", ?)");
8993 if (CFMutableDictionaryRef dict = IOServiceMatching("IOPlatformExpertDevice")) {
8994 if (io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault, dict)) {
8995 if (CFTypeRef serial = IORegistryEntryCreateCFProperty(service, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0)) {
8996 SerialNumber_ = [NSString stringWithString:(NSString *)serial];
9000 if (CFTypeRef ecid = IORegistryEntrySearchCFProperty(service, kIODeviceTreePlane, CFSTR("unique-chip-id"), kCFAllocatorDefault, kIORegistryIterateRecursively)) {
9001 NSData *data((NSData *) ecid);
9002 size_t length([data length]);
9003 uint8_t bytes[length];
9004 [data getBytes:bytes];
9005 char string[length * 2 + 1];
9006 for (size_t i(0); i != length; ++i)
9007 sprintf(string + i * 2, "%.2X", bytes[length - i - 1]);
9008 ChipID_ = [NSString stringWithUTF8String:string];
9012 IOObjectRelease(service);
9016 UniqueID_ = [[UIDevice currentDevice] uniqueIdentifier];
9018 CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef);
9019 $CTSIMSupportCopyMobileSubscriberCountryCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
9020 CFStringRef mcc($CTSIMSupportCopyMobileSubscriberCountryCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault));
9022 CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef);
9023 $CTSIMSupportCopyMobileSubscriberNetworkCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
9024 CFStringRef mnc($CTSIMSupportCopyMobileSubscriberNetworkCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault));
9026 if (mcc != NULL && mnc != NULL)
9027 PLMN_ = [NSString stringWithFormat:@"%@%@", mcc, mnc];
9034 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
9035 Build_ = [system objectForKey:@"ProductBuildVersion"];
9036 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
9037 Product_ = [info objectForKey:@"SafariProductVersion"];
9038 Safari_ = [info objectForKey:@"CFBundleVersion"];
9041 /* Load Database {{{ */
9043 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
9045 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
9047 if (Metadata_ == NULL)
9048 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
9050 Settings_ = [Metadata_ objectForKey:@"Settings"];
9052 Packages_ = [Metadata_ objectForKey:@"Packages"];
9053 Sections_ = [Metadata_ objectForKey:@"Sections"];
9054 Sources_ = [Metadata_ objectForKey:@"Sources"];
9056 Token_ = [Metadata_ objectForKey:@"Token"];
9059 if (Settings_ != nil)
9060 Role_ = [Settings_ objectForKey:@"Role"];
9062 if (Packages_ == nil) {
9063 Packages_ = [[[NSMutableDictionary alloc] initWithCapacity:128] autorelease];
9064 [Metadata_ setObject:Packages_ forKey:@"Packages"];
9067 if (Sections_ == nil) {
9068 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
9069 [Metadata_ setObject:Sections_ forKey:@"Sections"];
9072 if (Sources_ == nil) {
9073 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
9074 [Metadata_ setObject:Sources_ forKey:@"Sources"];
9078 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
9080 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", F_OK) == 0)
9081 dlopen("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", RTLD_LAZY | RTLD_GLOBAL);
9082 if (substrate && access("/Applications/WinterBoard.app/WinterBoard.dylib", F_OK) == 0)
9083 dlopen("/Applications/WinterBoard.app/WinterBoard.dylib", RTLD_LAZY | RTLD_GLOBAL);
9084 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
9085 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
9087 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
9089 if (access("/tmp/.cydia.fw", F_OK) == 0) {
9090 unlink("/tmp/.cydia.fw");
9092 } else if (access("/User", F_OK) != 0 || version < 2) {
9095 system("/usr/libexec/cydia/firmware.sh");
9099 _assert([[NSFileManager defaultManager]
9100 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
9101 withIntermediateDirectories:YES
9106 if (access("/tmp/cydia.chk", F_OK) == 0) {
9107 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
9108 _assert(errno == ENOENT);
9109 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
9110 _assert(errno == ENOENT);
9113 /* APT Initialization {{{ */
9114 _assert(pkgInitConfig(*_config));
9115 _assert(pkgInitSystem(*_config, _system));
9118 _config->Set("APT::Acquire::Translation", lang);
9120 // XXX: this timeout might be important :(
9121 //_config->Set("Acquire::http::Timeout", 15);
9123 _config->Set("Acquire::http::MaxParallel", 3);
9125 /* Color Choices {{{ */
9126 space_ = CGColorSpaceCreateDeviceRGB();
9128 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
9129 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
9130 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
9131 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
9132 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
9133 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
9134 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
9135 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
9136 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
9138 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
9139 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
9141 /* UIKit Configuration {{{ */
9142 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
9143 if ($GSFontSetUseLegacyFontMetrics != NULL)
9144 $GSFontSetUseLegacyFontMetrics(YES);
9146 // XXX: I have a feeling this was important
9147 //UIKeyboardDisableAutomaticAppearance();
9150 Colon_ = UCLocalize("COLON_DELIMITED");
9151 Error_ = UCLocalize("ERROR");
9152 Warning_ = UCLocalize("WARNING");
9155 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
9157 CGColorSpaceRelease(space_);