1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2011 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 // XXX: wtf/FastMalloc.h... wtf?
41 #define USE_SYSTEM_MALLOC 1
43 /* #include Directives {{{ */
44 #include "UICaboodle/UCPlatform.h"
45 #include "UICaboodle/UCLocalize.h"
47 #include <objc/objc.h>
48 #include <objc/runtime.h>
50 #include <CoreGraphics/CoreGraphics.h>
51 #include <Foundation/Foundation.h>
54 #define DEPLOYMENT_TARGET_MACOSX 1
55 #define CF_BUILDING_CF 1
56 #include <CoreFoundation/CFInternal.h>
59 #include <CoreFoundation/CFPriv.h>
60 #include <CoreFoundation/CFUniChar.h>
62 #include <SystemConfiguration/SystemConfiguration.h>
64 #include <UIKit/UIKit.h>
65 #include "iPhonePrivate.h"
67 #include <IOKit/IOKitLib.h>
69 #include <WebCore/WebCoreThread.h>
76 #include <ext/stdio_filebuf.h>
80 #include <apt-pkg/acquire.h>
81 #include <apt-pkg/acquire-item.h>
82 #include <apt-pkg/algorithms.h>
83 #include <apt-pkg/cachefile.h>
84 #include <apt-pkg/clean.h>
85 #include <apt-pkg/configuration.h>
86 #include <apt-pkg/debindexfile.h>
87 #include <apt-pkg/debmetaindex.h>
88 #include <apt-pkg/error.h>
89 #include <apt-pkg/init.h>
90 #include <apt-pkg/mmap.h>
91 #include <apt-pkg/pkgrecords.h>
92 #include <apt-pkg/sha1.h>
93 #include <apt-pkg/sourcelist.h>
94 #include <apt-pkg/sptr.h>
95 #include <apt-pkg/strutl.h>
96 #include <apt-pkg/tagfile.h>
98 #include <apr-1/apr_pools.h>
100 #include <sys/types.h>
101 #include <sys/stat.h>
102 #include <sys/sysctl.h>
103 #include <sys/param.h>
104 #include <sys/mount.h>
105 #include <sys/reboot.h>
112 #include <mach-o/nlist.h>
121 #include <Cytore.hpp>
123 #include "UICaboodle/BrowserView.h"
124 #include "UICaboodle/NSString-UICaboodle.h"
125 #include "UICaboodle/PerlCompatibleRegEx.hpp"
127 #include "SDURLCache/SDURLCache.h"
129 #include "substrate.h"
136 #define _timestamp ({ \
138 gettimeofday(&tv, NULL); \
139 tv.tv_sec * 1000000 + tv.tv_usec; \
142 typedef std::vector<class ProfileTime *> TimeList;
152 ProfileTime(const char *name) :
156 times_.push_back(this);
159 void AddTime(uint64_t time) {
166 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
178 ProfileTimer(ProfileTime &time) :
185 time_.AddTime(_timestamp - start_);
190 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
192 std::cerr << "========" << std::endl;
195 #define _profile(name) { \
196 static ProfileTime name(#name); \
197 ProfileTimer _ ## name(name);
202 #define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
204 #define CYPoolStart() \
205 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
207 #define CYPoolEnd() \
211 #define Cydia_ CYDIA_VERSION
213 #define lprintf(args...) fprintf(stderr, args)
216 #define TraceLogging (1 && !ForRelease)
217 #define HistogramInsertionSort (!ForRelease ? 0 : 0)
218 #define ProfileTimes (0 && !ForRelease)
219 #define ForSaurik (0 && !ForRelease)
220 #define LogBrowser (0 && !ForRelease)
221 #define TrackResize (0 && !ForRelease)
222 #define ManualRefresh (1 && !ForRelease)
223 #define ShowInternals (0 && !ForRelease)
224 #define AlwaysReload (0 && !ForRelease)
225 #define TryIndexedCollation (0 && !ForRelease)
229 #define _trace(args...)
234 #define _profile(name) {
237 #define PrintTimes() do {} while (false)
240 // Hash Functions/Structures {{{
241 extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0);
249 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
251 static _finline NSString *CydiaURL(NSString *path) {
253 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's';
254 page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y';
255 page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's';
256 page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k';
257 page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/';
259 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
262 static _finline void UpdateExternalStatus(uint64_t newStatus) {
264 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
265 notify_set_state(notify_token, newStatus);
266 notify_cancel(notify_token);
268 notify_post("com.saurik.Cydia.status");
271 /* [NSObject yieldToSelector:(withObject:)] {{{*/
272 @interface NSObject (Cydia)
273 - (id) yieldToSelector:(SEL)selector withObject:(id)object;
274 - (id) yieldToSelector:(SEL)selector;
277 @implementation NSObject (Cydia)
282 - (void) _yieldToContext:(NSMutableArray *)context { _pooled
283 SEL selector(reinterpret_cast<SEL>([[context objectAtIndex:0] pointerValue]));
284 id object([[context objectAtIndex:1] nonretainedObjectValue]);
285 volatile bool &stopped(*reinterpret_cast<bool *>([[context objectAtIndex:2] pointerValue]));
287 /* XXX: deal with exceptions */
288 id value([self performSelector:selector withObject:object]);
290 NSMethodSignature *signature([self methodSignatureForSelector:selector]);
291 [context removeAllObjects];
292 if ([signature methodReturnLength] != 0 && value != nil)
293 [context addObject:value];
298 performSelectorOnMainThread:@selector(doNothing)
304 - (id) yieldToSelector:(SEL)selector withObject:(id)object {
305 volatile bool stopped(false);
307 NSMutableArray *context([NSMutableArray arrayWithObjects:
308 [NSValue valueWithPointer:selector],
309 [NSValue valueWithNonretainedObject:object],
310 [NSValue valueWithPointer:const_cast<bool *>(&stopped)],
313 NSThread *thread([[[NSThread alloc]
315 selector:@selector(_yieldToContext:)
321 NSRunLoop *loop([NSRunLoop currentRunLoop]);
322 NSDate *future([NSDate distantFuture]);
323 NSString *mode([loop currentMode] ?: NSDefaultRunLoopMode);
326 while (!stopped && [loop runMode:mode beforeDate:future]);
329 return [context count] == 0 ? nil : [context objectAtIndex:0];
332 - (id) yieldToSelector:(SEL)selector {
333 return [self yieldToSelector:selector withObject:nil];
339 /* Cydia Alert View {{{ */
340 @interface CYAlertView : UIAlertView {
344 - (int) yieldToPopupAlertAnimated:(BOOL)animated;
348 @implementation CYAlertView
350 - (id) initWithTitle:(NSString *)title buttons:(NSArray *)buttons defaultButtonIndex:(int)index {
351 if ((self = [super init]) != nil) {
352 [self setTitle:title];
353 [self setDelegate:self];
354 for (NSString *button in buttons) [self addButtonWithTitle:button];
355 [self setCancelButtonIndex:index];
359 - (void) _updateFrameForDisplay {
360 [super _updateFrameForDisplay];
361 if ([self cancelButtonIndex] == -1) {
362 NSArray *buttons = [self buttons];
363 if ([buttons count]) {
364 UIImage *background = [[buttons objectAtIndex:0] backgroundForState:0];
365 for (UIThreePartButton *button in buttons)
366 [button setBackground:background forState:0];
371 - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
372 button_ = buttonIndex + 1;
376 [self dismissWithClickedButtonIndex:-1 animated:YES];
379 - (int) yieldToPopupAlertAnimated:(BOOL)animated {
380 [self setRunsModal:YES];
389 /* NSForcedOrderingSearch doesn't work on the iPhone */
390 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
391 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
392 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
395 typedef uint32_t (*SKRadixFunction)(id, void *);
397 @interface NSMutableArray (Radix)
398 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument;
406 @implementation NSMutableArray (Radix)
408 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument {
409 size_t count([self count]);
410 struct RadixItem_ *swap(new RadixItem_[count * 2]);
412 for (size_t i(0); i != count; ++i) {
413 RadixItem_ &item(swap[i]);
416 id object([self objectAtIndex:i]);
417 item.key = function(object, argument);
420 struct RadixItem_ *lhs(swap), *rhs(swap + count);
422 static const size_t width = 32;
423 static const size_t bits = 11;
424 static const size_t slots = 1 << bits;
425 static const size_t passes = (width + (bits - 1)) / bits;
427 size_t *hist(new size_t[slots]);
429 for (size_t pass(0); pass != passes; ++pass) {
430 memset(hist, 0, sizeof(size_t) * slots);
432 for (size_t i(0); i != count; ++i) {
433 uint32_t key(lhs[i].key);
435 key &= _not(uint32_t) >> width - bits;
440 for (size_t i(0); i != slots; ++i) {
441 size_t local(offset);
446 for (size_t i(0); i != count; ++i) {
447 uint32_t key(lhs[i].key);
449 key &= _not(uint32_t) >> width - bits;
450 rhs[hist[key]++] = lhs[i];
453 RadixItem_ *tmp(lhs);
460 const void **values(new const void *[count]);
461 for (size_t i(0); i != count; ++i)
462 values[i] = [self objectAtIndex:lhs[i].index];
463 CFArrayReplaceValues((CFMutableArrayRef) self, CFRangeMake(0, count), values, count);
471 /* Insertion Sort {{{ */
473 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
474 const char *ptr = (const char *)list;
476 CFIndex half = count / 2;
477 const char *probe = ptr + elementSize * half;
478 CFComparisonResult cr = comparator(element, probe, context);
479 if (0 == cr) return (probe - (const char *)list) / elementSize;
480 ptr = (cr < 0) ? ptr : probe + elementSize;
481 count = (cr < 0) ? half : (half + (count & 1) - 1);
483 return (ptr - (const char *)list) / elementSize;
486 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
487 const char *ptr = (const char *)list;
489 CFIndex half = count / 2;
490 const char *probe = ptr + elementSize * half;
491 CFComparisonResult cr = comparator(element, probe, context);
492 if (0 == cr) return (probe - (const char *)list) / elementSize;
493 ptr = (cr < 0) ? ptr : probe + elementSize;
494 count = (cr < 0) ? half : (half + (count & 1) - 1);
496 return (ptr - (const char *)list) / elementSize;
499 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
500 if (range.length == 0)
502 const void **values(new const void *[range.length]);
503 CFArrayGetValues(array, range, values);
505 #if HistogramInsertionSort > 0
506 uint32_t total(0), *offsets(new uint32_t[range.length]);
509 for (CFIndex index(1); index != range.length; ++index) {
510 const void *value(values[index]);
511 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
512 CFIndex correct(index);
513 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
514 #if HistogramInsertionSort > 1
515 NSLog(@"%@ < %@", value, values[correct - 1]);
520 if (correct != index) {
521 size_t offset(index - correct);
522 #if HistogramInsertionSort
526 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
528 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
529 values[correct] = value;
533 CFArrayReplaceValues(array, range, values, range.length);
536 #if HistogramInsertionSort > 0
537 for (CFIndex index(0); index != range.length; ++index)
538 if (offsets[index] != 0)
539 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
540 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
547 /* Apple Bug Fixes {{{ */
548 @implementation UIWebDocumentView (Cydia)
550 - (void) _setScrollerOffset:(CGPoint)offset {
551 UIScroller *scroller([self _scroller]);
553 CGSize size([scroller contentSize]);
554 CGSize bounds([scroller bounds].size);
557 max.x = size.width - bounds.width;
558 max.y = size.height - bounds.height;
566 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
567 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
569 [scroller setOffset:offset];
575 @interface NSInvocation (Cydia)
576 + (NSInvocation *) invocationWithSelector:(SEL)selector forTarget:(id)target;
579 @implementation NSInvocation (Cydia)
581 + (NSInvocation *) invocationWithSelector:(SEL)selector forTarget:(id)target {
582 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[target methodSignatureForSelector:selector]]);
583 [invocation setTarget:target];
584 [invocation setSelector:selector];
590 @implementation WebScriptObject (NSFastEnumeration)
592 - (NSUInteger) countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)objects count:(NSUInteger)count {
593 size_t length([self count] - state->state);
596 else if (length > count)
598 for (size_t i(0); i != length; ++i)
599 objects[i] = [self objectAtIndex:state->state++];
600 state->itemsPtr = objects;
601 state->mutationsPtr = (unsigned long *) self;
607 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
608 size_t length([self length] - state->state);
611 else if (length > count)
613 for (size_t i(0); i != length; ++i)
614 objects[i] = [self item:state->state++];
615 state->itemsPtr = objects;
616 state->mutationsPtr = (unsigned long *) self;
620 /* Cydia NSString Additions {{{ */
621 @interface NSString (Cydia)
622 - (NSComparisonResult) compareByPath:(NSString *)other;
623 - (NSString *) stringByCachingURLWithCurrentCDN;
624 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
627 @implementation NSString (UICaboodle)
629 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length {
630 return [[[NSString alloc] initWithBytesNoCopy:const_cast<char *>(bytes) length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
633 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length {
634 return [[[NSString alloc] initWithBytes:bytes length:length encoding:NSUTF8StringEncoding] autorelease];
639 @implementation NSString (Cydia)
641 - (NSComparisonResult) compareByPath:(NSString *)other {
642 NSString *prefix = [self commonPrefixWithString:other options:0];
643 size_t length = [prefix length];
645 NSRange lrange = NSMakeRange(length, [self length] - length);
646 NSRange rrange = NSMakeRange(length, [other length] - length);
648 lrange = [self rangeOfString:@"/" options:0 range:lrange];
649 rrange = [other rangeOfString:@"/" options:0 range:rrange];
651 NSComparisonResult value;
653 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
654 value = NSOrderedSame;
655 else if (lrange.location == NSNotFound)
656 value = NSOrderedAscending;
657 else if (rrange.location == NSNotFound)
658 value = NSOrderedDescending;
660 value = NSOrderedSame;
662 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
663 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
664 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
665 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
667 NSComparisonResult result = [lpath compare:rpath];
668 return result == NSOrderedSame ? value : result;
671 - (NSString *) stringByCachingURLWithCurrentCDN {
673 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
674 withString:@"://cache.cydia.saurik.com/"
678 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
679 return [(id)CFURLCreateStringByAddingPercentEscapes(
684 kCFStringEncodingUTF8
691 /* C++ NSString Wrapper Cache {{{ */
692 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
693 return size == 0 ? NULL :
694 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
695 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
698 static _finline CFStringRef CYStringCreate(const char *data) {
699 return CYStringCreate(data, strlen(data));
708 _finline void clear_() {
709 if (cache_ != NULL) {
716 _finline bool empty() const {
720 _finline size_t size() const {
724 _finline char *data() const {
728 _finline void clear() {
733 _finline CYString() :
740 _finline ~CYString() {
744 void operator =(const CYString &rhs) {
748 if (rhs.cache_ == nil)
751 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
754 void copy(apr_pool_t *pool) {
755 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size_ + 1)));
756 memcpy(temp, data_, size_);
761 void set(apr_pool_t *pool, const char *data, size_t size) {
767 data_ = const_cast<char *>(data);
775 _finline void set(apr_pool_t *pool, const char *data) {
776 set(pool, data, data == NULL ? 0 : strlen(data));
779 _finline void set(apr_pool_t *pool, const std::string &rhs) {
780 set(pool, rhs.data(), rhs.size());
783 bool operator ==(const CYString &rhs) const {
784 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
787 _finline operator CFStringRef() {
789 cache_ = CYStringCreate(data_, size_);
793 _finline operator id() {
794 return (NSString *) static_cast<CFStringRef>(*this);
797 _finline operator const char *() {
798 return reinterpret_cast<const char *>(data_);
802 /* C++ NSString Algorithm Adapters {{{ */
804 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
807 struct NSStringMapHash :
808 std::unary_function<NSString *, size_t>
810 _finline size_t operator ()(NSString *value) const {
811 return CFStringHashNSString((CFStringRef) value);
815 struct NSStringMapLess :
816 std::binary_function<NSString *, NSString *, bool>
818 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
819 return [lhs compare:rhs] == NSOrderedAscending;
823 struct NSStringMapEqual :
824 std::binary_function<NSString *, NSString *, bool>
826 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
827 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
828 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
829 //[lhs isEqualToString:rhs];
834 /* Mime Addresses {{{ */
835 @interface Address : NSObject {
841 - (NSString *) address;
843 - (void) setAddress:(NSString *)address;
845 + (Address *) addressWithString:(NSString *)string;
846 - (Address *) initWithString:(NSString *)string;
850 @implementation Address
859 - (NSString *) name {
863 - (NSString *) address {
867 - (void) setAddress:(NSString *)address {
869 [address_ autorelease];
873 address_ = [address retain];
876 + (Address *) addressWithString:(NSString *)string {
877 return [[[Address alloc] initWithString:string] autorelease];
880 + (NSArray *) _attributeKeys {
881 return [NSArray arrayWithObjects:
887 - (NSArray *) attributeKeys {
888 return [[self class] _attributeKeys];
891 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
892 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
895 - (Address *) initWithString:(NSString *)string {
896 if ((self = [super init]) != nil) {
897 const char *data = [string UTF8String];
898 size_t size = [string length];
900 static Pcre address_r("^\"?(.*)\"? <([^>]*)>$");
902 if (address_r(data, size)) {
903 name_ = [address_r[1] retain];
904 address_ = [address_r[2] retain];
906 name_ = [string retain];
914 /* CoreGraphics Primitives {{{ */
919 static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
920 CGFloat color[] = {red, green, blue, alpha};
921 return CGColorCreate(space, color);
930 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
931 color_(Create_(space, red, green, blue, alpha))
933 Set(space, red, green, blue, alpha);
938 CGColorRelease(color_);
945 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
947 color_ = Create_(space, red, green, blue, alpha);
950 operator CGColorRef() {
956 /* Random Global Variables {{{ */
957 static const int PulseInterval_ = 50000;
959 static const NSString *UI_;
962 static bool RestartSubstrate_;
963 static NSArray *Finishes_;
965 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
966 #define NotifyConfig_ "/etc/notify.conf"
968 static bool Queuing_;
970 static CYColor Blue_;
971 static CYColor Blueish_;
972 static CYColor Black_;
974 static CYColor White_;
975 static CYColor Gray_;
976 static CYColor Green_;
977 static CYColor Purple_;
978 static CYColor Purplish_;
980 static UIColor *InstallingColor_;
981 static UIColor *RemovingColor_;
983 static NSString *App_;
985 static BOOL Advanced_;
986 static BOOL Ignored_;
988 static UIFont *Font12_;
989 static UIFont *Font12Bold_;
990 static UIFont *Font14_;
991 static UIFont *Font18Bold_;
992 static UIFont *Font22Bold_;
994 static const char *Machine_ = NULL;
995 static NSString *System_ = nil;
996 static NSString *SerialNumber_ = nil;
997 static NSString *ChipID_ = nil;
998 static _H<NSString> Token_;
999 static NSString *UniqueID_ = nil;
1000 static NSString *PLMN_ = nil;
1001 static NSString *Build_ = nil;
1002 static NSString *Product_ = nil;
1003 static NSString *Safari_ = nil;
1005 static CFLocaleRef Locale_;
1006 static NSArray *Languages_;
1007 static CGColorSpaceRef space_;
1009 static NSDictionary *SectionMap_;
1010 static NSMutableDictionary *Metadata_;
1011 static _transient NSMutableDictionary *Settings_;
1012 static _transient NSString *Role_;
1013 static _transient NSMutableDictionary *Packages_;
1014 static _transient NSMutableDictionary *Sections_;
1015 static _transient NSMutableDictionary *Sources_;
1016 static bool Changed_;
1020 static CGFloat ScreenScale_;
1021 static NSString *Idiom_;
1023 static NSMutableDictionary *SessionData_;
1024 static NSObject *HostConfig_;
1025 static NSMutableSet *BridgedHosts_;
1026 static NSMutableSet *PipelinedHosts_;
1028 static NSString *kCydiaProgressEventTypeError = @"Error";
1029 static NSString *kCydiaProgressEventTypeInformation = @"Information";
1030 static NSString *kCydiaProgressEventTypeStatus = @"Status";
1031 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
1034 /* Display Helpers {{{ */
1035 inline float Interpolate(float begin, float end, float fraction) {
1036 return (end - begin) * fraction + begin;
1039 static _finline const char *StripVersion_(const char *version) {
1040 const char *colon(strchr(version, ':'));
1041 return colon == NULL ? version : colon + 1;
1044 NSString *LocalizeSection(NSString *section) {
1045 static Pcre title_r("^(.*?) \\((.*)\\)$");
1046 if (title_r(section)) {
1047 NSString *parent(title_r[1]);
1048 NSString *child(title_r[2]);
1050 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
1051 LocalizeSection(parent),
1052 LocalizeSection(child)
1056 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
1059 NSString *Simplify(NSString *title) {
1060 const char *data = [title UTF8String];
1061 size_t size = [title length];
1063 static Pcre square_r("^\\[(.*)\\]$");
1064 if (square_r(data, size))
1065 return Simplify(square_r[1]);
1067 static Pcre paren_r("^\\((.*)\\)$");
1068 if (paren_r(data, size))
1069 return Simplify(paren_r[1]);
1071 static Pcre title_r("^(.*?) \\((.*)\\)$");
1072 if (title_r(data, size))
1073 return Simplify(title_r[1]);
1079 NSString *GetLastUpdate() {
1080 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
1083 return UCLocalize("NEVER_OR_UNKNOWN");
1085 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
1086 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
1088 CFRelease(formatter);
1090 return [(NSString *) formatted autorelease];
1093 bool isSectionVisible(NSString *section) {
1094 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
1095 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
1096 return hidden == nil || ![hidden boolValue];
1101 /* Delegate Prototypes {{{ */
1104 @class CydiaProgressEvent;
1106 @protocol DatabaseDelegate
1107 - (void) repairWithSelector:(SEL)selector;
1108 - (void) setConfigurationData:(NSString *)data;
1109 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
1112 @class CYPackageController;
1114 @protocol CydiaDelegate
1115 - (void) retainNetworkActivityIndicator;
1116 - (void) releaseNetworkActivityIndicator;
1117 - (void) clearPackage:(Package *)package;
1118 - (void) installPackage:(Package *)package;
1119 - (void) installPackages:(NSArray *)packages;
1120 - (void) removePackage:(Package *)package;
1121 - (void) beginUpdate;
1123 - (void) distUpgrade;
1125 - (void) updateData;
1127 - (void) addTrivialSource:(NSString *)href;
1128 - (void) showSettings;
1129 - (UIProgressHUD *) addProgressHUD;
1130 - (void) removeProgressHUD:(UIProgressHUD *)hud;
1131 - (CYViewController *) pageForPackage:(NSString *)name;
1132 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
1133 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1137 /* ProgressEvent Interface/Delegate {{{ */
1138 @interface CydiaProgressEvent : NSObject {
1139 _H<NSString> message_;
1143 _H<NSString> package_;
1145 _H<NSString> version_;
1148 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type;
1149 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package;
1150 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item;
1152 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type;
1154 - (NSString *) message;
1155 - (NSString *) type;
1158 - (NSString *) package;
1160 - (NSString *) version;
1162 - (void) setItem:(NSArray *)item;
1163 - (void) setPackage:(NSString *)package;
1164 - (void) setURL:(NSString *)url;
1165 - (void) setVersion:(NSString *)version;
1167 - (NSString *) compound:(NSString *)value;
1168 - (NSString *) compoundMessage;
1169 - (NSString *) compoundTitle;
1173 @protocol ProgressDelegate
1174 - (void) addProgressEvent:(CydiaProgressEvent *)event;
1175 - (void) setProgressPercent:(NSNumber *)percent;
1176 - (void) setProgressStatus:(NSDictionary *)status;
1177 - (void) setProgressCancellable:(NSNumber *)cancellable;
1178 - (bool) isProgressCancelled;
1179 - (void) setTitle:(NSString *)title;
1182 /* Status Delegation {{{ */
1184 public pkgAcquireStatus
1187 _transient NSObject<ProgressDelegate> *delegate_;
1197 void setDelegate(NSObject<ProgressDelegate> *delegate) {
1198 delegate_ = delegate;
1201 NSObject<ProgressDelegate> *getDelegate() const {
1205 virtual bool MediaChange(std::string media, std::string drive) {
1209 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
1212 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1213 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1214 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
1215 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1218 virtual void Done(pkgAcquire::ItemDesc &item) {
1221 virtual void Fail(pkgAcquire::ItemDesc &item) {
1223 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1224 item.Owner->Status == pkgAcquire::Item::StatDone
1228 std::string &error(item.Owner->ErrorText);
1232 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItem:item]);
1233 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1236 virtual bool Pulse(pkgAcquire *Owner) {
1237 bool value = pkgAcquireStatus::Pulse(Owner);
1240 double(CurrentBytes + CurrentItems) /
1241 double(TotalBytes + TotalItems)
1244 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
1245 [NSNumber numberWithDouble:percent], @"Percent",
1247 [NSNumber numberWithDouble:CurrentBytes], @"Current",
1248 [NSNumber numberWithDouble:TotalBytes], @"Total",
1249 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
1250 nil] waitUntilDone:YES];
1252 if (value && ![delegate_ isProgressCancelled])
1260 _finline bool WasCancelled() const {
1264 virtual void Start() {
1265 pkgAcquireStatus::Start();
1266 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
1269 virtual void Stop() {
1270 pkgAcquireStatus::Stop();
1271 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
1272 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
1276 /* Database Interface {{{ */
1277 typedef std::map< unsigned long, _H<Source> > SourceMap;
1279 @interface Database : NSObject {
1285 pkgCacheFile cache_;
1286 pkgDepCache::Policy *policy_;
1287 pkgRecords *records_;
1288 pkgProblemResolver *resolver_;
1289 pkgAcquire *fetcher_;
1291 SPtr<pkgPackageManager> manager_;
1292 pkgSourceList *list_;
1294 SourceMap sourceMap_;
1295 NSMutableArray *sourceList_;
1297 CFMutableArrayRef packages_;
1299 _transient NSObject<DatabaseDelegate> *delegate_;
1300 _transient NSObject<ProgressDelegate> *progress_;
1308 std::map<const char *, _H<NSString> > sections_;
1311 + (Database *) sharedInstance;
1314 - (void) _readCydia:(NSNumber *)fd;
1315 - (void) _readStatus:(NSNumber *)fd;
1316 - (void) _readOutput:(NSNumber *)fd;
1320 - (Package *) packageWithName:(NSString *)name;
1322 - (pkgCacheFile &) cache;
1323 - (pkgDepCache::Policy *) policy;
1324 - (pkgRecords *) records;
1325 - (pkgProblemResolver *) resolver;
1326 - (pkgAcquire &) fetcher;
1327 - (pkgSourceList &) list;
1328 - (NSArray *) packages;
1329 - (NSArray *) sources;
1330 - (Source *) sourceWithKey:(NSString *)key;
1331 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1339 - (void) updateWithStatus:(Status &)status;
1341 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1343 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1344 - (NSObject<ProgressDelegate> *) progressDelegate;
1346 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1348 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1352 /* ProgressEvent Implementation {{{ */
1353 @implementation CydiaProgressEvent
1355 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1356 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1359 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1360 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1361 [event setPackage:package];
1365 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item {
1366 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1368 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1369 NSArray *fields([description componentsSeparatedByString:@" "]);
1370 [event setItem:fields];
1372 if ([fields count] > 3) {
1373 [event setPackage:[fields objectAtIndex:2]];
1374 [event setVersion:[fields objectAtIndex:3]];
1377 [event setURL:[NSString stringWithUTF8String:item.URI.c_str()]];
1382 + (NSArray *) _attributeKeys {
1383 return [NSArray arrayWithObjects:
1393 - (NSArray *) attributeKeys {
1394 return [[self class] _attributeKeys];
1397 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1398 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1401 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1402 if ((self = [super init]) != nil) {
1408 - (NSString *) message {
1412 - (NSString *) type {
1416 - (NSArray *) item {
1417 return (id) item_ ?: [NSNull null];
1420 - (void) setItem:(NSArray *)item {
1424 - (NSString *) package {
1425 return (id) package_ ?: [NSNull null];
1428 - (void) setPackage:(NSString *)package {
1432 - (NSString *) url {
1433 return (id) url_ ?: [NSNull null];
1436 - (void) setURL:(NSString *)url {
1440 - (void) setVersion:(NSString *)version {
1444 - (NSString *) version {
1445 return (id) version_ ?: [NSNull null];
1448 - (NSString *) compound:(NSString *)value {
1450 NSString *mode(nil); {
1451 NSString *type([self type]);
1452 if ([type isEqualToString:kCydiaProgressEventTypeError])
1453 mode = UCLocalize("ERROR");
1454 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1455 mode = UCLocalize("WARNING");
1459 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1465 - (NSString *) compoundMessage {
1466 return [self compound:[self message]];
1469 - (NSString *) compoundTitle {
1472 if (package_ == nil)
1474 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1475 title = [package name];
1479 return [self compound:title];
1485 // Cytore Definitions {{{
1486 struct PackageValue :
1489 Cytore::Offset<PackageValue> next_;
1491 uint32_t index_ : 23;
1492 uint32_t subscribed_ : 1;
1509 Cytore::Offset<PackageValue> packages_[1 << 16];
1512 static Cytore::File<MetaValue> MetaFile_;
1514 // Cytore Helper Functions {{{
1515 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1516 SplitHash nhash = { hashlittle(name, length) };
1518 PackageValue *metadata;
1520 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1521 offset: if (offset->IsNull()) {
1522 *offset = MetaFile_.New<PackageValue>(length + 1);
1523 metadata = &MetaFile_.Get(*offset);
1525 if (metadata == NULL) {
1529 metadata = new PackageValue();
1530 memset(metadata, 0, sizeof(*metadata));
1533 memcpy(metadata->name_, name, length + 1);
1534 metadata->nhash_ = nhash.u16[1];
1536 metadata = &MetaFile_.Get(*offset);
1538 if (metadata->nhash_ != nhash.u16[1] || strncmp(metadata->name_, name, length + 1) != 0) {
1539 offset = &metadata->next_;
1547 static void PackageImport(const void *key, const void *value, void *context) {
1548 bool &fail(*reinterpret_cast<bool *>(context));
1551 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1552 NSLog(@"failed to import package %@", key);
1556 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1557 NSDictionary *package((NSDictionary *) value);
1559 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1560 if ([subscribed boolValue] && !metadata->subscribed_)
1561 metadata->subscribed_ = true;
1563 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1564 time_t time([date timeIntervalSince1970]);
1565 if (metadata->first_ > time || metadata->first_ == 0)
1566 metadata->first_ = time;
1569 NSDate *date([package objectForKey:@"LastSeen"]);
1570 NSString *version([package objectForKey:@"LastVersion"]);
1572 if (date != nil && version != nil) {
1573 time_t time([date timeIntervalSince1970]);
1574 if (metadata->last_ < time || metadata->last_ == 0)
1575 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1576 size_t length(strlen(buffer));
1577 uint16_t vhash(hashlittle(buffer, length));
1579 size_t capped(std::min<size_t>(8, length));
1580 char *latest(buffer + length - capped);
1582 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1583 metadata->vhash_ = vhash;
1585 metadata->last_ = time;
1591 /* Source Class {{{ */
1592 @interface Source : NSObject {
1593 CYString depiction_;
1594 CYString description_;
1600 CYString distribution_;
1605 _H<NSString> authority_;
1607 CYString defaultIcon_;
1609 _H<NSDictionary> record_;
1613 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool;
1615 - (NSComparisonResult) compareByNameAndType:(Source *)source;
1617 - (NSString *) depictionForPackage:(NSString *)package;
1618 - (NSString *) supportForPackage:(NSString *)package;
1620 - (NSDictionary *) record;
1624 - (NSString *) distribution;
1625 - (NSString *) type;
1627 - (NSString *) host;
1629 - (NSString *) name;
1630 - (NSString *) shortDescription;
1631 - (NSString *) label;
1632 - (NSString *) origin;
1633 - (NSString *) version;
1635 - (NSString *) defaultIcon;
1639 @implementation Source
1643 distribution_.clear();
1646 description_.clear();
1652 defaultIcon_.clear();
1660 // XXX: this is a very inefficient way to call these deconstructors
1665 + (NSArray *) _attributeKeys {
1666 return [NSArray arrayWithObjects:
1673 @"shortDescription",
1681 - (NSArray *) attributeKeys {
1682 return [[self class] _attributeKeys];
1685 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1686 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1689 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1692 trusted_ = index->IsTrusted();
1694 uri_.set(pool, index->GetURI());
1695 distribution_.set(pool, index->GetDist());
1696 type_.set(pool, index->GetType());
1698 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1699 if (dindex != NULL) {
1701 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1704 pkgTagFile tags(&fd);
1706 pkgTagSection section;
1713 {"default-icon", &defaultIcon_},
1714 {"depiction", &depiction_},
1715 {"description", &description_},
1717 {"origin", &origin_},
1718 {"support", &support_},
1719 {"version", &version_},
1722 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1723 const char *start, *end;
1725 if (section.Find(names[i].name_, start, end)) {
1726 CYString &value(*names[i].value_);
1727 value.set(pool, start, end - start);
1733 record_ = [Sources_ objectForKey:[self key]];
1735 NSURL *url([NSURL URLWithString:uri_]);
1739 host_ = [host_ lowercaseString];
1742 // XXX: this is due to a bug in _H<>
1743 authority_ = (id) host_;
1745 authority_ = [url path];
1748 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1749 if ((self = [super init]) != nil) {
1750 [self setMetaIndex:index inPool:pool];
1754 - (NSComparisonResult) compareByNameAndType:(Source *)source {
1755 NSDictionary *lhr = [self record];
1756 NSDictionary *rhr = [source record];
1759 return lhr == nil ? NSOrderedDescending : NSOrderedAscending;
1761 NSString *lhs = [self name];
1762 NSString *rhs = [source name];
1764 if ([lhs length] != 0 && [rhs length] != 0) {
1765 unichar lhc = [lhs characterAtIndex:0];
1766 unichar rhc = [rhs characterAtIndex:0];
1768 if (isalpha(lhc) && !isalpha(rhc))
1769 return NSOrderedAscending;
1770 else if (!isalpha(lhc) && isalpha(rhc))
1771 return NSOrderedDescending;
1774 return [lhs compare:rhs options:LaxCompareOptions_];
1777 - (NSString *) depictionForPackage:(NSString *)package {
1778 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1781 - (NSString *) supportForPackage:(NSString *)package {
1782 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1785 - (NSDictionary *) record {
1793 - (NSString *) uri {
1797 - (NSString *) distribution {
1798 return distribution_;
1801 - (NSString *) type {
1805 - (NSString *) key {
1806 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1809 - (NSString *) host {
1813 - (NSString *) name {
1814 return origin_.empty() ? (id) authority_ : origin_;
1817 - (NSString *) shortDescription {
1818 return description_;
1821 - (NSString *) label {
1822 return label_.empty() ? (id) authority_ : label_;
1825 - (NSString *) origin {
1829 - (NSString *) version {
1833 - (NSString *) defaultIcon {
1834 return defaultIcon_;
1839 /* CydiaOperation Class {{{ */
1840 @interface CydiaOperation : NSObject {
1841 NSString *operator_;
1845 - (NSString *) operator;
1846 - (NSString *) value;
1850 @implementation CydiaOperation
1853 [operator_ release];
1858 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1859 if ((self = [super init]) != nil) {
1860 operator_ = [[NSString alloc] initWithUTF8String:_operator];
1861 value_ = [[NSString alloc] initWithUTF8String:value];
1865 + (NSArray *) _attributeKeys {
1866 return [NSArray arrayWithObjects:
1872 - (NSArray *) attributeKeys {
1873 return [[self class] _attributeKeys];
1876 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1877 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1880 - (NSString *) operator {
1884 - (NSString *) value {
1890 /* CydiaClause Class {{{ */
1891 @interface CydiaClause : NSObject {
1893 CydiaOperation *version_;
1896 - (NSString *) package;
1897 - (CydiaOperation *) version;
1901 @implementation CydiaClause
1909 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1910 if ((self = [super init]) != nil) {
1911 package_ = [[NSString alloc] initWithUTF8String:dep.TargetPkg().Name()];
1913 if (const char *version = dep.TargetVer())
1914 version_ = [[CydiaOperation alloc] initWithOperator:dep.CompType() value:version];
1916 version_ = [[NSNull null] retain];
1920 + (NSArray *) _attributeKeys {
1921 return [NSArray arrayWithObjects:
1927 - (NSArray *) attributeKeys {
1928 return [[self class] _attributeKeys];
1931 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1932 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1935 - (NSString *) package {
1939 - (CydiaOperation *) version {
1945 /* CydiaRelation Class {{{ */
1946 @interface CydiaRelation : NSObject {
1947 NSString *relationship_;
1948 NSMutableArray *clauses_;
1951 - (NSString *) relationship;
1952 - (NSArray *) clauses;
1956 @implementation CydiaRelation
1959 [relationship_ release];
1964 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1965 if ((self = [super init]) != nil) {
1966 relationship_ = [[NSString alloc] initWithUTF8String:dep.DepType()];
1967 clauses_ = [[NSMutableArray alloc] initWithCapacity:8];
1969 pkgCache::DepIterator start;
1970 pkgCache::DepIterator end;
1971 dep.GlobOr(start, end); // ++dep
1974 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
1976 // yes, seriously. (wtf?)
1984 + (NSArray *) _attributeKeys {
1985 return [NSArray arrayWithObjects:
1991 - (NSArray *) attributeKeys {
1992 return [[self class] _attributeKeys];
1995 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1996 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1999 - (NSString *) relationship {
2000 return relationship_;
2003 - (NSArray *) clauses {
2007 - (void) addClause:(CydiaClause *)clause {
2008 [clauses_ addObject:clause];
2013 /* Package Class {{{ */
2014 struct ParsedPackage {
2019 CYString depiction_;
2029 @interface Package : NSObject {
2032 uint32_t essential_ : 1;
2033 uint32_t obsolete_ : 1;
2034 uint32_t ignored_ : 1;
2038 _transient Database *database_;
2040 pkgCache::VerIterator version_;
2041 pkgCache::PkgIterator iterator_;
2042 pkgCache::VerFileIterator file_;
2048 CYString installed_;
2050 const char *section_;
2051 _transient NSString *section$_;
2055 PackageValue *metadata_;
2056 ParsedPackage *parsed_;
2058 NSMutableArray *tags_;
2061 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
2062 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
2064 - (pkgCache::PkgIterator) iterator;
2067 - (NSString *) section;
2068 - (NSString *) simpleSection;
2070 - (NSString *) longSection;
2071 - (NSString *) shortSection;
2075 - (Address *) maintainer;
2077 - (NSString *) longDescription;
2078 - (NSString *) shortDescription;
2081 - (PackageValue *) metadata;
2084 - (bool) subscribed;
2085 - (bool) setSubscribed:(bool)subscribed;
2089 - (NSString *) latest;
2090 - (NSString *) installed;
2091 - (BOOL) uninstalled;
2094 - (BOOL) upgradableAndEssential:(BOOL)essential;
2097 - (BOOL) unfiltered;
2101 - (BOOL) halfConfigured;
2102 - (BOOL) halfInstalled;
2104 - (NSString *) mode;
2107 - (NSString *) name;
2109 - (NSString *) homepage;
2110 - (NSString *) depiction;
2111 - (Address *) author;
2113 - (NSString *) support;
2115 - (NSArray *) files;
2116 - (NSArray *) warnings;
2117 - (NSArray *) applications;
2119 - (Source *) source;
2121 - (BOOL) matches:(NSString *)text;
2123 - (bool) hasSupportingRole;
2124 - (BOOL) hasTag:(NSString *)tag;
2125 - (NSString *) primaryPurpose;
2126 - (NSArray *) purposes;
2127 - (bool) isCommercial;
2129 - (void) setIndex:(size_t)index;
2131 - (CYString &) cyname;
2133 - (uint32_t) compareBySection:(NSArray *)sections;
2138 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search;
2139 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
2140 - (bool) isInstalledAndUnfiltered:(NSNumber *)number;
2141 - (bool) isVisibleInSection:(NSString *)section;
2142 - (bool) isVisibleInSource:(Source *)source;
2146 uint32_t PackageChangesRadix(Package *self, void *) {
2151 uint32_t timestamp : 30;
2152 uint32_t ignored : 1;
2153 uint32_t upgradable : 1;
2157 bool upgradable([self upgradableAndEssential:YES]);
2158 value.bits.upgradable = upgradable ? 1 : 0;
2161 value.bits.timestamp = 0;
2162 value.bits.ignored = [self ignored] ? 0 : 1;
2163 value.bits.upgradable = 1;
2165 value.bits.timestamp = [self seen] >> 2;
2166 value.bits.ignored = 0;
2167 value.bits.upgradable = 0;
2170 return _not(uint32_t) - value.key;
2173 uint32_t PackagePrefixRadix(Package *self, void *context) {
2174 size_t offset(reinterpret_cast<size_t>(context));
2175 CYString &name([self cyname]);
2177 size_t size(name.size());
2180 char *text(name.data());
2183 if (!isdigit(text[0]))
2187 while (size != digits && isdigit(text[digits]))
2195 if (offset == 0 && zeros != 0) {
2196 memset(data, '0', zeros);
2197 memcpy(data + zeros, text, 4 - zeros);
2199 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2200 if (size <= offset - zeros)
2203 text += offset - zeros;
2204 size -= offset - zeros;
2207 memcpy(data, text, 4);
2209 memcpy(data, text, size);
2210 memset(data + size, 0, 4 - size);
2213 for (size_t i(0); i != 4; ++i)
2214 if (isalpha(data[i]))
2222 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2224 /* XXX: ntohl may be more honest */
2225 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2228 CYString &(*PackageName)(Package *self, SEL sel);
2230 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2231 _profile(PackageNameCompare)
2232 CYString &lhi(PackageName(lhs, @selector(cyname)));
2233 CYString &rhi(PackageName(rhs, @selector(cyname)));
2234 CFStringRef lhn(lhi), rhn(rhi);
2237 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
2238 else if (rhn == NULL)
2239 return NSOrderedDescending;
2241 _profile(PackageNameCompare$NumbersLast)
2242 if (!lhi.empty() && !rhi.empty()) {
2243 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2244 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2245 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2246 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2247 return lha ? NSOrderedAscending : NSOrderedDescending;
2251 CFIndex length = CFStringGetLength(lhn);
2253 _profile(PackageNameCompare$Compare)
2254 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
2259 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
2260 return PackageNameCompare(*lhs, *rhs, context);
2263 struct PackageNameOrdering :
2264 std::binary_function<Package *, Package *, bool>
2266 _finline bool operator ()(Package *lhs, Package *rhs) const {
2267 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
2271 @implementation Package
2273 - (NSString *) description {
2274 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2278 if (parsed_ != NULL)
2287 + (NSString *) webScriptNameForSelector:(SEL)selector {
2289 else if (selector == @selector(clear))
2291 else if (selector == @selector(getField:))
2293 else if (selector == @selector(hasTag:))
2295 else if (selector == @selector(install))
2297 else if (selector == @selector(remove))
2303 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2304 return [self webScriptNameForSelector:selector] == nil;
2307 + (NSArray *) _attributeKeys {
2308 return [NSArray arrayWithObjects:
2327 @"shortDescription",
2340 - (NSArray *) attributeKeys {
2341 return [[self class] _attributeKeys];
2344 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2345 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2348 - (NSArray *) relations {
2349 @synchronized (database_) {
2350 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2351 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2352 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2356 - (NSString *) getField:(NSString *)name {
2357 @synchronized (database_) {
2358 if ([database_ era] != era_ || file_.end())
2361 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2363 const char *start, *end;
2364 if (!parser.Find([name UTF8String], start, end))
2365 return (NSString *) [NSNull null];
2367 return [(NSString *) CYStringCreate(start, end - start) autorelease];
2371 if (parsed_ != NULL)
2373 @synchronized (database_) {
2374 if ([database_ era] != era_ || file_.end())
2377 ParsedPackage *parsed(new ParsedPackage);
2380 _profile(Package$parse)
2381 pkgRecords::Parser *parser;
2383 _profile(Package$parse$Lookup)
2384 parser = &[database_ records]->Lookup(file_);
2389 _profile(Package$parse$Find)
2394 {"icon", &parsed->icon_},
2395 {"depiction", &parsed->depiction_},
2396 {"homepage", &parsed->homepage_},
2397 {"website", &website},
2398 {"bugs", &parsed->bugs_},
2399 {"support", &parsed->support_},
2400 {"sponsor", &parsed->sponsor_},
2401 {"author", &parsed->author_},
2404 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2405 const char *start, *end;
2407 if (parser->Find(names[i].name_, start, end)) {
2408 CYString &value(*names[i].value_);
2409 _profile(Package$parse$Value)
2410 value.set(pool_, start, end - start);
2416 _profile(Package$parse$Tagline)
2417 const char *start, *end;
2418 if (parser->ShortDesc(start, end)) {
2419 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2422 while (stop != start && stop[-1] == '\r')
2424 parsed->tagline_.set(pool_, start, stop - start);
2428 _profile(Package$parse$Retain)
2429 if (parsed->homepage_.empty())
2430 parsed->homepage_ = website;
2431 if (parsed->homepage_ == parsed->depiction_)
2432 parsed->homepage_.clear();
2437 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2438 if ((self = [super init]) != nil) {
2439 _profile(Package$initWithVersion)
2442 database_ = database;
2443 era_ = [database era];
2447 pkgCache::PkgIterator iterator(version.ParentPkg());
2448 iterator_ = iterator;
2450 _profile(Package$initWithVersion$Version)
2451 if (!version_.end())
2452 file_ = version_.FileList();
2454 pkgCache &cache([database_ cache]);
2455 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2459 _profile(Package$initWithVersion$Cache)
2460 name_.set(NULL, iterator.Display());
2462 latest_.set(NULL, StripVersion_(version_.VerStr()));
2464 pkgCache::VerIterator current(iterator.CurrentVer());
2466 installed_.set(NULL, StripVersion_(current.VerStr()));
2469 _profile(Package$initWithVersion$Tags)
2470 pkgCache::TagIterator tag(iterator.TagList());
2472 tags_ = [[NSMutableArray alloc] initWithCapacity:8];
2474 const char *name(tag.Name());
2475 [tags_ addObject:[(NSString *)CYStringCreate(name) autorelease]];
2477 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2478 if (strcmp(name + 6, "enduser") == 0)
2480 else if (strcmp(name + 6, "hacker") == 0)
2482 else if (strcmp(name + 6, "developer") == 0)
2484 else if (strcmp(name + 6, "cydia") == 0)
2490 if (strncmp(name, "cydia::", 7) == 0) {
2491 if (strcmp(name + 7, "essential") == 0)
2493 else if (strcmp(name + 7, "obsolete") == 0)
2498 } while (!tag.end());
2502 _profile(Package$initWithVersion$Metadata)
2503 const char *mixed(iterator.Name());
2504 size_t size(strlen(mixed));
2505 char lower[size + 1];
2507 for (size_t i(0); i != size; ++i)
2508 lower[i] = mixed[i] | 0x20;
2511 PackageValue *metadata(PackageFind(lower, size));
2512 metadata_ = metadata;
2514 id_.set(NULL, metadata->name_, size);
2516 const char *latest(version_.VerStr());
2517 size_t length(strlen(latest));
2519 uint16_t vhash(hashlittle(latest, length));
2521 size_t capped(std::min<size_t>(8, length));
2522 latest = latest + length - capped;
2524 if (metadata->first_ == 0)
2525 metadata->first_ = now_;
2527 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2528 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2529 metadata->vhash_ = vhash;
2530 metadata->last_ = now_;
2531 } else if (metadata->last_ == 0)
2532 metadata->last_ = metadata->first_;
2535 _profile(Package$initWithVersion$Section)
2536 section_ = iterator.Section();
2539 _profile(Package$initWithVersion$Flags)
2540 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2541 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2546 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2547 pkgCache::VerIterator version;
2549 _profile(Package$packageWithIterator$GetCandidateVer)
2550 version = [database policy]->GetCandidateVer(iterator);
2558 _profile(Package$packageWithIterator$Allocate)
2559 package = [Package allocWithZone:zone];
2562 _profile(Package$packageWithIterator$Initialize)
2564 initWithVersion:version
2571 _profile(Package$packageWithIterator$Autorelease)
2572 package = [package autorelease];
2578 - (pkgCache::PkgIterator) iterator {
2582 - (NSString *) section {
2583 if (section$_ == nil) {
2584 if (section_ == NULL)
2587 _profile(Package$section$mappedSectionForPointer)
2588 section$_ = [database_ mappedSectionForPointer:section_];
2593 - (NSString *) simpleSection {
2594 if (NSString *section = [self section])
2595 return Simplify(section);
2600 - (NSString *) longSection {
2601 return LocalizeSection([self section]);
2604 - (NSString *) shortSection {
2605 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2608 - (NSString *) uri {
2611 pkgIndexFile *index;
2612 pkgCache::PkgFileIterator file(file_.File());
2613 if (![database_ list].FindIndex(file, index))
2615 return [NSString stringWithUTF8String:iterator_->Path];
2616 //return [NSString stringWithUTF8String:file.Site()];
2617 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2621 - (Address *) maintainer {
2622 @synchronized (database_) {
2623 if ([database_ era] != era_ || file_.end())
2626 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2627 const std::string &maintainer(parser->Maintainer());
2628 return maintainer.empty() ? nil : [Address addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2632 @synchronized (database_) {
2633 if ([database_ era] != era_ || version_.end())
2636 return version_->InstalledSize;
2639 - (NSString *) longDescription {
2640 @synchronized (database_) {
2641 if ([database_ era] != era_ || file_.end())
2644 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2645 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2647 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2648 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2649 if ([lines count] < 2)
2652 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2653 for (size_t i(1), e([lines count]); i != e; ++i) {
2654 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2655 [trimmed addObject:trim];
2658 return [trimmed componentsJoinedByString:@"\n"];
2661 - (NSString *) shortDescription {
2662 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->tagline_);
2666 _profile(Package$index)
2667 CFStringRef name((CFStringRef) [self name]);
2668 if (CFStringGetLength(name) == 0)
2670 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2671 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2673 return toupper(character);
2677 - (PackageValue *) metadata {
2682 PackageValue *metadata([self metadata]);
2683 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2686 - (bool) subscribed {
2687 return [self metadata]->subscribed_;
2690 - (bool) setSubscribed:(bool)subscribed {
2691 PackageValue *metadata([self metadata]);
2692 if (metadata->subscribed_ == subscribed)
2694 metadata->subscribed_ = subscribed;
2702 - (NSString *) latest {
2706 - (NSString *) installed {
2710 - (BOOL) uninstalled {
2711 return installed_.empty();
2715 return !version_.end();
2718 - (BOOL) upgradableAndEssential:(BOOL)essential {
2719 _profile(Package$upgradableAndEssential)
2720 pkgCache::VerIterator current(iterator_.CurrentVer());
2722 return essential && essential_;
2724 return !version_.end() && version_ != current;
2728 - (BOOL) essential {
2733 return [database_ cache][iterator_].InstBroken();
2736 - (BOOL) unfiltered {
2737 _profile(Package$unfiltered$obsolete)
2738 if (_unlikely(obsolete_))
2742 _profile(Package$unfiltered$hasSupportingRole)
2743 if (_unlikely(![self hasSupportingRole]))
2751 if (![self unfiltered])
2756 _profile(Package$visible$section)
2757 section = [self section];
2760 _profile(Package$visible$isSectionVisible)
2761 if (!isSectionVisible(section))
2769 unsigned char current(iterator_->CurrentState);
2770 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2773 - (BOOL) halfConfigured {
2774 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2777 - (BOOL) halfInstalled {
2778 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2782 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2783 return state.Mode != pkgDepCache::ModeKeep;
2786 - (NSString *) mode {
2787 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2789 switch (state.Mode) {
2790 case pkgDepCache::ModeDelete:
2791 if ((state.iFlags & pkgDepCache::Purge) != 0)
2795 case pkgDepCache::ModeKeep:
2796 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2797 return @"REINSTALL";
2798 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2802 case pkgDepCache::ModeInstall:
2803 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2804 return @"REINSTALL";
2805 else*/ switch (state.Status) {
2807 return @"DOWNGRADE";
2813 return @"NEW_INSTALL";
2824 - (NSString *) name {
2825 return name_.empty() ? id_ : name_;
2828 - (UIImage *) icon {
2829 NSString *section = [self simpleSection];
2832 if (parsed_ != NULL)
2833 if (NSString *href = parsed_->icon_)
2834 if ([href hasPrefix:@"file:///"])
2835 // XXX: correct escaping
2836 icon = [UIImage imageAtPath:[href substringFromIndex:7]];
2837 if (icon == nil) if (section != nil)
2838 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]];
2839 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
2840 if ([dicon hasPrefix:@"file:///"])
2841 // XXX: correct escaping
2842 icon = [UIImage imageAtPath:[dicon substringFromIndex:7]];
2844 icon = [UIImage applicationImageNamed:@"unknown.png"];
2848 - (NSString *) homepage {
2849 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
2852 - (NSString *) depiction {
2853 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
2856 - (Address *) sponsor {
2857 return parsed_ == NULL || parsed_->sponsor_.empty() ? nil : [Address addressWithString:parsed_->sponsor_];
2860 - (Address *) author {
2861 return parsed_ == NULL || parsed_->author_.empty() ? nil : [Address addressWithString:parsed_->author_];
2864 - (NSString *) support {
2865 return parsed_ != NULL && !parsed_->bugs_.empty() ? parsed_->bugs_ : [[self source] supportForPackage:id_];
2868 - (NSArray *) files {
2869 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2870 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2873 fin.open([path UTF8String]);
2878 while (std::getline(fin, line))
2879 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2884 - (NSString *) state {
2885 @synchronized (database_) {
2886 if ([database_ era] != era_ || file_.end())
2889 switch (iterator_->CurrentState) {
2890 case pkgCache::State::NotInstalled:
2891 return @"NotInstalled";
2892 case pkgCache::State::UnPacked:
2894 case pkgCache::State::HalfConfigured:
2895 return @"HalfConfigured";
2896 case pkgCache::State::HalfInstalled:
2897 return @"HalfInstalled";
2898 case pkgCache::State::ConfigFiles:
2899 return @"ConfigFiles";
2900 case pkgCache::State::Installed:
2901 return @"Installed";
2902 case pkgCache::State::TriggersAwaited:
2903 return @"TriggersAwaited";
2904 case pkgCache::State::TriggersPending:
2905 return @"TriggersPending";
2908 return (NSString *) [NSNull null];
2911 - (NSString *) selection {
2912 @synchronized (database_) {
2913 if ([database_ era] != era_ || file_.end())
2916 switch (iterator_->SelectedState) {
2917 case pkgCache::State::Unknown:
2919 case pkgCache::State::Install:
2921 case pkgCache::State::Hold:
2923 case pkgCache::State::DeInstall:
2924 return @"DeInstall";
2925 case pkgCache::State::Purge:
2929 return (NSString *) [NSNull null];
2932 - (NSArray *) warnings {
2933 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2934 const char *name(iterator_.Name());
2936 size_t length(strlen(name));
2937 if (length < 2) invalid:
2938 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2939 else for (size_t i(0); i != length; ++i)
2941 /* XXX: technically this is not allowed */
2942 (name[i] < 'A' || name[i] > 'Z') &&
2943 (name[i] < 'a' || name[i] > 'z') &&
2944 (name[i] < '0' || name[i] > '9') &&
2945 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2948 if (strcmp(name, "cydia") != 0) {
2951 bool _private = false;
2954 bool repository = [[self section] isEqualToString:@"Repositories"];
2956 if (NSArray *files = [self files])
2957 for (NSString *file in files)
2958 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2960 else if (!user && [file isEqualToString:@"/User"])
2962 else if (!_private && [file isEqualToString:@"/private"])
2964 else if (!stash && [file isEqualToString:@"/var/stash"])
2967 /* XXX: this is not sensitive enough. only some folders are valid. */
2968 if (cydia && !repository)
2969 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2971 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2973 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2975 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2978 return [warnings count] == 0 ? nil : warnings;
2981 - (NSArray *) applications {
2982 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2984 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2986 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2987 if (NSArray *files = [self files])
2988 for (NSString *file in files)
2989 if (application_r(file)) {
2990 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2991 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2992 if ([id isEqualToString:me])
2995 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2997 display = application_r[1];
2999 NSString *bundle([file stringByDeletingLastPathComponent]);
3000 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
3001 if (icon == nil || [icon length] == 0)
3003 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
3005 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
3006 [applications addObject:application];
3008 [application addObject:id];
3009 [application addObject:display];
3010 [application addObject:url];
3013 return [applications count] == 0 ? nil : applications;
3016 - (Source *) source {
3017 if (source_ == nil) {
3018 @synchronized (database_) {
3019 if ([database_ era] != era_ || file_.end())
3020 source_ = (Source *) [NSNull null];
3022 source_ = [([database_ getSource:file_.File()] ?: (Source *) [NSNull null]) retain];
3026 return source_ == (Source *) [NSNull null] ? nil : source_;
3029 - (BOOL) matches:(NSString *)text {
3035 range = [[self id] rangeOfString:text options:MatchCompareOptions_];
3036 if (range.location != NSNotFound)
3039 range = [[self name] rangeOfString:text options:MatchCompareOptions_];
3040 if (range.location != NSNotFound)
3045 range = [[self shortDescription] rangeOfString:text options:MatchCompareOptions_];
3046 if (range.location != NSNotFound)
3052 - (bool) hasSupportingRole {
3057 if ([Role_ isEqualToString:@"User"])
3061 if ([Role_ isEqualToString:@"Hacker"])
3065 if ([Role_ isEqualToString:@"Developer"])
3070 - (NSArray *) tags {
3074 - (BOOL) hasTag:(NSString *)tag {
3075 return tags_ == nil ? NO : [tags_ containsObject:tag];
3078 - (NSString *) primaryPurpose {
3079 for (NSString *tag in tags_)
3080 if ([tag hasPrefix:@"purpose::"])
3081 return [tag substringFromIndex:9];
3085 - (NSArray *) purposes {
3086 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
3087 for (NSString *tag in tags_)
3088 if ([tag hasPrefix:@"purpose::"])
3089 [purposes addObject:[tag substringFromIndex:9]];
3090 return [purposes count] == 0 ? nil : purposes;
3093 - (bool) isCommercial {
3094 return [self hasTag:@"cydia::commercial"];
3097 - (void) setIndex:(size_t)index {
3098 if (metadata_->index_ != index)
3099 metadata_->index_ = index;
3102 - (CYString &) cyname {
3103 return name_.empty() ? id_ : name_;
3106 - (uint32_t) compareBySection:(NSArray *)sections {
3107 NSString *section([self section]);
3108 for (size_t i(0), e([sections count]); i != e; ++i) {
3109 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
3113 return _not(uint32_t);
3117 @synchronized (database_) {
3118 pkgProblemResolver *resolver = [database_ resolver];
3119 resolver->Clear(iterator_);
3121 pkgCacheFile &cache([database_ cache]);
3122 cache->SetReInstall(iterator_, false);
3123 cache->MarkKeep(iterator_, false);
3127 @synchronized (database_) {
3128 pkgProblemResolver *resolver = [database_ resolver];
3129 resolver->Clear(iterator_);
3130 resolver->Protect(iterator_);
3132 pkgCacheFile &cache([database_ cache]);
3133 cache->SetReInstall(iterator_, false);
3134 cache->MarkInstall(iterator_, false);
3136 pkgDepCache::StateCache &state((*cache)[iterator_]);
3137 if (!state.Install())
3138 cache->SetReInstall(iterator_, true);
3142 @synchronized (database_) {
3143 pkgProblemResolver *resolver = [database_ resolver];
3144 resolver->Clear(iterator_);
3145 resolver->Remove(iterator_);
3146 resolver->Protect(iterator_);
3148 pkgCacheFile &cache([database_ cache]);
3149 cache->SetReInstall(iterator_, false);
3150 cache->MarkDelete(iterator_, true);
3153 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search {
3154 _profile(Package$isUnfilteredAndSearchedForBy)
3157 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
3158 value &= [self unfiltered];
3161 _profile(Package$isUnfilteredAndSearchedForBy$Match)
3162 value &= [self matches:search];
3169 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
3170 if ([search length] == 0)
3173 _profile(Package$isUnfilteredAndSelectedForBy)
3176 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
3177 value &= [self unfiltered];
3180 _profile(Package$isUnfilteredAndSelectedForBy$Match)
3181 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
3188 - (bool) isInstalledAndUnfiltered:(NSNumber *)number {
3189 return ![self uninstalled] && (![number boolValue] && role_ != 7 || [self unfiltered]);
3192 - (bool) isVisibleInSection:(NSString *)name {
3193 NSString *section([self section]);
3197 section == nil && [name length] == 0 ||
3198 [name isEqualToString:section]
3199 ) && [self visible];
3202 - (bool) isVisibleInSource:(Source *)source {
3203 return [self source] == source && [self visible];
3208 /* Section Class {{{ */
3209 @interface Section : NSObject {
3214 NSString *localized_;
3217 - (NSComparisonResult) compareByLocalized:(Section *)section;
3218 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3219 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3220 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3221 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
3222 - (NSString *) name;
3229 - (void) addToCount;
3231 - (void) setCount:(size_t)count;
3232 - (NSString *) localized;
3236 @implementation Section
3240 if (localized_ != nil)
3241 [localized_ release];
3245 - (NSComparisonResult) compareByLocalized:(Section *)section {
3246 NSString *lhs(localized_);
3247 NSString *rhs([section localized]);
3249 /*if ([lhs length] != 0 && [rhs length] != 0) {
3250 unichar lhc = [lhs characterAtIndex:0];
3251 unichar rhc = [rhs characterAtIndex:0];
3253 if (isalpha(lhc) && !isalpha(rhc))
3254 return NSOrderedAscending;
3255 else if (!isalpha(lhc) && isalpha(rhc))
3256 return NSOrderedDescending;
3259 return [lhs compare:rhs options:LaxCompareOptions_];
3262 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3263 if ((self = [self initWithName:name localize:NO]) != nil) {
3264 if (localized != nil)
3265 localized_ = [localized retain];
3269 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3270 return [self initWithName:name row:0 localize:localize];
3273 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3274 if ((self = [super init]) != nil) {
3275 name_ = [name retain];
3279 localized_ = [LocalizeSection(name_) retain];
3283 /* XXX: localize the index thingees */
3284 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
3285 if ((self = [super init]) != nil) {
3286 name_ = [[NSString stringWithCharacters:&index length:1] retain];
3292 - (NSString *) name {
3312 - (void) addToCount {
3316 - (void) setCount:(size_t)count {
3320 - (NSString *) localized {
3327 static NSString *Colon_;
3328 static NSString *Elision_;
3329 static NSString *Error_;
3330 static NSString *Warning_;
3332 /* Database Implementation {{{ */
3333 @implementation Database
3335 + (Database *) sharedInstance {
3336 static Database *instance;
3337 if (instance == nil)
3338 instance = [[Database alloc] init];
3346 - (void) releasePackages {
3347 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3348 CFArrayRemoveAllValues(packages_);
3352 // XXX: actually implement this thing
3354 [sourceList_ release];
3355 [self releasePackages];
3356 apr_pool_destroy(pool_);
3357 NSRecycleZone(zone_);
3361 - (void) _readCydia:(NSNumber *)fd { _pooled
3362 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3363 std::istream is(&ib);
3366 static Pcre finish_r("^finish:([^:]*)$");
3368 while (std::getline(is, line)) {
3369 const char *data(line.c_str());
3370 size_t size = line.size();
3371 lprintf("C:%s\n", data);
3373 if (finish_r(data, size)) {
3374 NSString *finish = finish_r[1];
3375 int index = [Finishes_ indexOfObject:finish];
3376 if (index != INT_MAX && index > Finish_)
3384 - (void) _readStatus:(NSNumber *)fd { _pooled
3385 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3386 std::istream is(&ib);
3389 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3390 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3392 while (std::getline(is, line)) {
3393 const char *data(line.c_str());
3394 size_t size(line.size());
3395 lprintf("S:%s\n", data);
3397 if (conffile_r(data, size)) {
3398 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3399 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3400 } else if (strncmp(data, "status: ", 8) == 0) {
3401 // status: <package>: {unpacked,half-configured,installed}
3402 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3403 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3404 } else if (strncmp(data, "processing: ", 12) == 0) {
3405 // processing: configure: config-test
3406 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3407 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3408 } else if (pmstatus_r(data, size)) {
3409 std::string type([pmstatus_r[1] UTF8String]);
3411 NSString *package = pmstatus_r[2];
3412 if ([package isEqualToString:@"dpkg-exec"])
3415 float percent([pmstatus_r[3] floatValue]);
3416 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3418 NSString *string = pmstatus_r[4];
3420 if (type == "pmerror") {
3421 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3422 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3423 } else if (type == "pmstatus") {
3424 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3425 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3426 } else if (type == "pmconffile")
3427 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3429 lprintf("E:unknown pmstatus\n");
3431 lprintf("E:unknown status\n");
3437 - (void) _readOutput:(NSNumber *)fd { _pooled
3438 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3439 std::istream is(&ib);
3442 while (std::getline(is, line)) {
3443 lprintf("O:%s\n", line.c_str());
3445 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3446 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3456 - (Package *) packageWithName:(NSString *)name {
3457 @synchronized (self) {
3458 if (static_cast<pkgDepCache *>(cache_) == NULL)
3460 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3461 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:pool_ database:self];
3465 if ((self = [super init]) != nil) {
3472 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3473 apr_pool_create(&pool_, NULL);
3475 size_t capacity(MetaFile_->active_);
3481 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3482 sourceList_ = [[NSMutableArray alloc] initWithCapacity:16];
3486 _assert(pipe(fds) != -1);
3489 _config->Set("APT::Keep-Fds::", cydiafd_);
3490 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3493 detachNewThreadSelector:@selector(_readCydia:)
3495 withObject:[NSNumber numberWithInt:fds[0]]
3498 _assert(pipe(fds) != -1);
3502 detachNewThreadSelector:@selector(_readStatus:)
3504 withObject:[NSNumber numberWithInt:fds[0]]
3507 _assert(pipe(fds) != -1);
3508 _assert(dup2(fds[0], 0) != -1);
3509 _assert(close(fds[0]) != -1);
3511 input_ = fdopen(fds[1], "a");
3513 _assert(pipe(fds) != -1);
3514 _assert(dup2(fds[1], 1) != -1);
3515 _assert(close(fds[1]) != -1);
3518 detachNewThreadSelector:@selector(_readOutput:)
3520 withObject:[NSNumber numberWithInt:fds[0]]
3525 - (pkgCacheFile &) cache {
3529 - (pkgDepCache::Policy *) policy {
3533 - (pkgRecords *) records {
3537 - (pkgProblemResolver *) resolver {
3541 - (pkgAcquire &) fetcher {
3545 - (pkgSourceList &) list {
3549 - (NSArray *) packages {
3550 return (NSArray *) packages_;
3553 - (NSArray *) sources {
3557 - (Source *) sourceWithKey:(NSString *)key {
3558 for (Source *source in [self sources]) {
3559 if ([[source key] isEqualToString:key])
3564 - (bool) popErrorWithTitle:(NSString *)title {
3567 while (!_error->empty()) {
3569 bool warning(!_error->PopMessage(error));
3574 size_t size(error.size());
3575 if (size == 0 || error[size - 1] != '\n')
3577 error.resize(size - 1);
3580 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3582 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3588 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3589 return [self popErrorWithTitle:title] || !success;
3592 - (void) reloadDataWithInvocation:(NSInvocation *)invocation { CYPoolStart() {
3593 @synchronized (self) {
3596 [self releasePackages];
3599 [sourceList_ removeAllObjects];
3619 apr_pool_clear(pool_);
3621 NSRecycleZone(zone_);
3622 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3624 int chk(creat("/tmp/cydia.chk", 0644));
3628 if (invocation != nil)
3629 [invocation invoke];
3631 NSString *title(UCLocalize("DATABASE"));
3634 OpProgress progress;
3635 while (!cache_.Open(progress, true)) { pop:
3637 bool warning(!_error->PopMessage(error));
3638 lprintf("cache_.Open():[%s]\n", error.c_str());
3640 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3641 [delegate_ repairWithSelector:@selector(configure)];
3642 else if (error == "The package lists or status file could not be parsed or opened.")
3643 [delegate_ repairWithSelector:@selector(update)];
3644 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3645 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3646 // else if (error == "Malformed Status line")
3647 // else if (error == "The list of sources could not be read.")
3649 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3659 unlink("/tmp/cydia.chk");
3661 now_ = [[NSDate date] timeIntervalSince1970];
3663 policy_ = new pkgDepCache::Policy();
3664 records_ = new pkgRecords(cache_);
3665 resolver_ = new pkgProblemResolver(cache_);
3666 fetcher_ = new pkgAcquire(&status_);
3669 list_ = new pkgSourceList();
3670 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3673 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3674 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3678 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3681 if (cache_->BrokenCount() != 0) {
3682 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3685 if (cache_->BrokenCount() != 0) {
3686 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3690 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3694 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3695 Source *object([[[Source alloc] initWithMetaIndex:*source inPool:pool_] autorelease]);
3696 [sourceList_ addObject:object];
3698 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3699 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3700 // XXX: this could be more intelligent
3701 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3702 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3704 sourceMap_[cached->ID] = object;
3709 /*std::vector<Package *> packages;
3710 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3711 [packages_ release];
3716 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3717 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3718 //packages.push_back(package);
3719 CFArrayAppendValue(packages_, [package retain]);
3723 /*if (packages.empty())
3724 packages_ = [[NSArray alloc] init];
3726 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3729 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3730 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3731 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3739 /*if (!packages.empty())
3740 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3741 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3743 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3745 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3747 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3751 size_t count(CFArrayGetCount(packages_));
3752 MetaFile_->active_ = count;
3754 for (size_t index(0); index != count; ++index)
3755 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3759 } } CYPoolEnd() _trace(); }
3762 @synchronized (self) {
3764 resolver_ = new pkgProblemResolver(cache_);
3766 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3767 if (!cache_[iterator].Keep())
3768 cache_->MarkKeep(iterator, false);
3769 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3770 cache_->SetReInstall(iterator, false);
3773 - (void) configure {
3774 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3776 system([dpkg UTF8String]);
3781 // XXX: I don't remember this condition
3786 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3788 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3790 if ([self popErrorWithTitle:title])
3794 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3797 public pkgArchiveCleaner
3800 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3805 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3812 fetcher_->Shutdown();
3814 pkgRecords records(cache_);
3816 lock_ = new FileFd();
3817 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3819 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3821 if ([self popErrorWithTitle:title])
3825 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3828 manager_ = (_system->CreatePM(cache_));
3829 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3836 bool substrate(RestartSubstrate_);
3837 RestartSubstrate_ = false;
3839 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3841 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3843 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3845 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3846 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3849 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3851 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3853 [self popErrorWithTitle:title];
3857 bool failed = false;
3858 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3859 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3861 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3867 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3875 RestartSubstrate_ = true;
3878 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3880 if (_error->PendingError()) {
3885 if (result == pkgPackageManager::Failed) {
3890 if (result != pkgPackageManager::Completed) {
3895 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3897 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3899 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3900 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3903 if (![before isEqualToArray:after])
3908 NSString *title(UCLocalize("UPGRADE"));
3909 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3915 [self updateWithStatus:status_];
3918 - (void) updateWithStatus:(Status &)status {
3919 NSString *title(UCLocalize("REFRESHING_DATA"));
3922 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3926 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3927 if ([self popErrorWithTitle:title])
3930 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3932 bool success(ListUpdate(status, list, PulseInterval_));
3933 if (status.WasCancelled())
3936 [self popErrorWithTitle:title forOperation:success];
3938 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3940 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3944 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
3945 delegate_ = delegate;
3948 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
3949 progress_ = delegate;
3950 status_.setDelegate(delegate);
3953 - (NSObject<ProgressDelegate> *) progressDelegate {
3957 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3958 SourceMap::const_iterator i(sourceMap_.find(file->ID));
3959 return i == sourceMap_.end() ? nil : i->second;
3962 - (NSString *) mappedSectionForPointer:(const char *)section {
3963 _H<NSString> *mapped;
3965 _profile(Database$mappedSectionForPointer$Cache)
3966 mapped = §ions_[section];
3969 if (*mapped == NULL) {
3970 size_t length(strlen(section));
3971 char spaced[length + 1];
3973 _profile(Database$mappedSectionForPointer$Replace)
3974 for (size_t index(0); index != length; ++index)
3975 spaced[index] = section[index] == '_' ? ' ' : section[index];
3976 spaced[length] = '\0';
3981 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
3982 string = [NSString stringWithUTF8String:spaced];
3985 _profile(Database$mappedSectionForPointer$Map)
3986 string = [SectionMap_ objectForKey:string] ?: string;
3996 static NSMutableSet *Diversions_;
3998 @interface Diversion : NSObject {
4001 _H<NSString> format_;
4006 @implementation Diversion
4008 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
4009 if ((self = [super init]) != nil) {
4010 pattern_ = [from UTF8String];
4016 - (NSString *) divert:(NSString *)url {
4017 return !pattern_(url) ? nil : pattern_->*format_;
4020 + (NSURL *) divertURL:(NSURL *)url {
4022 NSString *href([url absoluteString]);
4024 for (Diversion *diversion in Diversions_)
4025 if (NSString *diverted = [diversion divert:href]) {
4027 NSLog(@"div: %@", diverted);
4029 url = [NSURL URLWithString:diverted];
4036 - (NSString *) key {
4040 - (NSUInteger) hash {
4044 - (BOOL) isEqual:(Diversion *)object {
4045 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
4050 @interface CydiaObject : NSObject {
4052 _transient id delegate_;
4055 - (id) initWithDelegate:(IndirectDelegate *)indirect;
4059 @interface CYBrowserController : BrowserController {
4060 CydiaObject *cydia_;
4063 + (void) addDiversion:(Diversion *)diversion;
4067 /* Web Scripting {{{ */
4068 @implementation CydiaObject
4071 [indirect_ release];
4075 - (id) initWithDelegate:(IndirectDelegate *)indirect {
4076 if ((self = [super init]) != nil) {
4077 indirect_ = [indirect retain];
4081 - (void) setDelegate:(id)delegate {
4082 delegate_ = delegate;
4085 + (NSArray *) _attributeKeys {
4086 return [NSArray arrayWithObjects:
4101 - (NSArray *) attributeKeys {
4102 return [[self class] _attributeKeys];
4105 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
4106 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
4109 - (NSString *) version {
4113 - (NSString *) device {
4114 return [[UIDevice currentDevice] uniqueIdentifier];
4117 - (NSString *) firmware {
4118 return [[UIDevice currentDevice] systemVersion];
4121 - (NSString *) hostname {
4122 return [[UIDevice currentDevice] name];
4125 - (NSString *) idiom {
4126 return (id) Idiom_ ?: [NSNull null];
4129 - (NSString *) plmn {
4130 return (id) PLMN_ ?: [NSNull null];
4133 - (NSString *) ecid {
4134 return (id) ChipID_ ?: [NSNull null];
4137 - (NSString *) serial {
4138 return SerialNumber_;
4141 - (NSString *) role {
4142 return (id) Role_ ?: [NSNull null];
4145 - (NSString *) model {
4146 return [NSString stringWithUTF8String:Machine_];
4149 - (NSString *) token {
4150 return (id) Token_ ?: [NSNull null];
4153 + (NSString *) webScriptNameForSelector:(SEL)selector {
4155 else if (selector == @selector(addBridgedHost:))
4156 return @"addBridgedHost";
4157 else if (selector == @selector(addPipelinedHost:scheme:))
4158 return @"addPipelinedHost";
4159 else if (selector == @selector(addTrivialSource:))
4160 return @"addTrivialSource";
4161 else if (selector == @selector(close))
4163 else if (selector == @selector(divert::))
4165 else if (selector == @selector(du:))
4167 else if (selector == @selector(stringWithFormat:arguments:))
4169 else if (selector == @selector(getAllSources))
4170 return @"getAllSourcs";
4171 else if (selector == @selector(getKernelNumber:))
4172 return @"getKernelNumber";
4173 else if (selector == @selector(getKernelString:))
4174 return @"getKernelString";
4175 else if (selector == @selector(getInstalledPackages))
4176 return @"getInstalledPackages";
4177 else if (selector == @selector(getPackageById:))
4178 return @"getPackageById";
4179 else if (selector == @selector(getSessionValue:))
4180 return @"getSessionValue";
4181 else if (selector == @selector(installPackages:))
4182 return @"installPackages";
4183 else if (selector == @selector(localizedStringForKey:value:table:))
4185 else if (selector == @selector(popViewController:))
4186 return @"popViewController";
4187 else if (selector == @selector(refreshSources))
4188 return @"refreshSources";
4189 else if (selector == @selector(removeButton))
4190 return @"removeButton";
4191 else if (selector == @selector(setSessionValue::))
4192 return @"setSessionValue";
4193 else if (selector == @selector(substitutePackageNames:))
4194 return @"substitutePackageNames";
4195 else if (selector == @selector(scrollToBottom:))
4196 return @"scrollToBottom";
4197 else if (selector == @selector(setAllowsNavigationAction:))
4198 return @"setAllowsNavigationAction";
4199 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4200 return @"setButtonImage";
4201 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4202 return @"setButtonTitle";
4203 else if (selector == @selector(setHidesBackButton:))
4204 return @"setHidesBackButton";
4205 else if (selector == @selector(setHidesNavigationBar:))
4206 return @"setHidesNavigationBar";
4207 else if (selector == @selector(setNavigationBarStyle:))
4208 return @"setNavigationBarStyle";
4209 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4210 return @"setNavigationBarTintColor";
4211 else if (selector == @selector(setToken:))
4213 else if (selector == @selector(setViewportWidth:))
4214 return @"setViewportWidth";
4215 else if (selector == @selector(statfs:))
4217 else if (selector == @selector(supports:))
4223 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4224 return [self webScriptNameForSelector:selector] == nil;
4227 - (BOOL) supports:(NSString *)feature {
4228 return [feature isEqualToString:@"window.open"];
4231 - (void) divert:(NSString *)from :(NSString *)to {
4232 [CYBrowserController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4235 - (NSNumber *) getKernelNumber:(NSString *)name {
4236 const char *string([name UTF8String]);
4239 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4240 return (id) [NSNull null];
4242 if (size != sizeof(int))
4243 return (id) [NSNull null];
4246 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4247 return (id) [NSNull null];
4249 return [NSNumber numberWithInt:value];
4252 - (NSString *) getKernelString:(NSString *)name {
4253 const char *string([name UTF8String]);
4256 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4257 return (id) [NSNull null];
4259 char value[size + 1];
4260 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4261 return (id) [NSNull null];
4263 // XXX: just in case you request something ludicrous
4266 return [NSString stringWithCString:value];
4269 - (id) getSessionValue:(NSString *)key {
4270 @synchronized (SessionData_) {
4271 return [SessionData_ objectForKey:key];
4274 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4275 @synchronized (SessionData_) {
4276 if (value == (id) [WebUndefined undefined])
4277 [SessionData_ removeObjectForKey:key];
4279 [SessionData_ setObject:value forKey:key];
4282 - (void) addBridgedHost:(NSString *)host {
4283 @synchronized (HostConfig_) {
4284 [BridgedHosts_ addObject:host];
4287 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4288 @synchronized (HostConfig_) {
4289 if (scheme != (id) [WebUndefined undefined])
4290 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4292 [PipelinedHosts_ addObject:host];
4295 - (void) popViewController:(NSNumber *)value {
4296 if (value == (id) [WebUndefined undefined])
4297 value = [NSNumber numberWithBool:YES];
4298 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4301 - (void) addTrivialSource:(NSString *)href {
4302 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4305 - (void) refreshSources {
4306 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4309 - (NSArray *) getAllSources {
4310 return [[Database sharedInstance] sources];
4313 - (NSArray *) getInstalledPackages {
4314 Database *database([Database sharedInstance]);
4315 @synchronized (database) {
4316 NSArray *packages([database packages]);
4317 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4318 for (Package *package in packages)
4319 if (![package uninstalled])
4320 [installed addObject:package];
4324 - (Package *) getPackageById:(NSString *)id {
4325 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4329 return (Package *) [NSNull null];
4332 - (NSArray *) statfs:(NSString *)path {
4335 if (path == nil || statfs([path UTF8String], &stat) == -1)
4338 return [NSArray arrayWithObjects:
4339 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4340 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4341 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4345 - (NSNumber *) du:(NSString *)path {
4346 NSNumber *value(nil);
4349 _assert(pipe(fds) != -1);
4351 pid_t pid(ExecFork());
4353 _assert(dup2(fds[1], 1) != -1);
4354 _assert(close(fds[0]) != -1);
4355 _assert(close(fds[1]) != -1);
4356 /* XXX: this should probably not use du */
4357 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
4362 _assert(close(fds[1]) != -1);
4364 if (FILE *du = fdopen(fds[0], "r")) {
4366 while (fgets(line, sizeof(line), du) != NULL) {
4367 size_t length(strlen(line));
4368 while (length != 0 && line[length - 1] == '\n')
4369 line[--length] = '\0';
4370 if (char *tab = strchr(line, '\t')) {
4372 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
4377 } else _assert(close(fds[0]));
4381 if (waitpid(pid, &status, 0) == -1)
4384 else _assert(false);
4390 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4393 - (void) installPackages:(NSArray *)packages {
4394 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4397 - (NSString *) substitutePackageNames:(NSString *)message {
4398 NSMutableArray *words([[message componentsSeparatedByString:@" "] mutableCopy]);
4399 for (size_t i(0), e([words count]); i != e; ++i) {
4400 NSString *word([words objectAtIndex:i]);
4401 if (Package *package = [[Database sharedInstance] packageWithName:word])
4402 [words replaceObjectAtIndex:i withObject:[package name]];
4405 return [words componentsJoinedByString:@" "];
4408 - (void) removeButton {
4409 [indirect_ removeButton];
4412 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4413 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4416 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4417 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4420 - (void) setAllowsNavigationAction:(NSString *)value {
4421 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4424 - (void) setHidesBackButton:(NSString *)value {
4425 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4428 - (void) setHidesNavigationBar:(NSString *)value {
4429 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4432 - (void) setNavigationBarStyle:(NSString *)value {
4433 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4436 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4437 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4438 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4439 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4442 - (void) _setToken:(NSString *)token {
4446 [Metadata_ removeObjectForKey:@"Token"];
4448 [Metadata_ setObject:Token_ forKey:@"Token"];
4453 - (void) setToken:(NSString *)token {
4454 [self performSelectorOnMainThread:@selector(_setToken:) withObject:token waitUntilDone:NO];
4457 - (void) scrollToBottom:(NSNumber *)animated {
4458 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4461 - (void) setViewportWidth:(float)width {
4462 [indirect_ setViewportWidthOnMainThread:width];
4465 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4466 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4467 unsigned count([arguments count]);
4469 for (unsigned i(0); i != count; ++i)
4470 values[i] = [arguments objectAtIndex:i];
4471 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4474 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4475 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4477 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4479 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4485 /* @ Loading... Indicator {{{ */
4486 @interface CYLoadingIndicator : UIView {
4487 _H<UIActivityIndicatorView> spinner_;
4489 _H<UIView> container_;
4492 @property (readonly, nonatomic) UILabel *label;
4493 @property (readonly, nonatomic) UIActivityIndicatorView *activityIndicatorView;
4497 @implementation CYLoadingIndicator
4499 - (id) initWithFrame:(CGRect)frame {
4500 if ((self = [super initWithFrame:frame]) != nil) {
4501 container_ = [[[UIView alloc] init] autorelease];
4502 [container_ setAutoresizingMask:UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin];
4504 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray] autorelease];
4505 [spinner_ startAnimating];
4506 [container_ addSubview:spinner_];
4508 label_ = [[[UILabel alloc] init] autorelease];
4509 [label_ setFont:[UIFont boldSystemFontOfSize:15.0f]];
4510 [label_ setBackgroundColor:[UIColor clearColor]];
4511 [label_ setTextColor:[UIColor blackColor]];
4512 [label_ setShadowColor:[UIColor whiteColor]];
4513 [label_ setShadowOffset:CGSizeMake(0, 1)];
4514 [label_ setText:[NSString stringWithFormat:Elision_, UCLocalize("LOADING"), nil]];
4515 [container_ addSubview:label_];
4517 CGSize viewsize = frame.size;
4518 CGSize spinnersize = [spinner_ bounds].size;
4519 CGSize textsize = [[label_ text] sizeWithFont:[label_ font]];
4520 float bothwidth = spinnersize.width + textsize.width + 5.0f;
4522 CGRect containrect = {
4523 CGPointMake(floorf((viewsize.width / 2) - (bothwidth / 2)), floorf((viewsize.height / 2) - (spinnersize.height / 2))),
4524 CGSizeMake(bothwidth, spinnersize.height)
4527 CGPointMake(spinnersize.width + 5.0f, floorf((spinnersize.height / 2) - (textsize.height / 2))),
4535 [container_ setFrame:containrect];
4536 [spinner_ setFrame:spinrect];
4537 [label_ setFrame:textrect];
4538 [self addSubview:container_];
4542 - (UILabel *) label {
4546 - (UIActivityIndicatorView *) activityIndicatorView {
4552 /* Emulated Loading Controller {{{ */
4553 @interface CYEmulatedLoadingController : CYViewController {
4554 _transient Database *database_;
4555 _H<CYLoadingIndicator> indicator_;
4556 _H<UITabBar> tabbar_;
4557 _H<UINavigationBar> navbar_;
4562 @implementation CYEmulatedLoadingController
4564 - (id) initWithDatabase:(Database *)database {
4565 if ((self = [super init]) != nil) {
4566 database_ = database;
4571 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
4573 UITableView *table([[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease]);
4574 [table setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4575 [[self view] addSubview:table];
4577 indicator_ = [[[CYLoadingIndicator alloc] initWithFrame:[[self view] bounds]] autorelease];
4578 [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4579 [[self view] addSubview:indicator_];
4581 tabbar_ = [[[UITabBar alloc] initWithFrame:CGRectMake(0, 0, 0, 49.0f)] autorelease];
4582 [tabbar_ setFrame:CGRectMake(0.0f, [[self view] bounds].size.height - [tabbar_ bounds].size.height, [[self view] bounds].size.width, [tabbar_ bounds].size.height)];
4583 [tabbar_ setAutoresizingMask:UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleWidth];
4584 [[self view] addSubview:tabbar_];
4586 navbar_ = [[[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 0, 44.0f)] autorelease];
4587 [navbar_ setFrame:CGRectMake(0.0f, 0.0f, [[self view] bounds].size.width, [navbar_ bounds].size.height)];
4588 [navbar_ setAutoresizingMask:UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleWidth];
4589 [[self view] addSubview:navbar_];
4592 - (void) releaseSubviews {
4601 /* Cydia Browser Controller {{{ */
4602 @implementation CYBrowserController
4609 - (NSURL *) navigationURL {
4610 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4613 + (void) initialize {
4614 Diversions_ = [[NSMutableSet alloc] initWithCapacity:0];
4617 + (void) addDiversion:(Diversion *)diversion {
4618 [Diversions_ addObject:diversion];
4621 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4622 [super webView:view didClearWindowObject:window forFrame:frame];
4624 WebDataSource *source([frame dataSource]);
4625 NSURLResponse *response([source response]);
4626 NSURL *url([response URL]);
4627 NSString *scheme([[url scheme] lowercaseString]);
4629 bool bridged(false);
4631 @synchronized (HostConfig_) {
4632 if ([scheme isEqualToString:@"file"])
4634 else if ([scheme isEqualToString:@"https"])
4635 if ([BridgedHosts_ containsObject:[url host]])
4640 [window setValue:cydia_ forKey:@"cydia"];
4643 - (NSURL *) URLWithURL:(NSURL *)url {
4644 return [Diversion divertURL:url];
4647 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4648 NSMutableURLRequest *copy([[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source] mutableCopy]);
4650 if (System_ != NULL)
4651 [copy setValue:System_ forHTTPHeaderField:@"X-System"];
4652 if (Machine_ != NULL)
4653 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4655 [copy setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
4660 - (void) setDelegate:(id)delegate {
4661 [super setDelegate:delegate];
4662 [cydia_ setDelegate:delegate];
4666 if ((self = [super initWithWidth:0 ofClass:[CYBrowserController class]]) != nil) {
4667 cydia_ = [[CydiaObject alloc] initWithDelegate:indirect_];
4669 WebView *webview([[webview_ _documentView] webView]);
4671 NSString *application([NSString stringWithFormat:@"Cydia/%@", @ Cydia_]);
4674 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
4676 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
4677 if (Product_ != nil)
4678 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
4680 [webview setApplicationNameForUserAgent:application];
4688 @interface NSObject (CydiaScript)
4689 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4692 @implementation NSObject (CydiaScript)
4694 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4700 @implementation NSArray (CydiaScript)
4702 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4703 WebScriptObject *object([context evaluateWebScript:@"[]"]);
4704 for (size_t i(0), e([self count]); i != e; ++i)
4705 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
4711 @implementation NSDictionary (CydiaScript)
4713 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4714 WebScriptObject *object([context evaluateWebScript:@"({})"]);
4716 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
4723 /* Confirmation Controller {{{ */
4724 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
4725 if (!iterator.end())
4726 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
4727 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
4729 pkgCache::PkgIterator package(dep.TargetPkg());
4732 if (strcmp(package.Name(), "mobilesubstrate") == 0)
4739 @protocol ConfirmationControllerDelegate
4740 - (void) cancelAndClear:(bool)clear;
4741 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
4745 @interface ConfirmationController : CYBrowserController {
4746 _transient Database *database_;
4748 UIAlertView *essential_;
4750 NSDictionary *changes_;
4751 NSMutableArray *issues_;
4752 NSDictionary *sizes_;
4757 - (id) initWithDatabase:(Database *)database;
4761 @implementation ConfirmationController
4768 if (essential_ != nil)
4769 [essential_ release];
4776 RestartSubstrate_ = true;
4777 [delegate_ confirmWithNavigationController:[self navigationController]];
4780 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4781 NSString *context([alert context]);
4783 if ([context isEqualToString:@"remove"]) {
4784 if (button == [alert cancelButtonIndex])
4785 [self dismissModalViewControllerAnimated:YES];
4786 else if (button == [alert firstOtherButtonIndex]) {
4790 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4791 } else if ([context isEqualToString:@"unable"]) {
4792 [self dismissModalViewControllerAnimated:YES];
4793 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4795 [super alertView:alert clickedButtonAtIndex:button];
4799 - (void) _doContinue {
4800 [self dismissModalViewControllerAnimated:YES];
4801 [delegate_ cancelAndClear:NO];
4804 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4805 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
4809 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4810 [super webView:view didClearWindowObject:window forFrame:frame];
4812 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
4813 changes_, @"changes",
4817 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
4820 - (id) initWithDatabase:(Database *)database {
4821 if ((self = [super init]) != nil) {
4822 database_ = database;
4824 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
4825 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
4826 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
4827 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
4828 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
4832 pkgCacheFile &cache([database_ cache]);
4833 NSArray *packages([database_ packages]);
4834 pkgDepCache::Policy *policy([database_ policy]);
4836 issues_ = [[NSMutableArray arrayWithCapacity:4] retain];
4838 for (Package *package in packages) {
4839 pkgCache::PkgIterator iterator([package iterator]);
4840 NSString *name([package id]);
4842 if ([package broken]) {
4843 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
4845 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4847 reasons, @"reasons",
4850 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
4854 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
4855 pkgCache::DepIterator start;
4856 pkgCache::DepIterator end;
4857 dep.GlobOr(start, end); // ++dep
4859 if (!cache->IsImportantDep(end))
4861 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
4864 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
4866 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4867 [NSString stringWithUTF8String:start.DepType()], @"relationship",
4868 clauses, @"clauses",
4872 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
4874 pkgCache::PkgIterator target(start.TargetPkg());
4875 if (target->ProvidesList != 0)
4876 reason = @"missing";
4878 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
4880 reason = @"installed";
4881 installed = [NSString stringWithUTF8String:ver.VerStr()];
4882 } else if (!cache[target].CandidateVerIter(cache).end())
4883 reason = @"uninstalled";
4884 else if (target->ProvidesList == 0)
4885 reason = @"uninstallable";
4887 reason = @"virtual";
4890 NSDictionary *version(start.TargetVer() == 0 ? [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
4891 [NSString stringWithUTF8String:start.CompType()], @"operator",
4892 [NSString stringWithUTF8String:start.TargetVer()], @"value",
4895 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4896 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
4897 version, @"version",
4899 installed, @"installed",
4902 // yes, seriously. (wtf?)
4910 pkgDepCache::StateCache &state(cache[iterator]);
4912 static Pcre special_r("^(firmware$|gsc\\.|cy\\+)");
4914 if (state.NewInstall())
4915 [installs addObject:name];
4916 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4917 [reinstalls addObject:name];
4918 else if (state.Upgrade())
4919 [upgrades addObject:name];
4920 else if (state.Downgrade())
4921 [downgrades addObject:name];
4922 else if (!state.Delete())
4924 else if (special_r(name))
4925 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4926 [NSNull null], @"package",
4927 [NSArray arrayWithObjects:
4928 [NSDictionary dictionaryWithObjectsAndKeys:
4929 @"Conflicts", @"relationship",
4930 [NSArray arrayWithObjects:
4931 [NSDictionary dictionaryWithObjectsAndKeys:
4933 [NSNull null], @"version",
4934 @"installed", @"reason",
4941 if ([package essential])
4943 [removes addObject:name];
4946 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4947 substrate_ |= DepSubstrate(iterator.CurrentVer());
4952 else if (Advanced_) {
4953 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4955 essential_ = [[UIAlertView alloc]
4956 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4957 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4959 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4961 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
4965 [essential_ setContext:@"remove"];
4967 essential_ = [[UIAlertView alloc]
4968 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4969 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4971 cancelButtonTitle:UCLocalize("OKAY")
4972 otherButtonTitles:nil
4975 [essential_ setContext:@"unable"];
4978 changes_ = [[NSDictionary alloc] initWithObjectsAndKeys:
4979 installs, @"installs",
4980 reinstalls, @"reinstalls",
4981 upgrades, @"upgrades",
4982 downgrades, @"downgrades",
4983 removes, @"removes",
4986 sizes_ = [[NSDictionary alloc] initWithObjectsAndKeys:
4987 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
4988 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
4991 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
4993 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
4994 initWithTitle:UCLocalize("CANCEL")
4995 style:UIBarButtonItemStylePlain
4997 action:@selector(cancelButtonClicked)
5003 - (void) applyRightButton {
5004 if ([issues_ count] == 0 && ![self isLoading])
5005 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
5006 initWithTitle:UCLocalize("CONFIRM")
5007 style:UIBarButtonItemStyleDone
5009 action:@selector(confirmButtonClicked)
5012 [[self navigationItem] setRightBarButtonItem:nil];
5016 - (void) cancelButtonClicked {
5017 [self dismissModalViewControllerAnimated:YES];
5018 [delegate_ cancelAndClear:YES];
5022 - (void) confirmButtonClicked {
5023 if (essential_ != nil)
5033 /* Progress Data {{{ */
5034 @interface CydiaProgressData : NSObject {
5035 _transient id delegate_;
5044 _H<NSMutableArray> events_;
5045 _H<NSString> title_;
5047 _H<NSString> status_;
5048 _H<NSString> finish_;
5053 @implementation CydiaProgressData
5055 + (NSArray *) _attributeKeys {
5056 return [NSArray arrayWithObjects:
5068 - (NSArray *) attributeKeys {
5069 return [[self class] _attributeKeys];
5072 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
5073 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
5077 if ((self = [super init]) != nil) {
5078 events_ = [NSMutableArray arrayWithCapacity:32];
5082 - (void) setDelegate:(id)delegate {
5083 delegate_ = delegate;
5086 - (void) setPercent:(float)value {
5090 - (NSNumber *) percent {
5091 return [NSNumber numberWithFloat:percent_];
5094 - (void) setCurrent:(float)value {
5098 - (NSNumber *) current {
5099 return [NSNumber numberWithFloat:current_];
5102 - (void) setTotal:(float)value {
5106 - (NSNumber *) total {
5107 return [NSNumber numberWithFloat:total_];
5110 - (void) setSpeed:(float)value {
5114 - (NSNumber *) speed {
5115 return [NSNumber numberWithFloat:speed_];
5118 - (NSArray *) events {
5122 - (void) removeAllEvents {
5123 [events_ removeAllObjects];
5126 - (void) addEvent:(CydiaProgressEvent *)event {
5127 [events_ addObject:event];
5130 - (void) setTitle:(NSString *)text {
5134 - (NSString *) title {
5138 - (void) setFinish:(NSString *)text {
5142 - (NSString *) finish {
5143 return (id) finish_ ?: [NSNull null];
5146 - (void) setRunning:(bool)running {
5150 - (NSNumber *) running {
5151 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5156 /* Progress Controller {{{ */
5157 @interface ProgressController : CYBrowserController <
5160 _transient Database *database_;
5161 _H<CydiaProgressData> progress_;
5165 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5167 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5169 - (void) setTitle:(NSString *)title;
5170 - (void) setCancellable:(bool)cancellable;
5174 @implementation ProgressController
5177 [database_ setProgressDelegate:nil];
5178 [progress_ setDelegate:nil];
5182 - (void) updateCancel {
5183 [[self navigationItem] setLeftBarButtonItem:(cancel_ == 1 ? [[[UIBarButtonItem alloc]
5184 initWithTitle:UCLocalize("CANCEL")
5185 style:UIBarButtonItemStylePlain
5187 action:@selector(cancel)
5188 ] autorelease] : nil)];
5191 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5192 if ((self = [super init]) != nil) {
5193 database_ = database;
5194 delegate_ = delegate;
5196 [database_ setProgressDelegate:self];
5198 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5199 [progress_ setDelegate:self];
5201 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5203 [scroller_ setBackgroundColor:[UIColor blackColor]];
5205 [[self navigationItem] setHidesBackButton:YES];
5207 [self updateCancel];
5211 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5212 [super webView:view didClearWindowObject:window forFrame:frame];
5213 [window setValue:progress_ forKey:@"cydiaProgress"];
5216 - (void) updateProgress {
5217 [self dispatchEvent:@"CydiaProgressUpdate"];
5220 - (void) viewWillAppear:(BOOL)animated {
5221 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5222 [super viewWillAppear:animated];
5226 UpdateExternalStatus(0);
5233 [delegate_ terminateWithSuccess];
5234 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5235 [delegate_ suspendWithAnimation:YES];
5237 [delegate_ suspend];*/
5249 system("/usr/bin/sbreload");
5255 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5256 SBReboot(SBSSpringBoardServerPort());
5258 reboot2(RB_AUTOBOOT);
5265 - (void) setTitle:(NSString *)title {
5266 [progress_ setTitle:title];
5267 [self updateProgress];
5270 - (UIBarButtonItem *) rightButton {
5271 return [[progress_ running] boolValue] ? nil : [[[UIBarButtonItem alloc]
5272 initWithTitle:UCLocalize("CLOSE")
5273 style:UIBarButtonItemStylePlain
5275 action:@selector(close)
5279 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5280 UpdateExternalStatus(1);
5282 [progress_ setRunning:true];
5283 [self setTitle:title];
5284 // implicit updateProgress
5286 SHA1SumValue notifyconf; {
5288 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5291 MMap mmap(file, MMap::ReadOnly);
5293 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5294 notifyconf = sha1.Result();
5298 SHA1SumValue springlist; {
5300 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5303 MMap mmap(file, MMap::ReadOnly);
5305 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5306 springlist = sha1.Result();
5310 if (invocation != nil) {
5311 [invocation yieldToSelector:@selector(invoke)];
5312 [self setTitle:@"COMPLETE"];
5317 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5320 MMap mmap(file, MMap::ReadOnly);
5322 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5323 if (!(notifyconf == sha1.Result()))
5330 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5333 MMap mmap(file, MMap::ReadOnly);
5335 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5336 if (!(springlist == sha1.Result()))
5342 if (RestartSubstrate_)
5346 RestartSubstrate_ = false;
5349 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5350 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5351 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5352 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5353 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5357 system("su -c /usr/bin/uicache mobile");
5360 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5362 [progress_ setRunning:false];
5363 [self updateProgress];
5365 [self applyRightButton];
5368 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5369 [progress_ addEvent:event];
5370 [self updateProgress];
5373 - (bool) isProgressCancelled {
5374 return cancel_ == 2;
5379 [self updateCancel];
5382 - (void) setCancellable:(bool)cancellable {
5383 unsigned cancel(cancel_);
5387 else if (cancel_ == 0)
5390 if (cancel != cancel_)
5391 [self updateCancel];
5394 - (void) setProgressCancellable:(NSNumber *)cancellable {
5395 [self setCancellable:[cancellable boolValue]];
5398 - (void) setProgressPercent:(NSNumber *)percent {
5399 [progress_ setPercent:[percent floatValue]];
5400 [self updateProgress];
5403 - (void) setProgressStatus:(NSDictionary *)status {
5404 if (status == nil) {
5405 [progress_ setCurrent:0];
5406 [progress_ setTotal:0];
5407 [progress_ setSpeed:0];
5409 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5411 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5412 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5413 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5416 [self updateProgress];
5422 /* Cell Content View {{{ */
5423 @protocol ContentDelegate
5424 - (void) drawContentRect:(CGRect)rect;
5427 @interface ContentView : UIView {
5428 _transient id<ContentDelegate> delegate_;
5433 @implementation ContentView
5435 - (id) initWithFrame:(CGRect)frame {
5436 if ((self = [super initWithFrame:frame]) != nil) {
5437 [self setNeedsDisplayOnBoundsChange:YES];
5441 - (void) setDelegate:(id<ContentDelegate>)delegate {
5442 delegate_ = delegate;
5445 - (void) drawRect:(CGRect)rect {
5446 [super drawRect:rect];
5447 [delegate_ drawContentRect:rect];
5452 /* Cydia TableView Cell {{{ */
5453 @interface CYTableViewCell : UITableViewCell {
5454 ContentView *content_;
5460 @implementation CYTableViewCell
5467 - (void) _updateHighlightColorsForView:(id)view highlighted:(BOOL)highlighted {
5468 //NSLog(@"_updateHighlightColorsForView:%@ highlighted:%s [content_=%@]", view, highlighted ? "YES" : "NO", content_);
5470 if (view == content_) {
5471 //NSLog(@"_updateHighlightColorsForView:content_ highlighted:%s", highlighted ? "YES" : "NO", content_);
5472 highlighted_ = highlighted;
5475 [super _updateHighlightColorsForView:view highlighted:highlighted];
5478 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
5479 //NSLog(@"setSelected:%s animated:%s", selected ? "YES" : "NO", animated ? "YES" : "NO");
5480 highlighted_ = selected;
5482 [super setSelected:selected animated:animated];
5483 [content_ setNeedsDisplay];
5489 /* Package Cell {{{ */
5490 @interface PackageCell : CYTableViewCell <
5495 NSString *description_;
5503 - (PackageCell *) init;
5504 - (void) setPackage:(Package *)package;
5506 - (void) drawContentRect:(CGRect)rect;
5510 @implementation PackageCell
5512 - (void) clearPackage {
5523 if (description_ != nil) {
5524 [description_ release];
5528 if (source_ != nil) {
5533 if (badge_ != nil) {
5538 if (placard_ != nil) {
5548 [self clearPackage];
5552 - (PackageCell *) init {
5553 CGRect frame(CGRectMake(0, 0, 320, 74));
5554 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5555 UIView *content([self contentView]);
5556 CGRect bounds([content bounds]);
5558 content_ = [[ContentView alloc] initWithFrame:bounds];
5559 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5560 [content addSubview:content_];
5562 [content_ setDelegate:self];
5563 [content_ setOpaque:YES];
5567 - (NSString *) accessibilityLabel {
5568 return [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), name_, description_];
5571 - (void) setPackage:(Package *)package {
5572 [self clearPackage];
5575 Source *source = [package source];
5577 icon_ = [[package icon] retain];
5578 name_ = [[package name] retain];
5581 description_ = [package longDescription];
5582 if (description_ == nil)
5583 description_ = [package shortDescription];
5584 if (description_ != nil)
5585 description_ = [description_ retain];
5587 commercial_ = [package isCommercial];
5589 package_ = [package retain];
5591 NSString *label = nil;
5592 bool trusted = false;
5594 if (source != nil) {
5595 label = [source label];
5596 trusted = [source trusted];
5597 } else if ([[package id] isEqualToString:@"firmware"])
5598 label = UCLocalize("APPLE");
5600 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5602 NSString *from(label);
5604 NSString *section = [package simpleSection];
5605 if (section != nil && ![section isEqualToString:label]) {
5606 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5607 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5610 from = [NSString stringWithFormat:UCLocalize("FROM"), from];
5611 source_ = [from retain];
5613 if (NSString *purpose = [package primaryPurpose])
5614 if ((badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]) != nil)
5615 badge_ = [badge_ retain];
5620 if (NSString *mode = [package_ mode]) {
5621 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5622 color = RemovingColor_;
5623 //placard = @"removing";
5625 color = InstallingColor_;
5626 //placard = @"installing";
5629 // XXX: the removing/installing placards are not @2x
5632 color = [UIColor whiteColor];
5634 if ([package installed] != nil)
5635 placard = @"installed";
5640 [content_ setBackgroundColor:color];
5643 if ((placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]]) != nil)
5644 placard_ = [placard_ retain];
5646 [self setNeedsDisplay];
5647 [content_ setNeedsDisplay];
5650 - (void) drawContentRect:(CGRect)rect {
5651 bool highlighted(highlighted_);
5652 float width([self bounds].size.width);
5655 CGContextRef context(UIGraphicsGetCurrentContext());
5656 [([[self selectedBackgroundView] superview] != nil ? [UIColor clearColor] : [self backgroundColor]) set];
5657 CGContextFillRect(context, rect);
5662 rect.size = [icon_ size];
5664 rect.size.width /= 2;
5665 rect.size.height /= 2;
5667 rect.origin.x = 25 - rect.size.width / 2;
5668 rect.origin.y = 25 - rect.size.height / 2;
5670 [icon_ drawInRect:rect];
5673 if (badge_ != nil) {
5675 rect.size = [badge_ size];
5677 rect.size.width /= 2;
5678 rect.size.height /= 2;
5680 rect.origin.x = 36 - rect.size.width / 2;
5681 rect.origin.y = 36 - rect.size.height / 2;
5683 [badge_ drawInRect:rect];
5690 UISetColor(commercial_ ? Purple_ : Black_);
5691 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5692 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5695 UISetColor(commercial_ ? Purplish_ : Gray_);
5696 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5698 if (placard_ != nil)
5699 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5704 /* Section Cell {{{ */
5705 @interface SectionCell : CYTableViewCell <
5717 - (void) setSection:(Section *)section editing:(BOOL)editing;
5721 @implementation SectionCell
5723 - (void) clearSection {
5724 if (basic_ != nil) {
5729 if (section_ != nil) {
5739 if (count_ != nil) {
5746 [self clearSection];
5752 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5753 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5754 icon_ = [[UIImage applicationImageNamed:@"folder.png"] retain];
5755 switch_ = [[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)];
5756 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5758 UIView *content([self contentView]);
5759 CGRect bounds([content bounds]);
5761 content_ = [[ContentView alloc] initWithFrame:bounds];
5762 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5763 [content addSubview:content_];
5764 [content_ setBackgroundColor:[UIColor whiteColor]];
5766 [content_ setDelegate:self];
5770 - (void) onSwitch:(id)sender {
5771 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
5772 if (metadata == nil) {
5773 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
5774 [Sections_ setObject:metadata forKey:basic_];
5777 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
5781 - (void) setSection:(Section *)section editing:(BOOL)editing {
5782 if (editing != editing_) {
5784 [switch_ removeFromSuperview];
5786 [self addSubview:switch_];
5790 [self clearSection];
5792 if (section == nil) {
5793 name_ = [UCLocalize("ALL_PACKAGES") retain];
5796 basic_ = [section name];
5798 basic_ = [basic_ retain];
5800 section_ = [section localized];
5801 if (section_ != nil)
5802 section_ = [section_ retain];
5804 name_ = [(section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : section_) retain];
5805 count_ = [[NSString stringWithFormat:@"%d", [section count]] retain];
5808 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
5811 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
5812 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
5814 [content_ setNeedsDisplay];
5817 - (void) setFrame:(CGRect)frame {
5818 [super setFrame:frame];
5820 CGRect rect([switch_ frame]);
5821 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
5824 - (NSString *) accessibilityLabel {
5828 - (void) drawContentRect:(CGRect)rect {
5829 bool highlighted(highlighted_ && !editing_);
5831 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
5836 float width(rect.size.width);
5842 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5844 CGSize size = [count_ sizeWithFont:Font14_];
5848 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
5854 /* File Table {{{ */
5855 @interface FileTable : CYViewController <
5856 UITableViewDataSource,
5859 _transient Database *database_;
5862 NSMutableArray *files_;
5866 - (id) initWithDatabase:(Database *)database;
5867 - (void) setPackage:(Package *)package;
5871 @implementation FileTable
5874 [self releaseSubviews];
5883 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5884 return files_ == nil ? 0 : [files_ count];
5887 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5891 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5892 static NSString *reuseIdentifier = @"Cell";
5894 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
5896 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
5897 [cell setFont:[UIFont systemFontOfSize:16]];
5899 [cell setText:[files_ objectAtIndex:indexPath.row]];
5900 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
5905 - (NSURL *) navigationURL {
5906 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
5910 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
5912 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
5913 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5914 [list_ setRowHeight:24.0f];
5915 [list_ setDataSource:self];
5916 [list_ setDelegate:self];
5917 [[self view] addSubview:list_];
5920 - (void) viewDidLoad {
5921 [super viewDidLoad];
5923 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
5926 - (void) releaseSubviews {
5931 - (id) initWithDatabase:(Database *)database {
5932 if ((self = [super init]) != nil) {
5933 database_ = database;
5935 files_ = [[NSMutableArray arrayWithCapacity:32] retain];
5939 - (void) setPackage:(Package *)package {
5940 if (package_ != nil) {
5941 [package_ autorelease];
5950 [files_ removeAllObjects];
5952 if (package != nil) {
5953 package_ = [package retain];
5954 name_ = [[package id] retain];
5956 if (NSArray *files = [package files])
5957 [files_ addObjectsFromArray:files];
5959 if ([files_ count] != 0) {
5960 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5961 [files_ removeObjectAtIndex:0];
5962 [files_ sortUsingSelector:@selector(compareByPath:)];
5964 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5965 [stack addObject:@"/"];
5967 for (int i(0), e([files_ count]); i != e; ++i) {
5968 NSString *file = [files_ objectAtIndex:i];
5969 while (![file hasPrefix:[stack lastObject]])
5970 [stack removeLastObject];
5971 NSString *directory = [stack lastObject];
5972 [stack addObject:[file stringByAppendingString:@"/"]];
5973 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
5974 ([stack count] - 2) * 3, "",
5975 [file substringFromIndex:[directory length]]
5984 - (void) reloadData {
5987 [self setPackage:[database_ packageWithName:name_]];
5992 /* Package Controller {{{ */
5993 @interface CYPackageController : CYBrowserController <
5994 UIActionSheetDelegate
5996 _transient Database *database_;
5997 _H<Package> package_;
6000 _H<NSMutableArray> buttons_;
6001 _H<UIBarButtonItem> button_;
6004 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name;
6008 @implementation CYPackageController
6010 - (NSURL *) navigationURL {
6011 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
6014 /* XXX: this is not safe at all... localization of /fail/ */
6015 - (void) _clickButtonWithName:(NSString *)name {
6016 if ([name isEqualToString:UCLocalize("CLEAR")])
6017 [delegate_ clearPackage:package_];
6018 else if ([name isEqualToString:UCLocalize("INSTALL")])
6019 [delegate_ installPackage:package_];
6020 else if ([name isEqualToString:UCLocalize("REINSTALL")])
6021 [delegate_ installPackage:package_];
6022 else if ([name isEqualToString:UCLocalize("REMOVE")])
6023 [delegate_ removePackage:package_];
6024 else if ([name isEqualToString:UCLocalize("UPGRADE")])
6025 [delegate_ installPackage:package_];
6026 else _assert(false);
6029 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
6030 NSString *context([sheet context]);
6032 if ([context isEqualToString:@"modify"]) {
6033 if (button != [sheet cancelButtonIndex]) {
6034 NSString *buttonName = [buttons_ objectAtIndex:button];
6035 [self _clickButtonWithName:buttonName];
6038 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
6042 - (bool) _allowJavaScriptPanel {
6047 - (void) _customButtonClicked {
6048 int count([buttons_ count]);
6053 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
6055 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
6056 [buttons addObjectsFromArray:buttons_];
6058 UIActionSheet *sheet = [[[UIActionSheet alloc]
6061 cancelButtonTitle:nil
6062 destructiveButtonTitle:nil
6063 otherButtonTitles:nil
6066 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
6068 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
6069 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
6071 [sheet setContext:@"modify"];
6073 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
6077 // We don't want to allow non-commercial packages to do custom things to the install button,
6078 // so it must call customButtonClicked with a custom commercial_ == 1 fallthrough.
6079 - (void) customButtonClicked {
6081 [super customButtonClicked];
6083 [self _customButtonClicked];
6086 - (void) reloadButtonClicked {
6087 // Don't reload a commerical package by tapping the loading button,
6088 // but if it's not an Install button, we should forward it on.
6089 if (![package_ uninstalled])
6090 [self _customButtonClicked];
6093 - (void) applyLoadingTitle {
6094 // Don't show "Loading" as the title. Ever.
6097 - (UIBarButtonItem *) rightButton {
6102 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name {
6103 if ((self = [super init]) != nil) {
6104 database_ = database;
6105 buttons_ = [NSMutableArray arrayWithCapacity:4];
6106 name_ = [NSString stringWithString:name];
6107 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]]];
6111 - (void) reloadData {
6114 package_ = [database_ packageWithName:name_];
6116 [buttons_ removeAllObjects];
6118 if (package_ != nil) {
6119 [(Package *) package_ parse];
6121 commercial_ = [package_ isCommercial];
6123 if ([package_ mode] != nil)
6124 [buttons_ addObject:UCLocalize("CLEAR")];
6125 if ([package_ source] == nil);
6126 else if ([package_ upgradableAndEssential:NO])
6127 [buttons_ addObject:UCLocalize("UPGRADE")];
6128 else if ([package_ uninstalled])
6129 [buttons_ addObject:UCLocalize("INSTALL")];
6131 [buttons_ addObject:UCLocalize("REINSTALL")];
6132 if (![package_ uninstalled])
6133 [buttons_ addObject:UCLocalize("REMOVE")];
6137 switch ([buttons_ count]) {
6138 case 0: title = nil; break;
6139 case 1: title = [buttons_ objectAtIndex:0]; break;
6140 default: title = UCLocalize("MODIFY"); break;
6143 button_ = [[[UIBarButtonItem alloc]
6145 style:UIBarButtonItemStylePlain
6147 action:@selector(customButtonClicked)
6151 - (bool) isLoading {
6152 return commercial_ ? [super isLoading] : false;
6158 /* Package List Controller {{{ */
6159 @interface PackageListController : CYViewController <
6160 UITableViewDataSource,
6163 _transient Database *database_;
6165 NSMutableArray *packages_;
6166 NSMutableArray *sections_;
6168 NSMutableArray *index_;
6169 NSMutableDictionary *indices_;
6173 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6174 - (void) setDelegate:(id)delegate;
6175 - (void) resetCursor;
6179 @implementation PackageListController
6182 [packages_ release];
6183 [sections_ release];
6192 - (void) deselectWithAnimation:(BOOL)animated {
6193 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6196 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6197 CGRect base = [[self view] bounds];
6198 base.size.height -= bounds.size.height;
6199 base.origin = [list_ frame].origin;
6201 [UIView beginAnimations:nil context:NULL];
6202 [UIView setAnimationBeginsFromCurrentState:YES];
6203 [UIView setAnimationCurve:curve];
6204 [UIView setAnimationDuration:duration];
6205 [list_ setFrame:base];
6206 [UIView commitAnimations];
6209 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6210 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6213 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6214 [self resizeForKeyboardBounds:bounds duration:0];
6217 - (void) keyboardWillShow:(NSNotification *)notification {
6220 NSTimeInterval duration;
6221 UIViewAnimationCurve curve;
6222 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6223 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er];
6224 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&curve];
6225 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&duration];
6227 CGRect kbframe = CGRectMake(round(center.x - bounds.size.width / 2.0), round(center.y - bounds.size.height / 2.0), bounds.size.width, bounds.size.height);
6228 UIViewController *base = self;
6229 while ([base parentViewController] != nil)
6230 base = [base parentViewController];
6231 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6232 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6234 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6237 - (void) keyboardWillHide:(NSNotification *)notification {
6238 NSTimeInterval duration;
6239 UIViewAnimationCurve curve;
6240 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&curve];
6241 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&duration];
6243 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6246 - (void) viewWillAppear:(BOOL)animated {
6247 [super viewWillAppear:animated];
6249 [self resizeForKeyboardBounds:CGRectZero];
6250 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6251 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6254 - (void) viewWillDisappear:(BOOL)animated {
6255 [super viewWillDisappear:animated];
6257 [self resizeForKeyboardBounds:CGRectZero];
6258 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6259 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6262 - (void) viewDidAppear:(BOOL)animated {
6263 [super viewDidAppear:animated];
6264 [self deselectWithAnimation:animated];
6267 - (void) didSelectPackage:(Package *)package {
6268 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
6269 [view setDelegate:delegate_];
6270 [[self navigationController] pushViewController:view animated:YES];
6273 #if TryIndexedCollation
6274 + (BOOL) hasIndexedCollation {
6275 return NO; // XXX: objc_getClass("UILocalizedIndexedCollation") != nil;
6279 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6280 NSInteger count([sections_ count]);
6281 return count == 0 ? 1 : count;
6284 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6285 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6287 return [[sections_ objectAtIndex:section] name];
6290 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6291 if ([sections_ count] == 0)
6293 return [[sections_ objectAtIndex:section] count];
6296 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6297 @synchronized (database_) {
6298 if ([database_ era] != era_)
6301 Section *section([sections_ objectAtIndex:[path section]]);
6302 NSInteger row([path row]);
6303 Package *package([packages_ objectAtIndex:([section row] + row)]);
6304 return [[package retain] autorelease];
6307 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6308 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6310 cell = [[[PackageCell alloc] init] autorelease];
6311 [cell setPackage:[self packageAtIndexPath:path]];
6315 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6316 Package *package([self packageAtIndexPath:path]);
6317 package = [database_ packageWithName:[package id]];
6318 [self didSelectPackage:package];
6321 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6322 // XXX: is 20 the most optimal number here?
6323 return [packages_ count] > 20 ? index_ : nil;
6326 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6327 #if TryIndexedCollation
6328 if ([[self class] hasIndexedCollation]) {
6329 return [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionForSectionIndexTitleAtIndex:index];
6336 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6337 if ((self = [super init]) != nil) {
6338 database_ = database;
6339 title_ = [title copy];
6340 [[self navigationItem] setTitle:title_];
6342 #if TryIndexedCollation
6343 if ([[self class] hasIndexedCollation])
6344 index_ = [[[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionIndexTitles] retain]
6347 index_ = [[NSMutableArray alloc] initWithCapacity:32];
6349 indices_ = [[NSMutableDictionary alloc] initWithCapacity:32];
6351 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
6352 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
6354 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
6355 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6356 [list_ setRowHeight:73];
6357 [[self view] addSubview:list_];
6359 [list_ setDataSource:self];
6360 [list_ setDelegate:self];
6364 - (void) setDelegate:(id)delegate {
6365 delegate_ = delegate;
6368 - (bool) hasPackage:(Package *)package {
6372 - (void) reloadData {
6375 era_ = [database_ era];
6376 NSArray *packages = [database_ packages];
6378 [packages_ removeAllObjects];
6379 [sections_ removeAllObjects];
6381 _profile(PackageTable$reloadData$Filter)
6382 for (Package *package in packages)
6383 if ([self hasPackage:package])
6384 [packages_ addObject:package];
6387 [indices_ removeAllObjects];
6389 Section *section = nil;
6391 #if TryIndexedCollation
6392 if ([[self class] hasIndexedCollation]) {
6393 id collation = [objc_getClass("UILocalizedIndexedCollation") currentCollation];
6394 NSArray *titles = [collation sectionIndexTitles];
6397 _profile(PackageTable$reloadData$Section)
6398 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6402 _profile(PackageTable$reloadData$Section$Package)
6403 package = [packages_ objectAtIndex:offset];
6404 index = [collation sectionForObject:package collationStringSelector:@selector(name)];
6407 while (secidx < index) {
6410 _profile(PackageTable$reloadData$Section$Allocate)
6411 section = [[[Section alloc] initWithName:[titles objectAtIndex:secidx] row:offset localize:NO] autorelease];
6414 _profile(PackageTable$reloadData$Section$Add)
6415 [sections_ addObject:section];
6419 [section addToCount];
6425 [index_ removeAllObjects];
6427 _profile(PackageTable$reloadData$Section)
6428 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6432 _profile(PackageTable$reloadData$Section$Package)
6433 package = [packages_ objectAtIndex:offset];
6434 index = [package index];
6437 if (section == nil || [section index] != index) {
6438 _profile(PackageTable$reloadData$Section$Allocate)
6439 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
6442 [index_ addObject:[section name]];
6443 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
6445 _profile(PackageTable$reloadData$Section$Add)
6446 [sections_ addObject:section];
6450 [section addToCount];
6455 _profile(PackageTable$reloadData$List)
6460 - (void) resetCursor {
6461 [list_ scrollRectToVisible:CGRectMake(0, 0, 0, 0) animated:NO];
6466 /* Filtered Package List Controller {{{ */
6467 @interface FilteredPackageListController : PackageListController {
6473 - (void) setObject:(id)object;
6474 - (void) setObject:(id)object forFilter:(SEL)filter;
6476 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
6480 @implementation FilteredPackageListController
6488 - (void) setFilter:(SEL)filter {
6491 /* XXX: this is an unsafe optimization of doomy hell */
6492 Method method(class_getInstanceMethod([Package class], filter));
6493 _assert(method != NULL);
6494 imp_ = method_getImplementation(method);
6495 _assert(imp_ != NULL);
6498 - (void) setObject:(id)object {
6504 object_ = [object retain];
6507 - (void) setObject:(id)object forFilter:(SEL)filter {
6508 [self setFilter:filter];
6509 [self setObject:object];
6512 - (bool) hasPackage:(Package *)package {
6513 _profile(FilteredPackageTable$hasPackage)
6514 return [package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp_))(package, filter_, object_);
6518 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
6519 if ((self = [super initWithDatabase:database title:title]) != nil) {
6520 [self setFilter:filter];
6521 [self setObject:object];
6528 /* Home Controller {{{ */
6529 @interface HomeController : CYBrowserController {
6534 @implementation HomeController
6537 if ((self = [super init]) != nil) {
6538 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6542 - (NSURL *) navigationURL {
6543 return [NSURL URLWithString:@"cydia://home"];
6546 - (void) aboutButtonClicked {
6547 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6549 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6550 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6551 [alert setCancelButtonIndex:0];
6554 @"Copyright (C) 2008-2011\n"
6555 "Jay Freeman (saurik)\n"
6556 "saurik@saurik.com\n"
6557 "http://www.saurik.com/"
6563 - (void) viewDidLoad {
6564 [super viewDidLoad];
6566 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
6567 initWithTitle:UCLocalize("ABOUT")
6568 style:UIBarButtonItemStylePlain
6570 action:@selector(aboutButtonClicked)
6576 /* Manage Controller {{{ */
6577 @interface ManageController : CYBrowserController {
6580 - (void) queueStatusDidChange;
6584 @implementation ManageController
6587 if ((self = [super init]) != nil) {
6588 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/manage/", UI_]]];
6592 - (NSURL *) navigationURL {
6593 return [NSURL URLWithString:@"cydia://manage"];
6596 - (void) viewDidLoad {
6597 [super viewDidLoad];
6599 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
6600 initWithTitle:UCLocalize("SETTINGS")
6601 style:UIBarButtonItemStylePlain
6603 action:@selector(settingsButtonClicked)
6606 [self queueStatusDidChange];
6609 - (void) settingsButtonClicked {
6610 [delegate_ showSettings];
6614 - (void) queueButtonClicked {
6618 - (void) applyLoadingTitle {
6619 // Disable "Loading" title.
6622 - (void) applyRightButton {
6623 // Disable right button.
6627 - (void) queueStatusDidChange {
6629 if (!IsWildcat_ && Queuing_) {
6630 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
6631 initWithTitle:UCLocalize("QUEUE")
6632 style:UIBarButtonItemStyleDone
6634 action:@selector(queueButtonClicked)
6637 [[self navigationItem] setRightBarButtonItem:nil];
6642 - (bool) isLoading {
6643 // Never show as loading.
6650 /* Refresh Bar {{{ */
6651 @interface RefreshBar : UINavigationBar {
6652 UIProgressIndicator *indicator_;
6653 UITextLabel *prompt_;
6654 UIProgressBar *progress_;
6655 UINavigationButton *cancel_;
6660 @implementation RefreshBar
6663 [indicator_ release];
6665 [progress_ release];
6670 - (void) positionViews {
6671 CGRect frame = [cancel_ frame];
6672 frame.size = [cancel_ sizeThatFits:frame.size];
6673 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6674 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6675 [cancel_ setFrame:frame];
6677 CGSize prgsize = {75, 100};
6679 [self frame].size.width - prgsize.width - 10,
6680 ([self frame].size.height - prgsize.height) / 2
6682 [progress_ setFrame:prgrect];
6684 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6685 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6686 CGRect indrect = {{indoffset, indoffset}, indsize};
6687 [indicator_ setFrame:indrect];
6689 CGSize prmsize = {215, indsize.height + 4};
6691 indoffset * 2 + indsize.width,
6692 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6694 [prompt_ setFrame:prmrect];
6697 - (void) setFrame:(CGRect)frame {
6698 [super setFrame:frame];
6699 [self positionViews];
6702 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6703 if ((self = [super initWithFrame:frame]) != nil) {
6704 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6706 [self setBarStyle:UIBarStyleBlack];
6708 UIBarStyle barstyle([self _barStyle:NO]);
6709 bool ugly(barstyle == UIBarStyleDefault);
6711 UIProgressIndicatorStyle style = ugly ?
6712 UIProgressIndicatorStyleMediumBrown :
6713 UIProgressIndicatorStyleMediumWhite;
6715 indicator_ = [[UIProgressIndicator alloc] initWithFrame:CGRectZero];
6716 [indicator_ setStyle:style];
6717 [indicator_ startAnimation];
6718 [self addSubview:indicator_];
6720 prompt_ = [[UITextLabel alloc] initWithFrame:CGRectZero];
6721 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6722 [prompt_ setBackgroundColor:[UIColor clearColor]];
6723 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6724 [self addSubview:prompt_];
6726 progress_ = [[UIProgressBar alloc] initWithFrame:CGRectZero];
6727 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6728 [progress_ setStyle:0];
6729 [self addSubview:progress_];
6731 cancel_ = [[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted];
6732 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6733 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6734 [cancel_ setBarStyle:barstyle];
6736 [self positionViews];
6740 - (void) setCancellable:(bool)cancellable {
6742 [self addSubview:cancel_];
6744 [cancel_ removeFromSuperview];
6748 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6749 [progress_ setProgress:0];
6753 [self setCancellable:NO];
6756 - (void) setPrompt:(NSString *)prompt {
6757 [prompt_ setText:prompt];
6760 - (void) setProgress:(float)progress {
6761 [progress_ setProgress:progress];
6767 /* Cydia Navigation Controller Interface {{{ */
6768 @interface UINavigationController (Cydia)
6770 - (NSArray *) navigationURLCollection;
6771 - (void) unloadData;
6776 /* Cydia Tab Bar Controller {{{ */
6777 @interface CYTabBarController : UITabBarController <
6778 UITabBarControllerDelegate,
6781 _transient Database *database_;
6782 RefreshBar *refreshbar_;
6786 // XXX: ok, "updatedelegate_"?...
6787 _transient NSObject<CydiaDelegate> *updatedelegate_;
6790 UIViewController *remembered_;
6791 _transient UIViewController *transient_;
6794 - (NSArray *) navigationURLCollection;
6795 - (void) dropBar:(BOOL)animated;
6796 - (void) beginUpdate;
6797 - (void) raiseBar:(BOOL)animated;
6799 - (void) unloadData;
6803 @implementation CYTabBarController
6805 - (void) setUnselectedViewController:(UIViewController *)transient {
6806 NSMutableArray *controllers = [[self viewControllers] mutableCopy];
6807 if (transient != nil) {
6808 if (transient_ == nil)
6809 remembered_ = [[controllers objectAtIndex:0] retain];
6810 transient_ = transient;
6811 [transient_ setTabBarItem:[remembered_ tabBarItem]];
6812 [controllers replaceObjectAtIndex:0 withObject:transient_];
6813 [self setSelectedIndex:0];
6814 [self setViewControllers:controllers];
6815 [self concealTabBarSelection];
6816 } else if (remembered_ != nil) {
6817 [remembered_ setTabBarItem:[transient_ tabBarItem]];
6818 transient_ = transient;
6819 [controllers replaceObjectAtIndex:0 withObject:remembered_];
6820 [remembered_ release];
6822 [self setViewControllers:controllers];
6823 [self revealTabBarSelection];
6827 - (UIViewController *) unselectedViewController {
6831 - (void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
6832 if ([self unselectedViewController])
6833 [self setUnselectedViewController:nil];
6836 - (NSArray *) navigationURLCollection {
6837 NSMutableArray *items([NSMutableArray array]);
6839 // XXX: Should this deal with transient view controllers?
6840 for (id navigation in [self viewControllers]) {
6841 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6843 [items addObject:stack];
6849 - (void) unloadData {
6850 UIViewController *selected([self selectedViewController]);
6851 for (UINavigationController *controller in [self viewControllers])
6852 [controller unloadData];
6854 [selected reloadData];
6856 if (UIViewController *unselected = [self unselectedViewController])
6857 [unselected reloadData];
6863 [refreshbar_ release];
6864 [[NSNotificationCenter defaultCenter] removeObserver:self];
6869 - (id) initWithDatabase:(Database *)database {
6870 if ((self = [super init]) != nil) {
6871 database_ = database;
6872 [self setDelegate:self];
6874 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6875 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
6877 refreshbar_ = [[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self];
6881 - (void) setUpdate:(NSDate *)date {
6885 - (void) beginUpdate {
6886 [refreshbar_ start];
6889 [updatedelegate_ retainNetworkActivityIndicator];
6893 detachNewThreadSelector:@selector(performUpdate)
6899 - (void) performUpdate { _pooled
6901 status.setDelegate(self);
6902 [database_ updateWithStatus:status];
6905 performSelectorOnMainThread:@selector(completeUpdate)
6911 - (void) stopUpdateWithSelector:(SEL)selector {
6913 [updatedelegate_ releaseNetworkActivityIndicator];
6915 [self raiseBar:YES];
6918 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6921 - (void) completeUpdate {
6924 [self stopUpdateWithSelector:@selector(reloadData)];
6927 - (void) cancelUpdate {
6928 [self stopUpdateWithSelector:@selector(updateData)];
6931 - (void) cancelPressed {
6932 [self cancelUpdate];
6939 - (void) addProgressEvent:(CydiaProgressEvent *)event {
6940 [refreshbar_ setPrompt:[event compoundMessage]];
6943 - (bool) isProgressCancelled {
6947 - (void) setProgressCancellable:(NSNumber *)cancellable {
6948 [refreshbar_ setCancellable:(updating_ && [cancellable boolValue])];
6951 - (void) setProgressPercent:(NSNumber *)percent {
6952 [refreshbar_ setProgress:[percent floatValue]];
6955 - (void) setProgressStatus:(NSDictionary *)status {
6957 [self setProgressPercent:[status objectForKey:@"Percent"]];
6960 - (void) setUpdateDelegate:(id)delegate {
6961 updatedelegate_ = delegate;
6964 - (CGFloat) statusBarHeight {
6965 if (UIInterfaceOrientationIsPortrait([self interfaceOrientation])) {
6966 return [[UIApplication sharedApplication] statusBarFrame].size.height;
6968 return [[UIApplication sharedApplication] statusBarFrame].size.width;
6972 - (UIView *) transitionView {
6973 if ([self respondsToSelector:@selector(_transitionView)])
6974 return [self _transitionView];
6976 return MSHookIvar<id>(self, "_viewControllerTransitionView");
6979 - (void) dropBar:(BOOL)animated {
6984 UIView *transition([self transitionView]);
6985 [[self view] addSubview:refreshbar_];
6987 CGRect barframe([refreshbar_ frame]);
6989 if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6990 barframe.origin.y = [self statusBarHeight];
6992 barframe.origin.y = 0;
6994 [refreshbar_ setFrame:barframe];
6997 [UIView beginAnimations:nil context:NULL];
6999 CGRect viewframe = [transition frame];
7000 viewframe.origin.y += barframe.size.height;
7001 viewframe.size.height -= barframe.size.height;
7002 [transition setFrame:viewframe];
7005 [UIView commitAnimations];
7007 // Ensure bar has the proper width for our view, it might have changed
7008 barframe.size.width = viewframe.size.width;
7009 [refreshbar_ setFrame:barframe];
7011 // XXX: fix Apple's layout bug
7012 [[root_ selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7015 - (void) raiseBar:(BOOL)animated {
7020 UIView *transition([self transitionView]);
7021 [refreshbar_ removeFromSuperview];
7023 CGRect barframe([refreshbar_ frame]);
7026 [UIView beginAnimations:nil context:NULL];
7028 CGRect viewframe = [transition frame];
7029 viewframe.origin.y -= barframe.size.height;
7030 viewframe.size.height += barframe.size.height;
7031 [transition setFrame:viewframe];
7034 [UIView commitAnimations];
7036 // XXX: fix Apple's layout bug
7037 // SRK [[self selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7041 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
7042 // XXX: fix Apple's layout bug
7043 // SRK [[self selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7047 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7048 bool dropped(dropped_);
7053 [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
7058 // XXX: fix Apple's layout bug
7059 // SRK [[self selectedViewController] _updateLayoutForStatusBarAndInterfaceOrientation];
7062 - (void) statusBarFrameChanged:(NSNotification *)notification {
7072 /* Cydia Navigation Controller Implementation {{{ */
7073 @implementation UINavigationController (Cydia)
7075 - (NSArray *) navigationURLCollection {
7076 NSMutableArray *stack([NSMutableArray array]);
7078 for (CYViewController *controller in [self viewControllers]) {
7079 NSString *url = [[controller navigationURL] absoluteString];
7081 [stack addObject:url];
7087 - (void) reloadData {
7090 if (UIViewController *visible = [self visibleViewController])
7091 [visible reloadData];
7094 - (void) unloadData {
7095 for (CYViewController *page in [self viewControllers])
7104 /* Cydia:// Protocol {{{ */
7105 @interface CydiaURLProtocol : NSURLProtocol {
7110 @implementation CydiaURLProtocol
7112 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7113 NSURL *url([request URL]);
7117 NSString *scheme([[url scheme] lowercaseString]);
7118 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7120 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7126 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7130 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7131 id<NSURLProtocolClient> client([self client]);
7133 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7135 NSData *data(UIImagePNGRepresentation(icon));
7137 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7138 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7139 [client URLProtocol:self didLoadData:data];
7140 [client URLProtocolDidFinishLoading:self];
7144 - (void) startLoading {
7145 id<NSURLProtocolClient> client([self client]);
7146 NSURLRequest *request([self request]);
7148 NSURL *url([request URL]);
7149 NSString *href([url absoluteString]);
7150 NSString *scheme([[url scheme] lowercaseString]);
7154 if ([scheme isEqualToString:@"cydia"])
7155 path = [href substringFromIndex:8];
7156 else if ([scheme isEqualToString:@"about"])
7157 path = [href substringFromIndex:12];
7158 else _assert(false);
7160 NSRange slash([path rangeOfString:@"/"]);
7163 if (slash.location == NSNotFound) {
7167 command = [path substringToIndex:slash.location];
7168 path = [path substringFromIndex:(slash.location + 1)];
7171 Database *database([Database sharedInstance]);
7173 if ([command isEqualToString:@"package-icon"]) {
7176 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7177 Package *package([database packageWithName:path]);
7180 UIImage *icon([package icon]);
7181 [self _returnPNGWithImage:icon forRequest:request];
7182 } else if ([command isEqualToString:@"source-icon"]) {
7185 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7186 NSString *source(Simplify(path));
7187 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sources/%@.png", App_, source]]);
7189 icon = [UIImage applicationImageNamed:@"unknown.png"];
7190 [self _returnPNGWithImage:icon forRequest:request];
7191 } else if ([command isEqualToString:@"uikit-image"]) {
7194 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7195 UIImage *icon(_UIImageWithName(path));
7196 [self _returnPNGWithImage:icon forRequest:request];
7197 } else if ([command isEqualToString:@"section-icon"]) {
7200 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7201 NSString *section(Simplify(path));
7202 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]]);
7204 icon = [UIImage applicationImageNamed:@"unknown.png"];
7205 [self _returnPNGWithImage:icon forRequest:request];
7207 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7211 - (void) stopLoading {
7217 /* Section Controller {{{ */
7218 @interface SectionController : FilteredPackageListController {
7219 _H<NSString> section_;
7222 - (id) initWithDatabase:(Database *)database section:(NSString *)section;
7226 @implementation SectionController
7228 - (NSURL *) navigationURL {
7229 NSString *name = section_;
7233 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@", name]];
7236 - (id) initWithDatabase:(Database *)database section:(NSString *)name {
7239 title = UCLocalize("ALL_PACKAGES");
7240 else if (![name isEqual:@""])
7241 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
7243 title = UCLocalize("NO_SECTION");
7245 if ((self = [super initWithDatabase:database title:title filter:@selector(isVisibleInSection:) with:name]) != nil) {
7252 /* Sections Controller {{{ */
7253 @interface SectionsController : CYViewController <
7254 UITableViewDataSource,
7257 _transient Database *database_;
7258 NSMutableArray *sections_;
7259 NSMutableArray *filtered_;
7263 - (id) initWithDatabase:(Database *)database;
7264 - (void) editButtonClicked;
7268 @implementation SectionsController
7271 [self releaseSubviews];
7272 [sections_ release];
7273 [filtered_ release];
7278 - (NSURL *) navigationURL {
7279 return [NSURL URLWithString:@"cydia://sections"];
7282 - (void) updateNavigationItem {
7283 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7284 if ([sections_ count] == 0) {
7285 [[self navigationItem] setRightBarButtonItem:nil];
7287 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7288 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7290 action:@selector(editButtonClicked)
7291 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7295 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7296 [super setEditing:editing animated:animated];
7301 [delegate_ updateData];
7303 [self updateNavigationItem];
7306 - (void) viewDidAppear:(BOOL)animated {
7307 [super viewDidAppear:animated];
7308 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7311 - (void) viewWillDisappear:(BOOL)animated {
7312 [super viewWillDisappear:animated];
7313 if ([self isEditing]) [self setEditing:NO];
7316 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7317 Section *section = nil;
7318 int index = [indexPath row];
7319 if (![self isEditing]) {
7322 section = [filtered_ objectAtIndex:index];
7324 section = [sections_ objectAtIndex:index];
7329 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7330 if ([self isEditing])
7331 return [sections_ count];
7333 return [filtered_ count] + 1;
7336 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7340 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7341 static NSString *reuseIdentifier = @"SectionCell";
7343 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7345 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7347 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7352 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7353 if ([self isEditing])
7356 Section *section = [self sectionAtIndexPath:indexPath];
7358 SectionController *controller = [[[SectionController alloc]
7359 initWithDatabase:database_
7360 section:[section name]
7362 [controller setDelegate:delegate_];
7364 [[self navigationController] pushViewController:controller animated:YES];
7368 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7370 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds]];
7371 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7372 [list_ setRowHeight:45.0f];
7373 [list_ setDataSource:self];
7374 [list_ setDelegate:self];
7375 [[self view] addSubview:list_];
7378 - (void) viewDidLoad {
7379 [super viewDidLoad];
7381 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7384 - (void) releaseSubviews {
7389 - (id) initWithDatabase:(Database *)database {
7390 if ((self = [super init]) != nil) {
7391 database_ = database;
7393 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7394 filtered_ = [[NSMutableArray arrayWithCapacity:16] retain];
7398 - (void) reloadData {
7401 NSArray *packages = [database_ packages];
7403 [sections_ removeAllObjects];
7404 [filtered_ removeAllObjects];
7406 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7409 for (Package *package in packages) {
7410 NSString *name([package section]);
7411 NSString *key(name == nil ? @"" : name);
7415 _profile(SectionsView$reloadData$Section)
7416 section = [sections objectForKey:key];
7417 if (section == nil) {
7418 _profile(SectionsView$reloadData$Section$Allocate)
7419 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7420 [sections setObject:section forKey:key];
7425 [section addToCount];
7427 _profile(SectionsView$reloadData$Filter)
7428 if (![package valid] || ![package visible])
7436 [sections_ addObjectsFromArray:[sections allValues]];
7438 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7440 for (Section *section in sections_) {
7441 size_t count([section row]);
7445 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7446 [section setCount:count];
7447 [filtered_ addObject:section];
7450 [self updateNavigationItem];
7455 - (void) editButtonClicked {
7456 [self setEditing:![self isEditing] animated:YES];
7462 /* Changes Controller {{{ */
7463 @interface ChangesController : CYViewController <
7464 UITableViewDataSource,
7467 _transient Database *database_;
7469 CFMutableArrayRef packages_;
7470 NSMutableArray *sections_;
7475 - (id) initWithDatabase:(Database *)database;
7479 @implementation ChangesController
7482 [self releaseSubviews];
7483 CFRelease(packages_);
7484 [sections_ release];
7489 - (NSURL *) navigationURL {
7490 return [NSURL URLWithString:@"cydia://changes"];
7493 - (void) viewDidAppear:(BOOL)animated {
7494 [super viewDidAppear:animated];
7495 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7498 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
7499 NSInteger count([sections_ count]);
7500 return count == 0 ? 1 : count;
7503 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
7504 if ([sections_ count] == 0)
7506 return [[sections_ objectAtIndex:section] name];
7509 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7510 if ([sections_ count] == 0)
7512 return [[sections_ objectAtIndex:section] count];
7515 - (Package *) packageAtIndex:(NSUInteger)index {
7516 return (Package *) CFArrayGetValueAtIndex(packages_, index);
7519 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7520 @synchronized (database_) {
7521 if ([database_ era] != era_)
7524 NSUInteger sectionIndex([path section]);
7525 if (sectionIndex >= [sections_ count])
7527 Section *section([sections_ objectAtIndex:sectionIndex]);
7528 NSInteger row([path row]);
7529 return [[[self packageAtIndex:([section row] + row)] retain] autorelease];
7532 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
7533 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
7535 cell = [[[PackageCell alloc] init] autorelease];
7536 [cell setPackage:[self packageAtIndexPath:path]];
7540 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
7541 Package *package([self packageAtIndexPath:path]);
7542 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
7543 [view setDelegate:delegate_];
7544 [[self navigationController] pushViewController:view animated:YES];
7548 - (void) refreshButtonClicked {
7549 [delegate_ beginUpdate];
7550 [[self navigationItem] setLeftBarButtonItem:nil animated:YES];
7553 - (void) upgradeButtonClicked {
7554 [delegate_ distUpgrade];
7558 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7560 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
7561 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7562 [list_ setRowHeight:73];
7563 [list_ setDataSource:self];
7564 [list_ setDelegate:self];
7565 [[self view] addSubview:list_];
7568 - (void) viewDidLoad {
7569 [super viewDidLoad];
7571 [[self navigationItem] setTitle:UCLocalize("CHANGES")];
7574 - (void) releaseSubviews {
7579 - (id) initWithDatabase:(Database *)database {
7580 if ((self = [super init]) != nil) {
7581 database_ = database;
7583 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL);
7584 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7588 // this mostly works because reloadData (below) is @synchronized (database_)
7589 // XXX: that said, I've been running into problems with NSRangeExceptions :(
7590 - (void) _reloadPackages:(NSArray *)packages {
7591 CFRelease(packages_);
7592 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, [packages count], NULL);
7595 _profile(ChangesController$_reloadPackages$Filter)
7596 for (Package *package in packages)
7597 if ([package upgradableAndEssential:YES] || [package visible])
7598 CFArrayAppendValue(packages_, package);
7601 _profile(ChangesController$_reloadPackages$radixSort)
7602 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackageChangesRadix) withContext:NULL];
7607 - (void) _reloadData {
7608 @synchronized (database_) {
7609 era_ = [database_ era];
7610 NSArray *packages = [database_ packages];
7612 [sections_ removeAllObjects];
7615 UIProgressHUD *hud([delegate_ addProgressHUD]);
7616 [hud setText:UCLocalize("LOADING")];
7617 //NSLog(@"HUD:%@::%@", delegate_, hud);
7618 [self yieldToSelector:@selector(_reloadPackages:) withObject:packages];
7619 [delegate_ removeProgressHUD:hud];
7621 [self _reloadPackages:packages];
7624 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7625 Section *ignored = nil;
7626 Section *section = nil;
7630 bool unseens = false;
7632 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7634 for (size_t offset = 0, count = CFArrayGetCount(packages_); offset != count; ++offset) {
7635 Package *package = [self packageAtIndex:offset];
7637 BOOL uae = [package upgradableAndEssential:YES];
7641 time_t seen([package seen]);
7643 if (section == nil || last != seen) {
7647 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7650 _profile(ChangesController$reloadData$Allocate)
7651 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7652 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7653 [sections_ addObject:section];
7657 [section addToCount];
7658 } else if ([package ignored]) {
7659 if (ignored == nil) {
7660 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7662 [ignored addToCount];
7665 [upgradable addToCount];
7670 CFRelease(formatter);
7673 Section *last = [sections_ lastObject];
7674 size_t count = [last count];
7675 CFArrayReplaceValues(packages_, CFRangeMake(CFArrayGetCount(packages_) - count, count), NULL, 0);
7676 [sections_ removeLastObject];
7679 if ([ignored count] != 0)
7680 [sections_ insertObject:ignored atIndex:0];
7682 [sections_ insertObject:upgradable atIndex:0];
7687 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
7688 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7689 style:UIBarButtonItemStylePlain
7691 action:@selector(upgradeButtonClicked)
7694 if (![delegate_ updating])
7695 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7696 initWithTitle:UCLocalize("REFRESH")
7697 style:UIBarButtonItemStylePlain
7699 action:@selector(refreshButtonClicked)
7705 - (void) reloadData {
7707 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
7712 /* Search Controller {{{ */
7713 @interface SearchController : FilteredPackageListController <
7716 _H<UISearchBar> search_;
7720 - (id) initWithDatabase:(Database *)database;
7721 - (void) setSearchTerm:(NSString *)term;
7722 - (void) reloadData;
7726 @implementation SearchController
7729 [search_ setDelegate:nil];
7733 - (NSURL *) navigationURL {
7734 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7735 return [NSURL URLWithString:@"cydia://search"];
7737 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [search_ text]]];
7740 - (void) setSearchTerm:(NSString *)searchTerm {
7741 [search_ setText:searchTerm];
7745 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7746 [self setObject:[search_ text] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7747 [search_ resignFirstResponder];
7751 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7752 [self setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7756 - (id) initWithDatabase:(Database *)database {
7757 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:nil])) {
7758 search_ = [[[UISearchBar alloc] init] autorelease];
7759 [search_ setDelegate:self];
7763 - (void) viewDidAppear:(BOOL)animated {
7764 [super viewDidAppear:animated];
7766 if (!searchloaded_) {
7767 searchloaded_ = YES;
7768 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7769 [search_ layoutSubviews];
7770 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7772 UITextField *textField;
7773 if ([search_ respondsToSelector:@selector(searchField)])
7774 textField = [search_ searchField];
7776 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7778 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7779 [textField setEnablesReturnKeyAutomatically:NO];
7780 [[self navigationItem] setTitleView:textField];
7784 - (void) reloadData {
7785 [self setObject:[search_ text]];
7791 - (void) didSelectPackage:(Package *)package {
7792 [search_ resignFirstResponder];
7793 [super didSelectPackage:package];
7798 /* Package Settings Controller {{{ */
7799 @interface PackageSettingsController : CYViewController <
7800 UITableViewDataSource,
7803 _transient Database *database_;
7806 UITableView *table_;
7807 UISwitch *subscribedSwitch_;
7808 UISwitch *ignoredSwitch_;
7809 UITableViewCell *subscribedCell_;
7810 UITableViewCell *ignoredCell_;
7813 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7817 @implementation PackageSettingsController
7820 [self releaseSubviews];
7827 - (NSURL *) navigationURL {
7828 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", [package_ id]]];
7831 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7832 if (package_ == nil)
7835 if ([package_ installed] == nil)
7841 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7842 if (package_ == nil)
7845 // both sections contain just one item right now.
7849 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7853 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7855 return UCLocalize("SHOW_ALL_CHANGES_EX");
7857 return UCLocalize("IGNORE_UPGRADES_EX");
7860 - (void) onSubscribed:(id)control {
7861 bool value([control isOn]);
7862 if (package_ == nil)
7864 if ([package_ setSubscribed:value])
7865 [delegate_ updateData];
7868 - (void) _updateIgnored {
7869 const char *package([name_ UTF8String]);
7870 bool on([ignoredSwitch_ isOn]);
7872 pid_t pid(ExecFork());
7874 FILE *dpkg(popen("dpkg --set-selections", "w"));
7875 fwrite(package, strlen(package), 1, dpkg);
7878 fwrite(" hold\n", 6, 1, dpkg);
7880 fwrite(" install\n", 9, 1, dpkg);
7890 int result(waitpid(pid, &status, 0));
7893 _assert(result == pid);
7899 - (void) onIgnored:(id)control {
7900 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7901 [invocation setTarget:self];
7902 [invocation setSelector:@selector(_updateIgnored)];
7904 [delegate_ reloadDataWithInvocation:invocation];
7907 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7908 if (package_ == nil)
7911 switch ([indexPath section]) {
7912 case 0: return subscribedCell_;
7913 case 1: return ignoredCell_;
7922 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7924 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
7925 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7926 [table_ setDataSource:self];
7927 [table_ setDelegate:self];
7928 [[self view] addSubview:table_];
7930 subscribedSwitch_ = [[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7931 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7932 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7934 ignoredSwitch_ = [[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)];
7935 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7936 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7938 subscribedCell_ = [[UITableViewCell alloc] init];
7939 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7940 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7941 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7943 ignoredCell_ = [[UITableViewCell alloc] init];
7944 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7945 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7946 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7949 - (void) viewDidLoad {
7950 [super viewDidLoad];
7952 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7955 - (void) releaseSubviews {
7956 [ignoredCell_ release];
7959 [subscribedCell_ release];
7960 subscribedCell_ = nil;
7965 [ignoredSwitch_ release];
7966 ignoredSwitch_ = nil;
7968 [subscribedSwitch_ release];
7969 subscribedSwitch_ = nil;
7972 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7973 if ((self = [super init]) != nil) {
7974 database_ = database;
7975 name_ = [package retain];
7979 - (void) reloadData {
7982 if (package_ != nil)
7983 [package_ autorelease];
7984 package_ = [database_ packageWithName:name_];
7986 if (package_ != nil) {
7987 package_ = [package_ retain];
7988 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7989 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7990 } // XXX: what now, G?
7992 [table_ reloadData];
7998 /* Installed Controller {{{ */
7999 @interface InstalledController : FilteredPackageListController {
8003 - (id) initWithDatabase:(Database *)database;
8005 - (void) updateRoleButton;
8006 - (void) queueStatusDidChange;
8010 @implementation InstalledController
8016 - (NSURL *) navigationURL {
8017 return [NSURL URLWithString:@"cydia://installed"];
8020 - (id) initWithDatabase:(Database *)database {
8021 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndUnfiltered:) with:[NSNumber numberWithBool:YES]]) != nil) {
8022 [self updateRoleButton];
8023 [self queueStatusDidChange];
8028 - (void) queueButtonClicked {
8033 - (void) queueStatusDidChange {
8037 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8038 initWithTitle:UCLocalize("QUEUE")
8039 style:UIBarButtonItemStyleDone
8041 action:@selector(queueButtonClicked)
8044 [[self navigationItem] setLeftBarButtonItem:nil];
8050 - (void) updateRoleButton {
8051 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"])
8052 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8053 initWithTitle:(expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE"))
8054 style:(expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8056 action:@selector(roleButtonClicked)
8060 - (void) roleButtonClicked {
8061 [self setObject:[NSNumber numberWithBool:expert_]];
8065 [self updateRoleButton];
8071 /* Source Cell {{{ */
8072 @interface SourceCell : CYTableViewCell <
8080 - (void) setSource:(Source *)source;
8084 @implementation SourceCell
8086 - (void) clearSource {
8096 - (void) setSource:(Source *)source {
8100 icon_ = [UIImage applicationImageNamed:[NSString stringWithFormat:@"Sources/%@.png", [source host]]];
8102 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
8103 icon_ = [icon_ retain];
8105 origin_ = [[source name] retain];
8106 label_ = [[source uri] retain];
8108 [content_ setNeedsDisplay];
8116 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8117 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8118 UIView *content([self contentView]);
8119 CGRect bounds([content bounds]);
8121 content_ = [[ContentView alloc] initWithFrame:bounds];
8122 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8123 [content_ setBackgroundColor:[UIColor whiteColor]];
8124 [content addSubview:content_];
8126 [content_ setDelegate:self];
8127 [content_ setOpaque:YES];
8131 - (NSString *) accessibilityLabel {
8135 - (void) drawContentRect:(CGRect)rect {
8136 bool highlighted(highlighted_);
8137 float width(rect.size.width);
8140 [icon_ drawInRect:CGRectMake(10, 10, 30, 30)];
8147 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
8151 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
8156 /* Source Controller {{{ */
8157 @interface SourceController : FilteredPackageListController {
8158 _transient Source *source_;
8162 - (id) initWithDatabase:(Database *)database source:(Source *)source;
8166 @implementation SourceController
8168 - (NSURL *) navigationURL {
8169 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [source_ name]]];
8172 - (id) initWithDatabase:(Database *)database source:(Source *)source {
8173 if ((self = [super initWithDatabase:database title:[source label] filter:@selector(isVisibleInSource:) with:source]) != nil) {
8175 key_ = [[source key] retain];
8179 - (void) reloadData {
8180 source_ = [database_ sourceWithKey:key_];
8182 key_ = [[source_ key] retain];
8183 [self setObject:source_];
8185 [[self navigationItem] setTitle:[source_ label]];
8192 /* Sources Controller {{{ */
8193 @interface SourcesController : CYViewController <
8194 UITableViewDataSource,
8197 _transient Database *database_;
8199 NSMutableArray *sources_;
8203 UIProgressHUD *hud_;
8206 //NSURLConnection *installer_;
8207 NSURLConnection *trivial_;
8208 NSURLConnection *trivial_bz2_;
8209 NSURLConnection *trivial_gz_;
8210 //NSURLConnection *automatic_;
8215 - (id) initWithDatabase:(Database *)database;
8216 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
8220 @implementation SourcesController
8222 - (void) _releaseConnection:(NSURLConnection *)connection {
8223 if (connection != nil) {
8224 [connection cancel];
8225 //[connection setDelegate:nil];
8226 [connection release];
8231 [self releaseSubviews];
8237 //[self _releaseConnection:installer_];
8238 [self _releaseConnection:trivial_];
8239 [self _releaseConnection:trivial_gz_];
8240 [self _releaseConnection:trivial_bz2_];
8241 //[self _releaseConnection:automatic_];
8247 - (NSURL *) navigationURL {
8248 return [NSURL URLWithString:@"cydia://sources"];
8251 - (void) viewDidAppear:(BOOL)animated {
8252 [super viewDidAppear:animated];
8253 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8256 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8257 return offset_ == 0 ? 1 : 2;
8260 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8261 switch (section + (offset_ == 0 ? 1 : 0)) {
8262 case 0: return UCLocalize("ENTERED_BY_USER");
8263 case 1: return UCLocalize("INSTALLED_BY_PACKAGE");
8269 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8270 int count = [sources_ count];
8272 case 0: return (offset_ == 0 ? count : offset_);
8273 case 1: return count - offset_;
8279 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8281 switch (indexPath.section) {
8282 case 0: idx = indexPath.row; break;
8283 case 1: idx = indexPath.row + offset_; break;
8287 return [sources_ objectAtIndex:idx];
8290 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8291 static NSString *cellIdentifier = @"SourceCell";
8293 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8294 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8295 [cell setSource:[self sourceAtIndexPath:indexPath]];
8296 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8301 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8302 Source *source = [self sourceAtIndexPath:indexPath];
8304 SourceController *controller = [[[SourceController alloc]
8305 initWithDatabase:database_
8309 [controller setDelegate:delegate_];
8311 [[self navigationController] pushViewController:controller animated:YES];
8314 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8315 Source *source = [self sourceAtIndexPath:indexPath];
8316 return [source record] != nil;
8319 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8320 Source *source = [self sourceAtIndexPath:indexPath];
8321 [Sources_ removeObjectForKey:[source key]];
8322 [delegate_ syncData];
8326 [delegate_ addTrivialSource:href_];
8327 [delegate_ syncData];
8330 - (NSString *) getWarning {
8331 NSString *href(href_);
8332 NSRange colon([href rangeOfString:@"://"]);
8333 if (colon.location != NSNotFound)
8334 href = [href substringFromIndex:(colon.location + 3)];
8335 href = [href stringByAddingPercentEscapes];
8336 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8337 href = [href stringByCachingURLWithCurrentCDN];
8339 NSURL *url([NSURL URLWithString:href]);
8341 NSStringEncoding encoding;
8342 NSError *error(nil);
8344 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8345 return [warning length] == 0 ? nil : warning;
8349 - (void) _endConnection:(NSURLConnection *)connection {
8350 // XXX: the memory management in this method is horribly awkward
8352 NSURLConnection **field = NULL;
8353 if (connection == trivial_)
8355 else if (connection == trivial_bz2_)
8356 field = &trivial_bz2_;
8357 else if (connection == trivial_gz_)
8358 field = &trivial_gz_;
8359 _assert(field != NULL);
8360 [connection release];
8365 trivial_bz2_ == nil &&
8371 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
8374 UIAlertView *alert = [[[UIAlertView alloc]
8375 initWithTitle:UCLocalize("SOURCE_WARNING")
8378 cancelButtonTitle:UCLocalize("CANCEL")
8380 UCLocalize("ADD_ANYWAY"),
8384 [alert setContext:@"warning"];
8385 [alert setNumberOfRows:1];
8389 } else if (error_ != nil) {
8390 UIAlertView *alert = [[[UIAlertView alloc]
8391 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8392 message:[error_ localizedDescription]
8394 cancelButtonTitle:UCLocalize("OK")
8395 otherButtonTitles:nil
8398 [alert setContext:@"urlerror"];
8401 UIAlertView *alert = [[[UIAlertView alloc]
8402 initWithTitle:UCLocalize("NOT_REPOSITORY")
8403 message:UCLocalize("NOT_REPOSITORY_EX")
8405 cancelButtonTitle:UCLocalize("OK")
8406 otherButtonTitles:nil
8409 [alert setContext:@"trivial"];
8413 [delegate_ releaseNetworkActivityIndicator];
8415 [delegate_ removeProgressHUD:hud_];
8424 if (error_ != nil) {
8431 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8432 switch ([response statusCode]) {
8438 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8439 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8441 error_ = [error retain];
8442 [self _endConnection:connection];
8445 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8446 [self _endConnection:connection];
8449 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8450 NSMutableURLRequest *request = [NSMutableURLRequest
8451 requestWithURL:[NSURL URLWithString:href]
8452 cachePolicy:NSURLRequestUseProtocolCachePolicy
8453 timeoutInterval:120.0
8456 [request setHTTPMethod:method];
8458 if (Machine_ != NULL)
8459 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8460 if (UniqueID_ != nil)
8461 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8463 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8466 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8467 NSString *context([alert context]);
8469 if ([context isEqualToString:@"source"]) {
8472 NSString *href = [[alert textField] text];
8474 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
8476 if (![href hasSuffix:@"/"])
8477 href_ = [href stringByAppendingString:@"/"];
8480 href_ = [href_ retain];
8482 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
8483 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8484 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8485 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
8489 // XXX: this is stupid
8490 hud_ = [[delegate_ addProgressHUD] retain];
8491 [hud_ setText:UCLocalize("VERIFYING_URL")];
8492 [delegate_ retainNetworkActivityIndicator];
8501 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8502 } else if ([context isEqualToString:@"trivial"])
8503 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8504 else if ([context isEqualToString:@"urlerror"])
8505 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8506 else if ([context isEqualToString:@"warning"]) {
8521 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8526 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8528 list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain];
8529 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8530 [list_ setRowHeight:56];
8531 [list_ setDataSource:self];
8532 [list_ setDelegate:self];
8533 [[self view] addSubview:list_];
8536 - (void) viewDidLoad {
8537 [super viewDidLoad];
8539 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8540 [self updateButtonsForEditingStatus:NO animated:NO];
8543 - (void) releaseSubviews {
8548 - (id) initWithDatabase:(Database *)database {
8549 if ((self = [super init]) != nil) {
8550 database_ = database;
8551 sources_ = [[NSMutableArray arrayWithCapacity:16] retain];
8555 - (void) reloadData {
8559 if ([database_ popErrorWithTitle:UCLocalize("SOURCES") forOperation:list.ReadMainList()])
8562 [sources_ removeAllObjects];
8563 [sources_ addObjectsFromArray:[database_ sources]];
8565 [sources_ sortUsingSelector:@selector(compareByNameAndType:)];
8568 int count([sources_ count]);
8570 for (int i = 0; i != count; i++) {
8571 if ([[sources_ objectAtIndex:i] record] == nil)
8576 [list_ setEditing:NO];
8577 [self updateButtonsForEditingStatus:NO animated:NO];
8581 - (void) showAddSourcePrompt {
8582 UIAlertView *alert = [[[UIAlertView alloc]
8583 initWithTitle:UCLocalize("ENTER_APT_URL")
8586 cancelButtonTitle:UCLocalize("CANCEL")
8588 UCLocalize("ADD_SOURCE"),
8592 [alert setContext:@"source"];
8593 [alert setTransform:CGAffineTransformTranslate([alert transform], 0.0, 100.0)];
8595 [alert setNumberOfRows:1];
8596 [alert addTextFieldWithValue:@"http://" label:@""];
8598 UITextInputTraits *traits = [[alert textField] textInputTraits];
8599 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8600 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8601 [traits setKeyboardType:UIKeyboardTypeURL];
8602 // XXX: UIReturnKeyDone
8603 [traits setReturnKeyType:UIReturnKeyNext];
8608 - (void) addButtonClicked {
8609 [self showAddSourcePrompt];
8612 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
8613 [[self navigationItem] setLeftBarButtonItem:(editing ? [[[UIBarButtonItem alloc]
8614 initWithTitle:UCLocalize("ADD")
8615 style:UIBarButtonItemStylePlain
8617 action:@selector(addButtonClicked)
8618 ] autorelease] : [[self navigationItem] backBarButtonItem]) animated:animated];
8620 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8621 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8622 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8624 action:@selector(editButtonClicked)
8625 ] autorelease] animated:animated];
8627 if (IsWildcat_ && !editing)
8628 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8629 initWithTitle:UCLocalize("SETTINGS")
8630 style:UIBarButtonItemStylePlain
8632 action:@selector(settingsButtonClicked)
8636 - (void) settingsButtonClicked {
8637 [delegate_ showSettings];
8640 - (void) editButtonClicked {
8641 [list_ setEditing:![list_ isEditing] animated:YES];
8643 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
8649 /* Settings Controller {{{ */
8650 @interface SettingsController : CYViewController <
8651 UITableViewDataSource,
8654 _transient Database *database_;
8655 // XXX: ok, "roledelegate_"?...
8656 _transient id roledelegate_;
8657 UITableView *table_;
8658 UISegmentedControl *segment_;
8662 - (void) showDoneButton;
8663 - (void) resizeSegmentedControl;
8667 @implementation SettingsController
8670 [self releaseSubviews];
8676 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8678 table_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
8679 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8680 [table_ setDelegate:self];
8681 [table_ setDataSource:self];
8682 [[self view] addSubview:table_];
8684 NSArray *items = [NSArray arrayWithObjects:
8686 UCLocalize("HACKER"),
8687 UCLocalize("DEVELOPER"),
8689 segment_ = [[UISegmentedControl alloc] initWithItems:items];
8690 container_ = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)];
8691 [container_ addSubview:segment_];
8694 - (void) viewDidLoad {
8695 [super viewDidLoad];
8697 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
8700 if ([Role_ isEqualToString:@"User"]) index = 0;
8701 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
8702 if ([Role_ isEqualToString:@"Developer"]) index = 2;
8704 [segment_ setSelectedSegmentIndex:index];
8705 [self showDoneButton];
8708 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
8709 [self resizeSegmentedControl];
8712 - (void) releaseSubviews {
8719 [container_ release];
8723 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
8724 if ((self = [super init]) != nil) {
8725 database_ = database;
8726 roledelegate_ = delegate;
8730 - (void) resizeSegmentedControl {
8731 CGFloat width = [[self view] frame].size.width;
8732 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
8735 - (void) viewWillAppear:(BOOL)animated {
8736 [super viewWillAppear:animated];
8738 [self resizeSegmentedControl];
8741 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
8742 [self resizeSegmentedControl];
8745 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
8746 [self resizeSegmentedControl];
8750 NSString *role(nil);
8752 switch ([segment_ selectedSegmentIndex]) {
8753 case 0: role = @"User"; break;
8754 case 1: role = @"Hacker"; break;
8755 case 2: role = @"Developer"; break;
8760 if (![role isEqualToString:Role_]) {
8761 bool rolling(Role_ == nil);
8764 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
8768 [Metadata_ setObject:Settings_ forKey:@"Settings"];
8772 [roledelegate_ loadData];
8774 [roledelegate_ updateData];
8778 - (void) segmentChanged:(UISegmentedControl *)control {
8779 [self showDoneButton];
8782 - (void) saveAndClose {
8785 [[self navigationItem] setRightBarButtonItem:nil];
8786 [[self navigationController] dismissModalViewControllerAnimated:YES];
8789 - (void) doneButtonClicked {
8790 UIActivityIndicatorView *spinner = [[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20.0f, 20.0f)] autorelease];
8791 [spinner startAnimating];
8792 UIBarButtonItem *spinItem = [[[UIBarButtonItem alloc] initWithCustomView:spinner] autorelease];
8793 [[self navigationItem] setRightBarButtonItem:spinItem];
8795 [self performSelector:@selector(saveAndClose) withObject:nil afterDelay:0];
8798 - (void) showDoneButton {
8799 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8800 initWithTitle:UCLocalize("DONE")
8801 style:UIBarButtonItemStyleDone
8803 action:@selector(doneButtonClicked)
8804 ] autorelease] animated:([[self navigationItem] rightBarButtonItem] == nil)];
8807 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8808 // XXX: For not having a single cell in the table, this sure is a lot of sections.
8812 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8816 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8817 return nil; // This method is required by the protocol.
8820 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
8822 return UCLocalize("ROLE_EX");
8824 return [NSString stringWithFormat:
8825 @"%@: %@\n%@: %@\n%@: %@",
8826 UCLocalize("USER"), UCLocalize("USER_EX"),
8827 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
8828 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
8833 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
8834 return section == 3 ? 44.0f : 0;
8837 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
8838 return section == 3 ? container_ : nil;
8841 - (void) reloadData {
8844 [table_ reloadData];
8849 /* Stash Controller {{{ */
8850 @interface StashController : CYViewController {
8851 UIActivityIndicatorView *spinner_;
8858 @implementation StashController
8861 [self releaseSubviews];
8867 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8868 [[self view] setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8870 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8871 CGRect spinrect = [spinner_ frame];
8872 spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2);
8873 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8874 [spinner_ setFrame:spinrect];
8875 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8876 [[self view] addSubview:spinner_];
8877 [spinner_ startAnimating];
8880 captrect.size.width = [[self view] frame].size.width;
8881 captrect.size.height = 40.0f;
8882 captrect.origin.x = 0;
8883 captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2);
8884 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8885 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8886 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8887 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8888 [caption_ setTextColor:[UIColor whiteColor]];
8889 [caption_ setBackgroundColor:[UIColor clearColor]];
8890 [caption_ setShadowColor:[UIColor blackColor]];
8891 [caption_ setTextAlignment:UITextAlignmentCenter];
8892 [[self view] addSubview:caption_];
8895 statusrect.size.width = [[self view] frame].size.width;
8896 statusrect.size.height = 30.0f;
8897 statusrect.origin.x = 0;
8898 statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height;
8899 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8900 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8901 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8902 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8903 [status_ setTextColor:[UIColor whiteColor]];
8904 [status_ setBackgroundColor:[UIColor clearColor]];
8905 [status_ setShadowColor:[UIColor blackColor]];
8906 [status_ setTextAlignment:UITextAlignmentCenter];
8907 [[self view] addSubview:status_];
8910 - (void) releaseSubviews {
8924 @interface Cydia : UIApplication <
8925 ConfirmationControllerDelegate,
8928 UINavigationControllerDelegate,
8929 UITabBarControllerDelegate
8931 // XXX: evaluate all fields for _transient
8934 CYTabBarController *tabbar_;
8935 CYEmulatedLoadingController *emulated_;
8937 NSMutableArray *essential_;
8938 NSMutableArray *broken_;
8940 Database *database_;
8947 StashController *stash_;
8956 @implementation Cydia
8958 - (void) beginUpdate {
8959 [tabbar_ beginUpdate];
8963 return [tabbar_ updating];
8967 if ([broken_ count] != 0) {
8968 int count = [broken_ count];
8970 UIAlertView *alert = [[[UIAlertView alloc]
8971 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8972 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8974 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
8976 UCLocalize("TEMPORARY_IGNORE"),
8980 [alert setContext:@"fixhalf"];
8981 [alert setNumberOfRows:2];
8983 } else if (!Ignored_ && [essential_ count] != 0) {
8984 int count = [essential_ count];
8986 UIAlertView *alert = [[[UIAlertView alloc]
8987 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8988 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8990 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8992 UCLocalize("UPGRADE_ESSENTIAL"),
8993 UCLocalize("COMPLETE_UPGRADE"),
8997 [alert setContext:@"upgrade"];
9002 - (void) _saveConfig {
9008 NSString *error(nil);
9010 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
9012 NSError *error(nil);
9013 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
9014 NSLog(@"failure to save metadata data: %@", error);
9019 NSLog(@"failure to serialize metadata: %@", error);
9024 // Navigation controller for the queuing badge.
9025 - (UINavigationController *) queueNavigationController {
9026 NSArray *controllers = [tabbar_ viewControllers];
9027 return [controllers objectAtIndex:3];
9030 - (void) unloadData {
9031 [tabbar_ unloadData];
9034 - (void) _updateData {
9039 UINavigationController *navigation = [self queueNavigationController];
9041 id queuedelegate = nil;
9042 if ([[navigation viewControllers] count] > 0)
9043 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
9045 [queuedelegate queueStatusDidChange];
9046 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
9049 - (void) _refreshIfPossible:(NSDate *)update {
9050 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9052 bool recently = false;
9053 if (update != nil) {
9054 NSTimeInterval interval([update timeIntervalSinceNow]);
9055 if (interval <= 0 && interval > -(15*60))
9059 // Don't automatic refresh if:
9060 // - We already refreshed recently.
9061 // - We already auto-refreshed this launch.
9062 // - Auto-refresh is disabled.
9063 if (recently || loaded_ || ManualRefresh) {
9064 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9066 // If we are cancelling, we need to make sure it knows it's already loaded.
9070 // We are going to load, so remember that.
9074 SCNetworkReachabilityFlags flags; {
9075 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(NULL, "cydia.saurik.com"));
9076 SCNetworkReachabilityGetFlags(reachability, &flags);
9077 CFRelease(reachability);
9080 // XXX: this elaborate mess is what Apple is using to determine this? :(
9081 // XXX: do we care if the user has to intervene? maybe that's ok?
9083 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
9084 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
9085 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
9086 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
9087 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
9088 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
9092 // If we can reach the server, auto-refresh!
9094 [tabbar_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
9099 - (void) refreshIfPossible {
9100 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible:) toTarget:self withObject:[Metadata_ objectForKey:@"LastUpdate"]];
9103 - (void) _reloadDataWithInvocation:(NSInvocation *)invocation {
9104 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9105 [hud setText:UCLocalize("RELOADING_DATA")];
9107 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9110 [self removeProgressHUD:hud];
9114 [essential_ removeAllObjects];
9115 [broken_ removeAllObjects];
9117 NSArray *packages([database_ packages]);
9118 for (Package *package in packages) {
9120 [broken_ addObject:package];
9121 if ([package upgradableAndEssential:NO]) {
9122 if ([package essential])
9123 [essential_ addObject:package];
9128 NSLog(@"changes:#%u", changes);
9130 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9133 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9134 [changesItem setBadgeValue:badge];
9135 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9136 [self setApplicationIconBadgeNumber:changes];
9139 [changesItem setBadgeValue:nil];
9140 [changesItem setAnimatedBadge:NO];
9141 [self setApplicationIconBadgeNumber:0];
9146 [self refreshIfPossible];
9149 - (void) updateData {
9158 @synchronized (self) {
9159 [self _reloadDataWithInvocation:nil];
9163 - (void) disemulate {
9164 if (emulated_ == nil)
9167 [window_ addSubview:[tabbar_ view]];
9168 [[emulated_ view] removeFromSuperview];
9169 [emulated_ release];
9171 [window_ setUserInteractionEnabled:YES];
9174 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9175 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9177 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9179 UIViewController *parent;
9180 if (emulated_ == nil)
9189 [parent presentModalViewController:navigation animated:YES];
9192 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9193 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9195 if (navigation != nil)
9196 [navigation pushViewController:progress animated:YES];
9198 [self presentModalViewController:progress force:YES];
9200 [progress invoke:invocation withTitle:title];
9204 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9205 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9208 - (void) repairWithInvocation:(NSInvocation *)invocation {
9210 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9214 - (void) repairWithSelector:(SEL)selector {
9215 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9221 FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w"));
9222 _assert(file != NULL);
9224 for (NSString *key in [Sources_ allKeys]) {
9225 NSDictionary *source([Sources_ objectForKey:key]);
9227 fprintf(file, "%s %s %s\n",
9228 [[source objectForKey:@"Type"] UTF8String],
9229 [[source objectForKey:@"URI"] UTF8String],
9230 [[source objectForKey:@"Distribution"] UTF8String]
9236 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9241 - (void) addTrivialSource:(NSString *)href {
9242 [Sources_ setObject:[NSDictionary dictionaryWithObjectsAndKeys:
9245 @"./", @"Distribution",
9246 nil] forKey:[NSString stringWithFormat:@"deb:%@:./", href]];
9251 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9252 @synchronized (self) {
9253 [self _reloadDataWithInvocation:invocation];
9257 - (void) reloadData {
9258 [self reloadDataWithInvocation:nil];
9262 pkgProblemResolver *resolver = [database_ resolver];
9264 resolver->InstallProtect();
9265 if (!resolver->Resolve(true))
9270 // XXX: this is a really crappy way of doing this.
9271 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9272 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9273 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9274 if ([tabbar_ updating])
9275 [tabbar_ cancelUpdate];
9277 if (![database_ prepare])
9280 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9281 [page setDelegate:self];
9282 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9285 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9286 [tabbar_ presentModalViewController:confirm_ animated:YES];
9292 @synchronized (self) {
9297 - (void) clearPackage:(Package *)package {
9298 @synchronized (self) {
9305 - (void) installPackages:(NSArray *)packages {
9306 @synchronized (self) {
9307 for (Package *package in packages)
9314 - (void) installPackage:(Package *)package {
9315 @synchronized (self) {
9322 - (void) removePackage:(Package *)package {
9323 @synchronized (self) {
9330 - (void) distUpgrade {
9331 @synchronized (self) {
9332 if (![database_ upgrade])
9338 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9341 [self detachNewProgressSelector:@selector(perform) toTarget:database_ forController:navigation title:@"RUNNING"];
9346 - (void) showSettings {
9347 [self presentModalViewController:[[[SettingsController alloc] initWithDatabase:database_ delegate:self] autorelease] force:NO];
9350 - (void) retainNetworkActivityIndicator {
9351 if (activity_++ == 0)
9352 [self setNetworkActivityIndicatorVisible:YES];
9355 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9359 - (void) releaseNetworkActivityIndicator {
9360 if (--activity_ == 0)
9361 [self setNetworkActivityIndicatorVisible:NO];
9364 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9369 - (void) cancelAndClear:(bool)clear {
9370 @synchronized (self) {
9382 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9383 NSString *context([alert context]);
9385 if ([context isEqualToString:@"conffile"]) {
9386 FILE *input = [database_ input];
9387 if (button == [alert cancelButtonIndex])
9388 fprintf(input, "N\n");
9389 else if (button == [alert firstOtherButtonIndex])
9390 fprintf(input, "Y\n");
9393 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9394 } else if ([context isEqualToString:@"fixhalf"]) {
9395 if (button == [alert cancelButtonIndex]) {
9396 @synchronized (self) {
9397 for (Package *broken in broken_) {
9400 NSString *id = [broken id];
9401 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
9402 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
9403 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
9404 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
9410 } else if (button == [alert firstOtherButtonIndex]) {
9411 [broken_ removeAllObjects];
9415 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9416 } else if ([context isEqualToString:@"upgrade"]) {
9417 if (button == [alert firstOtherButtonIndex]) {
9418 @synchronized (self) {
9419 for (Package *essential in essential_)
9420 [essential install];
9425 } else if (button == [alert firstOtherButtonIndex] + 1) {
9427 } else if (button == [alert cancelButtonIndex]) {
9431 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9435 - (void) system:(NSString *)command { _pooled
9437 system([command UTF8String]);
9441 - (void) applicationWillSuspend {
9443 [super applicationWillSuspend];
9446 - (BOOL) isSafeToSuspend {
9449 NSLog(@"isSafeToSuspend: locked_ != 0");
9454 // Use external process status API internally.
9455 // This is probably a really bad idea.
9456 // XXX: what is the point of this? does this solve anything at all?
9457 uint64_t status = 0;
9459 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
9460 notify_get_state(notify_token, &status);
9461 notify_cancel(notify_token);
9466 NSLog(@"isSafeToSuspend: status != 0");
9472 NSLog(@"isSafeToSuspend: -> true");
9477 - (void) applicationSuspend:(__GSEvent *)event {
9478 if ([self isSafeToSuspend])
9479 [super applicationSuspend:event];
9482 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9483 if ([self isSafeToSuspend])
9484 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9487 - (void) _setSuspended:(BOOL)value {
9488 if ([self isSafeToSuspend])
9489 [super _setSuspended:value];
9492 - (UIProgressHUD *) addProgressHUD {
9493 UIProgressHUD *hud([[[UIProgressHUD alloc] initWithWindow:window_] autorelease]);
9494 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9496 [window_ setUserInteractionEnabled:NO];
9498 UIViewController *target(tabbar_);
9499 if (UIViewController *modal = [target modalViewController])
9502 UIView *view([target view]);
9503 [view addSubview:hud];
9511 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9514 [hud removeFromSuperview];
9515 [window_ setUserInteractionEnabled:YES];
9518 - (CYViewController *) pageForPackage:(NSString *)name {
9519 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name] autorelease];
9522 - (CYViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external {
9523 NSString *scheme([[url scheme] lowercaseString]);
9524 if ([[url absoluteString] length] <= [scheme length] + 3)
9526 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9527 NSArray *components([path pathComponents]);
9529 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"])
9530 return [self pageForPackage:[components objectAtIndex:1]];
9532 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9535 NSString *base([components objectAtIndex:0]);
9537 CYViewController *controller = nil;
9539 if ([base isEqualToString:@"url"]) {
9540 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9541 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9542 controller = [[[CYBrowserController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9543 } else if (!external && [components count] == 1) {
9544 if ([base isEqualToString:@"manage"]) {
9545 controller = [[[ManageController alloc] init] autorelease];
9548 if ([base isEqualToString:@"sources"]) {
9549 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9552 if ([base isEqualToString:@"home"]) {
9553 controller = [[[HomeController alloc] init] autorelease];
9556 if ([base isEqualToString:@"sections"]) {
9557 controller = [[[SectionsController alloc] initWithDatabase:database_] autorelease];
9560 if ([base isEqualToString:@"search"]) {
9561 controller = [[[SearchController alloc] initWithDatabase:database_] autorelease];
9564 if ([base isEqualToString:@"changes"]) {
9565 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9568 if ([base isEqualToString:@"installed"]) {
9569 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9571 } else if ([components count] == 2) {
9572 NSString *argument = [components objectAtIndex:1];
9574 if ([base isEqualToString:@"package"]) {
9575 controller = [self pageForPackage:argument];
9578 if (!external && [base isEqualToString:@"search"]) {
9579 controller = [[[SearchController alloc] initWithDatabase:database_] autorelease];
9580 [(SearchController *)controller setSearchTerm:argument];
9583 if (!external && [base isEqualToString:@"sections"]) {
9584 if ([argument isEqualToString:@"all"])
9586 controller = [[[SectionController alloc] initWithDatabase:database_ section:argument] autorelease];
9589 if (!external && [base isEqualToString:@"sources"]) {
9590 if ([argument isEqualToString:@"add"]) {
9591 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9592 [(SourcesController *)controller showAddSourcePrompt];
9594 Source *source = [database_ sourceWithKey:argument];
9595 controller = [[[SourceController alloc] initWithDatabase:database_ source:source] autorelease];
9599 if (!external && [base isEqualToString:@"launch"]) {
9600 [self launchApplicationWithIdentifier:argument suspended:NO];
9603 } else if (!external && [components count] == 3) {
9604 NSString *arg1 = [components objectAtIndex:1];
9605 NSString *arg2 = [components objectAtIndex:2];
9607 if ([base isEqualToString:@"package"]) {
9608 if ([arg2 isEqualToString:@"settings"]) {
9609 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9610 } else if ([arg2 isEqualToString:@"files"]) {
9611 if (Package *package = [database_ packageWithName:arg1]) {
9612 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9613 [(FileTable *)controller setPackage:package];
9619 [controller setDelegate:self];
9623 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9624 CYViewController *page([self pageForURL:url forExternal:external]);
9627 UINavigationController *nav = [[[UINavigationController alloc] init] autorelease];
9628 [nav setViewControllers:[NSArray arrayWithObject:page]];
9629 [tabbar_ setUnselectedViewController:nav];
9635 - (void) applicationOpenURL:(NSURL *)url {
9636 [super applicationOpenURL:url];
9638 if (!loaded_) starturl_ = [url retain];
9639 else [self openCydiaURL:url forExternal:YES];
9642 - (void) applicationWillResignActive:(UIApplication *)application {
9643 // Stop refreshing if you get a phone call or lock the device.
9644 if ([tabbar_ updating])
9645 [tabbar_ cancelUpdate];
9647 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9648 [super applicationWillResignActive:application];
9651 - (void) applicationWillTerminate:(UIApplication *)application {
9653 [Metadata_ setObject:[tabbar_ navigationURLCollection] forKey:@"InterfaceState"];
9654 [Metadata_ setObject:[NSDate date] forKey:@"LastClosed"];
9655 [Metadata_ setObject:[NSNumber numberWithInt:[tabbar_ selectedIndex]] forKey:@"InterfaceIndex"];
9660 - (void) setConfigurationData:(NSString *)data {
9661 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
9663 if (!conffile_r(data)) {
9664 lprintf("E:invalid conffile\n");
9668 NSString *ofile = conffile_r[1];
9669 //NSString *nfile = conffile_r[2];
9671 UIAlertView *alert = [[[UIAlertView alloc]
9672 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9673 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9675 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9677 UCLocalize("ACCEPT_NEW_COPY"),
9678 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9682 [alert setContext:@"conffile"];
9683 [alert setNumberOfRows:2];
9687 - (void) addStashController {
9689 stash_ = [[StashController alloc] init];
9690 [window_ addSubview:[stash_ view]];
9693 - (void) removeStashController {
9694 [[stash_ view] removeFromSuperview];
9700 [self setIdleTimerDisabled:YES];
9702 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9703 UpdateExternalStatus(1);
9704 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
9705 UpdateExternalStatus(0);
9707 [self removeStashController];
9709 if (ExecFork() == 0) {
9710 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9711 perror("launchctl stop");
9715 - (void) setupViewControllers {
9716 tabbar_ = [[CYTabBarController alloc] initWithDatabase:database_];
9718 NSMutableArray *items([NSMutableArray arrayWithObjects:
9719 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease],
9720 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:0] autorelease],
9721 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:0] autorelease],
9722 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:0] autorelease],
9726 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:0] autorelease] atIndex:3];
9727 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9729 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9732 NSMutableArray *controllers([NSMutableArray array]);
9733 for (UITabBarItem *item in items) {
9734 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9735 [controller setTabBarItem:item];
9736 [controllers addObject:controller];
9738 [tabbar_ setViewControllers:controllers];
9740 [tabbar_ setUpdateDelegate:self];
9743 - (void) applicationDidFinishLaunching:(id)unused {
9745 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9746 [self setApplicationSupportsShakeToEdit:NO];
9748 @synchronized (HostConfig_) {
9749 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9752 [NSURLCache setSharedURLCache:[[[SDURLCache alloc]
9753 initWithMemoryCapacity:524288
9754 diskCapacity:10485760
9755 diskPath:[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia/SDURLCache", @"/var/root"]
9758 [CYBrowserController _initialize];
9760 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9762 Font12_ = [[UIFont systemFontOfSize:12] retain];
9763 Font12Bold_ = [[UIFont boldSystemFontOfSize:12] retain];
9764 Font14_ = [[UIFont systemFontOfSize:14] retain];
9765 Font18Bold_ = [[UIFont boldSystemFontOfSize:18] retain];
9766 Font22Bold_ = [[UIFont boldSystemFontOfSize:22] retain];
9768 essential_ = [[NSMutableArray alloc] initWithCapacity:4];
9769 broken_ = [[NSMutableArray alloc] initWithCapacity:4];
9771 // XXX: I really need this thing... like, seriously... I'm sorry
9772 [[[CYBrowserController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] reloadData];
9774 window_ = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
9775 [window_ orderFront:self];
9776 [window_ makeKey:self];
9777 [window_ setHidden:NO];
9780 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
9781 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
9782 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
9783 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
9784 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
9785 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
9786 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
9787 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
9788 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
9791 [self addStashController];
9792 // XXX: this would be much cleaner as a yieldToSelector:
9793 // that way the removeStashController could happen right here inline
9794 // we also could no longer require the useless stash_ field anymore
9795 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9799 database_ = [Database sharedInstance];
9800 [database_ setDelegate:self];
9802 [window_ setUserInteractionEnabled:NO];
9803 [self setupViewControllers];
9805 emulated_ = [[CYEmulatedLoadingController alloc] initWithDatabase:database_];
9806 [window_ addSubview:[emulated_ view]];
9808 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9812 - (NSArray *) defaultStartPages {
9813 NSMutableArray *standard = [NSMutableArray array];
9814 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9815 [standard addObject:[NSArray arrayWithObject:@"cydia://sections"]];
9816 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9818 [standard addObject:[NSArray arrayWithObject:@"cydia://manage"]];
9820 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9821 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9823 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9830 [window_ setUserInteractionEnabled:YES];
9831 [self showSettings];
9834 if ([emulated_ modalViewController] != nil)
9835 [emulated_ dismissModalViewControllerAnimated:YES];
9836 [window_ setUserInteractionEnabled:NO];
9844 int savedIndex = [[Metadata_ objectForKey:@"InterfaceIndex"] intValue];
9845 NSArray *saved = [[Metadata_ objectForKey:@"InterfaceState"] mutableCopy];
9846 int standardIndex = 0;
9847 NSArray *standard = [self defaultStartPages];
9854 NSDate *closed = [Metadata_ objectForKey:@"LastClosed"];
9855 if (valid && closed != nil) {
9856 NSTimeInterval interval([closed timeIntervalSinceNow]);
9857 // XXX: Is 15 minutes the optimal time here?
9858 if (interval > 0 && interval <= -(15*60))
9862 if (valid && [saved count] != [standard count])
9866 for (unsigned int i = 0; i < [standard count]; i++) {
9867 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9868 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9869 // but it's good enough for now.
9870 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9877 NSArray *items = nil;
9879 [tabbar_ setSelectedIndex:savedIndex];
9882 [tabbar_ setSelectedIndex:standardIndex];
9886 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9887 NSArray *stack = [items objectAtIndex:tab];
9888 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9889 NSMutableArray *current = [NSMutableArray array];
9891 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9892 NSString *addr = [stack objectAtIndex:nav];
9893 NSURL *url = [NSURL URLWithString:addr];
9894 CYViewController *page = [self pageForURL:url forExternal:NO];
9896 [current addObject:page];
9899 [navigation setViewControllers:current];
9902 // (Try to) show the startup URL.
9903 if (starturl_ != nil) {
9904 [self openCydiaURL:starturl_ forExternal:NO];
9905 [starturl_ release];
9910 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9911 if (item != nil && IsWildcat_) {
9912 [sheet showFromBarButtonItem:item animated:YES];
9914 [sheet showInView:window_];
9918 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9919 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9920 [progress setTitle:task];
9921 [progress addProgressEvent:event];
9924 - (void) addProgressEventForTask:(NSArray *)data {
9925 CydiaProgressEvent *event([data objectAtIndex:0]);
9926 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9927 [self addProgressEvent:event forTask:task];
9930 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9931 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9937 id Alloc_(id self, SEL selector) {
9938 id object = alloc_(self, selector);
9939 lprintf("[%s]A-%p\n", self->isa->name, object);
9944 id Dealloc_(id self, SEL selector) {
9945 id object = dealloc_(self, selector);
9946 lprintf("[%s]D-%p\n", self->isa->name, object);
9950 Class $WebDefaultUIKitDelegate;
9952 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
9953 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
9954 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
9955 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
9958 static NSSet *MobilizedFiles_;
9960 static NSURL *MobilizeURL(NSURL *url) {
9961 NSString *path([url path]);
9962 if ([path hasPrefix:@"/var/root/"]) {
9963 NSString *file([path substringFromIndex:10]);
9964 if ([MobilizedFiles_ containsObject:file])
9965 url = [NSURL fileURLWithPath:[@"/var/mobile/" stringByAppendingString:file] isDirectory:NO];
9971 Class $CFXPreferencesPropertyListSource;
9972 @class CFXPreferencesPropertyListSource;
9974 MSHook(BOOL, CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9975 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9976 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9977 url = MobilizeURL(url);
9978 BOOL value(_CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(self, _cmd));
9979 //NSLog(@"%@ %s", [url absoluteString], value ? "YES" : "NO");
9985 MSHook(void *, CFXPreferencesPropertyListSource$createPlistFromDisk, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9986 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9987 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9988 url = MobilizeURL(url);
9989 void *value(_CFXPreferencesPropertyListSource$createPlistFromDisk(self, _cmd));
9990 //NSLog(@"%@ %@", [url absoluteString], value);
9996 Class $NSURLConnection;
9998 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
9999 NSMutableURLRequest *copy([request mutableCopy]);
10001 NSURL *url([copy URL]);
10002 NSString *host([url host]);
10003 NSString *scheme([[url scheme] lowercaseString]);
10005 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
10007 @synchronized (HostConfig_) {
10008 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
10009 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
10010 [copy setHTTPShouldUsePipelining:YES];
10013 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
10017 int main(int argc, char *argv[]) { _pooled
10020 UpdateExternalStatus(0);
10022 if (Class $UIDevice = objc_getClass("UIDevice")) {
10023 UIDevice *device([$UIDevice currentDevice]);
10024 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
10026 IsWildcat_ = false;
10028 UIScreen *screen([UIScreen mainScreen]);
10029 if ([screen respondsToSelector:@selector(scale)])
10030 ScreenScale_ = [screen scale];
10034 UIDevice *device([UIDevice currentDevice]);
10035 if (![device respondsToSelector:@selector(userInterfaceIdiom)])
10036 Idiom_ = @"iphone";
10038 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10039 if (idiom == UIUserInterfaceIdiomPhone)
10040 Idiom_ = @"iphone";
10041 else if (idiom == UIUserInterfaceIdiomPad)
10044 NSLog(@"unknown UIUserInterfaceIdiom!");
10047 SessionData_ = [[NSMutableDictionary alloc] initWithCapacity:4];
10049 HostConfig_ = [[NSObject alloc] init];
10050 @synchronized (HostConfig_) {
10051 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10052 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10055 UI_ = CydiaURL([NSString stringWithFormat:@"ui/ios~%@", Idiom_]);
10057 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10059 MobilizedFiles_ = [NSMutableSet setWithObjects:
10060 @"Library/Preferences/com.apple.Accessibility.plist",
10061 @"Library/Preferences/com.apple.preferences.sounds.plist",
10064 /* Library Hacks {{{ */
10065 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10067 $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSource");
10069 Method CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(_backingPlistChangedSinceLastSync)));
10070 if (CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync != NULL) {
10071 _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync = reinterpret_cast<BOOL (*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10072 method_setImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10075 Method CFXPreferencesPropertyListSource$createPlistFromDisk(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(createPlistFromDisk)));
10076 if (CFXPreferencesPropertyListSource$createPlistFromDisk != NULL) {
10077 _CFXPreferencesPropertyListSource$createPlistFromDisk = reinterpret_cast<void *(*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk));
10078 method_setImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$createPlistFromDisk));
10081 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
10082 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
10083 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
10084 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
10085 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
10088 $NSURLConnection = objc_getClass("NSURLConnection");
10089 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10090 if (NSURLConnection$init$ != NULL) {
10091 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10092 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10095 /* Set Locale {{{ */
10096 Locale_ = CFLocaleCopyCurrent();
10097 Languages_ = [NSLocale preferredLanguages];
10099 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10100 //NSLog(@"%@", [Languages_ description]);
10103 if (Locale_ != NULL)
10104 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10105 else if (Languages_ != nil && [Languages_ count] != 0)
10106 lang = [[Languages_ objectAtIndex:0] UTF8String];
10108 // XXX: consider just setting to C and then falling through?
10111 if (lang != NULL) {
10112 Pcre pattern("^([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?$");
10113 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10116 NSLog(@"Setting Language: %s", lang);
10118 if (lang != NULL) {
10119 setenv("LANG", lang, true);
10120 std::setlocale(LC_ALL, lang);
10124 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
10126 /* Parse Arguments {{{ */
10127 bool substrate(false);
10133 for (int argi(1); argi != argc; ++argi)
10134 if (strcmp(argv[argi], "--") == 0) {
10136 argv[argi] = argv[0];
10142 for (int argi(1); argi != arge; ++argi)
10143 if (strcmp(args[argi], "--substrate") == 0)
10146 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10150 App_ = [[NSBundle mainBundle] bundlePath];
10156 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10157 alloc_ = alloc->method_imp;
10158 alloc->method_imp = (IMP) &Alloc_;*/
10160 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10161 dealloc_ = dealloc->method_imp;
10162 dealloc->method_imp = (IMP) &Dealloc_;*/
10164 /* System Information {{{ */
10168 size = sizeof(maxproc);
10169 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10170 perror("sysctlbyname(\"kern.maxproc\", ?)");
10171 else if (maxproc < 64) {
10173 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10174 perror("sysctlbyname(\"kern.maxproc\", #)");
10177 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10178 char *osversion = new char[size];
10179 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10180 perror("sysctlbyname(\"kern.osversion\", ?)");
10182 System_ = [NSString stringWithUTF8String:osversion];
10184 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10185 char *machine = new char[size];
10186 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10187 perror("sysctlbyname(\"hw.machine\", ?)");
10189 Machine_ = machine;
10191 if (CFMutableDictionaryRef dict = IOServiceMatching("IOPlatformExpertDevice")) {
10192 if (io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault, dict)) {
10193 if (CFTypeRef serial = IORegistryEntryCreateCFProperty(service, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0)) {
10194 SerialNumber_ = [NSString stringWithString:(NSString *)serial];
10198 if (CFTypeRef ecid = IORegistryEntrySearchCFProperty(service, kIODeviceTreePlane, CFSTR("unique-chip-id"), kCFAllocatorDefault, kIORegistryIterateRecursively)) {
10199 NSData *data((NSData *) ecid);
10200 size_t length([data length]);
10201 uint8_t bytes[length];
10202 [data getBytes:bytes];
10203 char string[length * 2 + 1];
10204 for (size_t i(0); i != length; ++i)
10205 sprintf(string + i * 2, "%.2X", bytes[length - i - 1]);
10206 ChipID_ = [NSString stringWithUTF8String:string];
10210 IOObjectRelease(service);
10214 UniqueID_ = [[UIDevice currentDevice] uniqueIdentifier];
10216 CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef);
10217 $CTSIMSupportCopyMobileSubscriberCountryCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
10218 CFStringRef mcc($CTSIMSupportCopyMobileSubscriberCountryCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault));
10220 CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef);
10221 $CTSIMSupportCopyMobileSubscriberNetworkCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
10222 CFStringRef mnc($CTSIMSupportCopyMobileSubscriberNetworkCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault));
10224 if (mcc != NULL && mnc != NULL)
10225 PLMN_ = [NSString stringWithFormat:@"%@%@", mcc, mnc];
10232 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
10233 Build_ = [system objectForKey:@"ProductBuildVersion"];
10234 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10235 Product_ = [info objectForKey:@"SafariProductVersion"];
10236 Safari_ = [info objectForKey:@"CFBundleVersion"];
10239 /* Load Database {{{ */
10241 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
10243 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10245 if (Metadata_ == NULL)
10246 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
10248 Settings_ = [Metadata_ objectForKey:@"Settings"];
10250 Packages_ = [Metadata_ objectForKey:@"Packages"];
10251 Sections_ = [Metadata_ objectForKey:@"Sections"];
10252 Sources_ = [Metadata_ objectForKey:@"Sources"];
10254 Token_ = [Metadata_ objectForKey:@"Token"];
10257 if (Settings_ != nil)
10258 Role_ = [Settings_ objectForKey:@"Role"];
10260 if (Sections_ == nil) {
10261 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10262 [Metadata_ setObject:Sections_ forKey:@"Sections"];
10265 if (Sources_ == nil) {
10266 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10267 [Metadata_ setObject:Sources_ forKey:@"Sources"];
10272 MetaFile_.Open("/var/lib/cydia/metadata.cb0");
10275 if (Packages_ != nil) {
10277 CFDictionaryApplyFunction((CFDictionaryRef) Packages_, &PackageImport, &fail);
10281 [Metadata_ removeObjectForKey:@"Packages"];
10287 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10289 #define MobileSubstrate_(name) \
10290 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", F_OK) == 0) { \
10291 void *handle(dlopen("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", RTLD_LAZY | RTLD_GLOBAL)); \
10292 if (handle == NULL) \
10293 NSLog(@"%s", dlerror()); \
10296 MobileSubstrate_(Activator)
10297 MobileSubstrate_(libstatusbar)
10298 MobileSubstrate_(SimulatedKeyEvents)
10299 MobileSubstrate_(WinterBoard)
10301 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
10302 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
10304 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10306 if (access("/tmp/.cydia.fw", F_OK) == 0) {
10307 unlink("/tmp/.cydia.fw");
10309 } else if (access("/User", F_OK) != 0 || version < 4) {
10312 system("/usr/libexec/cydia/firmware.sh");
10316 _assert([[NSFileManager defaultManager]
10317 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
10318 withIntermediateDirectories:YES
10323 if (access("/tmp/cydia.chk", F_OK) == 0) {
10324 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
10325 _assert(errno == ENOENT);
10326 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
10327 _assert(errno == ENOENT);
10330 /* APT Initialization {{{ */
10331 _assert(pkgInitConfig(*_config));
10332 _assert(pkgInitSystem(*_config, _system));
10335 _config->Set("APT::Acquire::Translation", lang);
10337 // XXX: this timeout might be important :(
10338 //_config->Set("Acquire::http::Timeout", 15);
10340 _config->Set("Acquire::http::MaxParallel", 3);
10342 /* Color Choices {{{ */
10343 space_ = CGColorSpaceCreateDeviceRGB();
10345 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10346 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10347 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10348 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10349 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10350 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10351 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10352 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10353 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10355 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10356 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10358 /* UIKit Configuration {{{ */
10359 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
10360 if ($GSFontSetUseLegacyFontMetrics != NULL)
10361 $GSFontSetUseLegacyFontMetrics(YES);
10363 // XXX: I have a feeling this was important
10364 //UIKeyboardDisableAutomaticAppearance();
10367 Colon_ = UCLocalize("COLON_DELIMITED");
10368 Elision_ = UCLocalize("ELISION");
10369 Error_ = UCLocalize("ERROR");
10370 Warning_ = UCLocalize("WARNING");
10373 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10375 CGColorSpaceRelease(space_);
10376 CFRelease(Locale_);