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 <UIKit/UIKit.h>
63 #include "iPhonePrivate.h"
65 #include <IOKit/IOKitLib.h>
67 #include <WebCore/WebCoreThread.h>
74 #include <ext/stdio_filebuf.h>
78 #include <apt-pkg/acquire.h>
79 #include <apt-pkg/acquire-item.h>
80 #include <apt-pkg/algorithms.h>
81 #include <apt-pkg/cachefile.h>
82 #include <apt-pkg/clean.h>
83 #include <apt-pkg/configuration.h>
84 #include <apt-pkg/debindexfile.h>
85 #include <apt-pkg/debmetaindex.h>
86 #include <apt-pkg/error.h>
87 #include <apt-pkg/init.h>
88 #include <apt-pkg/mmap.h>
89 #include <apt-pkg/pkgrecords.h>
90 #include <apt-pkg/sha1.h>
91 #include <apt-pkg/sourcelist.h>
92 #include <apt-pkg/sptr.h>
93 #include <apt-pkg/strutl.h>
94 #include <apt-pkg/tagfile.h>
96 #include <apr-1/apr_pools.h>
98 #include <sys/types.h>
100 #include <sys/sysctl.h>
101 #include <sys/param.h>
102 #include <sys/mount.h>
109 #include <mach-o/nlist.h>
119 #include <ext/hash_map>
121 #include "UICaboodle/BrowserView.h"
122 #include "UICaboodle/ResetView.h"
124 #include "substrate.h"
126 // Apple's sample Reachability code, ASPL licensed.
127 #include "Reachability.h"
134 #define _timestamp ({ \
136 gettimeofday(&tv, NULL); \
137 tv.tv_sec * 1000000 + tv.tv_usec; \
140 typedef std::vector<class ProfileTime *> TimeList;
150 ProfileTime(const char *name) :
154 times_.push_back(this);
157 void AddTime(uint64_t time) {
164 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
176 ProfileTimer(ProfileTime &time) :
183 time_.AddTime(_timestamp - start_);
188 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
190 std::cerr << "========" << std::endl;
193 #define _profile(name) { \
194 static ProfileTime name(#name); \
195 ProfileTimer _ ## name(name);
200 #define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
202 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
204 void NSLogPoint(const char *fix, const CGPoint &point) {
205 NSLog(@"%s(%g,%g)", fix, point.x, point.y);
208 void NSLogRect(const char *fix, const CGRect &rect) {
209 NSLog(@"%s(%g,%g)+(%g,%g)", fix, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
212 static _finline NSString *CydiaURL(NSString *path) {
214 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = ':';
215 page[5] = '/'; page[6] = '/'; page[7] = 'c'; page[8] = 'y'; page[9] = 'd';
216 page[10] = 'i'; page[11] = 'a'; page[12] = '.'; page[13] = 's'; page[14] = 'a';
217 page[15] = 'u'; page[16] = 'r'; page[17] = 'i'; page[18] = 'k'; page[19] = '.';
218 page[20] = 'c'; page[21] = 'o'; page[22] = 'm'; page[23] = '/'; page[24] = '\0';
219 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
222 static _finline void UpdateExternalStatus(uint64_t newStatus) {
224 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
225 notify_set_state(notify_token, newStatus);
226 notify_cancel(notify_token);
228 notify_post("com.saurik.Cydia.status");
231 /* [NSObject yieldToSelector:(withObject:)] {{{*/
232 @interface NSObject (Cydia)
233 - (id) yieldToSelector:(SEL)selector withObject:(id)object;
234 - (id) yieldToSelector:(SEL)selector;
237 @implementation NSObject (Cydia)
242 - (void) _yieldToContext:(NSMutableArray *)context { _pooled
243 SEL selector(reinterpret_cast<SEL>([[context objectAtIndex:0] pointerValue]));
244 id object([[context objectAtIndex:1] nonretainedObjectValue]);
245 volatile bool &stopped(*reinterpret_cast<bool *>([[context objectAtIndex:2] pointerValue]));
247 /* XXX: deal with exceptions */
248 id value([self performSelector:selector withObject:object]);
250 NSMethodSignature *signature([self methodSignatureForSelector:selector]);
251 [context removeAllObjects];
252 if ([signature methodReturnLength] != 0 && value != nil)
253 [context addObject:value];
258 performSelectorOnMainThread:@selector(doNothing)
264 - (id) yieldToSelector:(SEL)selector withObject:(id)object {
265 /*return [self performSelector:selector withObject:object];*/
267 volatile bool stopped(false);
269 NSMutableArray *context([NSMutableArray arrayWithObjects:
270 [NSValue valueWithPointer:selector],
271 [NSValue valueWithNonretainedObject:object],
272 [NSValue valueWithPointer:const_cast<bool *>(&stopped)],
275 NSThread *thread([[[NSThread alloc]
277 selector:@selector(_yieldToContext:)
283 NSRunLoop *loop([NSRunLoop currentRunLoop]);
284 NSDate *future([NSDate distantFuture]);
286 while (!stopped && [loop runMode:NSDefaultRunLoopMode beforeDate:future]);
288 return [context count] == 0 ? nil : [context objectAtIndex:0];
291 - (id) yieldToSelector:(SEL)selector {
292 return [self yieldToSelector:selector withObject:nil];
298 @interface CYActionSheet : UIAlertView {
302 - (int) yieldToPopupAlertAnimated:(BOOL)animated;
305 @implementation CYActionSheet
307 - (id) initWithTitle:(NSString *)title buttons:(NSArray *)buttons defaultButtonIndex:(int)index {
308 if ((self = [super init])) {
309 [self setTitle:title];
310 [self setDelegate:self];
311 for (NSString *button in buttons) [self addButtonWithTitle:button];
312 [self setCancelButtonIndex:index];
316 - (void)_updateFrameForDisplay {
317 [super _updateFrameForDisplay];
318 if ([self cancelButtonIndex] == -1) {
319 NSArray *buttons = [self buttons];
320 if ([buttons count]) {
321 UIImage *background = [[buttons objectAtIndex:0] backgroundForState:0];
322 for (UIThreePartButton *button in buttons)
323 [button setBackground:background forState:0];
328 - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
329 button_ = buttonIndex + 1;
333 [self dismissWithClickedButtonIndex:-1 animated:YES];
336 - (int) yieldToPopupAlertAnimated:(BOOL)animated {
337 [self setRunsModal:YES];
345 /* NSForcedOrderingSearch doesn't work on the iPhone */
346 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
347 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
348 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
350 /* Information Dictionaries {{{ */
351 @interface NSMutableArray (Cydia)
352 - (void) addInfoDictionary:(NSDictionary *)info;
355 @implementation NSMutableArray (Cydia)
357 - (void) addInfoDictionary:(NSDictionary *)info {
358 [self addObject:info];
363 @interface NSMutableDictionary (Cydia)
364 - (void) addInfoDictionary:(NSDictionary *)info;
367 @implementation NSMutableDictionary (Cydia)
369 - (void) addInfoDictionary:(NSDictionary *)info {
370 [self setObject:info forKey:[info objectForKey:@"CFBundleIdentifier"]];
376 #define lprintf(args...) fprintf(stderr, args)
379 #define TraceLogging (1 && !ForRelease)
380 #define HistogramInsertionSort (0 && !ForRelease)
381 #define ProfileTimes (0 && !ForRelease)
382 #define ForSaurik (0 && !ForRelease)
383 #define LogBrowser (0 && !ForRelease)
384 #define TrackResize (0 && !ForRelease)
385 #define ManualRefresh (0 && !ForRelease)
386 #define ShowInternals (0 && !ForRelease)
387 #define IgnoreInstall (0 && !ForRelease)
388 #define RecycleWebViews 0
389 #define RecyclePackageViews (1 && ForRelease)
390 #define AlwaysReload (1 && !ForRelease)
394 #define _trace(args...)
399 #define _profile(name) {
402 #define PrintTimes() do {} while (false)
406 typedef uint32_t (*SKRadixFunction)(id, void *);
408 @interface NSMutableArray (Radix)
409 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object;
410 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument;
418 static void RadixSort_(NSMutableArray *self, size_t count, struct RadixItem_ *swap) {
419 struct RadixItem_ *lhs(swap), *rhs(swap + count);
421 static const size_t width = 32;
422 static const size_t bits = 11;
423 static const size_t slots = 1 << bits;
424 static const size_t passes = (width + (bits - 1)) / bits;
426 size_t *hist(new size_t[slots]);
428 for (size_t pass(0); pass != passes; ++pass) {
429 memset(hist, 0, sizeof(size_t) * slots);
431 for (size_t i(0); i != count; ++i) {
432 uint32_t key(lhs[i].key);
434 key &= _not(uint32_t) >> width - bits;
439 for (size_t i(0); i != slots; ++i) {
440 size_t local(offset);
445 for (size_t i(0); i != count; ++i) {
446 uint32_t key(lhs[i].key);
448 key &= _not(uint32_t) >> width - bits;
449 rhs[hist[key]++] = lhs[i];
452 RadixItem_ *tmp(lhs);
459 NSMutableArray *values([NSMutableArray arrayWithCapacity:count]);
460 for (size_t i(0); i != count; ++i)
461 [values addObject:[self objectAtIndex:lhs[i].index]];
462 [self setArray:values];
467 @implementation NSMutableArray (Radix)
469 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object {
470 size_t count([self count]);
475 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[NSMethodSignature signatureWithObjCTypes:"L12@0:4@8"]]);
476 [invocation setSelector:selector];
477 [invocation setArgument:&object atIndex:2];
479 /* XXX: this is an unsafe optimization of doomy hell */
480 Method method(class_getInstanceMethod([[self objectAtIndex:0] class], selector));
481 _assert(method != NULL);
482 uint32_t (*imp)(id, SEL, id) = reinterpret_cast<uint32_t (*)(id, SEL, id)>(method_getImplementation(method));
483 _assert(imp != NULL);
486 struct RadixItem_ *swap(new RadixItem_[count * 2]);
488 for (size_t i(0); i != count; ++i) {
489 RadixItem_ &item(swap[i]);
492 id object([self objectAtIndex:i]);
495 [invocation setTarget:object];
497 [invocation getReturnValue:&item.key];
499 item.key = imp(object, selector, object);
503 RadixSort_(self, count, swap);
506 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument {
507 size_t count([self count]);
508 struct RadixItem_ *swap(new RadixItem_[count * 2]);
510 for (size_t i(0); i != count; ++i) {
511 RadixItem_ &item(swap[i]);
514 id object([self objectAtIndex:i]);
515 item.key = function(object, argument);
518 RadixSort_(self, count, swap);
523 /* Insertion Sort {{{ */
525 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
526 const char *ptr = (const char *)list;
528 CFIndex half = count / 2;
529 const char *probe = ptr + elementSize * half;
530 CFComparisonResult cr = comparator(element, probe, context);
531 if (0 == cr) return (probe - (const char *)list) / elementSize;
532 ptr = (cr < 0) ? ptr : probe + elementSize;
533 count = (cr < 0) ? half : (half + (count & 1) - 1);
535 return (ptr - (const char *)list) / elementSize;
538 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
539 const char *ptr = (const char *)list;
541 CFIndex half = count / 2;
542 const char *probe = ptr + elementSize * half;
543 CFComparisonResult cr = comparator(element, probe, context);
544 if (0 == cr) return (probe - (const char *)list) / elementSize;
545 ptr = (cr < 0) ? ptr : probe + elementSize;
546 count = (cr < 0) ? half : (half + (count & 1) - 1);
548 return (ptr - (const char *)list) / elementSize;
551 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
552 if (range.length == 0)
554 const void **values(new const void *[range.length]);
555 CFArrayGetValues(array, range, values);
557 #if HistogramInsertionSort
558 uint32_t total(0), *offsets(new uint32_t[range.length]);
561 for (CFIndex index(1); index != range.length; ++index) {
562 const void *value(values[index]);
563 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
564 CFIndex correct(index);
565 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan)
568 if (correct != index) {
569 size_t offset(index - correct);
570 #if HistogramInsertionSort
574 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
576 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
577 values[correct] = value;
581 CFArrayReplaceValues(array, range, values, range.length);
584 #if HistogramInsertionSort
585 for (CFIndex index(0); index != range.length; ++index)
586 if (offsets[index] != 0)
587 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
588 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
595 /* Apple Bug Fixes {{{ */
596 @implementation UIWebDocumentView (Cydia)
598 - (void) _setScrollerOffset:(CGPoint)offset {
599 UIScroller *scroller([self _scroller]);
601 CGSize size([scroller contentSize]);
602 CGSize bounds([scroller bounds].size);
605 max.x = size.width - bounds.width;
606 max.y = size.height - bounds.height;
614 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
615 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
617 [scroller setOffset:offset];
623 NSUInteger WebScriptObject$countByEnumeratingWithState$objects$count$(WebScriptObject *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
624 size_t length([self count] - state->state);
627 else if (length > count)
629 for (size_t i(0); i != length; ++i)
630 objects[i] = [self objectAtIndex:state->state++];
631 state->itemsPtr = objects;
632 state->mutationsPtr = (unsigned long *) self;
636 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
637 size_t length([self length] - state->state);
640 else if (length > count)
642 for (size_t i(0); i != length; ++i)
643 objects[i] = [self item:state->state++];
644 state->itemsPtr = objects;
645 state->mutationsPtr = (unsigned long *) self;
649 /* Cydia NSString Additions {{{ */
650 @interface NSString (Cydia)
651 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length;
652 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool;
653 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length;
654 - (NSComparisonResult) compareByPath:(NSString *)other;
655 - (NSString *) stringByCachingURLWithCurrentCDN;
656 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
659 @implementation NSString (Cydia)
661 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length {
662 return [[[NSString alloc] initWithBytesNoCopy:const_cast<char *>(bytes) length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
665 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool {
666 char *data(reinterpret_cast<char *>(apr_palloc(pool, length)));
667 memcpy(data, bytes, length);
668 return [[[NSString allocWithZone:zone] initWithBytesNoCopy:data length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
671 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length {
672 return [[[NSString alloc] initWithBytes:bytes length:length encoding:NSUTF8StringEncoding] autorelease];
675 - (NSComparisonResult) compareByPath:(NSString *)other {
676 NSString *prefix = [self commonPrefixWithString:other options:0];
677 size_t length = [prefix length];
679 NSRange lrange = NSMakeRange(length, [self length] - length);
680 NSRange rrange = NSMakeRange(length, [other length] - length);
682 lrange = [self rangeOfString:@"/" options:0 range:lrange];
683 rrange = [other rangeOfString:@"/" options:0 range:rrange];
685 NSComparisonResult value;
687 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
688 value = NSOrderedSame;
689 else if (lrange.location == NSNotFound)
690 value = NSOrderedAscending;
691 else if (rrange.location == NSNotFound)
692 value = NSOrderedDescending;
694 value = NSOrderedSame;
696 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
697 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
698 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
699 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
701 NSComparisonResult result = [lpath compare:rpath];
702 return result == NSOrderedSame ? value : result;
705 - (NSString *) stringByCachingURLWithCurrentCDN {
707 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
708 withString:@"://cache.cydia.saurik.com/"
712 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
713 return [(id)CFURLCreateStringByAddingPercentEscapes(
718 kCFStringEncodingUTF8
725 /* C++ NSString Wrapper Cache {{{ */
732 _finline void clear_() {
733 if (cache_ != NULL) {
740 _finline bool empty() const {
744 _finline size_t size() const {
748 _finline char *data() const {
752 _finline void clear() {
757 _finline CYString() :
764 _finline ~CYString() {
768 void operator =(const CYString &rhs) {
772 if (rhs.cache_ == nil)
775 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
778 void set(apr_pool_t *pool, const char *data, size_t size) {
784 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size + 1)));
785 memcpy(temp, data, size);
792 _finline void set(apr_pool_t *pool, const char *data) {
793 set(pool, data, data == NULL ? 0 : strlen(data));
796 _finline void set(apr_pool_t *pool, const std::string &rhs) {
797 set(pool, rhs.data(), rhs.size());
800 bool operator ==(const CYString &rhs) const {
801 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
804 operator CFStringRef() {
805 if (cache_ == NULL) {
808 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingUTF8, NO, kCFAllocatorNull);
810 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
814 _finline operator id() {
815 return (NSString *) static_cast<CFStringRef>(*this);
819 /* C++ NSString Algorithm Adapters {{{ */
821 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
824 struct NSStringMapHash :
825 std::unary_function<NSString *, size_t>
827 _finline size_t operator ()(NSString *value) const {
828 return CFStringHashNSString((CFStringRef) value);
832 struct NSStringMapLess :
833 std::binary_function<NSString *, NSString *, bool>
835 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
836 return [lhs compare:rhs] == NSOrderedAscending;
840 struct NSStringMapEqual :
841 std::binary_function<NSString *, NSString *, bool>
843 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
844 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
845 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
846 //[lhs isEqualToString:rhs];
851 /* Perl-Compatible RegEx {{{ */
861 Pcre(const char *regex) :
866 code_ = pcre_compile(regex, 0, &error, &offset, NULL);
869 lprintf("%d:%s\n", offset, error);
873 pcre_fullinfo(code_, study_, PCRE_INFO_CAPTURECOUNT, &capture_);
874 matches_ = new int[(capture_ + 1) * 3];
882 NSString *operator [](size_t match) {
883 return [NSString stringWithUTF8Bytes:(data_ + matches_[match * 2]) length:(matches_[match * 2 + 1] - matches_[match * 2])];
886 bool operator ()(NSString *data) {
887 // XXX: length is for characters, not for bytes
888 return operator ()([data UTF8String], [data length]);
891 bool operator ()(const char *data, size_t size) {
893 return pcre_exec(code_, study_, data, size, 0, 0, matches_, (capture_ + 1) * 3) >= 0;
897 /* Mime Addresses {{{ */
898 @interface Address : NSObject {
904 - (NSString *) address;
906 - (void) setAddress:(NSString *)address;
908 + (Address *) addressWithString:(NSString *)string;
909 - (Address *) initWithString:(NSString *)string;
912 @implementation Address
921 - (NSString *) name {
925 - (NSString *) address {
929 - (void) setAddress:(NSString *)address {
931 [address_ autorelease];
935 address_ = [address retain];
938 + (Address *) addressWithString:(NSString *)string {
939 return [[[Address alloc] initWithString:string] autorelease];
942 + (NSArray *) _attributeKeys {
943 return [NSArray arrayWithObjects:@"address", @"name", nil];
946 - (NSArray *) attributeKeys {
947 return [[self class] _attributeKeys];
950 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
951 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
954 - (Address *) initWithString:(NSString *)string {
955 if ((self = [super init]) != nil) {
956 const char *data = [string UTF8String];
957 size_t size = [string length];
959 static Pcre address_r("^\"?(.*)\"? <([^>]*)>$");
961 if (address_r(data, size)) {
962 name_ = [address_r[1] retain];
963 address_ = [address_r[2] retain];
965 name_ = [string retain];
973 /* CoreGraphics Primitives {{{ */
984 CGColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
987 Set(space, red, green, blue, alpha);
992 CGColorRelease(color_);
999 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
1001 float color[] = {red, green, blue, alpha};
1002 color_ = CGColorCreate(space, color);
1005 operator CGColorRef() {
1011 /* Random Global Variables {{{ */
1012 static const int PulseInterval_ = 50000;
1013 static const int ButtonBarWidth_ = 60;
1014 static const int ButtonBarHeight_ = 48;
1015 static const float KeyboardTime_ = 0.3f;
1018 static NSArray *Finishes_;
1020 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
1021 #define NotifyConfig_ "/etc/notify.conf"
1023 static bool Queuing_;
1025 static CGColor Blue_;
1026 static CGColor Blueish_;
1027 static CGColor Black_;
1028 static CGColor Off_;
1029 static CGColor White_;
1030 static CGColor Gray_;
1031 static CGColor Green_;
1032 static CGColor Purple_;
1033 static CGColor Purplish_;
1035 static UIColor *InstallingColor_;
1036 static UIColor *RemovingColor_;
1038 static NSString *App_;
1039 static NSString *Home_;
1041 static BOOL Advanced_;
1042 static BOOL Ignored_;
1044 static UIFont *Font12_;
1045 static UIFont *Font12Bold_;
1046 static UIFont *Font14_;
1047 static UIFont *Font18Bold_;
1048 static UIFont *Font22Bold_;
1050 static const char *Machine_ = NULL;
1051 static const NSString *System_ = NULL;
1052 static const NSString *SerialNumber_ = nil;
1053 static const NSString *ChipID_ = nil;
1054 static const NSString *Token_ = nil;
1055 static const NSString *UniqueID_ = nil;
1056 static const NSString *Build_ = nil;
1057 static const NSString *Product_ = nil;
1058 static const NSString *Safari_ = nil;
1060 static CFLocaleRef Locale_;
1061 static NSArray *Languages_;
1062 static CGColorSpaceRef space_;
1064 static NSDictionary *SectionMap_;
1065 static NSMutableDictionary *Metadata_;
1066 static _transient NSMutableDictionary *Settings_;
1067 static _transient NSString *Role_;
1068 static _transient NSMutableDictionary *Packages_;
1069 static _transient NSMutableDictionary *Sections_;
1070 static _transient NSMutableDictionary *Sources_;
1071 static bool Changed_;
1072 static NSDate *now_;
1074 static bool IsWildcat_;
1077 static NSMutableArray *Documents_;
1081 /* Display Helpers {{{ */
1082 inline float Interpolate(float begin, float end, float fraction) {
1083 return (end - begin) * fraction + begin;
1086 /* XXX: localize this! */
1087 NSString *SizeString(double size) {
1088 bool negative = size < 0;
1093 while (size > 1024) {
1098 static const char *powers_[] = {"B", "kB", "MB", "GB"};
1100 return [NSString stringWithFormat:@"%s%.1f %s", (negative ? "-" : ""), size, powers_[power]];
1103 static _finline CFStringRef CFCString(const char *value) {
1104 return CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(value), strlen(value), kCFStringEncodingUTF8, NO, kCFAllocatorNull);
1107 const char *StripVersion_(const char *version) {
1108 const char *colon(strchr(version, ':'));
1110 version = colon + 1;
1114 CFStringRef StripVersion(const char *version) {
1115 const char *colon(strchr(version, ':'));
1117 version = colon + 1;
1118 return CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(version), strlen(version), kCFStringEncodingUTF8, NO);
1120 return CFCString(version);
1123 NSString *LocalizeSection(NSString *section) {
1124 static Pcre title_r("^(.*?) \\((.*)\\)$");
1125 if (title_r(section)) {
1126 NSString *parent(title_r[1]);
1127 NSString *child(title_r[2]);
1129 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
1130 LocalizeSection(parent),
1131 LocalizeSection(child)
1135 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
1138 NSString *Simplify(NSString *title) {
1139 const char *data = [title UTF8String];
1140 size_t size = [title length];
1142 static Pcre square_r("^\\[(.*)\\]$");
1143 if (square_r(data, size))
1144 return Simplify(square_r[1]);
1146 static Pcre paren_r("^\\((.*)\\)$");
1147 if (paren_r(data, size))
1148 return Simplify(paren_r[1]);
1150 static Pcre title_r("^(.*?) \\((.*)\\)$");
1151 if (title_r(data, size))
1152 return Simplify(title_r[1]);
1158 NSString *GetLastUpdate() {
1159 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
1162 return UCLocalize("NEVER_OR_UNKNOWN");
1164 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
1165 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
1167 CFRelease(formatter);
1169 return [(NSString *) formatted autorelease];
1172 bool isSectionVisible(NSString *section) {
1173 NSDictionary *metadata([Sections_ objectForKey:section]);
1174 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
1175 return hidden == nil || ![hidden boolValue];
1180 /* Delegate Prototypes {{{ */
1184 @interface NSObject (ProgressDelegate)
1187 @protocol ProgressDelegate
1188 - (void) setProgressError:(NSString *)error withTitle:(NSString *)id;
1189 - (void) setProgressTitle:(NSString *)title;
1190 - (void) setProgressPercent:(float)percent;
1191 - (void) startProgress;
1192 - (void) addProgressOutput:(NSString *)output;
1193 - (bool) isCancelling:(size_t)received;
1196 @protocol ConfigurationDelegate
1197 - (void) repairWithSelector:(SEL)selector;
1198 - (void) setConfigurationData:(NSString *)data;
1201 @class PackageController;
1203 @protocol CydiaDelegate
1204 - (void) setPackageController:(PackageController *)view;
1205 - (void) clearPackage:(Package *)package;
1206 - (void) installPackage:(Package *)package;
1207 - (void) installPackages:(NSArray *)packages;
1208 - (void) removePackage:(Package *)package;
1209 - (void) beginUpdate;
1211 - (void) distUpgrade;
1212 - (void) updateData;
1214 - (void) showSettings;
1215 - (UIProgressHUD *) addProgressHUD;
1216 - (void) removeProgressHUD:(UIProgressHUD *)hud;
1217 - (UCViewController *) pageForPackage:(NSString *)name;
1218 - (PackageController *) packageController;
1219 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
1223 /* Status Delegation {{{ */
1225 public pkgAcquireStatus
1228 _transient NSObject<ProgressDelegate> *delegate_;
1236 void setDelegate(id delegate) {
1237 delegate_ = delegate;
1240 NSObject<ProgressDelegate> *getDelegate() const {
1244 virtual bool MediaChange(std::string media, std::string drive) {
1248 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
1251 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1252 //NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1253 [delegate_ setProgressTitle:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), [NSString stringWithUTF8String:item.ShortDesc.c_str()]]];
1256 virtual void Done(pkgAcquire::ItemDesc &item) {
1259 virtual void Fail(pkgAcquire::ItemDesc &item) {
1261 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1262 item.Owner->Status == pkgAcquire::Item::StatDone
1266 std::string &error(item.Owner->ErrorText);
1270 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1271 NSArray *fields([description componentsSeparatedByString:@" "]);
1272 NSString *source([fields count] == 0 ? nil : [fields objectAtIndex:0]);
1274 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
1275 withObject:[NSArray arrayWithObjects:
1276 [NSString stringWithUTF8String:error.c_str()],
1283 virtual bool Pulse(pkgAcquire *Owner) {
1284 bool value = pkgAcquireStatus::Pulse(Owner);
1287 double(CurrentBytes + CurrentItems) /
1288 double(TotalBytes + TotalItems)
1291 [delegate_ setProgressPercent:percent];
1292 return [delegate_ isCancelling:CurrentBytes] ? false : value;
1295 virtual void Start() {
1296 [delegate_ startProgress];
1299 virtual void Stop() {
1303 /* Progress Delegation {{{ */
1308 _transient id<ProgressDelegate> delegate_;
1312 virtual void Update() {
1313 /*if (abs(Percent - percent_) > 2)
1314 //NSLog(@"%s:%s:%f", Op.c_str(), SubOp.c_str(), Percent);
1318 /*[delegate_ setProgressTitle:[NSString stringWithUTF8String:Op.c_str()]];
1319 [delegate_ setProgressPercent:(Percent / 100)];*/
1329 void setDelegate(id delegate) {
1330 delegate_ = delegate;
1333 id getDelegate() const {
1337 virtual void Done() {
1339 //[delegate_ setProgressPercent:1];
1344 /* Database Interface {{{ */
1345 typedef std::map< unsigned long, _H<Source> > SourceMap;
1347 @interface Database : NSObject {
1353 pkgCacheFile cache_;
1354 pkgDepCache::Policy *policy_;
1355 pkgRecords *records_;
1356 pkgProblemResolver *resolver_;
1357 pkgAcquire *fetcher_;
1359 SPtr<pkgPackageManager> manager_;
1360 pkgSourceList *list_;
1363 NSMutableArray *packages_;
1365 _transient NSObject<ConfigurationDelegate, ProgressDelegate> *delegate_;
1374 + (Database *) sharedInstance;
1377 - (void) _readCydia:(NSNumber *)fd;
1378 - (void) _readStatus:(NSNumber *)fd;
1379 - (void) _readOutput:(NSNumber *)fd;
1383 - (Package *) packageWithName:(NSString *)name;
1385 - (pkgCacheFile &) cache;
1386 - (pkgDepCache::Policy *) policy;
1387 - (pkgRecords *) records;
1388 - (pkgProblemResolver *) resolver;
1389 - (pkgAcquire &) fetcher;
1390 - (pkgSourceList &) list;
1391 - (NSArray *) packages;
1392 - (NSArray *) sources;
1393 - (void) reloadData;
1401 - (void) setVisible;
1403 - (void) updateWithStatus:(Status &)status;
1405 - (void) setDelegate:(id)delegate;
1406 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1409 /* Delegate Helpers {{{ */
1410 @implementation NSObject (ProgressDelegate)
1412 - (void) _setProgressErrorPackage:(NSArray *)args {
1413 [self performSelector:@selector(setProgressError:forPackage:)
1414 withObject:[args objectAtIndex:0]
1415 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1419 - (void) _setProgressErrorTitle:(NSArray *)args {
1420 [self performSelector:@selector(setProgressError:withTitle:)
1421 withObject:[args objectAtIndex:0]
1422 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1426 - (void) _setProgressError:(NSString *)error withTitle:(NSString *)title {
1427 [self performSelectorOnMainThread:@selector(_setProgressErrorTitle:)
1428 withObject:[NSArray arrayWithObjects:error, title, nil]
1433 - (void) setProgressError:(NSString *)error forPackage:(NSString *)id {
1434 Package *package = id == nil ? nil : [[Database sharedInstance] packageWithName:id];
1435 // XXX: holy typecast batman!
1436 [(id<ProgressDelegate>)self setProgressError:error withTitle:(package == nil ? id : [package name])];
1442 /* Source Class {{{ */
1443 @interface Source : NSObject {
1444 CYString depiction_;
1445 CYString description_;
1451 CYString distribution_;
1456 NSString *authority_;
1458 CYString defaultIcon_;
1460 NSDictionary *record_;
1464 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool;
1466 - (NSComparisonResult) compareByNameAndType:(Source *)source;
1468 - (NSString *) depictionForPackage:(NSString *)package;
1469 - (NSString *) supportForPackage:(NSString *)package;
1471 - (NSDictionary *) record;
1475 - (NSString *) distribution;
1476 - (NSString *) type;
1478 - (NSString *) host;
1480 - (NSString *) name;
1481 - (NSString *) description;
1482 - (NSString *) label;
1483 - (NSString *) origin;
1484 - (NSString *) version;
1486 - (NSString *) defaultIcon;
1490 @implementation Source
1494 distribution_.clear();
1497 description_.clear();
1503 defaultIcon_.clear();
1505 if (record_ != nil) {
1515 if (authority_ != nil) {
1516 [authority_ release];
1526 + (NSArray *) _attributeKeys {
1527 return [NSArray arrayWithObjects:@"description", @"distribution", @"host", @"key", @"label", @"name", @"origin", @"trusted", @"type", @"uri", @"version", nil];
1530 - (NSArray *) attributeKeys {
1531 return [[self class] _attributeKeys];
1534 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1535 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1538 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1541 trusted_ = index->IsTrusted();
1543 uri_.set(pool, index->GetURI());
1544 distribution_.set(pool, index->GetDist());
1545 type_.set(pool, index->GetType());
1547 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1548 if (dindex != NULL) {
1550 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1553 pkgTagFile tags(&fd);
1555 pkgTagSection section;
1562 {"default-icon", &defaultIcon_},
1563 {"depiction", &depiction_},
1564 {"description", &description_},
1566 {"origin", &origin_},
1567 {"support", &support_},
1568 {"version", &version_},
1571 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1572 const char *start, *end;
1574 if (section.Find(names[i].name_, start, end)) {
1575 CYString &value(*names[i].value_);
1576 value.set(pool, start, end - start);
1582 record_ = [Sources_ objectForKey:[self key]];
1584 record_ = [record_ retain];
1586 NSURL *url([NSURL URLWithString:uri_]);
1590 host_ = [[host_ lowercaseString] retain];
1595 authority_ = [url path];
1597 if (authority_ != nil)
1598 authority_ = [authority_ retain];
1601 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1602 if ((self = [super init]) != nil) {
1603 [self setMetaIndex:index inPool:pool];
1607 - (NSComparisonResult) compareByNameAndType:(Source *)source {
1608 NSDictionary *lhr = [self record];
1609 NSDictionary *rhr = [source record];
1612 return lhr == nil ? NSOrderedDescending : NSOrderedAscending;
1614 NSString *lhs = [self name];
1615 NSString *rhs = [source name];
1617 if ([lhs length] != 0 && [rhs length] != 0) {
1618 unichar lhc = [lhs characterAtIndex:0];
1619 unichar rhc = [rhs characterAtIndex:0];
1621 if (isalpha(lhc) && !isalpha(rhc))
1622 return NSOrderedAscending;
1623 else if (!isalpha(lhc) && isalpha(rhc))
1624 return NSOrderedDescending;
1627 return [lhs compare:rhs options:LaxCompareOptions_];
1630 - (NSString *) depictionForPackage:(NSString *)package {
1631 return depiction_.empty() ? nil : [depiction_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1634 - (NSString *) supportForPackage:(NSString *)package {
1635 return support_.empty() ? nil : [support_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1638 - (NSDictionary *) record {
1646 - (NSString *) uri {
1650 - (NSString *) distribution {
1651 return distribution_;
1654 - (NSString *) type {
1658 - (NSString *) key {
1659 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1662 - (NSString *) host {
1666 - (NSString *) name {
1667 return origin_.empty() ? authority_ : origin_;
1670 - (NSString *) description {
1671 return description_;
1674 - (NSString *) label {
1675 return label_.empty() ? authority_ : label_;
1678 - (NSString *) origin {
1682 - (NSString *) version {
1686 - (NSString *) defaultIcon {
1687 return defaultIcon_;
1692 /* Relationship Class {{{ */
1693 @interface Relationship : NSObject {
1698 - (NSString *) type;
1700 - (NSString *) name;
1704 @implementation Relationship
1712 - (NSString *) type {
1720 - (NSString *) name {
1727 /* Package Class {{{ */
1728 @interface Package : NSObject {
1732 pkgCache::VerIterator version_;
1733 pkgCache::PkgIterator iterator_;
1734 _transient Database *database_;
1735 pkgCache::VerFileIterator file_;
1742 NSString *section$_;
1749 CYString installed_;
1755 CYString depiction_;
1766 NSMutableArray *tags_;
1769 NSArray *relationships_;
1771 NSMutableDictionary *metadata_;
1772 _transient NSDate *firstSeen_;
1773 _transient NSDate *lastSeen_;
1777 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1778 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1780 - (pkgCache::PkgIterator) iterator;
1783 - (NSString *) section;
1784 - (NSString *) simpleSection;
1786 - (NSString *) longSection;
1787 - (NSString *) shortSection;
1791 - (Address *) maintainer;
1793 - (NSString *) longDescription;
1794 - (NSString *) shortDescription;
1797 - (NSMutableDictionary *) metadata;
1799 - (BOOL) subscribed;
1802 - (NSString *) latest;
1803 - (NSString *) installed;
1804 - (BOOL) uninstalled;
1807 - (BOOL) upgradableAndEssential:(BOOL)essential;
1810 - (BOOL) unfiltered;
1814 - (BOOL) halfConfigured;
1815 - (BOOL) halfInstalled;
1817 - (NSString *) mode;
1819 - (void) setVisible;
1822 - (NSString *) name;
1824 - (NSString *) homepage;
1825 - (NSString *) depiction;
1826 - (Address *) author;
1828 - (NSString *) support;
1830 - (NSArray *) files;
1831 - (NSArray *) relationships;
1832 - (NSArray *) warnings;
1833 - (NSArray *) applications;
1835 - (Source *) source;
1836 - (NSString *) role;
1838 - (BOOL) matches:(NSString *)text;
1840 - (bool) hasSupportingRole;
1841 - (BOOL) hasTag:(NSString *)tag;
1842 - (NSString *) primaryPurpose;
1843 - (NSArray *) purposes;
1844 - (bool) isCommercial;
1846 - (CYString &) cyname;
1848 - (uint32_t) compareBySection:(NSArray *)sections;
1850 - (uint32_t) compareForChanges;
1855 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search;
1856 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1857 - (bool) isInstalledAndVisible:(NSNumber *)number;
1858 - (bool) isVisibleInSection:(NSString *)section;
1859 - (bool) isVisibleInSource:(Source *)source;
1863 uint32_t PackageChangesRadix(Package *self, void *) {
1868 uint32_t timestamp : 30;
1869 uint32_t ignored : 1;
1870 uint32_t upgradable : 1;
1874 bool upgradable([self upgradableAndEssential:YES]);
1875 value.bits.upgradable = upgradable ? 1 : 0;
1878 value.bits.timestamp = 0;
1879 value.bits.ignored = [self ignored] ? 0 : 1;
1880 value.bits.upgradable = 1;
1882 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
1883 value.bits.ignored = 0;
1884 value.bits.upgradable = 0;
1887 return _not(uint32_t) - value.key;
1890 _finline static void Stifle(uint8_t &value) {
1893 uint32_t PackagePrefixRadix(Package *self, void *context) {
1894 size_t offset(reinterpret_cast<size_t>(context));
1895 CYString &name([self cyname]);
1897 size_t size(name.size());
1900 char *text(name.data());
1903 if (!isdigit(text[0]))
1907 while (size != digits && isdigit(text[digits]))
1917 if (offset == 0 && zeros != 0) {
1918 memset(data, '0', zeros);
1919 memcpy(data + zeros, text, 4 - zeros);
1921 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
1922 if (size <= offset - zeros)
1925 text += offset - zeros;
1926 size -= offset - zeros;
1929 memcpy(data, text, 4);
1931 memcpy(data, text, size);
1932 memset(data + size, 0, 4 - size);
1935 for (size_t i(0); i != 4; ++i)
1936 if (isalpha(data[i]))
1941 data[0] = (data[0] & 0x3f) | "\x80\x00\xc0\x40"[data[0] >> 6];
1943 /* XXX: ntohl may be more honest */
1944 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
1947 CYString &(*PackageName)(Package *self, SEL sel);
1949 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
1950 _profile(PackageNameCompare)
1951 CYString &lhi(PackageName(lhs, @selector(cyname)));
1952 CYString &rhi(PackageName(rhs, @selector(cyname)));
1953 CFStringRef lhn(lhi), rhn(rhi);
1956 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
1957 else if (rhn == NULL)
1958 return NSOrderedDescending;
1960 _profile(PackageNameCompare$NumbersLast)
1961 if (!lhi.empty() && !rhi.empty()) {
1962 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
1963 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
1964 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
1965 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
1966 return lha ? NSOrderedAscending : NSOrderedDescending;
1970 CFIndex length = CFStringGetLength(lhn);
1972 _profile(PackageNameCompare$Compare)
1973 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
1978 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
1979 return PackageNameCompare(*lhs, *rhs, context);
1982 struct PackageNameOrdering :
1983 std::binary_function<Package *, Package *, bool>
1985 _finline bool operator ()(Package *lhs, Package *rhs) const {
1986 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
1990 @implementation Package
1992 - (NSString *) description {
1993 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
1999 if (section$_ != nil)
2000 [section$_ release];
2005 if (sponsor$_ != nil)
2006 [sponsor$_ release];
2007 if (author$_ != nil)
2014 if (relationships_ != nil)
2015 [relationships_ release];
2016 if (metadata_ != nil)
2017 [metadata_ release];
2022 + (NSString *) webScriptNameForSelector:(SEL)selector {
2023 if (selector == @selector(hasTag:))
2029 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2030 return [self webScriptNameForSelector:selector] == nil;
2033 + (NSArray *) _attributeKeys {
2034 return [NSArray arrayWithObjects:@"applications", @"author", @"depiction", @"longDescription", @"essential", @"homepage", @"icon", @"id", @"installed", @"latest", @"longSection", @"maintainer", @"mode", @"name", @"purposes", @"section", @"shortDescription", @"shortSection", @"simpleSection", @"size", @"source", @"sponsor", @"support", @"warnings", nil];
2037 - (NSArray *) attributeKeys {
2038 return [[self class] _attributeKeys];
2041 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2042 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2052 _profile(Package$parse)
2053 pkgRecords::Parser *parser;
2055 _profile(Package$parse$Lookup)
2056 parser = &[database_ records]->Lookup(file_);
2061 _profile(Package$parse$Find)
2067 {"depiction", &depiction_},
2068 {"homepage", &homepage_},
2069 {"website", &website},
2071 {"support", &support_},
2072 {"sponsor", &sponsor_},
2073 {"author", &author_},
2076 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2077 const char *start, *end;
2079 if (parser->Find(names[i].name_, start, end)) {
2080 CYString &value(*names[i].value_);
2081 _profile(Package$parse$Value)
2082 value.set(pool_, start, end - start);
2088 _profile(Package$parse$Tagline)
2089 const char *start, *end;
2090 if (parser->ShortDesc(start, end)) {
2091 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2094 while (stop != start && stop[-1] == '\r')
2096 tagline_.set(pool_, start, stop - start);
2100 _profile(Package$parse$Retain)
2101 if (homepage_.empty())
2102 homepage_ = website;
2103 if (homepage_ == depiction_)
2109 - (void) setVisible {
2110 visible_ = required_ && [self unfiltered];
2113 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2114 if ((self = [super init]) != nil) {
2115 _profile(Package$initWithVersion)
2116 @synchronized (database) {
2117 era_ = [database era];
2121 iterator_ = version.ParentPkg();
2122 database_ = database;
2124 _profile(Package$initWithVersion$Latest)
2125 latest_ = (NSString *) StripVersion(version_.VerStr());
2128 pkgCache::VerIterator current;
2129 _profile(Package$initWithVersion$Versions)
2130 current = iterator_.CurrentVer();
2132 installed_.set(pool_, StripVersion_(current.VerStr()));
2134 if (!version_.end())
2135 file_ = version_.FileList();
2137 pkgCache &cache([database_ cache]);
2138 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2142 _profile(Package$initWithVersion$Name)
2143 id_.set(pool_, iterator_.Name());
2144 name_.set(pool, iterator_.Display());
2148 _profile(Package$initWithVersion$Source)
2149 source_ = [database_ getSource:file_.File()];
2158 _profile(Package$initWithVersion$Tags)
2159 pkgCache::TagIterator tag(iterator_.TagList());
2161 tags_ = [[NSMutableArray alloc] initWithCapacity:8];
2163 const char *name(tag.Name());
2164 [tags_ addObject:(NSString *)CFCString(name)];
2165 if (role_ == nil && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/)
2166 role_ = (NSString *) CFCString(name + 6);
2167 if (required_ && strncmp(name, "require::", 9) == 0 && (
2172 } while (!tag.end());
2176 bool changed(false);
2177 NSString *key([id_ lowercaseString]);
2179 _profile(Package$initWithVersion$Metadata)
2180 metadata_ = [Packages_ objectForKey:key];
2182 if (metadata_ == nil) {
2185 metadata_ = [[NSMutableDictionary dictionaryWithObjectsAndKeys:
2186 firstSeen_, @"FirstSeen",
2187 latest_, @"LastVersion",
2192 firstSeen_ = [metadata_ objectForKey:@"FirstSeen"];
2193 lastSeen_ = [metadata_ objectForKey:@"LastSeen"];
2195 if (NSNumber *subscribed = [metadata_ objectForKey:@"IsSubscribed"])
2196 subscribed_ = [subscribed boolValue];
2198 NSString *version([metadata_ objectForKey:@"LastVersion"]);
2200 if (firstSeen_ == nil) {
2201 firstSeen_ = lastSeen_ == nil ? now_ : lastSeen_;
2202 [metadata_ setObject:firstSeen_ forKey:@"FirstSeen"];
2206 if (version == nil) {
2207 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2209 } else if (![version isEqualToString:latest_]) {
2210 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2212 [metadata_ setObject:lastSeen_ forKey:@"LastSeen"];
2217 metadata_ = [metadata_ retain];
2220 [Packages_ setObject:metadata_ forKey:key];
2225 _profile(Package$initWithVersion$Section)
2226 section_.set(pool_, iterator_.Section());
2229 obsolete_ = [self hasTag:@"cydia::obsolete"];
2230 essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"];
2232 } _end } return self;
2235 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2236 @synchronized ([Database class]) {
2237 pkgCache::VerIterator version;
2239 _profile(Package$packageWithIterator$GetCandidateVer)
2240 version = [database policy]->GetCandidateVer(iterator);
2246 return [[[Package alloc]
2247 initWithVersion:version
2254 - (pkgCache::PkgIterator) iterator {
2258 - (NSString *) section {
2259 if (section$_ == nil) {
2260 if (section_.empty())
2263 std::replace(section_.data(), section_.data() + section_.size(), ' ', '_');
2264 NSString *name(section_);
2267 if (NSDictionary *value = [SectionMap_ objectForKey:name])
2268 if (NSString *rename = [value objectForKey:@"Rename"]) {
2273 section$_ = [[name stringByReplacingCharacter:'_' withCharacter:' '] retain];
2277 - (NSString *) simpleSection {
2278 if (NSString *section = [self section])
2279 return Simplify(section);
2284 - (NSString *) longSection {
2285 return LocalizeSection([self section]);
2288 - (NSString *) shortSection {
2289 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2292 - (NSString *) uri {
2295 pkgIndexFile *index;
2296 pkgCache::PkgFileIterator file(file_.File());
2297 if (![database_ list].FindIndex(file, index))
2299 return [NSString stringWithUTF8String:iterator_->Path];
2300 //return [NSString stringWithUTF8String:file.Site()];
2301 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2305 - (Address *) maintainer {
2308 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2309 const std::string &maintainer(parser->Maintainer());
2310 return maintainer.empty() ? nil : [Address addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2314 return version_.end() ? 0 : version_->InstalledSize;
2317 - (NSString *) longDescription {
2320 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2321 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2323 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2324 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2325 if ([lines count] < 2)
2328 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2329 for (size_t i(1), e([lines count]); i != e; ++i) {
2330 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2331 [trimmed addObject:trim];
2334 return [trimmed componentsJoinedByString:@"\n"];
2337 - (NSString *) shortDescription {
2342 _profile(Package$index)
2343 CFStringRef name((CFStringRef) [self name]);
2344 if (CFStringGetLength(name) == 0)
2346 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2347 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2349 return toupper(character);
2353 - (NSMutableDictionary *) metadata {
2358 if (subscribed_ && lastSeen_ != nil)
2363 - (BOOL) subscribed {
2368 NSDictionary *metadata([self metadata]);
2369 if (NSNumber *ignored = [metadata objectForKey:@"IsIgnored"])
2370 return [ignored boolValue];
2375 - (NSString *) latest {
2379 - (NSString *) installed {
2383 - (BOOL) uninstalled {
2384 return installed_.empty();
2388 return !version_.end();
2391 - (BOOL) upgradableAndEssential:(BOOL)essential {
2392 _profile(Package$upgradableAndEssential)
2393 pkgCache::VerIterator current(iterator_.CurrentVer());
2395 return essential && essential_ && visible_;
2397 return !version_.end() && version_ != current;// && (!essential || ![database_ cache][iterator_].Keep());
2401 - (BOOL) essential {
2406 return [database_ cache][iterator_].InstBroken();
2409 - (BOOL) unfiltered {
2410 NSString *section([self section]);
2411 return !obsolete_ && [self hasSupportingRole] && (section == nil || isSectionVisible(section));
2419 unsigned char current(iterator_->CurrentState);
2420 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2423 - (BOOL) halfConfigured {
2424 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2427 - (BOOL) halfInstalled {
2428 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2432 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2433 return state.Mode != pkgDepCache::ModeKeep;
2436 - (NSString *) mode {
2437 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2439 switch (state.Mode) {
2440 case pkgDepCache::ModeDelete:
2441 if ((state.iFlags & pkgDepCache::Purge) != 0)
2445 case pkgDepCache::ModeKeep:
2446 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2447 return @"REINSTALL";
2448 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2452 case pkgDepCache::ModeInstall:
2453 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2454 return @"REINSTALL";
2455 else*/ switch (state.Status) {
2457 return @"DOWNGRADE";
2463 return @"NEW_INSTALL";
2474 - (NSString *) name {
2475 return name_.empty() ? id_ : name_;
2478 - (UIImage *) icon {
2479 NSString *section = [self simpleSection];
2483 if ([icon_ hasPrefix:@"file:///"])
2484 icon = [UIImage imageAtPath:[icon_ substringFromIndex:7]];
2485 if (icon == nil) if (section != nil)
2486 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]];
2487 if (icon == nil) if (source_ != nil) if (NSString *dicon = [source_ defaultIcon])
2488 if ([dicon hasPrefix:@"file:///"])
2489 icon = [UIImage imageAtPath:[dicon substringFromIndex:7]];
2491 icon = [UIImage applicationImageNamed:@"unknown.png"];
2495 - (NSString *) homepage {
2499 - (NSString *) depiction {
2500 return !depiction_.empty() ? depiction_ : [[self source] depictionForPackage:id_];
2503 - (Address *) sponsor {
2504 if (sponsor$_ == nil) {
2505 if (sponsor_.empty())
2507 sponsor$_ = [[Address addressWithString:sponsor_] retain];
2511 - (Address *) author {
2512 if (author$_ == nil) {
2513 if (author_.empty())
2515 author$_ = [[Address addressWithString:author_] retain];
2519 - (NSString *) support {
2520 return !bugs_.empty() ? bugs_ : [[self source] supportForPackage:id_];
2523 - (NSArray *) files {
2524 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2525 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2528 fin.open([path UTF8String]);
2533 while (std::getline(fin, line))
2534 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2539 - (NSArray *) relationships {
2540 return relationships_;
2543 - (NSArray *) warnings {
2544 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2545 const char *name(iterator_.Name());
2547 size_t length(strlen(name));
2548 if (length < 2) invalid:
2549 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2550 else for (size_t i(0); i != length; ++i)
2552 /* XXX: technically this is not allowed */
2553 (name[i] < 'A' || name[i] > 'Z') &&
2554 (name[i] < 'a' || name[i] > 'z') &&
2555 (name[i] < '0' || name[i] > '9') &&
2556 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2559 if (strcmp(name, "cydia") != 0) {
2562 bool _private = false;
2565 bool repository = [[self section] isEqualToString:@"Repositories"];
2567 if (NSArray *files = [self files])
2568 for (NSString *file in files)
2569 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2571 else if (!user && [file isEqualToString:@"/User"])
2573 else if (!_private && [file isEqualToString:@"/private"])
2575 else if (!stash && [file isEqualToString:@"/var/stash"])
2578 /* XXX: this is not sensitive enough. only some folders are valid. */
2579 if (cydia && !repository)
2580 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2582 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2584 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2586 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2589 return [warnings count] == 0 ? nil : warnings;
2592 - (NSArray *) applications {
2593 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2595 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2597 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2598 if (NSArray *files = [self files])
2599 for (NSString *file in files)
2600 if (application_r(file)) {
2601 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2602 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2603 if ([id isEqualToString:me])
2606 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2608 display = application_r[1];
2610 NSString *bundle([file stringByDeletingLastPathComponent]);
2611 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2612 if (icon == nil || [icon length] == 0)
2614 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2616 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2617 [applications addObject:application];
2619 [application addObject:id];
2620 [application addObject:display];
2621 [application addObject:url];
2624 return [applications count] == 0 ? nil : applications;
2627 - (Source *) source {
2629 @synchronized (database_) {
2630 if ([database_ era] != era_ || file_.end())
2633 source_ = [database_ getSource:file_.File()];
2645 - (NSString *) role {
2649 - (BOOL) matches:(NSString *)text {
2655 range = [[self id] rangeOfString:text options:MatchCompareOptions_];
2656 if (range.location != NSNotFound)
2659 range = [[self name] rangeOfString:text options:MatchCompareOptions_];
2660 if (range.location != NSNotFound)
2663 range = [[self shortDescription] rangeOfString:text options:MatchCompareOptions_];
2664 if (range.location != NSNotFound)
2670 - (bool) hasSupportingRole {
2673 if ([role_ isEqualToString:@"enduser"])
2675 if ([Role_ isEqualToString:@"User"])
2677 if ([role_ isEqualToString:@"hacker"])
2679 if ([Role_ isEqualToString:@"Hacker"])
2681 if ([role_ isEqualToString:@"developer"])
2683 if ([Role_ isEqualToString:@"Developer"])
2688 - (BOOL) hasTag:(NSString *)tag {
2689 return tags_ == nil ? NO : [tags_ containsObject:tag];
2692 - (NSString *) primaryPurpose {
2693 for (NSString *tag in tags_)
2694 if ([tag hasPrefix:@"purpose::"])
2695 return [tag substringFromIndex:9];
2699 - (NSArray *) purposes {
2700 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2701 for (NSString *tag in tags_)
2702 if ([tag hasPrefix:@"purpose::"])
2703 [purposes addObject:[tag substringFromIndex:9]];
2704 return [purposes count] == 0 ? nil : purposes;
2707 - (bool) isCommercial {
2708 return [self hasTag:@"cydia::commercial"];
2711 - (CYString &) cyname {
2712 return name_.empty() ? id_ : name_;
2715 - (uint32_t) compareBySection:(NSArray *)sections {
2716 NSString *section([self section]);
2717 for (size_t i(0), e([sections count]); i != e; ++i) {
2718 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2722 return _not(uint32_t);
2725 - (uint32_t) compareForChanges {
2730 uint32_t timestamp : 30;
2731 uint32_t ignored : 1;
2732 uint32_t upgradable : 1;
2736 bool upgradable([self upgradableAndEssential:YES]);
2737 value.bits.upgradable = upgradable ? 1 : 0;
2740 value.bits.timestamp = 0;
2741 value.bits.ignored = [self ignored] ? 0 : 1;
2742 value.bits.upgradable = 1;
2744 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
2745 value.bits.ignored = 0;
2746 value.bits.upgradable = 0;
2749 return _not(uint32_t) - value.key;
2753 pkgProblemResolver *resolver = [database_ resolver];
2754 resolver->Clear(iterator_);
2755 resolver->Protect(iterator_);
2759 pkgProblemResolver *resolver = [database_ resolver];
2760 resolver->Clear(iterator_);
2761 resolver->Protect(iterator_);
2762 pkgCacheFile &cache([database_ cache]);
2763 cache->MarkInstall(iterator_, false);
2764 pkgDepCache::StateCache &state((*cache)[iterator_]);
2765 if (!state.Install())
2766 cache->SetReInstall(iterator_, true);
2770 pkgProblemResolver *resolver = [database_ resolver];
2771 resolver->Clear(iterator_);
2772 resolver->Protect(iterator_);
2773 resolver->Remove(iterator_);
2774 [database_ cache]->MarkDelete(iterator_, true);
2777 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search {
2778 _profile(Package$isUnfilteredAndSearchedForBy)
2781 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
2782 value &= [self unfiltered];
2785 _profile(Package$isUnfilteredAndSearchedForBy$Match)
2786 value &= [self matches:search];
2793 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
2794 if ([search length] == 0)
2797 _profile(Package$isUnfilteredAndSelectedForBy)
2800 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
2801 value &= [self unfiltered];
2804 _profile(Package$isUnfilteredAndSelectedForBy$Match)
2805 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
2812 - (bool) isInstalledAndVisible:(NSNumber *)number {
2813 return (![number boolValue] || [self visible]) && ![self uninstalled];
2816 - (bool) isVisibleInSection:(NSString *)name {
2817 NSString *section = [self section];
2822 section == nil && [name length] == 0 ||
2823 [name isEqualToString:section]
2827 - (bool) isVisibleInSource:(Source *)source {
2828 return [self source] == source && [self visible];
2833 /* Section Class {{{ */
2834 @interface Section : NSObject {
2839 NSString *localized_;
2842 - (NSComparisonResult) compareByLocalized:(Section *)section;
2843 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
2844 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
2845 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
2846 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
2847 - (NSString *) name;
2854 - (void) addToCount;
2856 - (void) setCount:(size_t)count;
2857 - (NSString *) localized;
2861 @implementation Section
2865 if (localized_ != nil)
2866 [localized_ release];
2870 - (NSComparisonResult) compareByLocalized:(Section *)section {
2871 NSString *lhs(localized_);
2872 NSString *rhs([section localized]);
2874 /*if ([lhs length] != 0 && [rhs length] != 0) {
2875 unichar lhc = [lhs characterAtIndex:0];
2876 unichar rhc = [rhs characterAtIndex:0];
2878 if (isalpha(lhc) && !isalpha(rhc))
2879 return NSOrderedAscending;
2880 else if (!isalpha(lhc) && isalpha(rhc))
2881 return NSOrderedDescending;
2884 return [lhs compare:rhs options:LaxCompareOptions_];
2887 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
2888 if ((self = [self initWithName:name localize:NO]) != nil) {
2889 if (localized != nil)
2890 localized_ = [localized retain];
2894 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
2895 return [self initWithName:name row:0 localize:localize];
2898 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
2899 if ((self = [super init]) != nil) {
2900 name_ = [name retain];
2904 localized_ = [LocalizeSection(name_) retain];
2908 /* XXX: localize the index thingees */
2909 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
2910 if ((self = [super init]) != nil) {
2911 name_ = [[NSString stringWithCharacters:&index length:1] retain];
2917 - (NSString *) name {
2937 - (void) addToCount {
2941 - (void) setCount:(size_t)count {
2945 - (NSString *) localized {
2952 static NSString *Colon_;
2953 static NSString *Error_;
2954 static NSString *Warning_;
2956 /* Database Implementation {{{ */
2957 @implementation Database
2959 + (Database *) sharedInstance {
2960 static Database *instance;
2961 if (instance == nil)
2962 instance = [[Database alloc] init];
2972 NSRecycleZone(zone_);
2973 // XXX: malloc_destroy_zone(zone_);
2974 apr_pool_destroy(pool_);
2978 - (void) _readCydia:(NSNumber *)fd { _pooled
2979 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
2980 std::istream is(&ib);
2983 static Pcre finish_r("^finish:([^:]*)$");
2985 while (std::getline(is, line)) {
2986 const char *data(line.c_str());
2987 size_t size = line.size();
2988 lprintf("C:%s\n", data);
2990 if (finish_r(data, size)) {
2991 NSString *finish = finish_r[1];
2992 int index = [Finishes_ indexOfObject:finish];
2993 if (index != INT_MAX && index > Finish_)
3001 - (void) _readStatus:(NSNumber *)fd { _pooled
3002 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3003 std::istream is(&ib);
3006 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3007 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3009 while (std::getline(is, line)) {
3010 const char *data(line.c_str());
3011 size_t size(line.size());
3012 lprintf("S:%s\n", data);
3014 if (conffile_r(data, size)) {
3015 [delegate_ setConfigurationData:conffile_r[1]];
3016 } else if (strncmp(data, "status: ", 8) == 0) {
3017 NSString *string = [NSString stringWithUTF8String:(data + 8)];
3018 [delegate_ setProgressTitle:string];
3019 } else if (pmstatus_r(data, size)) {
3020 std::string type([pmstatus_r[1] UTF8String]);
3021 NSString *id = pmstatus_r[2];
3023 float percent([pmstatus_r[3] floatValue]);
3024 [delegate_ setProgressPercent:(percent / 100)];
3026 NSString *string = pmstatus_r[4];
3028 if (type == "pmerror")
3029 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3030 withObject:[NSArray arrayWithObjects:string, id, nil]
3033 else if (type == "pmstatus") {
3034 [delegate_ setProgressTitle:string];
3035 } else if (type == "pmconffile")
3036 [delegate_ setConfigurationData:string];
3038 lprintf("E:unknown pmstatus\n");
3040 lprintf("E:unknown status\n");
3046 - (void) _readOutput:(NSNumber *)fd { _pooled
3047 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3048 std::istream is(&ib);
3051 while (std::getline(is, line)) {
3052 lprintf("O:%s\n", line.c_str());
3053 [delegate_ addProgressOutput:[NSString stringWithUTF8String:line.c_str()]];
3063 - (Package *) packageWithName:(NSString *)name {
3064 @synchronized ([Database class]) {
3065 if (static_cast<pkgDepCache *>(cache_) == NULL)
3067 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3068 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:pool_ database:self];
3071 - (Database *) init {
3072 if ((self = [super init]) != nil) {
3079 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3080 apr_pool_create(&pool_, NULL);
3082 packages_ = [[NSMutableArray alloc] init];
3086 _assert(pipe(fds) != -1);
3089 _config->Set("APT::Keep-Fds::", cydiafd_);
3090 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3093 detachNewThreadSelector:@selector(_readCydia:)
3095 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3098 _assert(pipe(fds) != -1);
3102 detachNewThreadSelector:@selector(_readStatus:)
3104 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3107 _assert(pipe(fds) != -1);
3108 _assert(dup2(fds[0], 0) != -1);
3109 _assert(close(fds[0]) != -1);
3111 input_ = fdopen(fds[1], "a");
3113 _assert(pipe(fds) != -1);
3114 _assert(dup2(fds[1], 1) != -1);
3115 _assert(close(fds[1]) != -1);
3118 detachNewThreadSelector:@selector(_readOutput:)
3120 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3125 - (pkgCacheFile &) cache {
3129 - (pkgDepCache::Policy *) policy {
3133 - (pkgRecords *) records {
3137 - (pkgProblemResolver *) resolver {
3141 - (pkgAcquire &) fetcher {
3145 - (pkgSourceList &) list {
3149 - (NSArray *) packages {
3153 - (NSArray *) sources {
3154 NSMutableArray *sources([NSMutableArray arrayWithCapacity:sources_.size()]);
3155 for (SourceMap::const_iterator i(sources_.begin()); i != sources_.end(); ++i)
3156 [sources addObject:i->second];
3160 - (NSArray *) issues {
3161 if (cache_->BrokenCount() == 0)
3164 NSMutableArray *issues([NSMutableArray arrayWithCapacity:4]);
3166 for (Package *package in packages_) {
3167 if (![package broken])
3169 pkgCache::PkgIterator pkg([package iterator]);
3171 NSMutableArray *entry([NSMutableArray arrayWithCapacity:4]);
3172 [entry addObject:[package name]];
3173 [issues addObject:entry];
3175 pkgCache::VerIterator ver(cache_[pkg].InstVerIter(cache_));
3179 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
3180 pkgCache::DepIterator start;
3181 pkgCache::DepIterator end;
3182 dep.GlobOr(start, end); // ++dep
3184 if (!cache_->IsImportantDep(end))
3186 if ((cache_[end] & pkgDepCache::DepGInstall) != 0)
3189 NSMutableArray *failure([NSMutableArray arrayWithCapacity:4]);
3190 [entry addObject:failure];
3191 [failure addObject:[NSString stringWithUTF8String:start.DepType()]];
3193 NSString *name([NSString stringWithUTF8String:start.TargetPkg().Name()]);
3194 if (Package *package = [self packageWithName:name])
3195 name = [package name];
3196 [failure addObject:name];
3198 pkgCache::PkgIterator target(start.TargetPkg());
3199 if (target->ProvidesList != 0)
3200 [failure addObject:@"?"];
3202 pkgCache::VerIterator ver(cache_[target].InstVerIter(cache_));
3204 [failure addObject:[NSString stringWithUTF8String:ver.VerStr()]];
3205 else if (!cache_[target].CandidateVerIter(cache_).end())
3206 [failure addObject:@"-"];
3207 else if (target->ProvidesList == 0)
3208 [failure addObject:@"!"];
3210 [failure addObject:@"%"];
3214 if (start.TargetVer() != 0)
3215 [failure addObject:[NSString stringWithFormat:@"%s %s", start.CompType(), start.TargetVer()]];
3226 - (bool) popErrorWithTitle:(NSString *)title {
3228 std::string message;
3230 while (!_error->empty()) {
3232 bool warning(!_error->PopMessage(error));
3236 size_t size(error.size());
3237 if (size == 0 || error[size - 1] != '\n')
3239 error.resize(size - 1);
3241 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3243 if (!message.empty())
3248 if (fatal && !message.empty())
3249 [delegate_ _setProgressError:[NSString stringWithUTF8String:message.c_str()] withTitle:[NSString stringWithFormat:Colon_, fatal ? Error_ : Warning_, title]];
3254 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3255 return [self popErrorWithTitle:title] || !success;
3258 - (void) reloadData { _pooled
3259 @synchronized ([Database class]) {
3260 @synchronized (self) {
3264 [packages_ removeAllObjects];
3290 apr_pool_clear(pool_);
3291 NSRecycleZone(zone_);
3293 int chk(creat("/tmp/cydia.chk", 0644));
3297 NSString *title(UCLocalize("DATABASE"));
3300 if (!cache_.Open(progress_, true)) { pop:
3302 bool warning(!_error->PopMessage(error));
3303 lprintf("cache_.Open():[%s]\n", error.c_str());
3305 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3306 [delegate_ repairWithSelector:@selector(configure)];
3307 else if (error == "The package lists or status file could not be parsed or opened.")
3308 [delegate_ repairWithSelector:@selector(update)];
3309 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3310 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3311 // else if (error == "The list of sources could not be read.")
3313 [delegate_ _setProgressError:[NSString stringWithUTF8String:error.c_str()] withTitle:[NSString stringWithFormat:Colon_, warning ? Warning_ : Error_, title]];
3322 unlink("/tmp/cydia.chk");
3324 now_ = [[NSDate date] retain];
3326 policy_ = new pkgDepCache::Policy();
3327 records_ = new pkgRecords(cache_);
3328 resolver_ = new pkgProblemResolver(cache_);
3329 fetcher_ = new pkgAcquire(&status_);
3332 list_ = new pkgSourceList();
3333 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3336 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3337 [delegate_ _setProgressError:@"COUNTS_NONZERO_EX" withTitle:title];
3341 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3344 if (cache_->BrokenCount() != 0) {
3345 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3348 if (cache_->BrokenCount() != 0) {
3349 [delegate_ _setProgressError:@"STILL_BROKEN_EX" withTitle:title];
3353 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3359 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3360 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3361 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3362 // XXX: this could be more intelligent
3363 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3364 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3366 sources_[cached->ID] = [[[Source alloc] initWithMetaIndex:*source inPool:pool_] autorelease];
3373 /*std::vector<Package *> packages;
3374 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3375 [packages_ release];
3380 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3381 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3382 //packages.push_back(package);
3383 [packages_ addObject:package];
3387 /*if (packages.empty())
3388 packages_ = [[NSArray alloc] init];
3390 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3393 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3394 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3395 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3403 /*if (!packages.empty())
3404 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3405 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3407 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3409 CFArrayInsertionSortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3411 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3417 - (void) configure {
3418 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3419 system([dpkg UTF8String]);
3423 // XXX: I don't remember this condition
3428 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3430 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3432 if ([self popErrorWithTitle:title])
3436 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3439 public pkgArchiveCleaner
3442 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3447 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3454 fetcher_->Shutdown();
3456 pkgRecords records(cache_);
3458 lock_ = new FileFd();
3459 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3461 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3463 if ([self popErrorWithTitle:title])
3467 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3470 manager_ = (_system->CreatePM(cache_));
3471 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3478 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3480 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3482 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3484 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3485 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3488 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3493 bool failed = false;
3494 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3495 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3497 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3500 std::string uri = (*item)->DescURI();
3501 std::string error = (*item)->ErrorText;
3503 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
3506 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3507 withObject:[NSArray arrayWithObjects:
3508 [NSString stringWithUTF8String:error.c_str()],
3520 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3522 if (_error->PendingError()) {
3527 if (result == pkgPackageManager::Failed) {
3532 if (result != pkgPackageManager::Completed) {
3537 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3539 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3541 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3542 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3545 if (![before isEqualToArray:after])
3550 NSString *title(UCLocalize("UPGRADE"));
3551 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3557 [self updateWithStatus:status_];
3560 - (void) setVisible {
3561 for (Package *package in packages_)
3562 [package setVisible];
3565 - (void) updateWithStatus:(Status &)status {
3566 _transient NSObject<ProgressDelegate> *delegate(status.getDelegate());
3567 NSString *title(UCLocalize("REFRESHING_DATA"));
3570 if (!list.ReadMainList())
3571 [delegate _setProgressError:@"Unable to read source list." withTitle:title];
3574 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3575 if ([self popErrorWithTitle:title])
3578 if ([self popErrorWithTitle:title forOperation:ListUpdate(status, list, PulseInterval_)])
3579 /* XXX: ignore this because users suck and don't understand why refreshing is important: return */;
3581 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3585 - (void) setDelegate:(id)delegate {
3586 delegate_ = delegate;
3587 status_.setDelegate(delegate);
3588 progress_.setDelegate(delegate);
3591 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3592 SourceMap::const_iterator i(sources_.find(file->ID));
3593 return i == sources_.end() ? nil : i->second;
3599 /* Confirmation Controller {{{ */
3600 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
3601 if (!iterator.end())
3602 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
3603 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
3605 pkgCache::PkgIterator package(dep.TargetPkg());
3608 if (strcmp(package.Name(), "mobilesubstrate") == 0)
3616 /* Web Scripting {{{ */
3617 @interface CydiaObject : NSObject {
3622 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3625 @implementation CydiaObject
3628 [indirect_ release];
3632 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3633 if ((self = [super init]) != nil) {
3634 indirect_ = [indirect retain];
3638 - (void) setDelegate:(id)delegate {
3639 delegate_ = delegate;
3642 + (NSArray *) _attributeKeys {
3643 return [NSArray arrayWithObjects:@"device", @"firewire", @"imei", @"mac", @"serial", nil];
3646 - (NSArray *) attributeKeys {
3647 return [[self class] _attributeKeys];
3650 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3651 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3654 - (NSString *) device {
3655 return [[UIDevice currentDevice] uniqueIdentifier];
3658 #if 0 // XXX: implement!
3659 - (NSString *) mac {
3660 if (![indirect_ promptForSensitive:@"Mac Address"])
3664 - (NSString *) serial {
3665 if (![indirect_ promptForSensitive:@"Serial #"])
3669 - (NSString *) firewire {
3670 if (![indirect_ promptForSensitive:@"Firewire GUID"])
3674 - (NSString *) imei {
3675 if (![indirect_ promptForSensitive:@"IMEI"])
3680 + (NSString *) webScriptNameForSelector:(SEL)selector {
3681 if (selector == @selector(close))
3683 else if (selector == @selector(getInstalledPackages))
3684 return @"getInstalledPackages";
3685 else if (selector == @selector(getPackageById:))
3686 return @"getPackageById";
3687 else if (selector == @selector(installPackages:))
3688 return @"installPackages";
3689 else if (selector == @selector(setAutoPopup:))
3690 return @"setAutoPopup";
3691 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
3692 return @"setButtonImage";
3693 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
3694 return @"setButtonTitle";
3695 else if (selector == @selector(setFinishHook:))
3696 return @"setFinishHook";
3697 else if (selector == @selector(setPopupHook:))
3698 return @"setPopupHook";
3699 else if (selector == @selector(setSpecial:))
3700 return @"setSpecial";
3701 else if (selector == @selector(setToken:))
3703 else if (selector == @selector(setViewportWidth:))
3704 return @"setViewportWidth";
3705 else if (selector == @selector(supports:))
3707 else if (selector == @selector(stringWithFormat:arguments:))
3709 else if (selector == @selector(localizedStringForKey:value:table:))
3711 else if (selector == @selector(du:))
3713 else if (selector == @selector(statfs:))
3719 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
3720 return [self webScriptNameForSelector:selector] == nil;
3723 - (BOOL) supports:(NSString *)feature {
3724 return [feature isEqualToString:@"window.open"];
3727 - (NSArray *) getInstalledPackages {
3728 NSArray *packages([[Database sharedInstance] packages]);
3729 NSMutableArray *installed([NSMutableArray arrayWithCapacity:[packages count]]);
3730 for (Package *package in packages)
3731 if ([package installed] != nil)
3732 [installed addObject:package];
3736 - (Package *) getPackageById:(NSString *)id {
3737 Package *package([[Database sharedInstance] packageWithName:id]);
3742 - (NSArray *) statfs:(NSString *)path {
3745 if (path == nil || statfs([path UTF8String], &stat) == -1)
3748 return [NSArray arrayWithObjects:
3749 [NSNumber numberWithUnsignedLong:stat.f_bsize],
3750 [NSNumber numberWithUnsignedLong:stat.f_blocks],
3751 [NSNumber numberWithUnsignedLong:stat.f_bfree],
3755 - (NSNumber *) du:(NSString *)path {
3756 NSNumber *value(nil);
3759 _assert(pipe(fds) != -1);
3761 pid_t pid(ExecFork());
3763 _assert(dup2(fds[1], 1) != -1);
3764 _assert(close(fds[0]) != -1);
3765 _assert(close(fds[1]) != -1);
3766 /* XXX: this should probably not use du */
3767 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
3772 _assert(close(fds[1]) != -1);
3774 if (FILE *du = fdopen(fds[0], "r")) {
3776 while (fgets(line, sizeof(line), du) != NULL) {
3777 size_t length(strlen(line));
3778 while (length != 0 && line[length - 1] == '\n')
3779 line[--length] = '\0';
3780 if (char *tab = strchr(line, '\t')) {
3782 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
3787 } else _assert(close(fds[0]));
3791 if (waitpid(pid, &status, 0) == -1)
3794 else _assert(false);
3803 - (void) installPackages:(NSArray *)packages {
3804 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
3807 - (void) setAutoPopup:(BOOL)popup {
3808 [indirect_ setAutoPopup:popup];
3811 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3812 [indirect_ setButtonImage:button withStyle:style toFunction:function];
3815 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3816 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
3819 - (void) setSpecial:(id)function {
3820 [indirect_ setSpecial:function];
3823 - (void) setToken:(NSString *)token {
3826 Token_ = [token retain];
3828 [Metadata_ setObject:Token_ forKey:@"Token"];
3832 - (void) setFinishHook:(id)function {
3833 [indirect_ setFinishHook:function];
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 View Controller {{{ */
3865 @interface CYViewController : UCViewController { }
3868 @implementation CYViewController
3872 @interface CYBrowserController : BrowserController {
3873 CydiaObject *cydia_;
3878 @implementation CYBrowserController
3885 - (void) setHeaders:(NSDictionary *)headers forHost:(NSString *)host {
3888 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
3889 [super webView:sender didClearWindowObject:window forFrame:frame];
3891 WebDataSource *source([frame dataSource]);
3892 NSURLResponse *response([source response]);
3893 NSURL *url([response URL]);
3894 NSString *scheme([url scheme]);
3896 NSHTTPURLResponse *http;
3897 if (scheme != nil && ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]))
3898 http = (NSHTTPURLResponse *) response;
3902 NSDictionary *headers([http allHeaderFields]);
3903 NSString *host([url host]);
3904 [self setHeaders:headers forHost:host];
3907 [host isEqualToString:@"cydia.saurik.com"] ||
3908 [host hasSuffix:@".cydia.saurik.com"] ||
3909 [scheme isEqualToString:@"file"]
3911 [window setValue:cydia_ forKey:@"cydia"];
3914 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
3915 if (System_ != NULL)
3916 [request setValue:System_ forHTTPHeaderField:@"X-System"];
3917 if (Machine_ != NULL)
3918 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
3920 [request setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
3922 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
3925 - (NSURLRequest *) webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)source {
3926 NSMutableURLRequest *copy = [request mutableCopy];
3927 [self _setMoreHeaders:copy];
3931 - (void) setDelegate:(id)delegate {
3932 [super setDelegate:delegate];
3933 [cydia_ setDelegate:delegate];
3937 if ((self = [super initWithWidth:0 ofClass:[CYBrowserController class]]) != nil) {
3938 cydia_ = [[CydiaObject alloc] initWithDelegate:indirect_];
3940 WebView *webview([document_ webView]);
3942 Package *package([[Database sharedInstance] packageWithName:@"cydia"]);
3944 NSString *application = package == nil ? @"Cydia" : [NSString
3945 stringWithFormat:@"Cydia/%@",
3950 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
3952 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
3953 if (Product_ != nil)
3954 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
3956 [webview setApplicationNameForUserAgent:application];
3962 @protocol ConfirmationControllerDelegate
3963 - (void) cancelAndClear:(bool)clear;
3964 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
3968 @interface ConfirmationController : CYBrowserController {
3969 _transient Database *database_;
3970 UIAlertView *essential_;
3977 - (id) initWithDatabase:(Database *)database;
3981 @implementation ConfirmationController
3988 if (essential_ != nil)
3989 [essential_ release];
3993 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
3994 NSString *context([alert context]);
3996 if ([context isEqualToString:@"remove"]) {
3997 if (button == [alert cancelButtonIndex]) {
3998 [self dismissModalViewControllerAnimated:YES];
3999 } else if (button == [alert firstOtherButtonIndex]) {
4002 [delegate_ confirmWithNavigationController:[self navigationController]];
4005 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4006 } else if ([context isEqualToString:@"unable"]) {
4007 [self dismissModalViewControllerAnimated:YES];
4008 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4010 [super alertView:alert clickedButtonAtIndex:button];
4014 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4015 [self dismissModalViewControllerAnimated:YES];
4016 [delegate_ cancelAndClear:NO];
4021 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4022 [super webView:sender didClearWindowObject:window forFrame:frame];
4023 [window setValue:changes_ forKey:@"changes"];
4024 [window setValue:issues_ forKey:@"issues"];
4025 [window setValue:sizes_ forKey:@"sizes"];
4026 [window setValue:self forKey:@"queue"];
4029 - (id) initWithDatabase:(Database *)database {
4030 if ((self = [super init]) != nil) {
4031 database_ = database;
4033 [[self navigationItem] setTitle:UCLocalize("CONFIRM")];
4035 NSMutableArray *installing = [NSMutableArray arrayWithCapacity:16];
4036 NSMutableArray *reinstalling = [NSMutableArray arrayWithCapacity:16];
4037 NSMutableArray *upgrading = [NSMutableArray arrayWithCapacity:16];
4038 NSMutableArray *downgrading = [NSMutableArray arrayWithCapacity:16];
4039 NSMutableArray *removing = [NSMutableArray arrayWithCapacity:16];
4043 pkgDepCache::Policy *policy([database_ policy]);
4045 pkgCacheFile &cache([database_ cache]);
4046 NSArray *packages = [database_ packages];
4047 for (Package *package in packages) {
4048 pkgCache::PkgIterator iterator = [package iterator];
4049 pkgDepCache::StateCache &state(cache[iterator]);
4051 NSString *name([package name]);
4053 if (state.NewInstall())
4054 [installing addObject:name];
4055 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4056 [reinstalling addObject:name];
4057 else if (state.Upgrade())
4058 [upgrading addObject:name];
4059 else if (state.Downgrade())
4060 [downgrading addObject:name];
4061 else if (state.Delete()) {
4062 if ([package essential])
4064 [removing addObject:name];
4067 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4068 substrate_ |= DepSubstrate(iterator.CurrentVer());
4073 else if (Advanced_) {
4074 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4076 essential_ = [[UIAlertView alloc]
4077 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4078 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4080 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4081 otherButtonTitles:[NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")], nil
4084 [essential_ setContext:@"remove"];
4086 essential_ = [[UIAlertView alloc]
4087 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4088 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4090 cancelButtonTitle:UCLocalize("OKAY")
4091 otherButtonTitles:nil
4094 [essential_ setContext:@"unable"];
4097 changes_ = [[NSArray alloc] initWithObjects:
4105 issues_ = [database_ issues];
4107 issues_ = [issues_ retain];
4109 sizes_ = [[NSArray alloc] initWithObjects:
4110 SizeString([database_ fetcher].FetchNeeded()),
4111 SizeString([database_ fetcher].PartialPresent()),
4114 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"confirm" ofType:@"html"]]];
4116 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
4117 initWithTitle:UCLocalize("CANCEL")
4118 // OLD: [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("CANCEL"), UCLocalize("QUEUE")]
4119 style:UIBarButtonItemStylePlain
4121 action:@selector(cancelButtonClicked)
4123 [[self navigationItem] setLeftBarButtonItem:leftItem];
4128 - (void) applyRightButton {
4129 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
4130 initWithTitle:UCLocalize("CONFIRM")
4131 style:UIBarButtonItemStylePlain
4133 action:@selector(confirmButtonClicked)
4135 #if !AlwaysReload && !IgnoreInstall
4136 if (issues_ == nil && ![self isLoading]) [[self navigationItem] setRightBarButtonItem:rightItem];
4137 else [super applyRightButton];
4139 [[self navigationItem] setRightBarButtonItem:nil];
4141 [rightItem release];
4144 - (void) cancelButtonClicked {
4145 [self dismissModalViewControllerAnimated:YES];
4146 [delegate_ cancelAndClear:YES];
4150 - (void) confirmButtonClicked {
4154 if (essential_ != nil)
4159 [delegate_ confirmWithNavigationController:[self navigationController]];
4167 /* Progress Data {{{ */
4168 @interface ProgressData : NSObject {
4174 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object;
4181 @implementation ProgressData
4183 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object {
4184 if ((self = [super init]) != nil) {
4185 selector_ = selector;
4205 /* Progress Controller {{{ */
4206 @interface ProgressController : CYViewController <
4207 ConfigurationDelegate,
4210 _transient Database *database_;
4211 UIProgressBar *progress_;
4212 UITextView *output_;
4213 UITextLabel *status_;
4214 UIPushButton *close_;
4216 SHA1SumValue springlist_;
4217 SHA1SumValue notifyconf_;
4221 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
4223 - (void) _retachThread;
4224 - (void) _detachNewThreadData:(ProgressData *)data;
4225 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title;
4231 @protocol ProgressControllerDelegate
4232 - (void) progressControllerIsComplete:(ProgressController *)sender;
4235 @implementation ProgressController
4238 [database_ setDelegate:nil];
4239 [progress_ release];
4248 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
4249 if ((self = [super init]) != nil) {
4250 database_ = database;
4251 [database_ setDelegate:self];
4252 delegate_ = delegate;
4254 [[self view] setBackgroundColor:[UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:1.0f]];
4256 progress_ = [[UIProgressBar alloc] init];
4257 [progress_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4258 [progress_ setStyle:0];
4260 status_ = [[UITextLabel alloc] init];
4261 [status_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4262 [status_ setColor:[UIColor whiteColor]];
4263 [status_ setBackgroundColor:[UIColor clearColor]];
4264 [status_ setCentersHorizontally:YES];
4265 //[status_ setFont:font];
4267 output_ = [[UITextView alloc] init];
4269 [output_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4270 //[output_ setTextFont:@"Courier New"];
4271 [output_ setFont:[[output_ font] fontWithSize:12]];
4272 [output_ setTextColor:[UIColor whiteColor]];
4273 [output_ setBackgroundColor:[UIColor clearColor]];
4274 [output_ setMarginTop:0];
4275 [output_ setAllowsRubberBanding:YES];
4276 [output_ setEditable:NO];
4277 [[self view] addSubview:output_];
4279 close_ = [[UIPushButton alloc] init];
4280 [close_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4281 [close_ setAutosizesToFit:NO];
4282 [close_ setDrawsShadow:YES];
4283 [close_ setStretchBackground:YES];
4284 [close_ setEnabled:YES];
4285 [close_ setTitleFont:[UIFont boldSystemFontOfSize:22]];
4286 [close_ addTarget:self action:@selector(closeButtonPushed) forEvents:UIControlEventTouchUpInside];
4287 [close_ setBackground:[UIImage applicationImageNamed:@"green-up.png"] forState:0];
4288 [close_ setBackground:[UIImage applicationImageNamed:@"green-dn.png"] forState:1];
4292 - (void) positionViews {
4293 CGRect bounds = [[self view] bounds];
4294 CGSize prgsize = [UIProgressBar defaultSize];
4297 (bounds.size.width - prgsize.width) / 2,
4298 bounds.size.height - prgsize.height - 64
4301 float closewidth = bounds.size.width - 20;
4302 if (closewidth > 300) closewidth = 300;
4304 [progress_ setFrame:prgrect];
4305 [status_ setFrame:CGRectMake(
4307 bounds.size.height - prgsize.height - 94,
4308 bounds.size.width - 20,
4311 [output_ setFrame:CGRectMake(
4314 bounds.size.width - 20,
4315 bounds.size.height - 106
4317 [close_ setFrame:CGRectMake(
4318 (bounds.size.width - closewidth) / 2,
4319 bounds.size.height - prgsize.height - 94,
4325 - (void) viewWillAppear:(BOOL)animated {
4326 [super viewDidAppear:animated];
4327 [[self navigationItem] setHidesBackButton:YES];
4328 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
4330 [self positionViews];
4333 - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
4334 [self positionViews];
4337 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4338 NSString *context([alert context]);
4340 if ([context isEqualToString:@"conffile"]) {
4341 FILE *input = [database_ input];
4342 if (button == [alert cancelButtonIndex]) fprintf(input, "N\n");
4343 else if (button == [alert firstOtherButtonIndex]) fprintf(input, "Y\n");
4348 - (void) closeButtonPushed {
4351 UpdateExternalStatus(0);
4355 [self dismissModalViewControllerAnimated:YES];
4359 [delegate_ terminateWithSuccess];
4360 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
4361 [delegate_ suspendWithAnimation:YES];
4363 [delegate_ suspend];*/
4367 system("launchctl stop com.apple.SpringBoard");
4371 system("launchctl unload "SpringBoard_"; launchctl load "SpringBoard_);
4380 - (void) _retachThread {
4381 [[self navigationItem] setTitle:UCLocalize("COMPLETE")];
4383 [[self view] addSubview:close_];
4384 [progress_ removeFromSuperview];
4385 [status_ removeFromSuperview];
4387 [database_ popErrorWithTitle:title_];
4388 [delegate_ progressControllerIsComplete:self];
4392 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4395 MMap mmap(file, MMap::ReadOnly);
4397 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4398 if (!(notifyconf_ == sha1.Result()))
4405 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4408 MMap mmap(file, MMap::ReadOnly);
4410 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4411 if (!(springlist_ == sha1.Result()))
4417 case 0: [close_ setTitle:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
4418 case 1: [close_ setTitle:UCLocalize("CLOSE_CYDIA")]; break;
4419 case 2: [close_ setTitle:UCLocalize("RESTART_SPRINGBOARD")]; break;
4420 case 3: [close_ setTitle:UCLocalize("RELOAD_SPRINGBOARD")]; break;
4421 case 4: [close_ setTitle:UCLocalize("REBOOT_DEVICE")]; break;
4424 system("su -c /usr/bin/uicache mobile");
4426 UpdateExternalStatus(Finish_ == 0 ? 2 : 0);
4428 [delegate_ setStatusBarShowsProgress:NO];
4431 - (void) _detachNewThreadData:(ProgressData *)data { _pooled
4432 [[data target] performSelector:[data selector] withObject:[data object]];
4435 [self performSelectorOnMainThread:@selector(_retachThread) withObject:nil waitUntilDone:YES];
4438 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title {
4439 UpdateExternalStatus(1);
4446 title_ = [title retain];
4448 [[self navigationItem] setTitle:title_];
4450 [status_ setText:nil];
4451 [output_ setText:@""];
4452 [progress_ setProgress:0];
4454 [close_ removeFromSuperview];
4455 [[self view] addSubview:progress_];
4456 [[self view] addSubview:status_];
4458 [delegate_ setStatusBarShowsProgress:YES];
4463 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4466 MMap mmap(file, MMap::ReadOnly);
4468 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4469 notifyconf_ = sha1.Result();
4475 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4478 MMap mmap(file, MMap::ReadOnly);
4480 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4481 springlist_ = sha1.Result();
4486 detachNewThreadSelector:@selector(_detachNewThreadData:)
4488 withObject:[[ProgressData alloc]
4489 initWithSelector:selector
4496 - (void) repairWithSelector:(SEL)selector {
4498 detachNewThreadSelector:selector
4501 title:UCLocalize("REPAIRING")
4505 - (void) setConfigurationData:(NSString *)data {
4507 performSelectorOnMainThread:@selector(_setConfigurationData:)
4513 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
4514 CYActionSheet *sheet([[[CYActionSheet alloc]
4516 buttons:[NSArray arrayWithObjects:UCLocalize("OKAY"), nil]
4517 defaultButtonIndex:0
4520 [sheet setMessage:error];
4521 [sheet yieldToPopupAlertAnimated:YES];
4525 - (void) setProgressTitle:(NSString *)title {
4527 performSelectorOnMainThread:@selector(_setProgressTitle:)
4533 - (void) setProgressPercent:(float)percent {
4535 performSelectorOnMainThread:@selector(_setProgressPercent:)
4536 withObject:[NSNumber numberWithFloat:percent]
4541 - (void) startProgress {
4544 - (void) addProgressOutput:(NSString *)output {
4546 performSelectorOnMainThread:@selector(_addProgressOutput:)
4552 - (bool) isCancelling:(size_t)received {
4556 - (void) _setConfigurationData:(NSString *)data {
4557 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
4559 if (!conffile_r(data)) {
4560 lprintf("E:invalid conffile\n");
4564 NSString *ofile = conffile_r[1];
4565 //NSString *nfile = conffile_r[2];
4567 UIAlertView *alert = [[[UIAlertView alloc]
4568 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
4569 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
4571 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
4572 otherButtonTitles:UCLocalize("ACCEPT_NEW_COPY"),
4573 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
4577 [alert setContext:@"conffile"];
4581 - (void) _setProgressTitle:(NSString *)title {
4582 NSMutableArray *words([[title componentsSeparatedByString:@" "] mutableCopy]);
4583 for (size_t i(0), e([words count]); i != e; ++i) {
4584 NSString *word([words objectAtIndex:i]);
4585 if (Package *package = [database_ packageWithName:word])
4586 [words replaceObjectAtIndex:i withObject:[package name]];
4589 [status_ setText:[words componentsJoinedByString:@" "]];
4592 - (void) _setProgressPercent:(NSNumber *)percent {
4593 [progress_ setProgress:[percent floatValue]];
4596 - (void) _addProgressOutput:(NSString *)output {
4597 [output_ setText:[NSString stringWithFormat:@"%@\n%@", [output_ text], output]];
4598 CGSize size = [output_ contentSize];
4599 CGRect rect = {{0, size.height}, {size.width, 0}};
4600 [output_ scrollRectToVisible:rect animated:YES];
4603 - (BOOL) isRunning {
4610 /* Cell Content View {{{ */
4611 @protocol ContentDelegate
4612 - (void) drawContentRect:(CGRect)rect;
4615 @interface ContentView : UIView {
4616 _transient id<ContentDelegate> delegate_;
4621 @implementation ContentView
4622 - (id) initWithFrame:(CGRect)frame {
4623 if ((self = [super initWithFrame:frame]) != nil) {
4624 /* Fix landscape stretching. */
4625 [self setNeedsDisplayOnBoundsChange:YES];
4629 - (void) setDelegate:(id<ContentDelegate>)delegate {
4630 delegate_ = delegate;
4633 - (void) drawRect:(CGRect)rect {
4634 [super drawRect:rect];
4635 [delegate_ drawContentRect:rect];
4639 /* Package Cell {{{ */
4640 @interface PackageCell : UITableViewCell <
4645 NSString *description_;
4651 ContentView *content_;
4657 - (PackageCell *) init;
4658 - (void) setPackage:(Package *)package;
4660 + (int) heightForPackage:(Package *)package;
4661 - (void) drawContentRect:(CGRect)rect;
4665 @implementation PackageCell
4667 - (void) clearPackage {
4678 if (description_ != nil) {
4679 [description_ release];
4683 if (source_ != nil) {
4688 if (badge_ != nil) {
4693 if (placard_ != nil) {
4703 [self clearPackage];
4710 return faded_ ? [self selectionPercent] : fade_;
4713 - (PackageCell *) init {
4714 CGRect frame(CGRectMake(0, 0, 320, 74));
4715 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
4716 UIView *content([self contentView]);
4717 CGRect bounds([content bounds]);
4719 content_ = [[ContentView alloc] initWithFrame:bounds];
4720 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4721 [content addSubview:content_];
4723 [content_ setDelegate:self];
4724 [content_ setOpaque:YES];
4725 if ([self respondsToSelector:@selector(selectionPercent)])
4730 - (void) _setBackgroundColor {
4732 if (NSString *mode = [package_ mode]) {
4733 bool remove([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]);
4734 color = remove ? RemovingColor_ : InstallingColor_;
4736 color = [UIColor whiteColor];
4738 [content_ setBackgroundColor:color];
4739 [self setNeedsDisplay];
4742 - (void) setPackage:(Package *)package {
4743 [self clearPackage];
4746 Source *source = [package source];
4748 icon_ = [[package icon] retain];
4749 name_ = [[package name] retain];
4752 description_ = [package longDescription];
4753 if (description_ == nil)
4754 description_ = [package shortDescription];
4755 if (description_ != nil)
4756 description_ = [description_ retain];
4758 commercial_ = [package isCommercial];
4760 package_ = [package retain];
4762 NSString *label = nil;
4763 bool trusted = false;
4765 if (source != nil) {
4766 label = [source label];
4767 trusted = [source trusted];
4768 } else if ([[package id] isEqualToString:@"firmware"])
4769 label = UCLocalize("APPLE");
4771 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
4773 NSString *from(label);
4775 NSString *section = [package simpleSection];
4776 if (section != nil && ![section isEqualToString:label]) {
4777 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
4778 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
4781 from = [NSString stringWithFormat:UCLocalize("FROM"), from];
4782 source_ = [from retain];
4784 if (NSString *purpose = [package primaryPurpose])
4785 if ((badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]) != nil)
4786 badge_ = [badge_ retain];
4788 if ([package installed] != nil)
4789 if ((placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/installed.png", App_]]) != nil)
4790 placard_ = [placard_ retain];
4792 [self _setBackgroundColor];
4793 [content_ setNeedsDisplay];
4796 - (void) drawContentRect:(CGRect)rect {
4797 bool selected([self isSelected]);
4798 float width([self bounds].size.width);
4801 CGContextRef context(UIGraphicsGetCurrentContext());
4802 [([[self selectedBackgroundView] superview] != nil ? [UIColor clearColor] : [self backgroundColor]) set];
4803 CGContextFillRect(context, rect);
4808 rect.size = [icon_ size];
4810 rect.size.width /= 2;
4811 rect.size.height /= 2;
4813 rect.origin.x = 25 - rect.size.width / 2;
4814 rect.origin.y = 25 - rect.size.height / 2;
4816 [icon_ drawInRect:rect];
4819 if (badge_ != nil) {
4820 CGSize size = [badge_ size];
4822 [badge_ drawAtPoint:CGPointMake(
4823 36 - size.width / 2,
4824 36 - size.height / 2
4832 UISetColor(commercial_ ? Purple_ : Black_);
4833 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
4834 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
4837 UISetColor(commercial_ ? Purplish_ : Gray_);
4838 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
4840 if (placard_ != nil)
4841 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
4844 - (void) setSelected:(BOOL)selected animated:(BOOL)fade {
4845 //[self _setBackgroundColor];
4846 [super setSelected:selected animated:fade];
4847 [content_ setNeedsDisplay];
4850 + (int) heightForPackage:(Package *)package {
4856 /* Section Cell {{{ */
4857 @interface SectionCell : UITableViewCell <
4865 ContentView *content_;
4870 - (void) setSection:(Section *)section editing:(BOOL)editing;
4874 @implementation SectionCell
4876 - (void) clearSection {
4877 if (basic_ != nil) {
4882 if (section_ != nil) {
4892 if (count_ != nil) {
4899 [self clearSection];
4907 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
4908 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
4909 icon_ = [[UIImage applicationImageNamed:@"folder.png"] retain];
4910 switch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(218, 9, 60, 25)];
4911 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
4913 UIView *content([self contentView]);
4914 CGRect bounds([content bounds]);
4916 content_ = [[ContentView alloc] initWithFrame:bounds];
4917 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4918 [content addSubview:content_];
4919 [content_ setBackgroundColor:[UIColor whiteColor]];
4921 [content_ setDelegate:self];
4925 - (void) onSwitch:(id)sender {
4926 NSMutableDictionary *metadata = [Sections_ objectForKey:basic_];
4927 if (metadata == nil) {
4928 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
4929 [Sections_ setObject:metadata forKey:basic_];
4933 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
4936 - (void) setSection:(Section *)section editing:(BOOL)editing {
4937 if (editing != editing_) {
4939 [switch_ removeFromSuperview];
4941 [self addSubview:switch_];
4945 [self clearSection];
4947 if (section == nil) {
4948 name_ = [UCLocalize("ALL_PACKAGES") retain];
4951 basic_ = [section name];
4953 basic_ = [basic_ retain];
4955 section_ = [section localized];
4956 if (section_ != nil)
4957 section_ = [section_ retain];
4959 name_ = [(section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : section_) retain];
4960 count_ = [[NSString stringWithFormat:@"%d", [section count]] retain];
4963 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
4966 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
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 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)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_;
5135 - (id) initWithDatabase:(Database *)database;
5136 - (void) setPackage:(Package *)package;
5140 @implementation PackageController
5143 if (package_ != nil)
5152 if ([self retainCount] == 1)
5153 [delegate_ setPackageController:self];
5157 /* XXX: this is not safe at all... localization of /fail/ */
5158 - (void) _clickButtonWithName:(NSString *)name {
5159 if ([name isEqualToString:UCLocalize("CLEAR")])
5160 [delegate_ clearPackage:package_];
5161 else if ([name isEqualToString:UCLocalize("INSTALL")])
5162 [delegate_ installPackage:package_];
5163 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5164 [delegate_ installPackage:package_];
5165 else if ([name isEqualToString:UCLocalize("REMOVE")])
5166 [delegate_ removePackage:package_];
5167 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5168 [delegate_ installPackage:package_];
5169 else _assert(false);
5172 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
5173 NSString *context([sheet context]);
5175 if ([context isEqualToString:@"modify"]) {
5176 if (button != [sheet cancelButtonIndex]) {
5177 NSString *buttonName = [buttons_ objectAtIndex:button];
5178 [self _clickButtonWithName:buttonName];
5181 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
5185 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame {
5186 return [super webView:sender didFinishLoadForFrame:frame];
5189 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5190 [super webView:sender didClearWindowObject:window forFrame:frame];
5191 [window setValue:package_ forKey:@"package"];
5194 - (bool) _allowJavaScriptPanel {
5199 - (void) _customButtonClicked {
5200 int count([buttons_ count]);
5205 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5207 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
5208 [buttons addObjectsFromArray:buttons_];
5210 UIActionSheet *sheet = [[[UIActionSheet alloc]
5213 cancelButtonTitle:nil
5214 destructiveButtonTitle:nil
5215 otherButtonTitles:nil
5218 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
5220 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
5221 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
5223 [sheet setContext:@"modify"];
5225 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
5229 - (void) customButtonClicked {
5230 // Wait until it's done loading.
5231 if (![self isLoading])
5232 [self _customButtonClicked];
5235 - (void) reloadButtonClicked {
5236 // Don't reload a package view by clicking the button.
5239 - (void) applyLoadingTitle {
5240 // Don't show "Loading" as the title. Ever.
5244 - (id) initWithDatabase:(Database *)database {
5245 if ((self = [super init]) != nil) {
5246 database_ = database;
5247 buttons_ = [[NSMutableArray alloc] initWithCapacity:4];
5248 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"package" ofType:@"html"]]];
5252 - (void) setPackage:(Package *)package {
5253 if (package_ != nil) {
5254 [package_ autorelease];
5263 [buttons_ removeAllObjects];
5265 if (package != nil) {
5268 package_ = [package retain];
5269 name_ = [[package id] retain];
5270 commercial_ = [package isCommercial];
5272 if ([package_ mode] != nil)
5273 [buttons_ addObject:UCLocalize("CLEAR")];
5274 if ([package_ source] == nil);
5275 else if ([package_ upgradableAndEssential:NO])
5276 [buttons_ addObject:UCLocalize("UPGRADE")];
5277 else if ([package_ uninstalled])
5278 [buttons_ addObject:UCLocalize("INSTALL")];
5280 [buttons_ addObject:UCLocalize("REINSTALL")];
5281 if (![package_ uninstalled])
5282 [buttons_ addObject:UCLocalize("REMOVE")];
5284 if (special_ != NULL) {
5285 CGRect frame([document_ frame]);
5286 frame.size.height = 0;
5287 [document_ setFrame:frame];
5289 if ([scroller_ respondsToSelector:@selector(scrollPointVisibleAtTopLeft:)])
5290 [scroller_ scrollPointVisibleAtTopLeft:CGPointZero];
5292 [scroller_ scrollRectToVisible:CGRectZero animated:NO];
5295 [[[document_ webView] windowScriptObject] setValue:package_ forKey:@"package"];
5297 [self setButtonTitle:nil withStyle:nil toFunction:nil];
5299 [self setFinishHook:nil];
5300 [self setPopupHook:nil];
5303 //[self yieldToSelector:@selector(callFunction:) withObject:special_];
5304 [super callFunction:special_];
5309 - (void) applyRightButton {
5310 int count = [buttons_ count];
5311 UIBarButtonItem *actionItem = [[UIBarButtonItem alloc]
5312 initWithTitle:count == 0 ? nil : count != 1 ? UCLocalize("MODIFY") : [buttons_ objectAtIndex:0]
5313 style:UIBarButtonItemStylePlain
5315 action:@selector(customButtonClicked)
5317 if (![self isLoading]) [[self navigationItem] setRightBarButtonItem:actionItem];
5318 else [super applyRightButton];
5319 [actionItem release];
5322 - (bool) isLoading {
5323 return commercial_ ? [super isLoading] : false;
5326 - (void) reloadData {
5327 [self setPackage:[database_ packageWithName:name_]];
5332 /* Package Table {{{ */
5333 @interface PackageTable : UIView <
5334 UITableViewDataSource,
5337 _transient Database *database_;
5338 NSMutableArray *packages_;
5339 NSMutableArray *sections_;
5341 NSMutableArray *index_;
5342 NSMutableDictionary *indices_;
5348 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action;
5350 - (void) setDelegate:(id)delegate;
5352 - (void) reloadData;
5353 - (void) resetCursor;
5355 - (UITableView *) list;
5357 - (void) setShouldHideHeaderInShortLists:(BOOL)hide;
5359 - (void) deselectWithAnimation:(BOOL)animated;
5363 @implementation PackageTable
5366 [packages_ release];
5367 [sections_ release];
5375 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
5376 NSInteger count([sections_ count]);
5377 return count == 0 ? 1 : count;
5380 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
5381 if ([sections_ count] == 0)
5383 return [[sections_ objectAtIndex:section] name];
5386 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
5387 if ([sections_ count] == 0)
5389 return [[sections_ objectAtIndex:section] count];
5392 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
5393 Section *section([sections_ objectAtIndex:[path section]]);
5394 NSInteger row([path row]);
5395 Package *package([packages_ objectAtIndex:([section row] + row)]);
5399 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
5400 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
5402 cell = [[[PackageCell alloc] init] autorelease];
5403 [cell setPackage:[self packageAtIndexPath:path]];
5407 - (void) deselectWithAnimation:(BOOL)animated {
5408 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5411 /*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
5412 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
5415 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
5416 Package *package([self packageAtIndexPath:path]);
5417 package = [database_ packageWithName:[package id]];
5418 [target_ performSelector:action_ withObject:package];
5422 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
5423 return [packages_ count] > 20 ? index_ : nil;
5426 - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
5430 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action {
5431 if ((self = [super initWithFrame:frame]) != nil) {
5432 database_ = database;
5437 index_ = [[NSMutableArray alloc] initWithCapacity:32];
5438 indices_ = [[NSMutableDictionary alloc] initWithCapacity:32];
5440 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
5441 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
5443 list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain];
5444 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5445 [list_ setRowHeight:73.0f];
5446 [self addSubview:list_];
5448 [list_ setDataSource:self];
5449 [list_ setDelegate:self];
5453 - (void) setDelegate:(id)delegate {
5454 delegate_ = delegate;
5457 - (bool) hasPackage:(Package *)package {
5461 - (void) reloadData {
5462 NSArray *packages = [database_ packages];
5464 [packages_ removeAllObjects];
5465 [sections_ removeAllObjects];
5467 _profile(PackageTable$reloadData$Filter)
5468 for (Package *package in packages)
5469 if ([self hasPackage:package])
5470 [packages_ addObject:package];
5473 [index_ removeAllObjects];
5474 [indices_ removeAllObjects];
5476 Section *section = nil;
5478 _profile(PackageTable$reloadData$Section)
5479 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
5483 _profile(PackageTable$reloadData$Section$Package)
5484 package = [packages_ objectAtIndex:offset];
5485 index = [package index];
5488 if (section == nil || [section index] != index) {
5489 _profile(PackageTable$reloadData$Section$Allocate)
5490 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
5493 [index_ addObject:[section name]];
5494 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
5496 _profile(PackageTable$reloadData$Section$Add)
5497 [sections_ addObject:section];
5501 [section addToCount];
5505 _profile(PackageTable$reloadData$List)
5510 - (void) resetCursor {
5511 [list_ scrollRectToVisible:CGRectMake(0, 0, 0, 0) animated:NO];
5514 - (UITableView *) list {
5518 - (void) setShouldHideHeaderInShortLists:(BOOL)hide {
5519 //XXX:[list_ setShouldHideHeaderInShortLists:hide];
5524 /* Filtered Package Table {{{ */
5525 @interface FilteredPackageTable : PackageTable {
5531 - (void) setObject:(id)object;
5532 - (void) setObject:(id)object forFilter:(SEL)filter;
5534 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object;
5538 @implementation FilteredPackageTable
5546 - (void) setFilter:(SEL)filter {
5549 /* XXX: this is an unsafe optimization of doomy hell */
5550 Method method(class_getInstanceMethod([Package class], filter));
5551 _assert(method != NULL);
5552 imp_ = method_getImplementation(method);
5553 _assert(imp_ != NULL);
5556 - (void) setObject:(id)object {
5562 object_ = [object retain];
5565 - (void) setObject:(id)object forFilter:(SEL)filter {
5566 [self setFilter:filter];
5567 [self setObject:object];
5570 - (bool) hasPackage:(Package *)package {
5571 _profile(FilteredPackageTable$hasPackage)
5572 return [package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp_))(package, filter_, object_);
5576 - (id) initWithFrame:(CGRect)frame database:(Database *)database target:(id)target action:(SEL)action filter:(SEL)filter with:(id)object {
5577 if ((self = [super initWithFrame:frame database:database target:target action:action]) != nil) {
5578 [self setFilter:filter];
5579 object_ = [object retain];
5587 /* Filtered Package Controller {{{ */
5588 @interface FilteredPackageController : CYViewController {
5589 _transient Database *database_;
5590 FilteredPackageTable *packages_;
5594 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
5598 @implementation FilteredPackageController
5601 [packages_ release];
5607 - (void) viewDidAppear:(BOOL)animated {
5608 [super viewDidAppear:animated];
5609 [packages_ deselectWithAnimation:animated];
5612 - (void) didSelectPackage:(Package *)package {
5613 PackageController *view([delegate_ packageController]);
5614 [view setPackage:package];
5615 [view setDelegate:delegate_];
5616 [[self navigationController] pushViewController:view animated:YES];
5619 - (id) title { return title_; }
5621 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
5622 if ((self = [super init]) != nil) {
5623 database_ = database;
5624 title_ = [title copy];
5625 [[self navigationItem] setTitle:title_];
5627 packages_ = [[FilteredPackageTable alloc]
5628 initWithFrame:[[self view] bounds]
5631 action:@selector(didSelectPackage:)
5636 [packages_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5637 [[self view] addSubview:packages_];
5641 - (void) reloadData {
5642 [packages_ reloadData];
5645 - (void) setDelegate:(id)delegate {
5646 [super setDelegate:delegate];
5647 [packages_ setDelegate:delegate];
5654 /* Add Source Controller {{{ */
5655 @interface AddSourceController : CYViewController {
5656 _transient Database *database_;
5659 - (id) initWithDatabase:(Database *)database;
5663 @implementation AddSourceController
5665 - (id) initWithDatabase:(Database *)database {
5666 if ((self = [super init]) != nil) {
5667 database_ = database;
5673 /* Source Cell {{{ */
5674 @interface SourceCell : UITableViewCell <
5679 NSString *description_;
5681 ContentView *content_;
5684 - (void) setSource:(Source *)source;
5688 @implementation SourceCell
5690 - (void) clearSource {
5693 [description_ release];
5702 - (void) setSource:(Source *)source {
5706 icon_ = [UIImage applicationImageNamed:[NSString stringWithFormat:@"Sources/%@.png", [source host]]];
5708 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
5709 icon_ = [icon_ retain];
5711 origin_ = [[source name] retain];
5712 label_ = [[source uri] retain];
5713 description_ = [[source description] retain];
5715 [content_ setNeedsDisplay];
5724 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5725 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5726 UIView *content([self contentView]);
5727 CGRect bounds([content bounds]);
5729 content_ = [[ContentView alloc] initWithFrame:bounds];
5730 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5731 [content_ setBackgroundColor:[UIColor whiteColor]];
5732 [content addSubview:content_];
5734 [content_ setDelegate:self];
5735 [content_ setOpaque:YES];
5739 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
5740 [super setSelected:selected animated:animated];
5741 [content_ setNeedsDisplay];
5744 - (void) drawContentRect:(CGRect)rect {
5745 bool selected([self isSelected]);
5746 float width(rect.size.width);
5749 [icon_ drawInRect:CGRectMake(10, 10, 30, 30)];
5756 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5760 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5764 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 40) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5769 /* Source Table {{{ */
5770 @interface SourceTable : CYViewController <
5771 UITableViewDataSource,
5774 _transient Database *database_;
5776 NSMutableArray *sources_;
5780 UIProgressHUD *hud_;
5783 //NSURLConnection *installer_;
5784 NSURLConnection *trivial_;
5785 NSURLConnection *trivial_bz2_;
5786 NSURLConnection *trivial_gz_;
5787 //NSURLConnection *automatic_;
5792 - (id) initWithDatabase:(Database *)database;
5794 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
5798 @implementation SourceTable
5800 - (void) _deallocConnection:(NSURLConnection *)connection {
5801 if (connection != nil) {
5802 [connection cancel];
5803 //[connection setDelegate:nil];
5804 [connection release];
5816 //[self _deallocConnection:installer_];
5817 [self _deallocConnection:trivial_];
5818 [self _deallocConnection:trivial_gz_];
5819 [self _deallocConnection:trivial_bz2_];
5820 //[self _deallocConnection:automatic_];
5827 - (void) viewDidAppear:(BOOL)animated {
5828 [super viewDidAppear:animated];
5829 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
5832 - (int) numberOfSectionsInTableView:(UITableView *)tableView {
5833 return offset_ == 0 ? 1 : 2;
5836 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(int)section {
5837 switch (section + (offset_ == 0 ? 1 : 0)) {
5838 case 0: return UCLocalize("ENTERED_BY_USER");
5839 case 1: return UCLocalize("INSTALLED_BY_PACKAGE");
5845 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)section {
5846 int count = [sources_ count];
5848 case 0: return (offset_ == 0 ? count : offset_);
5849 case 1: return count - offset_;
5855 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
5857 switch (indexPath.section) {
5858 case 0: idx = indexPath.row; break;
5859 case 1: idx = indexPath.row + offset_; break;
5863 return [sources_ objectAtIndex:idx];
5866 - (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5867 Source *source = [self sourceAtIndexPath:indexPath];
5868 return [source description] == nil ? 56 : 73;
5871 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5872 static NSString *cellIdentifier = @"SourceCell";
5874 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
5875 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
5876 [cell setSource:[self sourceAtIndexPath:indexPath]];
5881 - (UITableViewCellAccessoryType) tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
5882 return UITableViewCellAccessoryDisclosureIndicator;
5885 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
5886 Source *source = [self sourceAtIndexPath:indexPath];
5888 FilteredPackageController *packages = [[[FilteredPackageController alloc]
5889 initWithDatabase:database_
5890 title:[source label]
5891 filter:@selector(isVisibleInSource:)
5895 [packages setDelegate:delegate_];
5897 [[self navigationController] pushViewController:packages animated:YES];
5900 - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
5901 Source *source = [self sourceAtIndexPath:indexPath];
5902 return [source record] != nil;
5905 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
5906 Source *source = [self sourceAtIndexPath:indexPath];
5907 [Sources_ removeObjectForKey:[source key]];
5908 [delegate_ syncData];
5912 [Sources_ setObject:[NSDictionary dictionaryWithObjectsAndKeys:
5915 @"./", @"Distribution",
5916 nil] forKey:[NSString stringWithFormat:@"deb:%@:./", href_]];
5918 [delegate_ syncData];
5921 - (NSString *) getWarning {
5922 NSString *href(href_);
5923 NSRange colon([href rangeOfString:@"://"]);
5924 if (colon.location != NSNotFound)
5925 href = [href substringFromIndex:(colon.location + 3)];
5926 href = [href stringByAddingPercentEscapes];
5927 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
5928 href = [href stringByCachingURLWithCurrentCDN];
5930 NSURL *url([NSURL URLWithString:href]);
5932 NSStringEncoding encoding;
5933 NSError *error(nil);
5935 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
5936 return [warning length] == 0 ? nil : warning;
5940 - (void) _endConnection:(NSURLConnection *)connection {
5941 NSURLConnection **field = NULL;
5942 if (connection == trivial_)
5944 else if (connection == trivial_bz2_)
5945 field = &trivial_bz2_;
5946 else if (connection == trivial_gz_)
5947 field = &trivial_gz_;
5948 _assert(field != NULL);
5949 [connection release];
5954 trivial_bz2_ == nil &&
5960 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
5963 UIAlertView *alert = [[[UIAlertView alloc]
5964 initWithTitle:UCLocalize("SOURCE_WARNING")
5967 cancelButtonTitle:UCLocalize("CANCEL")
5968 otherButtonTitles:UCLocalize("ADD_ANYWAY"), nil
5971 [alert setContext:@"warning"];
5972 [alert setNumberOfRows:1];
5976 } else if (error_ != nil) {
5977 UIAlertView *alert = [[[UIAlertView alloc]
5978 initWithTitle:UCLocalize("VERIFICATION_ERROR")
5979 message:[error_ localizedDescription]
5981 cancelButtonTitle:UCLocalize("OK")
5982 otherButtonTitles:nil
5985 [alert setContext:@"urlerror"];
5988 UIAlertView *alert = [[[UIAlertView alloc]
5989 initWithTitle:UCLocalize("NOT_REPOSITORY")
5990 message:UCLocalize("NOT_REPOSITORY_EX")
5992 cancelButtonTitle:UCLocalize("OK")
5993 otherButtonTitles:nil
5996 [alert setContext:@"trivial"];
6000 [delegate_ setStatusBarShowsProgress:NO];
6001 [delegate_ removeProgressHUD:hud_];
6011 if (error_ != nil) {
6018 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
6019 switch ([response statusCode]) {
6025 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
6026 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
6028 error_ = [error retain];
6029 [self _endConnection:connection];
6032 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
6033 [self _endConnection:connection];
6036 - (id)title { return UCLocalize("SOURCES"); }
6038 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
6039 NSMutableURLRequest *request = [NSMutableURLRequest
6040 requestWithURL:[NSURL URLWithString:href]
6041 cachePolicy:NSURLRequestUseProtocolCachePolicy
6042 timeoutInterval:120.0
6045 [request setHTTPMethod:method];
6047 if (Machine_ != NULL)
6048 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
6049 if (UniqueID_ != nil)
6050 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6052 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
6054 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
6057 - (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
6058 NSString *context([alert context]);
6060 if ([context isEqualToString:@"source"]) {
6063 NSString *href = [[alert textField] text];
6065 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
6067 if (![href hasSuffix:@"/"])
6068 href_ = [href stringByAppendingString:@"/"];
6071 href_ = [href_ retain];
6073 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
6074 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
6075 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
6076 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
6080 hud_ = [[delegate_ addProgressHUD] retain];
6081 [hud_ setText:UCLocalize("VERIFYING_URL")];
6090 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6091 } else if ([context isEqualToString:@"trivial"])
6092 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6093 else if ([context isEqualToString:@"urlerror"])
6094 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6095 else if ([context isEqualToString:@"warning"]) {
6110 [alert dismissWithClickedButtonIndex:-1 animated:YES];
6114 - (id) initWithDatabase:(Database *)database {
6115 if ((self = [super init]) != nil) {
6116 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
6117 [self updateButtonsForEditingStatus:NO animated:NO];
6119 database_ = database;
6120 sources_ = [[NSMutableArray arrayWithCapacity:16] retain];
6122 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
6123 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6124 [[self view] addSubview:list_];
6126 [list_ setDataSource:self];
6127 [list_ setDelegate:self];
6133 - (void) reloadData {
6135 if (!list.ReadMainList())
6138 [sources_ removeAllObjects];
6139 [sources_ addObjectsFromArray:[database_ sources]];
6141 [sources_ sortUsingSelector:@selector(compareByNameAndType:)];
6144 int count([sources_ count]);
6146 for (int i = 0; i != count; i++) {
6147 if ([[sources_ objectAtIndex:i] record] == nil) break;
6151 [list_ setEditing:NO];
6152 [self updateButtonsForEditingStatus:NO animated:NO];
6156 - (void) addButtonClicked {
6157 /*[book_ pushPage:[[[AddSourceController alloc]
6162 UIAlertView *alert = [[[UIAlertView alloc]
6163 initWithTitle:UCLocalize("ENTER_APT_URL")
6166 cancelButtonTitle:UCLocalize("CANCEL")
6167 otherButtonTitles:UCLocalize("ADD_SOURCE"), nil
6170 [alert setContext:@"source"];
6171 [alert setTransform:CGAffineTransformTranslate([alert transform], 0.0, 100.0)];
6173 [alert setNumberOfRows:1];
6174 [alert addTextFieldWithValue:@"http://" label:@""];
6176 UITextInputTraits *traits = [[alert textField] textInputTraits];
6177 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
6178 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
6179 [traits setKeyboardType:UIKeyboardTypeURL];
6180 // XXX: UIReturnKeyDone
6181 [traits setReturnKeyType:UIReturnKeyNext];
6186 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
6187 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
6188 initWithTitle:UCLocalize("ADD")
6189 style:UIBarButtonItemStylePlain
6191 action:@selector(addButtonClicked)
6193 [[self navigationItem] setLeftBarButtonItem:editing ? leftItem : [[self navigationItem] backBarButtonItem] animated:animated];
6196 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6197 initWithTitle:editing ? UCLocalize("DONE") : UCLocalize("EDIT")
6198 style:editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6200 action:@selector(editButtonClicked)
6202 [[self navigationItem] setRightBarButtonItem:rightItem animated:animated];
6203 [rightItem release];
6205 if (IsWildcat_ && !editing) {
6206 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6207 initWithTitle:UCLocalize("SETTINGS")
6208 style:UIBarButtonItemStylePlain
6210 action:@selector(settingsButtonClicked)
6212 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6213 [settingsItem release];
6217 - (void) settingsButtonClicked {
6218 [delegate_ showSettings];
6221 - (void) editButtonClicked {
6222 [list_ setEditing:![list_ isEditing] animated:YES];
6224 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
6230 /* Installed Controller {{{ */
6231 @interface InstalledController : FilteredPackageController {
6235 - (id) initWithDatabase:(Database *)database;
6237 - (void) updateRoleButton;
6238 - (void) queueStatusDidChange;
6242 @implementation InstalledController
6248 - (id) title { return UCLocalize("INSTALLED"); }
6250 - (id) initWithDatabase:(Database *)database {
6251 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndVisible:) with:[NSNumber numberWithBool:YES]]) != nil) {
6252 [self updateRoleButton];
6253 [self queueStatusDidChange];
6258 - (void) queueButtonClicked {
6263 - (void) queueStatusDidChange {
6266 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6267 initWithTitle:UCLocalize("QUEUE")
6268 style:UIBarButtonItemStyleDone
6270 action:@selector(queueButtonClicked)
6272 if (Queuing_) [[self navigationItem] setLeftBarButtonItem:queueItem];
6273 else [[self navigationItem] setLeftBarButtonItem:nil];
6274 [queueItem release];
6279 - (void) reloadData {
6280 [packages_ reloadData];
6283 - (void) updateRoleButton {
6284 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6285 initWithTitle:expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE")
6286 style:expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain
6288 action:@selector(roleButtonClicked)
6290 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"]) [[self navigationItem] setRightBarButtonItem:rightItem];
6291 [rightItem release];
6294 - (void) roleButtonClicked {
6295 [packages_ setObject:[NSNumber numberWithBool:expert_]];
6296 [packages_ reloadData];
6299 [self updateRoleButton];
6302 - (void) setDelegate:(id)delegate {
6303 [super setDelegate:delegate];
6304 [packages_ setDelegate:delegate];
6310 /* Home Controller {{{ */
6311 @interface HomeController : CYBrowserController {
6316 @implementation HomeController
6318 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
6319 [super _setMoreHeaders:request];
6321 [request setValue:ChipID_ forHTTPHeaderField:@"X-Chip-ID"];
6322 if (UniqueID_ != nil)
6323 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6326 - (void) aboutButtonClicked {
6327 UIAlertView *alert = [[[UIAlertView alloc] init] autorelease];
6328 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6329 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6330 [alert setCancelButtonIndex:0];
6333 @"Copyright (C) 2008-2010\n"
6334 "Jay Freeman (saurik)\n"
6335 "saurik@saurik.com\n"
6336 "http://www.saurik.com/"
6342 - (void) viewWillAppear:(BOOL)animated {
6343 [super viewWillAppear:animated];
6344 [[self navigationController] setNavigationBarHidden:YES animated:animated];
6347 - (void) viewWillDisappear:(BOOL)animated {
6348 [super viewWillDisappear:animated];
6349 [[self navigationController] setNavigationBarHidden:NO animated:animated];
6353 if ((self = [super init]) != nil) {
6354 UIBarButtonItem *aboutItem = [[UIBarButtonItem alloc]
6355 initWithTitle:UCLocalize("ABOUT")
6356 style:UIBarButtonItemStylePlain
6358 action:@selector(aboutButtonClicked)
6360 [[self navigationItem] setLeftBarButtonItem:aboutItem];
6361 [aboutItem release];
6367 /* Manage Controller {{{ */
6368 @interface ManageController : CYBrowserController {
6371 - (void) queueStatusDidChange;
6374 @implementation ManageController
6377 if ((self = [super init]) != nil) {
6378 [[self navigationItem] setTitle:UCLocalize("MANAGE")];
6380 UIBarButtonItem *settingsItem = [[UIBarButtonItem alloc]
6381 initWithTitle:UCLocalize("SETTINGS")
6382 style:UIBarButtonItemStylePlain
6384 action:@selector(settingsButtonClicked)
6386 [[self navigationItem] setLeftBarButtonItem:settingsItem];
6387 [settingsItem release];
6389 [self queueStatusDidChange];
6393 - (void) settingsButtonClicked {
6394 [delegate_ showSettings];
6398 - (void) queueButtonClicked {
6402 - (void) applyLoadingTitle {
6403 // No "Loading" title.
6406 - (void) applyRightButton {
6411 - (void) queueStatusDidChange {
6413 if (!IsWildcat_ && Queuing_) {
6414 UIBarButtonItem *queueItem = [[UIBarButtonItem alloc]
6415 initWithTitle:UCLocalize("QUEUE")
6416 style:UIBarButtonItemStyleDone
6418 action:@selector(queueButtonClicked)
6420 [[self navigationItem] setRightBarButtonItem:queueItem];
6422 [queueItem release];
6424 [[self navigationItem] setRightBarButtonItem:nil];
6429 - (bool) isLoading {
6436 /* Refresh Bar {{{ */
6437 @interface RefreshBar : UINavigationBar {
6438 UIProgressIndicator *indicator_;
6439 UITextLabel *prompt_;
6440 UIProgressBar *progress_;
6441 UINavigationButton *cancel_;
6446 @implementation RefreshBar
6448 - (void) positionViews {
6449 CGRect frame = [cancel_ frame];
6450 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6451 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6452 [cancel_ setFrame:frame];
6454 CGSize prgsize = {75, 100};
6456 [self frame].size.width - prgsize.width - 10,
6457 ([self frame].size.height - prgsize.height) / 2
6459 [progress_ setFrame:prgrect];
6461 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6462 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6463 CGRect indrect = {{indoffset, indoffset}, indsize};
6464 [indicator_ setFrame:indrect];
6466 CGSize prmsize = {215, indsize.height + 4};
6468 indoffset * 2 + indsize.width,
6469 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6471 [prompt_ setFrame:prmrect];
6474 - (void)setFrame:(CGRect)frame {
6475 [super setFrame:frame];
6477 [self positionViews];
6480 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6481 if ((self = [super initWithFrame:frame])) {
6482 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6484 [self setTintColor:[UIColor colorWithRed:0.23 green:0.23 blue:0.23 alpha:1]];
6485 [self setBarStyle:UIBarStyleBlack];
6487 UIBarStyle barstyle([self _barStyle:NO]);
6488 bool ugly(barstyle == UIBarStyleDefault);
6490 UIProgressIndicatorStyle style = ugly ?
6491 UIProgressIndicatorStyleMediumBrown :
6492 UIProgressIndicatorStyleMediumWhite;
6494 indicator_ = [[UIProgressIndicator alloc] initWithFrame:CGRectZero];
6495 [indicator_ setStyle:style];
6496 [indicator_ startAnimation];
6497 [self addSubview:indicator_];
6499 prompt_ = [[UITextLabel alloc] initWithFrame:CGRectZero];
6500 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6501 [prompt_ setBackgroundColor:[UIColor clearColor]];
6502 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6503 [self addSubview:prompt_];
6505 progress_ = [[UIProgressBar alloc] initWithFrame:CGRectZero];
6506 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6507 [progress_ setStyle:0];
6508 [self addSubview:progress_];
6510 cancel_ = [[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted];
6511 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6512 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6513 [cancel_ setBarStyle:barstyle];
6515 [self positionViews];
6520 [cancel_ removeFromSuperview];
6524 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6525 [progress_ setProgress:0];
6526 [self addSubview:cancel_];
6530 [cancel_ removeFromSuperview];
6533 - (void) setPrompt:(NSString *)prompt {
6534 [prompt_ setText:prompt];
6537 - (void) setProgress:(float)progress {
6538 [progress_ setProgress:progress];
6544 @class CYNavigationController;
6546 /* Cydia Tab Bar Controller {{{ */
6547 @interface CYTabBarController : UITabBarController {
6548 Database *database_;
6553 @implementation CYTabBarController
6555 /* XXX: some logic should probably go here related to
6556 freeing the view controllers on tab change */
6558 - (void) reloadData {
6559 size_t count([[self viewControllers] count]);
6560 for (size_t i(0); i != count; ++i) {
6561 CYNavigationController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6566 - (id) initWithDatabase: (Database *)database {
6567 if ((self = [super init]) != nil) {
6568 database_ = database;
6575 /* Cydia Navigation Controller {{{ */
6576 @interface CYNavigationController : UINavigationController {
6577 _transient Database *database_;
6581 - (id) initWithDatabase:(Database *)database;
6582 - (void) reloadData;
6587 @implementation CYNavigationController
6589 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
6590 // Inherit autorotation settings for modal parents.
6591 if ([self parentViewController] && [[self parentViewController] modalViewController] == self) {
6592 return [[self parentViewController] shouldAutorotateToInterfaceOrientation:orientation];
6594 return [super shouldAutorotateToInterfaceOrientation:orientation];
6602 - (void) reloadData {
6603 size_t count([[self viewControllers] count]);
6604 for (size_t i(0); i != count; ++i) {
6605 CYViewController *page([[self viewControllers] objectAtIndex:(count - i - 1)]);
6610 - (void) setDelegate:(id)delegate {
6611 delegate_ = delegate;
6614 - (id) initWithDatabase:(Database *)database {
6615 if ((self = [super init]) != nil) {
6616 database_ = database;
6622 /* Cydia:// Protocol {{{ */
6623 @interface CydiaURLProtocol : NSURLProtocol {
6628 @implementation CydiaURLProtocol
6630 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
6631 NSURL *url([request URL]);
6634 NSString *scheme([[url scheme] lowercaseString]);
6635 if (scheme == nil || ![scheme isEqualToString:@"cydia"])
6640 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
6644 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
6645 id<NSURLProtocolClient> client([self client]);
6647 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
6649 NSData *data(UIImagePNGRepresentation(icon));
6651 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
6652 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
6653 [client URLProtocol:self didLoadData:data];
6654 [client URLProtocolDidFinishLoading:self];
6658 - (void) startLoading {
6659 id<NSURLProtocolClient> client([self client]);
6660 NSURLRequest *request([self request]);
6662 NSURL *url([request URL]);
6663 NSString *href([url absoluteString]);
6665 NSString *path([href substringFromIndex:8]);
6666 NSRange slash([path rangeOfString:@"/"]);
6669 if (slash.location == NSNotFound) {
6673 command = [path substringToIndex:slash.location];
6674 path = [path substringFromIndex:(slash.location + 1)];
6677 Database *database([Database sharedInstance]);
6679 if ([command isEqualToString:@"package-icon"]) {
6682 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6683 Package *package([database packageWithName:path]);
6686 UIImage *icon([package icon]);
6687 [self _returnPNGWithImage:icon forRequest:request];
6688 } else if ([command isEqualToString:@"source-icon"]) {
6691 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6692 NSString *source(Simplify(path));
6693 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sources/%@.png", App_, source]]);
6695 icon = [UIImage applicationImageNamed:@"unknown.png"];
6696 [self _returnPNGWithImage:icon forRequest:request];
6697 } else if ([command isEqualToString:@"uikit-image"]) {
6700 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6701 UIImage *icon(_UIImageWithName(path));
6702 [self _returnPNGWithImage:icon forRequest:request];
6703 } else if ([command isEqualToString:@"section-icon"]) {
6706 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6707 NSString *section(Simplify(path));
6708 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]]);
6710 icon = [UIImage applicationImageNamed:@"unknown.png"];
6711 [self _returnPNGWithImage:icon forRequest:request];
6713 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
6717 - (void) stopLoading {
6723 /* Sections Controller {{{ */
6724 @interface SectionsController : CYViewController <
6725 UITableViewDataSource,
6728 _transient Database *database_;
6729 NSMutableArray *sections_;
6730 NSMutableArray *filtered_;
6736 - (id) initWithDatabase:(Database *)database;
6737 - (void) reloadData;
6740 - (void) editButtonClicked;
6744 @implementation SectionsController
6747 [list_ setDataSource:nil];
6748 [list_ setDelegate:nil];
6750 [sections_ release];
6751 [filtered_ release];
6753 [accessory_ release];
6757 - (void) viewDidAppear:(BOOL)animated {
6758 [super viewDidAppear:animated];
6759 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6762 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
6763 Section *section = (editing_ ? [sections_ objectAtIndex:[indexPath row]] : ([indexPath row] == 0 ? nil : [filtered_ objectAtIndex:([indexPath row] - 1)]));
6767 - (int) tableView:(UITableView *)tableView numberOfRowsInSection:(int)section {
6768 return editing_ ? [sections_ count] : [filtered_ count] + 1;
6771 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6775 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6776 static NSString *reuseIdentifier = @"SectionCell";
6778 SectionCell *cell = (SectionCell *) [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6779 if (cell == nil) cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6780 [cell setSection:[self sectionAtIndexPath:indexPath] editing:editing_];
6785 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
6786 Section *section = [self sectionAtIndexPath:indexPath];
6787 NSString *name = [section name];
6790 if ([indexPath row] == 0) {
6793 title = UCLocalize("ALL_PACKAGES");
6796 name = [NSString stringWithString:name];
6797 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
6800 title = UCLocalize("NO_SECTION");
6804 FilteredPackageController *table = [[[FilteredPackageController alloc]
6805 initWithDatabase:database_
6807 filter:@selector(isVisibleInSection:)
6811 [table setDelegate:delegate_];
6813 [[self navigationController] pushViewController:table animated:YES];
6816 - (id) title { return UCLocalize("SECTIONS"); }
6818 - (id) initWithDatabase:(Database *)database {
6819 if ((self = [super init]) != nil) {
6820 database_ = database;
6822 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
6824 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
6825 filtered_ = [[NSMutableArray arrayWithCapacity:16] retain];
6827 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
6828 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6829 [list_ setRowHeight:45.0f];
6830 [[self view] addSubview:list_];
6832 [list_ setDataSource:self];
6833 [list_ setDelegate:self];
6839 - (void) reloadData {
6840 NSArray *packages = [database_ packages];
6842 [sections_ removeAllObjects];
6843 [filtered_ removeAllObjects];
6846 typedef __gnu_cxx::hash_map<NSString *, Section *, NSStringMapHash, NSStringMapEqual> SectionMap;
6847 SectionMap sections;
6848 sections.resize(64);
6850 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
6854 for (Package *package in packages) {
6855 NSString *name([package section]);
6856 NSString *key(name == nil ? @"" : name);
6861 _profile(SectionsView$reloadData$Section)
6862 section = §ions[key];
6863 if (*section == nil) {
6864 _profile(SectionsView$reloadData$Section$Allocate)
6865 *section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6870 [*section addToCount];
6872 _profile(SectionsView$reloadData$Filter)
6873 if (![package valid] || ![package visible])
6877 [*section addToRow];
6881 _profile(SectionsView$reloadData$Section)
6882 section = [sections objectForKey:key];
6883 if (section == nil) {
6884 _profile(SectionsView$reloadData$Section$Allocate)
6885 section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6886 [sections setObject:section forKey:key];
6891 [section addToCount];
6893 _profile(SectionsView$reloadData$Filter)
6894 if (![package valid] || ![package visible])
6904 for (SectionMap::const_iterator i(sections.begin()), e(sections.end()); i != e; ++i)
6905 [sections_ addObject:i->second];
6907 [sections_ addObjectsFromArray:[sections allValues]];
6910 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
6912 for (Section *section in sections_) {
6913 size_t count([section row]);
6917 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
6918 [section setCount:count];
6919 [filtered_ addObject:section];
6922 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
6923 initWithTitle:[sections_ count] == 0 ? nil : UCLocalize("EDIT")
6924 style:UIBarButtonItemStylePlain
6926 action:@selector(editButtonClicked)
6928 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] != nil];
6929 [rightItem release];
6935 - (void) resetView {
6937 [self editButtonClicked];
6940 - (void) editButtonClicked {
6941 if ((editing_ = !editing_))
6944 [delegate_ updateData];
6946 [[self navigationItem] setTitle:editing_ ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
6947 [[[self navigationItem] rightBarButtonItem] setTitle:[sections_ count] == 0 ? nil : editing_ ? UCLocalize("DONE") : UCLocalize("EDIT")];
6948 [[[self navigationItem] rightBarButtonItem] setStyle:editing_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain];
6951 - (UIView *) accessoryView {
6957 /* Changes Controller {{{ */
6958 @interface ChangesController : CYViewController <
6959 UITableViewDataSource,
6962 _transient Database *database_;
6963 NSMutableArray *packages_;
6964 NSMutableArray *sections_;
6967 BOOL hasSentFirstLoad_;
6970 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
6971 - (void) reloadData;
6975 @implementation ChangesController
6978 [list_ setDelegate:nil];
6979 [list_ setDataSource:nil];
6981 [packages_ release];
6982 [sections_ release];
6987 - (void) viewDidAppear:(BOOL)animated {
6988 [super viewDidAppear:animated];
6989 if (!hasSentFirstLoad_) {
6990 hasSentFirstLoad_ = YES;
6991 [self performSelector:@selector(reloadData) withObject:nil afterDelay:0.0];
6993 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6997 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6998 NSInteger count([sections_ count]);
6999 return count == 0 ? 1 : count;
7002 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
7003 if ([sections_ count] == 0)
7005 return [[sections_ objectAtIndex:section] name];
7008 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7009 if ([sections_ count] == 0)
7011 return [[sections_ objectAtIndex:section] count];
7014 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7015 Section *section([sections_ objectAtIndex:[path section]]);
7016 NSInteger row([path row]);
7017 return [packages_ objectAtIndex:([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];
7046 - (void) upgradeButtonClicked {
7047 [delegate_ distUpgrade];
7050 - (id) 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_ = [[NSMutableArray arrayWithCapacity:16] retain];
7058 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7060 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
7061 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7062 [list_ setRowHeight:73.0f];
7063 [[self view] addSubview:list_];
7065 [list_ setDataSource:self];
7066 [list_ setDelegate:self];
7068 delegate_ = delegate;
7072 - (void) _reloadPackages:(NSArray *)packages {
7074 for (Package *package in packages)
7076 [package uninstalled] && [package valid] && [package visible] ||
7077 [package upgradableAndEssential:YES]
7079 [packages_ addObject:package];
7082 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackageChangesRadix) withContext:NULL];
7086 - (void) reloadData {
7087 NSArray *packages = [database_ packages];
7089 [packages_ removeAllObjects];
7090 [sections_ removeAllObjects];
7092 UIProgressHUD *hud([delegate_ addProgressHUD]);
7094 [hud setText:@"Loading Changes"];
7095 NSLog(@"HUD:%@::%@", delegate_, hud);
7096 [self yieldToSelector:@selector(_reloadPackages:) withObject:packages];
7097 [delegate_ removeProgressHUD:hud];
7099 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7100 Section *ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") localize:NO] autorelease];
7101 Section *section = nil;
7105 bool unseens = false;
7107 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7109 for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) {
7110 Package *package = [packages_ objectAtIndex:offset];
7112 BOOL uae = [package upgradableAndEssential:YES];
7118 _profile(ChangesController$reloadData$Remember)
7119 seen = [package seen];
7122 if (section == nil || last != seen && (seen == nil || [seen compare:last] != NSOrderedSame)) {
7127 name = UCLocalize("UNKNOWN");
7129 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) seen);
7133 _profile(ChangesController$reloadData$Allocate)
7134 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7135 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7136 [sections_ addObject:section];
7140 [section addToCount];
7141 } else if ([package ignored])
7142 [ignored addToCount];
7145 [upgradable addToCount];
7150 CFRelease(formatter);
7153 Section *last = [sections_ lastObject];
7154 size_t count = [last count];
7155 [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)];
7156 [sections_ removeLastObject];
7159 if ([ignored count] != 0)
7160 [sections_ insertObject:ignored atIndex:0];
7162 [sections_ insertObject:upgradable atIndex:0];
7166 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7167 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7168 style:UIBarButtonItemStylePlain
7170 action:@selector(upgradeButtonClicked)
7172 if (upgrades_ > 0) [[self navigationItem] setRightBarButtonItem:rightItem];
7173 [rightItem release];
7175 UIBarButtonItem *leftItem = [[UIBarButtonItem alloc]
7176 initWithTitle:UCLocalize("REFRESH")
7177 style:UIBarButtonItemStylePlain
7179 action:@selector(refreshButtonClicked)
7181 if (![delegate_ updating]) [[self navigationItem] setLeftBarButtonItem:leftItem];
7187 /* Search Controller {{{ */
7188 @interface SearchController : FilteredPackageController <
7191 UISearchBar *search_;
7194 - (id) initWithDatabase:(Database *)database;
7195 - (void) reloadData;
7199 @implementation SearchController
7206 - (void) searchBarSearchButtonClicked:(id)searchBar {
7207 [packages_ setObject:[search_ text] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7208 [search_ resignFirstResponder];
7212 - (void) searchBar:(id)searchBar textDidChange:(NSString *)text {
7213 [packages_ setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7217 - (id) title { return nil; }
7219 - (id) initWithDatabase:(Database *)database {
7220 return [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:nil];
7223 - (void)viewDidAppear:(BOOL)animated {
7224 [super viewDidAppear:animated];
7226 search_ = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7227 [search_ layoutSubviews];
7228 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7229 UITextField *textField = [search_ searchField];
7230 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7231 [search_ setDelegate:self];
7232 [textField setEnablesReturnKeyAutomatically:NO];
7233 [[self navigationItem] setTitleView:textField];
7237 - (void) _reloadData {
7240 - (void) reloadData {
7241 _profile(SearchController$reloadData)
7242 [packages_ reloadData];
7245 [packages_ resetCursor];
7248 - (void) didSelectPackage:(Package *)package {
7249 [search_ resignFirstResponder];
7250 [super didSelectPackage:package];
7255 /* Settings Controller {{{ */
7256 @interface SettingsController : CYViewController <
7257 UITableViewDataSource,
7260 _transient Database *database_;
7263 UITableView *table_;
7264 id subscribedSwitch_;
7266 UITableViewCell *subscribedCell_;
7267 UITableViewCell *ignoredCell_;
7270 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7274 @implementation SettingsController
7278 if (package_ != nil)
7281 [subscribedSwitch_ release];
7282 [ignoredSwitch_ release];
7283 [subscribedCell_ release];
7284 [ignoredCell_ release];
7289 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7290 if (package_ == nil)
7296 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7297 if (package_ == nil)
7303 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7304 return UCLocalize("SHOW_ALL_CHANGES_EX");
7307 - (void) onSomething:(BOOL)value withKey:(NSString *)key {
7308 if (package_ == nil)
7311 NSMutableDictionary *metadata([package_ metadata]);
7314 if (NSNumber *number = [metadata objectForKey:key])
7315 before = [number boolValue];
7319 if (value != before) {
7320 [metadata setObject:[NSNumber numberWithBool:value] forKey:key];
7322 [delegate_ updateData];
7326 - (void) onSubscribed:(id)control {
7327 [self onSomething:(int) [control isOn] withKey:@"IsSubscribed"];
7330 - (void) onIgnored:(id)control {
7331 [self onSomething:(int) [control isOn] withKey:@"IsIgnored"];
7334 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7335 if (package_ == nil)
7338 switch ([indexPath row]) {
7339 case 0: return subscribedCell_;
7340 case 1: return ignoredCell_;
7348 - (id) title { return UCLocalize("SETTINGS"); }
7350 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7351 if ((self = [super init])) {
7352 database_ = database;
7353 name_ = [package retain];
7355 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7357 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7358 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7359 [table_ setAllowsSelection:NO];
7360 [[self view] addSubview:table_];
7362 subscribedSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7363 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7364 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7366 ignoredSwitch_ = [[objc_getClass("UISwitch") alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7367 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7368 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7370 subscribedCell_ = [[UITableViewCell alloc] init];
7371 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7372 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7374 ignoredCell_ = [[UITableViewCell alloc] init];
7375 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7376 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7378 [table_ setDataSource:self];
7379 [table_ setDelegate:self];
7384 - (void) reloadData {
7385 if (package_ != nil)
7386 [package_ autorelease];
7387 package_ = [database_ packageWithName:name_];
7388 if (package_ != nil) {
7390 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7391 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7394 [table_ reloadData];
7400 /* Signature Controller {{{ */
7401 @interface SignatureController : CYBrowserController {
7402 _transient Database *database_;
7406 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7410 @implementation SignatureController
7417 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
7419 [super webView:sender didClearWindowObject:window forFrame:frame];
7422 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7423 if ((self = [super init]) != nil) {
7424 database_ = database;
7425 package_ = [package retain];
7430 - (void) reloadData {
7431 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"signature" ofType:@"html"]]];
7436 /* Role Controller {{{ */
7437 @interface RoleController : CYViewController <
7438 UITableViewDataSource,
7441 _transient Database *database_;
7443 UITableView *table_;
7444 UISegmentedControl *segment_;
7448 - (void) showDoneButton;
7449 - (void) resizeSegmentedControl;
7453 @implementation RoleController
7457 [container_ release];
7462 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
7463 if ((self = [super init])) {
7464 database_ = database;
7465 roledelegate_ = delegate;
7467 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
7469 NSArray *items = [NSArray arrayWithObjects:
7471 UCLocalize("HACKER"),
7472 UCLocalize("DEVELOPER"),
7474 segment_ = [[UISegmentedControl alloc] initWithItems:items];
7475 container_ = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)];
7476 [container_ addSubview:segment_];
7479 if ([Role_ isEqualToString:@"User"]) index = 0;
7480 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
7481 if ([Role_ isEqualToString:@"Developer"]) index = 2;
7483 [segment_ setSelectedSegmentIndex:index];
7484 [self showDoneButton];
7487 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
7488 [self resizeSegmentedControl];
7490 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7491 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7492 [table_ setDelegate:self];
7493 [table_ setDataSource:self];
7494 [[self view] addSubview:table_];
7495 [table_ reloadData];
7499 - (void) resizeSegmentedControl {
7500 CGFloat width = [[self view] frame].size.width;
7501 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
7504 - (void) viewWillAppear:(BOOL)animated {
7505 [super viewWillAppear:animated];
7507 [self resizeSegmentedControl];
7510 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7511 [self resizeSegmentedControl];
7514 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7515 [self resizeSegmentedControl];
7519 NSString *role = nil;
7521 switch ([segment_ selectedSegmentIndex]) {
7522 case 0: role = @"User"; break;
7523 case 1: role = @"Hacker"; break;
7524 case 2: role = @"Developer"; break;
7529 if (![role isEqualToString:Role_]) {
7532 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
7536 [Metadata_ setObject:Settings_ forKey:@"Settings"];
7540 [roledelegate_ updateData];
7544 - (void) segmentChanged:(UISegmentedControl *)control {
7545 [self showDoneButton];
7548 - (void) doneButtonClicked {
7550 [[self navigationController] dismissModalViewControllerAnimated:YES];
7553 - (void) showDoneButton {
7554 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]
7555 initWithTitle:UCLocalize("DONE")
7556 style:UIBarButtonItemStyleDone
7558 action:@selector(doneButtonClicked)
7560 [[self navigationItem] setRightBarButtonItem:rightItem animated:[[self navigationItem] rightBarButtonItem] == nil];
7561 [rightItem release];
7564 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7565 // XXX: For not having a single cell in the table, this sure is a lot of sections.
7569 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7573 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7574 return nil; // This method is required by the protocol.
7577 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7579 return UCLocalize("ROLE_EX");
7581 return [NSString stringWithFormat:
7582 @"%@: %@\n%@: %@\n%@: %@",
7583 UCLocalize("USER"), UCLocalize("USER_EX"),
7584 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
7585 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
7590 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
7591 if (section == 3) return 44.0f;
7595 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
7596 if (section == 3) return container_;
7603 /* Cydia Container {{{ */
7604 @interface CYContainer : UIViewController <ProgressDelegate> {
7605 _transient Database *database_;
7606 RefreshBar *refreshbar_;
7611 UITabBarController *root_;
7614 - (void) setTabBarController:(UITabBarController *)controller;
7616 - (void) dropBar:(BOOL)animated;
7617 - (void) beginUpdate;
7618 - (void) raiseBar:(BOOL)animated;
7622 @implementation CYContainer
7624 // NOTE: UIWindow only sends the top controller these messages,
7625 // So we have to forward them on.
7627 - (void) viewDidAppear:(BOOL)animated {
7628 [super viewDidAppear:animated];
7629 [root_ viewDidAppear:animated];
7632 - (void) viewWillAppear:(BOOL)animated {
7633 [super viewWillAppear:animated];
7634 [root_ viewWillAppear:animated];
7637 - (void) viewDidDisappear:(BOOL)animated {
7638 [super viewDidDisappear:animated];
7639 [root_ viewDidDisappear:animated];
7642 - (void) viewWillDisappear:(BOOL)animated {
7643 [super viewWillDisappear:animated];
7644 [root_ viewWillDisappear:animated];
7647 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
7648 return YES; /* XXX: return YES; */
7651 - (void) setTabBarController:(UITabBarController *)controller {
7653 [[self view] addSubview:[root_ view]];
7656 - (void) setUpdate:(NSDate *)date {
7660 - (void) beginUpdate {
7662 [refreshbar_ start];
7667 detachNewThreadSelector:@selector(performUpdate)
7673 - (void) performUpdate { _pooled
7675 status.setDelegate(self);
7676 [database_ updateWithStatus:status];
7679 performSelectorOnMainThread:@selector(completeUpdate)
7685 - (void) completeUpdate {
7688 [self raiseBar:YES];
7690 [updatedelegate_ performSelector:@selector(reloadData) withObject:nil afterDelay:0];
7693 - (void) cancelUpdate {
7694 [refreshbar_ cancel];
7695 [self completeUpdate];
7698 - (void) cancelPressed {
7699 [self cancelUpdate];
7706 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
7707 [refreshbar_ setPrompt:[NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), UCLocalize("ERROR"), error]];
7710 - (void) startProgress {
7713 - (void) setProgressTitle:(NSString *)title {
7715 performSelectorOnMainThread:@selector(_setProgressTitle:)
7721 - (bool) isCancelling:(size_t)received {
7725 - (void) setProgressPercent:(float)percent {
7727 performSelectorOnMainThread:@selector(_setProgressPercent:)
7728 withObject:[NSNumber numberWithFloat:percent]
7733 - (void) addProgressOutput:(NSString *)output {
7735 performSelectorOnMainThread:@selector(_addProgressOutput:)
7741 - (void) _setProgressTitle:(NSString *)title {
7742 [refreshbar_ setPrompt:title];
7745 - (void) _setProgressPercent:(NSNumber *)percent {
7746 [refreshbar_ setProgress:[percent floatValue]];
7749 - (void) _addProgressOutput:(NSString *)output {
7752 - (void) setUpdateDelegate:(id)delegate {
7753 updatedelegate_ = delegate;
7756 - (void) dropBar:(BOOL)animated {
7757 if (dropped_) return;
7760 [[self view] addSubview:refreshbar_];
7762 if (animated) [UIView beginAnimations:nil context:NULL];
7763 CGRect barframe = [refreshbar_ frame];
7764 CGRect viewframe = [[root_ view] frame];
7765 viewframe.origin.y += barframe.size.height + 20.0f;
7766 viewframe.size.height -= barframe.size.height + 20.0f;
7767 [[root_ view] setFrame:viewframe];
7768 if (animated) [UIView commitAnimations];
7770 // Ensure bar has the proper width for our view, it might have changed
7771 barframe.size.width = viewframe.size.width;
7772 [refreshbar_ setFrame:barframe];
7774 // XXX: fix Apple's layout bug
7775 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7778 - (void) raiseBar:(BOOL)animated {
7779 if (!dropped_) return;
7782 [refreshbar_ removeFromSuperview];
7784 if (animated) [UIView beginAnimations:nil context:NULL];
7785 CGRect barframe = [refreshbar_ frame];
7786 CGRect viewframe = [[root_ view] frame];
7787 viewframe.origin.y -= barframe.size.height + 20.0f;
7788 viewframe.size.height += barframe.size.height + 20.0f;
7789 [[root_ view] setFrame:viewframe];
7790 if (animated) [UIView commitAnimations];
7792 // XXX: fix Apple's layout bug
7793 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7796 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7797 // XXX: fix Apple's layout bug
7798 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7801 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7807 // XXX: fix Apple's layout bug
7808 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7812 [refreshbar_ release];
7816 - (id) initWithDatabase: (Database *)database {
7817 if ((self = [super init]) != nil) {
7818 database_ = database;
7820 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7822 refreshbar_ = [[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self];
7839 @interface Cydia : UIApplication <
7840 ConfirmationControllerDelegate,
7841 ProgressControllerDelegate,
7845 CYContainer *container_;
7849 NSMutableArray *essential_;
7850 NSMutableArray *broken_;
7852 Database *database_;
7856 UIKeyboard *keyboard_;
7857 UIProgressHUD *hud_;
7859 SectionsController *sections_;
7860 ChangesController *changes_;
7861 ManageController *manage_;
7862 SearchController *search_;
7863 SourceTable *sources_;
7864 InstalledController *installed_;
7867 #if RecyclePackageViews
7868 NSMutableArray *details_;
7874 - (UCViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class;
7875 - (void) setPage:(UCViewController *)page;
7879 static _finline void _setHomePage(Cydia *self) {
7880 [self setPage:[self _pageForURL:[NSURL URLWithString:CydiaURL(@"")] withClass:[HomeController class]]];
7883 @implementation Cydia
7885 - (void) beginUpdate {
7886 [container_ beginUpdate];
7890 return [container_ updating];
7893 - (UIView *) rotatingContentViewForWindow:(UIWindow *)window {
7898 if ([broken_ count] != 0) {
7899 int count = [broken_ count];
7901 UIAlertView *alert = [[[UIAlertView alloc]
7902 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
7903 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
7905 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
7906 otherButtonTitles:UCLocalize("TEMPORARY_IGNORE"), nil
7909 [alert setContext:@"fixhalf"];
7911 } else if (!Ignored_ && [essential_ count] != 0) {
7912 int count = [essential_ count];
7914 UIAlertView *alert = [[[UIAlertView alloc]
7915 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
7916 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
7918 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
7919 otherButtonTitles:UCLocalize("UPGRADE_ESSENTIAL"), UCLocalize("COMPLETE_UPGRADE"), nil
7922 [alert setContext:@"upgrade"];
7927 - (void) _saveConfig {
7930 NSString *error(nil);
7931 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
7933 NSError *error(nil);
7934 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
7935 NSLog(@"failure to save metadata data: %@", error);
7938 NSLog(@"failure to serialize metadata: %@", error);
7946 - (void) _updateData {
7949 /* XXX: this is just stupid */
7950 if (tag_ != 1 && sections_ != nil)
7951 [sections_ reloadData];
7952 if (tag_ != 2 && changes_ != nil)
7953 [changes_ reloadData];
7954 if (tag_ != 4 && search_ != nil)
7955 [search_ reloadData];
7957 [(CYNavigationController *)[tabbar_ selectedViewController] reloadData];
7960 - (int)indexOfTabWithTag:(int)tag {
7962 for (UINavigationController *controller in [tabbar_ viewControllers]) {
7963 if ([[controller tabBarItem] tag] == tag) return i;
7970 - (void) _refreshIfPossible {
7971 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
7973 Reachability* reachability = [Reachability reachabilityWithHostName:@"cydia.saurik.com"];
7974 NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
7976 if (loaded_ || ManualRefresh || remoteHostStatus == NotReachable) loaded:
7977 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
7981 NSDate *update([Metadata_ objectForKey:@"LastUpdate"]);
7983 if (update != nil) {
7984 NSTimeInterval interval([update timeIntervalSinceNow]);
7985 if (interval <= 0 && interval > -(15*60))
7989 [container_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
7995 - (void) refreshIfPossible {
7996 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil];
7999 - (void) _reloadData {
8002 UIProgressHUD *hud([self addProgressHUD]);
8003 [hud setText:(loaded_ ? UCLocalize("RELOADING_DATA") : UCLocalize("LOADING_DATA"))];
8005 [database_ yieldToSelector:@selector(reloadData) withObject:nil];
8008 [self removeProgressHUD:hud];
8012 [essential_ removeAllObjects];
8013 [broken_ removeAllObjects];
8015 NSArray *packages([database_ packages]);
8016 for (Package *package in packages) {
8018 [broken_ addObject:package];
8019 if ([package upgradableAndEssential:NO]) {
8020 if ([package essential])
8021 [essential_ addObject:package];
8027 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
8028 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setBadgeValue:badge];
8029 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setAnimatedBadge:YES];
8031 if ([self respondsToSelector:@selector(setApplicationBadge:)])
8032 [self setApplicationBadge:badge];
8034 [self setApplicationBadgeString:badge];
8036 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setBadgeValue:nil];
8037 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kChangesTag]] tabBarItem] setAnimatedBadge:NO];
8039 if ([self respondsToSelector:@selector(removeApplicationBadge)])
8040 [self removeApplicationBadge];
8041 else // XXX: maybe use setApplicationBadgeString also?
8042 [self setApplicationIconBadgeNumber:0];
8047 [self refreshIfPossible];
8050 - (void) updateData {
8051 [database_ setVisible];
8060 FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w"));
8061 _assert(file != NULL);
8063 for (NSString *key in [Sources_ allKeys]) {
8064 NSDictionary *source([Sources_ objectForKey:key]);
8066 fprintf(file, "%s %s %s\n",
8067 [[source objectForKey:@"Type"] UTF8String],
8068 [[source objectForKey:@"URI"] UTF8String],
8069 [[source objectForKey:@"Distribution"] UTF8String]
8077 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8078 UINavigationController *navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8079 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8080 [container_ presentModalViewController:navigation animated:YES];
8083 detachNewThreadSelector:@selector(update_)
8086 title:UCLocalize("UPDATING_SOURCES")
8090 - (void) reloadData {
8091 @synchronized (self) {
8097 pkgProblemResolver *resolver = [database_ resolver];
8099 resolver->InstallProtect();
8100 if (!resolver->Resolve(true))
8104 - (CGRect) popUpBounds {
8105 return [[tabbar_ view] bounds];
8109 if (![database_ prepare])
8112 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
8113 [page setDelegate:self];
8114 id confirm_ = [[CYNavigationController alloc] initWithRootViewController:page];
8115 [confirm_ setDelegate:self];
8117 if (IsWildcat_) [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
8118 [container_ presentModalViewController:confirm_ animated:YES];
8124 @synchronized (self) {
8129 - (void) clearPackage:(Package *)package {
8130 @synchronized (self) {
8137 - (void) installPackages:(NSArray *)packages {
8138 @synchronized (self) {
8139 for (Package *package in packages)
8146 - (void) installPackage:(Package *)package {
8147 @synchronized (self) {
8154 - (void) removePackage:(Package *)package {
8155 @synchronized (self) {
8162 - (void) distUpgrade {
8163 @synchronized (self) {
8164 if (![database_ upgrade])
8171 @synchronized (self) {
8176 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
8177 ProgressController *progress = [[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease];
8179 if (navigation != nil) {
8180 [navigation pushViewController:progress animated:YES];
8182 navigation = [[[CYNavigationController alloc] initWithRootViewController:progress] autorelease];
8183 if (IsWildcat_) [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
8184 [container_ presentModalViewController:navigation animated:YES];
8188 detachNewThreadSelector:@selector(perform)
8191 title:UCLocalize("RUNNING")
8195 - (void) progressControllerIsComplete:(ProgressController *)progress {
8199 - (void) setPage:(UCViewController *)page {
8200 [page setDelegate:self];
8202 CYNavigationController *navController = (CYNavigationController *) [tabbar_ selectedViewController];
8203 [navController setViewControllers:[NSArray arrayWithObject:page] animated:NO];
8204 for (CYNavigationController *page in [tabbar_ viewControllers]) {
8205 if (page != navController) [page setViewControllers:nil];
8209 - (UCViewController *) _pageForURL:(NSURL *)url withClass:(Class)_class {
8210 CYBrowserController *browser = [[[_class alloc] init] autorelease];
8211 [browser loadURL:url];
8215 - (SectionsController *) sectionsController {
8216 if (sections_ == nil)
8217 sections_ = [[SectionsController alloc] initWithDatabase:database_];
8221 - (ChangesController *) changesController {
8222 if (changes_ == nil)
8223 changes_ = [[ChangesController alloc] initWithDatabase:database_ delegate:self];
8227 - (ManageController *) manageController {
8228 if (manage_ == nil) {
8229 manage_ = (ManageController *) [[self
8230 _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]
8231 withClass:[ManageController class]
8233 if (!IsWildcat_) queueDelegate_ = manage_;
8238 - (SearchController *) searchController {
8240 search_ = [[SearchController alloc] initWithDatabase:database_];
8244 - (SourceTable *) sourcesController {
8245 if (sources_ == nil)
8246 sources_ = [[SourceTable alloc] initWithDatabase:database_];
8250 - (InstalledController *) installedController {
8251 if (installed_ == nil) {
8252 installed_ = [[InstalledController alloc] initWithDatabase:database_];
8253 if (IsWildcat_) queueDelegate_ = installed_;
8258 - (void) tabBarController:(id)tabBarController didSelectViewController:(UIViewController *)viewController {
8259 int tag = [[viewController tabBarItem] tag];
8261 [(CYNavigationController *)[tabbar_ selectedViewController] popToRootViewControllerAnimated:YES];
8263 } else if (tag_ == 1) {
8264 [[self sectionsController] resetView];
8268 case kCydiaTag: _setHomePage(self); break;
8270 case kSectionsTag: [self setPage:[self sectionsController]]; break;
8271 case kChangesTag: [self setPage:[self changesController]]; break;
8272 case kManageTag: [self setPage:[self manageController]]; break;
8273 case kInstalledTag: [self setPage:[self installedController]]; break;
8274 case kSourcesTag: [self setPage:[self sourcesController]]; break;
8275 case kSearchTag: [self setPage:[self searchController]]; break;
8283 - (void) showSettings {
8284 RoleController *role = [[RoleController alloc] initWithDatabase:database_ delegate:self];
8285 CYNavigationController *nav = [[CYNavigationController alloc] initWithRootViewController:role];
8286 if (IsWildcat_) [nav setModalPresentationStyle:UIModalPresentationFormSheet];
8287 [container_ presentModalViewController:nav animated:YES];
8290 - (void) setPackageController:(PackageController *)view {
8292 [view setPackage:nil];
8293 #if RecyclePackageViews
8294 if ([details_ count] < 3)
8295 [details_ addObject:view];
8300 - (PackageController *) _packageController {
8301 return [[[PackageController alloc] initWithDatabase:database_] autorelease];
8304 - (PackageController *) packageController {
8305 #if RecyclePackageViews
8306 PackageController *view;
8307 size_t count([details_ count]);
8310 view = [self _packageController];
8312 [details_ addObject:[self _packageController]];
8314 view = [[[details_ lastObject] retain] autorelease];
8315 [details_ removeLastObject];
8322 return [self _packageController];
8326 - (void) cancelAndClear:(bool)clear {
8327 @synchronized (self) {
8329 /* XXX: clear marks instead of reloading data */
8330 /*pkgCacheFile &cache([database_ cache]);
8331 for (pkgCache::PkgIterator iterator = cache->PkgBegin(); !iterator.end(); ++iterator) {
8332 if (!cache[iterator].Keep()) cache->MarkKeep(iterator, false, false);
8338 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kManageTag] != -1 ? [self indexOfTabWithTag:kManageTag] : [self indexOfTabWithTag:kInstalledTag]] tabBarItem] setBadgeValue:nil];
8339 [queueDelegate_ queueStatusDidChange];*/
8344 [[[[tabbar_ viewControllers] objectAtIndex:[self indexOfTabWithTag:kManageTag] != -1 ? [self indexOfTabWithTag:kManageTag] : [self indexOfTabWithTag:kInstalledTag]] tabBarItem] setBadgeValue:UCLocalize("Q_D")];
8345 [(CYNavigationController *)[tabbar_ selectedViewController] reloadData];
8347 [queueDelegate_ queueStatusDidChange];
8352 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8353 NSString *context([alert context]);
8355 if ([context isEqualToString:@"fixhalf"]) {
8356 if (button == [alert firstOtherButtonIndex]) {
8357 @synchronized (self) {
8358 for (Package *broken in broken_) {
8361 NSString *id = [broken id];
8362 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
8363 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
8364 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
8365 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
8371 } else if (button == [alert cancelButtonIndex]) {
8372 [broken_ removeAllObjects];
8376 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8377 } else if ([context isEqualToString:@"upgrade"]) {
8378 if (button == [alert firstOtherButtonIndex]) {
8379 @synchronized (self) {
8380 for (Package *essential in essential_)
8381 [essential install];
8386 } else if (button == [alert firstOtherButtonIndex] + 1) {
8388 } else if (button == [alert cancelButtonIndex]) {
8392 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8396 - (void) system:(NSString *)command { _pooled
8397 system([command UTF8String]);
8400 - (void) applicationWillSuspend {
8402 [super applicationWillSuspend];
8405 - (void) applicationSuspend:(__GSEvent *)event {
8406 // FIXME: This needs to be fixed, but we no longer have a progress_.
8407 // What's the best solution?
8408 if (hud_ == nil)// && ![progress_ isRunning])
8409 [super applicationSuspend:event];
8412 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
8414 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
8417 - (void) _setSuspended:(BOOL)value {
8419 [super _setSuspended:value];
8422 - (UIProgressHUD *) addProgressHUD {
8423 UIProgressHUD *hud([[[UIProgressHUD alloc] initWithWindow:window_] autorelease]);
8424 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8426 [window_ setUserInteractionEnabled:NO];
8428 [[container_ view] addSubview:hud];
8432 - (void) removeProgressHUD:(UIProgressHUD *)hud {
8434 [hud removeFromSuperview];
8435 [window_ setUserInteractionEnabled:YES];
8438 - (UCViewController *) pageForPackage:(NSString *)name {
8439 if (Package *package = [database_ packageWithName:name]) {
8440 PackageController *view([self packageController]);
8441 [view setPackage:package];
8444 NSURL *url([NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"unknown" ofType:@"html"]]);
8445 url = [NSURL URLWithString:[[url absoluteString] stringByAppendingString:[NSString stringWithFormat:@"?%@", name]]];
8446 return [self _pageForURL:url withClass:[CYBrowserController class]];
8450 - (UCViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag {
8454 NSString *href([url absoluteString]);
8455 if ([href hasPrefix:@"apptapp://package/"])
8456 return [self pageForPackage:[href substringFromIndex:18]];
8458 NSString *scheme([[url scheme] lowercaseString]);
8459 if (![scheme isEqualToString:@"cydia"])
8461 NSString *path([url absoluteString]);
8462 if ([path length] < 8)
8464 path = [path substringFromIndex:8];
8465 if (![path hasPrefix:@"/"])
8466 path = [@"/" stringByAppendingString:path];
8468 if ([path isEqualToString:@"/add-source"])
8469 return [[[AddSourceController alloc] initWithDatabase:database_] autorelease];
8470 else if ([path isEqualToString:@"/storage"])
8471 return [self _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"storage" ofType:@"html"]] withClass:[CYBrowserController class]];
8472 else if ([path isEqualToString:@"/sources"])
8473 return [[[SourceTable alloc] initWithDatabase:database_] autorelease];
8474 else if ([path isEqualToString:@"/packages"])
8475 return [[[InstalledController alloc] initWithDatabase:database_] autorelease];
8476 else if ([path hasPrefix:@"/url/"])
8477 return [self _pageForURL:[NSURL URLWithString:[path substringFromIndex:5]] withClass:[CYBrowserController class]];
8478 else if ([path hasPrefix:@"/launch/"])
8479 [self launchApplicationWithIdentifier:[path substringFromIndex:8] suspended:NO];
8480 else if ([path hasPrefix:@"/package-settings/"])
8481 return [[[SettingsController alloc] initWithDatabase:database_ package:[path substringFromIndex:18]] autorelease];
8482 else if ([path hasPrefix:@"/package-signature/"])
8483 return [[[SignatureController alloc] initWithDatabase:database_ package:[path substringFromIndex:19]] autorelease];
8484 else if ([path hasPrefix:@"/package/"])
8485 return [self pageForPackage:[path substringFromIndex:9]];
8486 else if ([path hasPrefix:@"/files/"]) {
8487 NSString *name = [path substringFromIndex:7];
8489 if (Package *package = [database_ packageWithName:name]) {
8490 FileTable *files = [[[FileTable alloc] initWithDatabase:database_] autorelease];
8491 [files setPackage:package];
8499 - (void) applicationOpenURL:(NSURL *)url {
8500 [super applicationOpenURL:url];
8502 if (UCViewController *page = [self pageForURL:url hasTag:&tag]) {
8503 [self setPage:page];
8505 [tabbar_ setSelectedViewController:(tag_ == -1 ? nil : [[tabbar_ viewControllers] objectAtIndex:tag_])];
8509 - (void) applicationWillResignActive:(UIApplication *)application {
8510 // Stop refreshing if you get a phone call or lock the device.
8511 if ([container_ updating]) [container_ cancelUpdate];
8513 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
8514 [super applicationWillResignActive:application];
8517 - (void) applicationDidFinishLaunching:(id)unused {
8518 [CYBrowserController _initialize];
8520 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
8522 Font12_ = [[UIFont systemFontOfSize:12] retain];
8523 Font12Bold_ = [[UIFont boldSystemFontOfSize:12] retain];
8524 Font14_ = [[UIFont systemFontOfSize:14] retain];
8525 Font18Bold_ = [[UIFont boldSystemFontOfSize:18] retain];
8526 Font22Bold_ = [[UIFont boldSystemFontOfSize:22] retain];
8530 essential_ = [[NSMutableArray alloc] initWithCapacity:4];
8531 broken_ = [[NSMutableArray alloc] initWithCapacity:4];
8533 UIScreen *screen([UIScreen mainScreen]);
8535 window_ = [[UIWindow alloc] initWithFrame:[screen bounds]];
8536 [window_ orderFront:self];
8537 [window_ makeKey:self];
8538 [window_ setHidden:NO];
8540 database_ = [Database sharedInstance];
8543 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
8544 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
8545 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
8546 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
8547 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
8548 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
8549 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
8550 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
8551 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
8554 [self setIdleTimerDisabled:YES];
8556 hud_ = [self addProgressHUD];
8557 [hud_ setText:@"Reorganizing:\n\nWill Automatically\nClose When Done"];
8558 [self setStatusBarShowsProgress:YES];
8560 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
8562 [self setStatusBarShowsProgress:NO];
8563 [self removeProgressHUD:hud_];
8566 if (ExecFork() == 0) {
8567 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
8568 perror("launchctl stop");
8575 [self showSettings];
8579 NSMutableArray *controllers = [NSMutableArray array];
8580 [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8581 [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8582 [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8583 if (IsWildcat_) [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8584 [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8585 [controllers addObject:[[CYNavigationController alloc] initWithDatabase:database_]];
8587 NSMutableArray *items = [NSMutableArray arrayWithObjects:
8588 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:kCydiaTag] autorelease],
8589 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:kSectionsTag] autorelease],
8590 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:kChangesTag] autorelease],
8591 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:kSearchTag] autorelease],
8596 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:kSourcesTag] autorelease] atIndex:3];
8597 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:kInstalledTag] autorelease] atIndex:3];
8599 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:kManageTag] autorelease] atIndex:3];
8602 for (size_t i(0); i != [items count]; i++)
8603 [[controllers objectAtIndex:i] setTabBarItem:[items objectAtIndex:i]];
8605 tabbar_ = [[CYTabBarController alloc] initWithDatabase:database_];
8606 [tabbar_ setViewControllers:controllers];
8607 [tabbar_ setDelegate:self];
8608 [tabbar_ setSelectedIndex:0];
8610 container_ = [[CYContainer alloc] initWithDatabase:database_];
8611 [container_ setUpdateDelegate:self];
8612 [container_ setTabBarController:tabbar_];
8613 [window_ addSubview:[container_ view]];
8614 [[tabbar_ view] setFrame:CGRectMake(0, -20.0f, [window_ bounds].size.width, [window_ bounds].size.height)];
8616 [UIKeyboard initImplementationNow];
8620 #if RecyclePackageViews
8621 details_ = [[NSMutableArray alloc] initWithCapacity:4];
8622 [details_ addObject:[self _packageController]];
8623 [details_ addObject:[self _packageController]];
8631 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
8632 if (item != nil && IsWildcat_) {
8633 [sheet showFromBarButtonItem:item animated:YES];
8635 [sheet showInView:window_];
8642 id Alloc_(id self, SEL selector) {
8643 id object = alloc_(self, selector);
8644 lprintf("[%s]A-%p\n", self->isa->name, object);
8649 id Dealloc_(id self, SEL selector) {
8650 id object = dealloc_(self, selector);
8651 lprintf("[%s]D-%p\n", self->isa->name, object);
8655 Class $WebDefaultUIKitDelegate;
8657 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
8658 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
8659 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
8660 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
8663 static NSNumber *shouldPlayKeyboardSounds;
8667 MSHook(void, UIHardware$_playSystemSound$, Class self, SEL _cmd, int soundIndex) {
8668 switch (soundIndex) {
8669 case 1104: // Keyboard Button Clicked
8670 case 1105: // Keyboard Delete Repeated
8671 if (!shouldPlayKeyboardSounds) {
8672 NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.apple.preferences.sounds.plist"];
8673 shouldPlayKeyboardSounds = [[dict objectForKey:@"keyboard"] ?: (id)kCFBooleanTrue retain];
8676 if (![shouldPlayKeyboardSounds boolValue])
8679 _UIHardware$_playSystemSound$(self, _cmd, soundIndex);
8683 int main(int argc, char *argv[]) { _pooled
8686 if (Class $UIDevice = objc_getClass("UIDevice")) {
8687 UIDevice *device([$UIDevice currentDevice]);
8688 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
8692 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
8694 /* Library Hacks {{{ */
8695 class_addMethod(objc_getClass("WebScriptObject"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &WebScriptObject$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8696 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8698 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
8699 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
8700 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
8701 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
8702 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
8705 $UIHardware = objc_getClass("UIHardware");
8706 Method UIHardware$_playSystemSound$(class_getClassMethod($UIHardware, @selector(_playSystemSound:)));
8707 if (UIHardware$_playSystemSound$ != NULL) {
8708 _UIHardware$_playSystemSound$ = reinterpret_cast<void (*)(Class, SEL, int)>(method_getImplementation(UIHardware$_playSystemSound$));
8709 method_setImplementation(UIHardware$_playSystemSound$, reinterpret_cast<IMP>(&$UIHardware$_playSystemSound$));
8712 /* Set Locale {{{ */
8713 Locale_ = CFLocaleCopyCurrent();
8714 Languages_ = [NSLocale preferredLanguages];
8715 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
8716 //NSLog(@"%@", [Languages_ description]);
8719 if (Languages_ == nil || [Languages_ count] == 0)
8720 // XXX: consider just setting to C and then falling through?
8723 lang = [[Languages_ objectAtIndex:0] UTF8String];
8724 setenv("LANG", lang, true);
8727 //std::setlocale(LC_ALL, lang);
8728 NSLog(@"Setting Language: %s", lang);
8731 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
8733 /* Parse Arguments {{{ */
8734 bool substrate(false);
8740 for (int argi(1); argi != argc; ++argi)
8741 if (strcmp(argv[argi], "--") == 0) {
8743 argv[argi] = argv[0];
8749 for (int argi(1); argi != arge; ++argi)
8750 if (strcmp(args[argi], "--substrate") == 0)
8753 fprintf(stderr, "unknown argument: %s\n", args[argi]);
8757 App_ = [[NSBundle mainBundle] bundlePath];
8758 Home_ = NSHomeDirectory();
8764 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
8765 alloc_ = alloc->method_imp;
8766 alloc->method_imp = (IMP) &Alloc_;*/
8768 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
8769 dealloc_ = dealloc->method_imp;
8770 dealloc->method_imp = (IMP) &Dealloc_;*/
8772 /* System Information {{{ */
8776 size = sizeof(maxproc);
8777 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
8778 perror("sysctlbyname(\"kern.maxproc\", ?)");
8779 else if (maxproc < 64) {
8781 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
8782 perror("sysctlbyname(\"kern.maxproc\", #)");
8785 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
8786 char *osversion = new char[size];
8787 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
8788 perror("sysctlbyname(\"kern.osversion\", ?)");
8790 System_ = [NSString stringWithUTF8String:osversion];
8792 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
8793 char *machine = new char[size];
8794 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
8795 perror("sysctlbyname(\"hw.machine\", ?)");
8799 if (CFMutableDictionaryRef dict = IOServiceMatching("IOPlatformExpertDevice")) {
8800 if (io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault, dict)) {
8801 if (CFTypeRef serial = IORegistryEntryCreateCFProperty(service, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0)) {
8802 SerialNumber_ = [NSString stringWithString:(NSString *)serial];
8806 if (CFTypeRef ecid = IORegistryEntrySearchCFProperty(service, kIODeviceTreePlane, CFSTR("unique-chip-id"), kCFAllocatorDefault, kIORegistryIterateRecursively)) {
8807 NSData *data((NSData *) ecid);
8808 size_t length([data length]);
8809 uint8_t bytes[length];
8810 [data getBytes:bytes];
8811 char string[length * 2 + 1];
8812 for (size_t i(0); i != length; ++i)
8813 sprintf(string + i * 2, "%.2X", bytes[length - i - 1]);
8814 ChipID_ = [NSString stringWithUTF8String:string];
8818 IOObjectRelease(service);
8822 UniqueID_ = [[UIDevice currentDevice] uniqueIdentifier];
8824 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
8825 Build_ = [system objectForKey:@"ProductBuildVersion"];
8826 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
8827 Product_ = [info objectForKey:@"SafariProductVersion"];
8828 Safari_ = [info objectForKey:@"CFBundleVersion"];
8831 /* Load Database {{{ */
8833 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
8835 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
8838 if (Metadata_ == NULL)
8839 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
8841 Settings_ = [Metadata_ objectForKey:@"Settings"];
8843 Packages_ = [Metadata_ objectForKey:@"Packages"];
8844 Sections_ = [Metadata_ objectForKey:@"Sections"];
8845 Sources_ = [Metadata_ objectForKey:@"Sources"];
8847 Token_ = [Metadata_ objectForKey:@"Token"];
8850 if (Settings_ != nil)
8851 Role_ = [Settings_ objectForKey:@"Role"];
8853 if (Packages_ == nil) {
8854 Packages_ = [[[NSMutableDictionary alloc] initWithCapacity:128] autorelease];
8855 [Metadata_ setObject:Packages_ forKey:@"Packages"];
8858 if (Sections_ == nil) {
8859 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
8860 [Metadata_ setObject:Sections_ forKey:@"Sections"];
8863 if (Sources_ == nil) {
8864 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
8865 [Metadata_ setObject:Sources_ forKey:@"Sources"];
8870 Documents_ = [[[NSMutableArray alloc] initWithCapacity:4] autorelease];
8873 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
8875 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", F_OK) == 0)
8876 dlopen("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", RTLD_LAZY | RTLD_GLOBAL);
8877 if (substrate && access("/Applications/WinterBoard.app/WinterBoard.dylib", F_OK) == 0)
8878 dlopen("/Applications/WinterBoard.app/WinterBoard.dylib", RTLD_LAZY | RTLD_GLOBAL);
8879 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
8880 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
8882 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
8884 if (access("/tmp/.cydia.fw", F_OK) == 0) {
8885 unlink("/tmp/.cydia.fw");
8887 } else if (access("/User", F_OK) != 0 || version < 2) {
8890 system("/usr/libexec/cydia/firmware.sh");
8894 _assert([[NSFileManager defaultManager]
8895 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
8896 withIntermediateDirectories:YES
8901 if (access("/tmp/cydia.chk", F_OK) == 0) {
8902 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
8903 _assert(errno == ENOENT);
8904 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
8905 _assert(errno == ENOENT);
8908 /* APT Initialization {{{ */
8909 _assert(pkgInitConfig(*_config));
8910 _assert(pkgInitSystem(*_config, _system));
8913 _config->Set("APT::Acquire::Translation", lang);
8914 _config->Set("Acquire::http::Timeout", 15);
8915 _config->Set("Acquire::http::MaxParallel", 3);
8917 /* Color Choices {{{ */
8918 space_ = CGColorSpaceCreateDeviceRGB();
8920 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
8921 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
8922 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
8923 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
8924 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
8925 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
8926 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
8927 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
8928 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
8930 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
8931 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
8933 /* UIKit Configuration {{{ */
8934 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
8935 if ($GSFontSetUseLegacyFontMetrics != NULL)
8936 $GSFontSetUseLegacyFontMetrics(YES);
8938 // XXX: I have a feeling this was important
8939 //UIKeyboardDisableAutomaticAppearance();
8942 Colon_ = UCLocalize("COLON_DELIMITED");
8943 Error_ = UCLocalize("ERROR");
8944 Warning_ = UCLocalize("WARNING");
8947 int value = UIApplicationMain(argc, argv, @"Cydia", @"Cydia");
8949 CGColorSpaceRelease(space_);