1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2010 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 // XXX: wtf/FastMalloc.h... wtf?
41 #define USE_SYSTEM_MALLOC 1
43 /* #include Directives {{{ */
44 #import "UICaboodle/UCPlatform.h"
45 #import "UICaboodle/UCLocalize.h"
47 #include <objc/objc.h>
48 #include <objc/runtime.h>
50 #include <CoreGraphics/CoreGraphics.h>
51 #include <GraphicsServices/GraphicsServices.h>
52 #include <Foundation/Foundation.h>
55 #define DEPLOYMENT_TARGET_MACOSX 1
56 #define CF_BUILDING_CF 1
57 #include <CoreFoundation/CFInternal.h>
60 #include <CoreFoundation/CFPriv.h>
61 #include <CoreFoundation/CFUniChar.h>
63 #import <UIKit/UIKit.h>
65 #include <WebCore/WebCoreThread.h>
66 #import <WebKit/WebDefaultUIKitDelegate.h>
73 #include <ext/stdio_filebuf.h>
77 #include <apt-pkg/acquire.h>
78 #include <apt-pkg/acquire-item.h>
79 #include <apt-pkg/algorithms.h>
80 #include <apt-pkg/cachefile.h>
81 #include <apt-pkg/clean.h>
82 #include <apt-pkg/configuration.h>
83 #include <apt-pkg/debindexfile.h>
84 #include <apt-pkg/debmetaindex.h>
85 #include <apt-pkg/error.h>
86 #include <apt-pkg/init.h>
87 #include <apt-pkg/mmap.h>
88 #include <apt-pkg/pkgrecords.h>
89 #include <apt-pkg/sha1.h>
90 #include <apt-pkg/sourcelist.h>
91 #include <apt-pkg/sptr.h>
92 #include <apt-pkg/strutl.h>
93 #include <apt-pkg/tagfile.h>
95 #include <apr-1/apr_pools.h>
97 #include <sys/types.h>
99 #include <sys/sysctl.h>
100 #include <sys/param.h>
101 #include <sys/mount.h>
107 #include <mach-o/nlist.h>
117 #include <ext/hash_map>
119 #import "UICaboodle/BrowserView.h"
120 #import "UICaboodle/ResetView.h"
122 #import "substrate.h"
129 #define _timestamp ({ \
131 gettimeofday(&tv, NULL); \
132 tv.tv_sec * 1000000 + tv.tv_usec; \
135 typedef std::vector<class ProfileTime *> TimeList;
145 ProfileTime(const char *name) :
149 times_.push_back(this);
152 void AddTime(uint64_t time) {
159 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
171 ProfileTimer(ProfileTime &time) :
178 time_.AddTime(_timestamp - start_);
183 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
185 std::cerr << "========" << std::endl;
188 #define _profile(name) { \
189 static ProfileTime name(#name); \
190 ProfileTimer _ ## name(name);
195 #define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
197 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
199 void NSLogPoint(const char *fix, const CGPoint &point) {
200 NSLog(@"%s(%g,%g)", fix, point.x, point.y);
203 void NSLogRect(const char *fix, const CGRect &rect) {
204 NSLog(@"%s(%g,%g)+(%g,%g)", fix, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
207 static _finline NSString *CydiaURL(NSString *path) {
209 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = ':';
210 page[5] = '/'; page[6] = '/'; page[7] = 'c'; page[8] = 'y'; page[9] = 'd';
211 page[10] = 'i'; page[11] = 'a'; page[12] = '.'; page[13] = 's'; page[14] = 'a';
212 page[15] = 'u'; page[16] = 'r'; page[17] = 'i'; page[18] = 'k'; page[19] = '.';
213 page[20] = 'c'; page[21] = 'o'; page[22] = 'm'; page[23] = '/'; page[24] = '\0';
214 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
217 /* [NSObject yieldToSelector:(withObject:)] {{{*/
218 @interface NSObject (Cydia)
219 - (id) yieldToSelector:(SEL)selector withObject:(id)object;
220 - (id) yieldToSelector:(SEL)selector;
223 @implementation NSObject (Cydia)
228 - (void) _yieldToContext:(NSMutableArray *)context { _pooled
229 SEL selector(reinterpret_cast<SEL>([[context objectAtIndex:0] pointerValue]));
230 id object([[context objectAtIndex:1] nonretainedObjectValue]);
231 volatile bool &stopped(*reinterpret_cast<bool *>([[context objectAtIndex:2] pointerValue]));
233 /* XXX: deal with exceptions */
234 id value([self performSelector:selector withObject:object]);
236 NSMethodSignature *signature([self methodSignatureForSelector:selector]);
237 [context removeAllObjects];
238 if ([signature methodReturnLength] != 0 && value != nil)
239 [context addObject:value];
244 performSelectorOnMainThread:@selector(doNothing)
250 - (id) yieldToSelector:(SEL)selector withObject:(id)object {
251 /*return [self performSelector:selector withObject:object];*/
253 volatile bool stopped(false);
255 NSMutableArray *context([NSMutableArray arrayWithObjects:
256 [NSValue valueWithPointer:selector],
257 [NSValue valueWithNonretainedObject:object],
258 [NSValue valueWithPointer:const_cast<bool *>(&stopped)],
261 NSThread *thread([[[NSThread alloc]
263 selector:@selector(_yieldToContext:)
269 NSRunLoop *loop([NSRunLoop currentRunLoop]);
270 NSDate *future([NSDate distantFuture]);
272 while (!stopped && [loop runMode:NSDefaultRunLoopMode beforeDate:future]);
274 return [context count] == 0 ? nil : [context objectAtIndex:0];
277 - (id) yieldToSelector:(SEL)selector {
278 return [self yieldToSelector:selector withObject:nil];
284 @interface CYActionSheet : UIAlertView {
288 - (int) yieldToPopupAlertAnimated:(BOOL)animated;
291 @implementation CYActionSheet
293 - (id) initWithTitle:(NSString *)title buttons:(NSArray *)buttons defaultButtonIndex:(int)index {
294 if ((self = [super init])) {
295 [self setDelegate:self];
296 for (NSString *button in buttons) [self addButtonWithTitle:button];
297 [self setCancelButtonIndex:index];
301 - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
302 button_ = buttonIndex + 1;
305 - (int) yieldToPopupAlertAnimated:(BOOL)animated {
307 [self popupAlertAnimated:animated];
308 NSRunLoop *loop([NSRunLoop currentRunLoop]);
309 NSDate *future([NSDate distantFuture]);
310 while (button_ == 0 && [loop runMode:NSDefaultRunLoopMode beforeDate:future]);
316 /* NSForcedOrderingSearch doesn't work on the iPhone */
317 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
318 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
319 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
321 /* Information Dictionaries {{{ */
322 @interface NSMutableArray (Cydia)
323 - (void) addInfoDictionary:(NSDictionary *)info;
326 @implementation NSMutableArray (Cydia)
328 - (void) addInfoDictionary:(NSDictionary *)info {
329 [self addObject:info];
334 @interface NSMutableDictionary (Cydia)
335 - (void) addInfoDictionary:(NSDictionary *)info;
338 @implementation NSMutableDictionary (Cydia)
340 - (void) addInfoDictionary:(NSDictionary *)info {
341 [self setObject:info forKey:[info objectForKey:@"CFBundleIdentifier"]];
346 /* Pop Transitions {{{ */
347 @interface PopTransitionView : UITransitionView {
352 @implementation PopTransitionView
354 - (void) transitionViewDidComplete:(UITransitionView *)view fromView:(UIView *)from toView:(UIView *)to {
355 if (from != nil && to == nil)
356 [self removeFromSuperview];
361 @implementation UIView (PopUpView)
363 - (void) popFromSuperviewAnimated:(BOOL)animated {
364 [[self superview] transition:(animated ? UITransitionPushFromTop : UITransitionNone) toView:nil];
367 - (void) popSubview:(UIView *)view {
368 UITransitionView *transition([[[PopTransitionView alloc] initWithFrame:[self bounds]] autorelease]);
369 [transition setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
370 [self addSubview:transition];
372 [transition setDelegate:transition];
374 UIView *blank([[[UIView alloc] initWithFrame:[transition bounds]] autorelease]);
375 [blank setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
377 [transition transition:UITransitionNone toView:blank];
378 [transition transition:UITransitionPushFromBottom toView:view];
384 #define lprintf(args...) fprintf(stderr, args)
387 #define TraceLogging (1 && !ForRelease)
388 #define HistogramInsertionSort (0 && !ForRelease)
389 #define ProfileTimes (0 && !ForRelease)
390 #define ForSaurik (0 && !ForRelease)
391 #define LogBrowser (0 && !ForRelease)
392 #define TrackResize (0 && !ForRelease)
393 #define ManualRefresh (0 && !ForRelease)
394 #define ShowInternals (0 && !ForRelease)
395 #define IgnoreInstall (0 && !ForRelease)
396 #define RecycleWebViews 0
397 #define RecyclePackageViews (1 && ForRelease)
398 #define AlwaysReload (1 && !ForRelease)
402 #define _trace(args...)
407 #define _profile(name) {
410 #define PrintTimes() do {} while (false)
414 typedef uint32_t (*SKRadixFunction)(id, void *);
416 @interface NSMutableArray (Radix)
417 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object;
418 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument;
426 static void RadixSort_(NSMutableArray *self, size_t count, struct RadixItem_ *swap) {
427 struct RadixItem_ *lhs(swap), *rhs(swap + count);
429 static const size_t width = 32;
430 static const size_t bits = 11;
431 static const size_t slots = 1 << bits;
432 static const size_t passes = (width + (bits - 1)) / bits;
434 size_t *hist(new size_t[slots]);
436 for (size_t pass(0); pass != passes; ++pass) {
437 memset(hist, 0, sizeof(size_t) * slots);
439 for (size_t i(0); i != count; ++i) {
440 uint32_t key(lhs[i].key);
442 key &= _not(uint32_t) >> width - bits;
447 for (size_t i(0); i != slots; ++i) {
448 size_t local(offset);
453 for (size_t i(0); i != count; ++i) {
454 uint32_t key(lhs[i].key);
456 key &= _not(uint32_t) >> width - bits;
457 rhs[hist[key]++] = lhs[i];
460 RadixItem_ *tmp(lhs);
467 NSMutableArray *values([NSMutableArray arrayWithCapacity:count]);
468 for (size_t i(0); i != count; ++i)
469 [values addObject:[self objectAtIndex:lhs[i].index]];
470 [self setArray:values];
475 @implementation NSMutableArray (Radix)
477 - (void) radixSortUsingSelector:(SEL)selector withObject:(id)object {
478 size_t count([self count]);
483 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[NSMethodSignature signatureWithObjCTypes:"L12@0:4@8"]]);
484 [invocation setSelector:selector];
485 [invocation setArgument:&object atIndex:2];
487 /* XXX: this is an unsafe optimization of doomy hell */
488 Method method(class_getInstanceMethod([[self objectAtIndex:0] class], selector));
489 _assert(method != NULL);
490 uint32_t (*imp)(id, SEL, id) = reinterpret_cast<uint32_t (*)(id, SEL, id)>(method_getImplementation(method));
491 _assert(imp != NULL);
494 struct RadixItem_ *swap(new RadixItem_[count * 2]);
496 for (size_t i(0); i != count; ++i) {
497 RadixItem_ &item(swap[i]);
500 id object([self objectAtIndex:i]);
503 [invocation setTarget:object];
505 [invocation getReturnValue:&item.key];
507 item.key = imp(object, selector, object);
511 RadixSort_(self, count, swap);
514 - (void) radixSortUsingFunction:(SKRadixFunction)function withContext:(void *)argument {
515 size_t count([self count]);
516 struct RadixItem_ *swap(new RadixItem_[count * 2]);
518 for (size_t i(0); i != count; ++i) {
519 RadixItem_ &item(swap[i]);
522 id object([self objectAtIndex:i]);
523 item.key = function(object, argument);
526 RadixSort_(self, count, swap);
531 /* Insertion Sort {{{ */
533 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
534 const char *ptr = (const char *)list;
536 CFIndex half = count / 2;
537 const char *probe = ptr + elementSize * half;
538 CFComparisonResult cr = comparator(element, probe, context);
539 if (0 == cr) return (probe - (const char *)list) / elementSize;
540 ptr = (cr < 0) ? ptr : probe + elementSize;
541 count = (cr < 0) ? half : (half + (count & 1) - 1);
543 return (ptr - (const char *)list) / elementSize;
546 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
547 const char *ptr = (const char *)list;
549 CFIndex half = count / 2;
550 const char *probe = ptr + elementSize * half;
551 CFComparisonResult cr = comparator(element, probe, context);
552 if (0 == cr) return (probe - (const char *)list) / elementSize;
553 ptr = (cr < 0) ? ptr : probe + elementSize;
554 count = (cr < 0) ? half : (half + (count & 1) - 1);
556 return (ptr - (const char *)list) / elementSize;
559 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
560 if (range.length == 0)
562 const void **values(new const void *[range.length]);
563 CFArrayGetValues(array, range, values);
565 #if HistogramInsertionSort
566 uint32_t total(0), *offsets(new uint32_t[range.length]);
569 for (CFIndex index(1); index != range.length; ++index) {
570 const void *value(values[index]);
571 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
572 CFIndex correct(index);
573 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan)
576 if (correct != index) {
577 size_t offset(index - correct);
578 #if HistogramInsertionSort
582 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
584 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
585 values[correct] = value;
589 CFArrayReplaceValues(array, range, values, range.length);
592 #if HistogramInsertionSort
593 for (CFIndex index(0); index != range.length; ++index)
594 if (offsets[index] != 0)
595 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
596 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
603 /* Apple Bug Fixes {{{ */
604 @implementation UIWebDocumentView (Cydia)
606 - (void) _setScrollerOffset:(CGPoint)offset {
607 UIScroller *scroller([self _scroller]);
609 CGSize size([scroller contentSize]);
610 CGSize bounds([scroller bounds].size);
613 max.x = size.width - bounds.width;
614 max.y = size.height - bounds.height;
622 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
623 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
625 [scroller setOffset:offset];
631 NSUInteger WebScriptObject$countByEnumeratingWithState$objects$count$(WebScriptObject *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
632 size_t length([self count] - state->state);
635 else if (length > count)
637 for (size_t i(0); i != length; ++i)
638 objects[i] = [self objectAtIndex:state->state++];
639 state->itemsPtr = objects;
640 state->mutationsPtr = (unsigned long *) self;
644 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
645 size_t length([self length] - state->state);
648 else if (length > count)
650 for (size_t i(0); i != length; ++i)
651 objects[i] = [self item:state->state++];
652 state->itemsPtr = objects;
653 state->mutationsPtr = (unsigned long *) self;
657 @interface NSString (UIKit)
658 - (NSString *) stringByAddingPercentEscapes;
661 /* Cydia NSString Additions {{{ */
662 @interface NSString (Cydia)
663 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length;
664 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool;
665 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length;
666 - (NSComparisonResult) compareByPath:(NSString *)other;
667 - (NSString *) stringByCachingURLWithCurrentCDN;
668 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
671 @implementation NSString (Cydia)
673 + (NSString *) stringWithUTF8BytesNoCopy:(const char *)bytes length:(int)length {
674 return [[[NSString alloc] initWithBytesNoCopy:const_cast<char *>(bytes) length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
677 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length withZone:(NSZone *)zone inPool:(apr_pool_t *)pool {
678 char *data(reinterpret_cast<char *>(apr_palloc(pool, length)));
679 memcpy(data, bytes, length);
680 return [[[NSString allocWithZone:zone] initWithBytesNoCopy:data length:length encoding:NSUTF8StringEncoding freeWhenDone:NO] autorelease];
683 + (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length {
684 return [[[NSString alloc] initWithBytes:bytes length:length encoding:NSUTF8StringEncoding] autorelease];
687 - (NSComparisonResult) compareByPath:(NSString *)other {
688 NSString *prefix = [self commonPrefixWithString:other options:0];
689 size_t length = [prefix length];
691 NSRange lrange = NSMakeRange(length, [self length] - length);
692 NSRange rrange = NSMakeRange(length, [other length] - length);
694 lrange = [self rangeOfString:@"/" options:0 range:lrange];
695 rrange = [other rangeOfString:@"/" options:0 range:rrange];
697 NSComparisonResult value;
699 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
700 value = NSOrderedSame;
701 else if (lrange.location == NSNotFound)
702 value = NSOrderedAscending;
703 else if (rrange.location == NSNotFound)
704 value = NSOrderedDescending;
706 value = NSOrderedSame;
708 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
709 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
710 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
711 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
713 NSComparisonResult result = [lpath compare:rpath];
714 return result == NSOrderedSame ? value : result;
717 - (NSString *) stringByCachingURLWithCurrentCDN {
719 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
720 withString:@"://cache.cydia.saurik.com/"
724 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
725 return [(id)CFURLCreateStringByAddingPercentEscapes(
730 kCFStringEncodingUTF8
737 /* C++ NSString Wrapper Cache {{{ */
744 _finline void clear_() {
745 if (cache_ != NULL) {
752 _finline bool empty() const {
756 _finline size_t size() const {
760 _finline char *data() const {
764 _finline void clear() {
769 _finline CYString() :
776 _finline ~CYString() {
780 void operator =(const CYString &rhs) {
784 if (rhs.cache_ == nil)
787 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
790 void set(apr_pool_t *pool, const char *data, size_t size) {
796 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size + 1)));
797 memcpy(temp, data, size);
804 _finline void set(apr_pool_t *pool, const char *data) {
805 set(pool, data, data == NULL ? 0 : strlen(data));
808 _finline void set(apr_pool_t *pool, const std::string &rhs) {
809 set(pool, rhs.data(), rhs.size());
812 bool operator ==(const CYString &rhs) const {
813 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
816 operator CFStringRef() {
817 if (cache_ == NULL) {
820 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingUTF8, NO, kCFAllocatorNull);
822 cache_ = CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<uint8_t *>(data_), size_, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
826 _finline operator id() {
827 return (NSString *) static_cast<CFStringRef>(*this);
831 /* C++ NSString Algorithm Adapters {{{ */
833 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
836 struct NSStringMapHash :
837 std::unary_function<NSString *, size_t>
839 _finline size_t operator ()(NSString *value) const {
840 return CFStringHashNSString((CFStringRef) value);
844 struct NSStringMapLess :
845 std::binary_function<NSString *, NSString *, bool>
847 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
848 return [lhs compare:rhs] == NSOrderedAscending;
852 struct NSStringMapEqual :
853 std::binary_function<NSString *, NSString *, bool>
855 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
856 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
857 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
858 //[lhs isEqualToString:rhs];
863 /* Perl-Compatible RegEx {{{ */
873 Pcre(const char *regex) :
878 code_ = pcre_compile(regex, 0, &error, &offset, NULL);
881 lprintf("%d:%s\n", offset, error);
885 pcre_fullinfo(code_, study_, PCRE_INFO_CAPTURECOUNT, &capture_);
886 matches_ = new int[(capture_ + 1) * 3];
894 NSString *operator [](size_t match) {
895 return [NSString stringWithUTF8Bytes:(data_ + matches_[match * 2]) length:(matches_[match * 2 + 1] - matches_[match * 2])];
898 bool operator ()(NSString *data) {
899 // XXX: length is for characters, not for bytes
900 return operator ()([data UTF8String], [data length]);
903 bool operator ()(const char *data, size_t size) {
905 return pcre_exec(code_, study_, data, size, 0, 0, matches_, (capture_ + 1) * 3) >= 0;
909 /* Mime Addresses {{{ */
910 @interface Address : NSObject {
916 - (NSString *) address;
918 - (void) setAddress:(NSString *)address;
920 + (Address *) addressWithString:(NSString *)string;
921 - (Address *) initWithString:(NSString *)string;
924 @implementation Address
933 - (NSString *) name {
937 - (NSString *) address {
941 - (void) setAddress:(NSString *)address {
943 [address_ autorelease];
947 address_ = [address retain];
950 + (Address *) addressWithString:(NSString *)string {
951 return [[[Address alloc] initWithString:string] autorelease];
954 + (NSArray *) _attributeKeys {
955 return [NSArray arrayWithObjects:@"address", @"name", nil];
958 - (NSArray *) attributeKeys {
959 return [[self class] _attributeKeys];
962 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
963 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
966 - (Address *) initWithString:(NSString *)string {
967 if ((self = [super init]) != nil) {
968 const char *data = [string UTF8String];
969 size_t size = [string length];
971 static Pcre address_r("^\"?(.*)\"? <([^>]*)>$");
973 if (address_r(data, size)) {
974 name_ = [address_r[1] retain];
975 address_ = [address_r[2] retain];
977 name_ = [string retain];
985 /* CoreGraphics Primitives {{{ */
996 CGColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
999 Set(space, red, green, blue, alpha);
1004 CGColorRelease(color_);
1011 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
1013 float color[] = {red, green, blue, alpha};
1014 color_ = CGColorCreate(space, color);
1017 operator CGColorRef() {
1023 /* Random Global Variables {{{ */
1024 static const int PulseInterval_ = 50000;
1025 static const int ButtonBarWidth_ = 60;
1026 static const int ButtonBarHeight_ = 48;
1027 static const float KeyboardTime_ = 0.3f;
1030 static NSArray *Finishes_;
1032 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
1033 #define NotifyConfig_ "/etc/notify.conf"
1035 static bool Queuing_;
1037 static CGColor Blue_;
1038 static CGColor Blueish_;
1039 static CGColor Black_;
1040 static CGColor Off_;
1041 static CGColor White_;
1042 static CGColor Gray_;
1043 static CGColor Green_;
1044 static CGColor Purple_;
1045 static CGColor Purplish_;
1047 static UIColor *InstallingColor_;
1048 static UIColor *RemovingColor_;
1050 static NSString *App_;
1051 static NSString *Home_;
1053 static BOOL Advanced_;
1054 static BOOL Ignored_;
1056 static UIFont *Font12_;
1057 static UIFont *Font12Bold_;
1058 static UIFont *Font14_;
1059 static UIFont *Font18Bold_;
1060 static UIFont *Font22Bold_;
1062 static const char *Machine_ = NULL;
1063 static const NSString *System_ = NULL;
1064 static const NSString *SerialNumber_ = nil;
1065 static const NSString *ChipID_ = nil;
1066 static const NSString *Token_ = nil;
1067 static const NSString *UniqueID_ = nil;
1068 static const NSString *Build_ = nil;
1069 static const NSString *Product_ = nil;
1070 static const NSString *Safari_ = nil;
1072 static CFLocaleRef Locale_;
1073 static NSArray *Languages_;
1074 static CGColorSpaceRef space_;
1076 static bool reload_;
1078 static NSDictionary *SectionMap_;
1079 static NSMutableDictionary *Metadata_;
1080 static _transient NSMutableDictionary *Settings_;
1081 static _transient NSString *Role_;
1082 static _transient NSMutableDictionary *Packages_;
1083 static _transient NSMutableDictionary *Sections_;
1084 static _transient NSMutableDictionary *Sources_;
1085 static bool Changed_;
1086 static NSDate *now_;
1088 static bool IsWildcat_;
1091 static NSMutableArray *Documents_;
1095 /* Display Helpers {{{ */
1096 inline float Interpolate(float begin, float end, float fraction) {
1097 return (end - begin) * fraction + begin;
1100 /* XXX: localize this! */
1101 NSString *SizeString(double size) {
1102 bool negative = size < 0;
1107 while (size > 1024) {
1112 static const char *powers_[] = {"B", "kB", "MB", "GB"};
1114 return [NSString stringWithFormat:@"%s%.1f %s", (negative ? "-" : ""), size, powers_[power]];
1117 static _finline CFStringRef CFCString(const char *value) {
1118 return CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(value), strlen(value), kCFStringEncodingUTF8, NO, kCFAllocatorNull);
1121 const char *StripVersion_(const char *version) {
1122 const char *colon(strchr(version, ':'));
1124 version = colon + 1;
1128 CFStringRef StripVersion(const char *version) {
1129 const char *colon(strchr(version, ':'));
1131 version = colon + 1;
1132 return CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(version), strlen(version), kCFStringEncodingUTF8, NO);
1134 return CFCString(version);
1137 NSString *LocalizeSection(NSString *section) {
1138 static Pcre title_r("^(.*?) \\((.*)\\)$");
1139 if (title_r(section)) {
1140 NSString *parent(title_r[1]);
1141 NSString *child(title_r[2]);
1143 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
1144 LocalizeSection(parent),
1145 LocalizeSection(child)
1149 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
1152 NSString *Simplify(NSString *title) {
1153 const char *data = [title UTF8String];
1154 size_t size = [title length];
1156 static Pcre square_r("^\\[(.*)\\]$");
1157 if (square_r(data, size))
1158 return Simplify(square_r[1]);
1160 static Pcre paren_r("^\\((.*)\\)$");
1161 if (paren_r(data, size))
1162 return Simplify(paren_r[1]);
1164 static Pcre title_r("^(.*?) \\((.*)\\)$");
1165 if (title_r(data, size))
1166 return Simplify(title_r[1]);
1172 NSString *GetLastUpdate() {
1173 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
1176 return UCLocalize("NEVER_OR_UNKNOWN");
1178 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
1179 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
1181 CFRelease(formatter);
1183 return [(NSString *) formatted autorelease];
1186 bool isSectionVisible(NSString *section) {
1187 NSDictionary *metadata([Sections_ objectForKey:section]);
1188 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
1189 return hidden == nil || ![hidden boolValue];
1192 /* Delegate Prototypes {{{ */
1196 @interface NSObject (ProgressDelegate)
1199 @protocol ProgressDelegate
1200 - (void) setProgressError:(NSString *)error withTitle:(NSString *)id;
1201 - (void) setProgressTitle:(NSString *)title;
1202 - (void) setProgressPercent:(float)percent;
1203 - (void) startProgress;
1204 - (void) addProgressOutput:(NSString *)output;
1205 - (bool) isCancelling:(size_t)received;
1208 @protocol ConfigurationDelegate
1209 - (void) repairWithSelector:(SEL)selector;
1210 - (void) setConfigurationData:(NSString *)data;
1215 @protocol CydiaDelegate
1216 - (void) setPackageView:(PackageView *)view;
1217 - (void) clearPackage:(Package *)package;
1218 - (void) installPackage:(Package *)package;
1219 - (void) installPackages:(NSArray *)packages;
1220 - (void) removePackage:(Package *)package;
1221 - (void) slideUp:(UIActionSheet *)alert;
1222 - (void) distUpgrade;
1223 - (void) updateData;
1225 - (void) askForSettings;
1226 - (UIProgressHUD *) addProgressHUD;
1227 - (void) removeProgressHUD:(UIProgressHUD *)hud;
1228 - (RVPage *) pageForPackage:(NSString *)name;
1229 - (PackageView *) packageView;
1233 /* Status Delegation {{{ */
1235 public pkgAcquireStatus
1238 _transient NSObject<ProgressDelegate> *delegate_;
1246 void setDelegate(id delegate) {
1247 delegate_ = delegate;
1250 NSObject<ProgressDelegate> *getDelegate() const {
1254 virtual bool MediaChange(std::string media, std::string drive) {
1258 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
1261 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1262 //NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1263 [delegate_ setProgressTitle:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), [NSString stringWithUTF8String:item.ShortDesc.c_str()]]];
1266 virtual void Done(pkgAcquire::ItemDesc &item) {
1269 virtual void Fail(pkgAcquire::ItemDesc &item) {
1271 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1272 item.Owner->Status == pkgAcquire::Item::StatDone
1276 std::string &error(item.Owner->ErrorText);
1280 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1281 NSArray *fields([description componentsSeparatedByString:@" "]);
1282 NSString *source([fields count] == 0 ? nil : [fields objectAtIndex:0]);
1284 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
1285 withObject:[NSArray arrayWithObjects:
1286 [NSString stringWithUTF8String:error.c_str()],
1293 virtual bool Pulse(pkgAcquire *Owner) {
1294 bool value = pkgAcquireStatus::Pulse(Owner);
1297 double(CurrentBytes + CurrentItems) /
1298 double(TotalBytes + TotalItems)
1301 [delegate_ setProgressPercent:percent];
1302 return [delegate_ isCancelling:CurrentBytes] ? false : value;
1305 virtual void Start() {
1306 [delegate_ startProgress];
1309 virtual void Stop() {
1313 /* Progress Delegation {{{ */
1318 _transient id<ProgressDelegate> delegate_;
1322 virtual void Update() {
1323 /*if (abs(Percent - percent_) > 2)
1324 //NSLog(@"%s:%s:%f", Op.c_str(), SubOp.c_str(), Percent);
1328 /*[delegate_ setProgressTitle:[NSString stringWithUTF8String:Op.c_str()]];
1329 [delegate_ setProgressPercent:(Percent / 100)];*/
1339 void setDelegate(id delegate) {
1340 delegate_ = delegate;
1343 id getDelegate() const {
1347 virtual void Done() {
1349 //[delegate_ setProgressPercent:1];
1354 /* Database Interface {{{ */
1355 typedef std::map< unsigned long, _H<Source> > SourceMap;
1357 @interface Database : NSObject {
1363 pkgCacheFile cache_;
1364 pkgDepCache::Policy *policy_;
1365 pkgRecords *records_;
1366 pkgProblemResolver *resolver_;
1367 pkgAcquire *fetcher_;
1369 SPtr<pkgPackageManager> manager_;
1370 pkgSourceList *list_;
1373 NSMutableArray *packages_;
1375 _transient NSObject<ConfigurationDelegate, ProgressDelegate> *delegate_;
1384 + (Database *) sharedInstance;
1387 - (void) _readCydia:(NSNumber *)fd;
1388 - (void) _readStatus:(NSNumber *)fd;
1389 - (void) _readOutput:(NSNumber *)fd;
1393 - (Package *) packageWithName:(NSString *)name;
1395 - (pkgCacheFile &) cache;
1396 - (pkgDepCache::Policy *) policy;
1397 - (pkgRecords *) records;
1398 - (pkgProblemResolver *) resolver;
1399 - (pkgAcquire &) fetcher;
1400 - (pkgSourceList &) list;
1401 - (NSArray *) packages;
1402 - (NSArray *) sources;
1403 - (void) reloadData;
1411 - (void) setVisible;
1413 - (void) updateWithStatus:(Status &)status;
1415 - (void) setDelegate:(id)delegate;
1416 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1419 /* Delegate Helpers {{{ */
1420 @implementation NSObject(ProgressDelegate)
1422 - (void) _setProgressErrorPackage:(NSArray *)args {
1423 [self performSelector:@selector(setProgressError:forPackage:)
1424 withObject:[args objectAtIndex:0]
1425 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1429 - (void) _setProgressErrorTitle:(NSArray *)args {
1430 [self performSelector:@selector(setProgressError:withTitle:)
1431 withObject:[args objectAtIndex:0]
1432 withObject:([args count] == 1 ? nil : [args objectAtIndex:1])
1436 - (void) _setProgressError:(NSString *)error withTitle:(NSString *)title {
1437 [self performSelectorOnMainThread:@selector(_setProgressErrorTitle:)
1438 withObject:[NSArray arrayWithObjects:error, title, nil]
1443 - (void) setProgressError:(NSString *)error forPackage:(NSString *)id {
1444 Package *package = id == nil ? nil : [[Database sharedInstance] packageWithName:id];
1445 // XXX: holy typecast batman!
1446 [(id<ProgressDelegate>)self setProgressError:error withTitle:(package == nil ? id : [package name])];
1452 /* Source Class {{{ */
1453 @interface Source : NSObject {
1454 CYString depiction_;
1455 CYString description_;
1461 CYString distribution_;
1466 NSString *authority_;
1468 CYString defaultIcon_;
1470 NSDictionary *record_;
1474 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool;
1476 - (NSComparisonResult) compareByNameAndType:(Source *)source;
1478 - (NSString *) depictionForPackage:(NSString *)package;
1479 - (NSString *) supportForPackage:(NSString *)package;
1481 - (NSDictionary *) record;
1485 - (NSString *) distribution;
1486 - (NSString *) type;
1488 - (NSString *) host;
1490 - (NSString *) name;
1491 - (NSString *) description;
1492 - (NSString *) label;
1493 - (NSString *) origin;
1494 - (NSString *) version;
1496 - (NSString *) defaultIcon;
1500 @implementation Source
1504 distribution_.clear();
1507 description_.clear();
1513 defaultIcon_.clear();
1515 if (record_ != nil) {
1525 if (authority_ != nil) {
1526 [authority_ release];
1536 + (NSArray *) _attributeKeys {
1537 return [NSArray arrayWithObjects:@"description", @"distribution", @"host", @"key", @"label", @"name", @"origin", @"trusted", @"type", @"uri", @"version", nil];
1540 - (NSArray *) attributeKeys {
1541 return [[self class] _attributeKeys];
1544 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1545 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1548 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1551 trusted_ = index->IsTrusted();
1553 uri_.set(pool, index->GetURI());
1554 distribution_.set(pool, index->GetDist());
1555 type_.set(pool, index->GetType());
1557 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1558 if (dindex != NULL) {
1560 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1563 pkgTagFile tags(&fd);
1565 pkgTagSection section;
1572 {"default-icon", &defaultIcon_},
1573 {"depiction", &depiction_},
1574 {"description", &description_},
1576 {"origin", &origin_},
1577 {"support", &support_},
1578 {"version", &version_},
1581 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1582 const char *start, *end;
1584 if (section.Find(names[i].name_, start, end)) {
1585 CYString &value(*names[i].value_);
1586 value.set(pool, start, end - start);
1592 record_ = [Sources_ objectForKey:[self key]];
1594 record_ = [record_ retain];
1596 NSURL *url([NSURL URLWithString:uri_]);
1600 host_ = [[host_ lowercaseString] retain];
1605 authority_ = [url path];
1607 if (authority_ != nil)
1608 authority_ = [authority_ retain];
1611 - (Source *) initWithMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1612 if ((self = [super init]) != nil) {
1613 [self setMetaIndex:index inPool:pool];
1617 - (NSComparisonResult) compareByNameAndType:(Source *)source {
1618 NSDictionary *lhr = [self record];
1619 NSDictionary *rhr = [source record];
1622 return lhr == nil ? NSOrderedDescending : NSOrderedAscending;
1624 NSString *lhs = [self name];
1625 NSString *rhs = [source name];
1627 if ([lhs length] != 0 && [rhs length] != 0) {
1628 unichar lhc = [lhs characterAtIndex:0];
1629 unichar rhc = [rhs characterAtIndex:0];
1631 if (isalpha(lhc) && !isalpha(rhc))
1632 return NSOrderedAscending;
1633 else if (!isalpha(lhc) && isalpha(rhc))
1634 return NSOrderedDescending;
1637 return [lhs compare:rhs options:LaxCompareOptions_];
1640 - (NSString *) depictionForPackage:(NSString *)package {
1641 return depiction_.empty() ? nil : [depiction_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1644 - (NSString *) supportForPackage:(NSString *)package {
1645 return support_.empty() ? nil : [support_ stringByReplacingOccurrencesOfString:@"*" withString:package];
1648 - (NSDictionary *) record {
1656 - (NSString *) uri {
1660 - (NSString *) distribution {
1661 return distribution_;
1664 - (NSString *) type {
1668 - (NSString *) key {
1669 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1672 - (NSString *) host {
1676 - (NSString *) name {
1677 return origin_.empty() ? authority_ : origin_;
1680 - (NSString *) description {
1681 return description_;
1684 - (NSString *) label {
1685 return label_.empty() ? authority_ : label_;
1688 - (NSString *) origin {
1692 - (NSString *) version {
1696 - (NSString *) defaultIcon {
1697 return defaultIcon_;
1702 /* Relationship Class {{{ */
1703 @interface Relationship : NSObject {
1708 - (NSString *) type;
1710 - (NSString *) name;
1714 @implementation Relationship
1722 - (NSString *) type {
1730 - (NSString *) name {
1737 /* Package Class {{{ */
1738 @interface Package : NSObject {
1742 pkgCache::VerIterator version_;
1743 pkgCache::PkgIterator iterator_;
1744 _transient Database *database_;
1745 pkgCache::VerFileIterator file_;
1752 NSString *section$_;
1759 CYString installed_;
1765 CYString depiction_;
1776 NSMutableArray *tags_;
1779 NSArray *relationships_;
1781 NSMutableDictionary *metadata_;
1782 _transient NSDate *firstSeen_;
1783 _transient NSDate *lastSeen_;
1787 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1788 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1790 - (pkgCache::PkgIterator) iterator;
1793 - (NSString *) section;
1794 - (NSString *) simpleSection;
1796 - (NSString *) longSection;
1797 - (NSString *) shortSection;
1801 - (Address *) maintainer;
1803 - (NSString *) longDescription;
1804 - (NSString *) shortDescription;
1807 - (NSMutableDictionary *) metadata;
1809 - (BOOL) subscribed;
1812 - (NSString *) latest;
1813 - (NSString *) installed;
1814 - (BOOL) uninstalled;
1817 - (BOOL) upgradableAndEssential:(BOOL)essential;
1820 - (BOOL) unfiltered;
1824 - (BOOL) halfConfigured;
1825 - (BOOL) halfInstalled;
1827 - (NSString *) mode;
1829 - (void) setVisible;
1832 - (NSString *) name;
1834 - (NSString *) homepage;
1835 - (NSString *) depiction;
1836 - (Address *) author;
1838 - (NSString *) support;
1840 - (NSArray *) files;
1841 - (NSArray *) relationships;
1842 - (NSArray *) warnings;
1843 - (NSArray *) applications;
1845 - (Source *) source;
1846 - (NSString *) role;
1848 - (BOOL) matches:(NSString *)text;
1850 - (bool) hasSupportingRole;
1851 - (BOOL) hasTag:(NSString *)tag;
1852 - (NSString *) primaryPurpose;
1853 - (NSArray *) purposes;
1854 - (bool) isCommercial;
1856 - (CYString &) cyname;
1858 - (uint32_t) compareBySection:(NSArray *)sections;
1860 - (uint32_t) compareForChanges;
1865 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search;
1866 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1867 - (bool) isInstalledAndVisible:(NSNumber *)number;
1868 - (bool) isVisibleInSection:(NSString *)section;
1869 - (bool) isVisibleInSource:(Source *)source;
1873 uint32_t PackageChangesRadix(Package *self, void *) {
1878 uint32_t timestamp : 30;
1879 uint32_t ignored : 1;
1880 uint32_t upgradable : 1;
1884 bool upgradable([self upgradableAndEssential:YES]);
1885 value.bits.upgradable = upgradable ? 1 : 0;
1888 value.bits.timestamp = 0;
1889 value.bits.ignored = [self ignored] ? 0 : 1;
1890 value.bits.upgradable = 1;
1892 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
1893 value.bits.ignored = 0;
1894 value.bits.upgradable = 0;
1897 return _not(uint32_t) - value.key;
1900 _finline static void Stifle(uint8_t &value) {
1903 uint32_t PackagePrefixRadix(Package *self, void *context) {
1904 size_t offset(reinterpret_cast<size_t>(context));
1905 CYString &name([self cyname]);
1907 size_t size(name.size());
1910 char *text(name.data());
1913 if (!isdigit(text[0]))
1917 while (size != digits && isdigit(text[digits]))
1927 if (offset == 0 && zeros != 0) {
1928 memset(data, '0', zeros);
1929 memcpy(data + zeros, text, 4 - zeros);
1931 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
1932 if (size <= offset - zeros)
1935 text += offset - zeros;
1936 size -= offset - zeros;
1939 memcpy(data, text, 4);
1941 memcpy(data, text, size);
1942 memset(data + size, 0, 4 - size);
1945 for (size_t i(0); i != 4; ++i)
1946 if (isalpha(data[i]))
1951 data[0] = (data[0] & 0x3f) | "\x80\x00\xc0\x40"[data[0] >> 6];
1953 /* XXX: ntohl may be more honest */
1954 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
1957 CYString &(*PackageName)(Package *self, SEL sel);
1959 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
1960 _profile(PackageNameCompare)
1961 CYString &lhi(PackageName(lhs, @selector(cyname)));
1962 CYString &rhi(PackageName(rhs, @selector(cyname)));
1963 CFStringRef lhn(lhi), rhn(rhi);
1966 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
1967 else if (rhn == NULL)
1968 return NSOrderedDescending;
1970 _profile(PackageNameCompare$NumbersLast)
1971 if (!lhi.empty() && !rhi.empty()) {
1972 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
1973 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
1974 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
1975 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
1976 return lha ? NSOrderedAscending : NSOrderedDescending;
1980 CFIndex length = CFStringGetLength(lhn);
1982 _profile(PackageNameCompare$Compare)
1983 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
1988 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
1989 return PackageNameCompare(*lhs, *rhs, context);
1992 struct PackageNameOrdering :
1993 std::binary_function<Package *, Package *, bool>
1995 _finline bool operator ()(Package *lhs, Package *rhs) const {
1996 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
2000 @implementation Package
2002 - (NSString *) description {
2003 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2009 if (section$_ != nil)
2010 [section$_ release];
2015 if (sponsor$_ != nil)
2016 [sponsor$_ release];
2017 if (author$_ != nil)
2024 if (relationships_ != nil)
2025 [relationships_ release];
2026 if (metadata_ != nil)
2027 [metadata_ release];
2032 + (NSString *) webScriptNameForSelector:(SEL)selector {
2033 if (selector == @selector(hasTag:))
2039 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2040 return [self webScriptNameForSelector:selector] == nil;
2043 + (NSArray *) _attributeKeys {
2044 return [NSArray arrayWithObjects:@"applications", @"author", @"depiction", @"longDescription", @"essential", @"homepage", @"icon", @"id", @"installed", @"latest", @"longSection", @"maintainer", @"mode", @"name", @"purposes", @"section", @"shortDescription", @"shortSection", @"simpleSection", @"size", @"source", @"sponsor", @"support", @"warnings", nil];
2047 - (NSArray *) attributeKeys {
2048 return [[self class] _attributeKeys];
2051 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2052 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2062 _profile(Package$parse)
2063 pkgRecords::Parser *parser;
2065 _profile(Package$parse$Lookup)
2066 parser = &[database_ records]->Lookup(file_);
2071 _profile(Package$parse$Find)
2077 {"depiction", &depiction_},
2078 {"homepage", &homepage_},
2079 {"website", &website},
2081 {"support", &support_},
2082 {"sponsor", &sponsor_},
2083 {"author", &author_},
2086 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2087 const char *start, *end;
2089 if (parser->Find(names[i].name_, start, end)) {
2090 CYString &value(*names[i].value_);
2091 _profile(Package$parse$Value)
2092 value.set(pool_, start, end - start);
2098 _profile(Package$parse$Tagline)
2099 const char *start, *end;
2100 if (parser->ShortDesc(start, end)) {
2101 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2104 while (stop != start && stop[-1] == '\r')
2106 tagline_.set(pool_, start, stop - start);
2110 _profile(Package$parse$Retain)
2111 if (homepage_.empty())
2112 homepage_ = website;
2113 if (homepage_ == depiction_)
2119 - (void) setVisible {
2120 visible_ = required_ && [self unfiltered];
2123 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2124 if ((self = [super init]) != nil) {
2125 _profile(Package$initWithVersion)
2126 @synchronized (database) {
2127 era_ = [database era];
2131 iterator_ = version.ParentPkg();
2132 database_ = database;
2134 _profile(Package$initWithVersion$Latest)
2135 latest_ = (NSString *) StripVersion(version_.VerStr());
2138 pkgCache::VerIterator current;
2139 _profile(Package$initWithVersion$Versions)
2140 current = iterator_.CurrentVer();
2142 installed_.set(pool_, StripVersion_(current.VerStr()));
2144 if (!version_.end())
2145 file_ = version_.FileList();
2147 pkgCache &cache([database_ cache]);
2148 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2152 _profile(Package$initWithVersion$Name)
2153 id_.set(pool_, iterator_.Name());
2154 name_.set(pool, iterator_.Display());
2158 _profile(Package$initWithVersion$Source)
2159 source_ = [database_ getSource:file_.File()];
2168 _profile(Package$initWithVersion$Tags)
2169 pkgCache::TagIterator tag(iterator_.TagList());
2171 tags_ = [[NSMutableArray alloc] initWithCapacity:8];
2173 const char *name(tag.Name());
2174 [tags_ addObject:(NSString *)CFCString(name)];
2175 if (role_ == nil && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/)
2176 role_ = (NSString *) CFCString(name + 6);
2177 if (required_ && strncmp(name, "require::", 9) == 0 && (
2182 } while (!tag.end());
2186 bool changed(false);
2187 NSString *key([id_ lowercaseString]);
2189 _profile(Package$initWithVersion$Metadata)
2190 metadata_ = [Packages_ objectForKey:key];
2192 if (metadata_ == nil) {
2195 metadata_ = [[NSMutableDictionary dictionaryWithObjectsAndKeys:
2196 firstSeen_, @"FirstSeen",
2197 latest_, @"LastVersion",
2202 firstSeen_ = [metadata_ objectForKey:@"FirstSeen"];
2203 lastSeen_ = [metadata_ objectForKey:@"LastSeen"];
2205 if (NSNumber *subscribed = [metadata_ objectForKey:@"IsSubscribed"])
2206 subscribed_ = [subscribed boolValue];
2208 NSString *version([metadata_ objectForKey:@"LastVersion"]);
2210 if (firstSeen_ == nil) {
2211 firstSeen_ = lastSeen_ == nil ? now_ : lastSeen_;
2212 [metadata_ setObject:firstSeen_ forKey:@"FirstSeen"];
2216 if (version == nil) {
2217 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2219 } else if (![version isEqualToString:latest_]) {
2220 [metadata_ setObject:latest_ forKey:@"LastVersion"];
2222 [metadata_ setObject:lastSeen_ forKey:@"LastSeen"];
2227 metadata_ = [metadata_ retain];
2230 [Packages_ setObject:metadata_ forKey:key];
2235 _profile(Package$initWithVersion$Section)
2236 section_.set(pool_, iterator_.Section());
2239 obsolete_ = [self hasTag:@"cydia::obsolete"];
2240 essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"];
2242 } _end } return self;
2245 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2246 @synchronized ([Database class]) {
2247 pkgCache::VerIterator version;
2249 _profile(Package$packageWithIterator$GetCandidateVer)
2250 version = [database policy]->GetCandidateVer(iterator);
2256 return [[[Package alloc]
2257 initWithVersion:version
2264 - (pkgCache::PkgIterator) iterator {
2268 - (NSString *) section {
2269 if (section$_ == nil) {
2270 if (section_.empty())
2273 std::replace(section_.data(), section_.data() + section_.size(), ' ', '_');
2274 NSString *name(section_);
2277 if (NSDictionary *value = [SectionMap_ objectForKey:name])
2278 if (NSString *rename = [value objectForKey:@"Rename"]) {
2283 section$_ = [[name stringByReplacingCharacter:'_' withCharacter:' '] retain];
2287 - (NSString *) simpleSection {
2288 if (NSString *section = [self section])
2289 return Simplify(section);
2294 - (NSString *) longSection {
2295 return LocalizeSection([self section]);
2298 - (NSString *) shortSection {
2299 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2302 - (NSString *) uri {
2305 pkgIndexFile *index;
2306 pkgCache::PkgFileIterator file(file_.File());
2307 if (![database_ list].FindIndex(file, index))
2309 return [NSString stringWithUTF8String:iterator_->Path];
2310 //return [NSString stringWithUTF8String:file.Site()];
2311 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2315 - (Address *) maintainer {
2318 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2319 const std::string &maintainer(parser->Maintainer());
2320 return maintainer.empty() ? nil : [Address addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2324 return version_.end() ? 0 : version_->InstalledSize;
2327 - (NSString *) longDescription {
2330 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2331 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2333 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2334 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2335 if ([lines count] < 2)
2338 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2339 for (size_t i(1), e([lines count]); i != e; ++i) {
2340 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2341 [trimmed addObject:trim];
2344 return [trimmed componentsJoinedByString:@"\n"];
2347 - (NSString *) shortDescription {
2352 _profile(Package$index)
2353 CFStringRef name((CFStringRef) [self name]);
2354 if (CFStringGetLength(name) == 0)
2356 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2357 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2359 return toupper(character);
2363 - (NSMutableDictionary *) metadata {
2368 if (subscribed_ && lastSeen_ != nil)
2373 - (BOOL) subscribed {
2378 NSDictionary *metadata([self metadata]);
2379 if (NSNumber *ignored = [metadata objectForKey:@"IsIgnored"])
2380 return [ignored boolValue];
2385 - (NSString *) latest {
2389 - (NSString *) installed {
2393 - (BOOL) uninstalled {
2394 return installed_.empty();
2398 return !version_.end();
2401 - (BOOL) upgradableAndEssential:(BOOL)essential {
2402 _profile(Package$upgradableAndEssential)
2403 pkgCache::VerIterator current(iterator_.CurrentVer());
2405 return essential && essential_ && visible_;
2407 return !version_.end() && version_ != current;// && (!essential || ![database_ cache][iterator_].Keep());
2411 - (BOOL) essential {
2416 return [database_ cache][iterator_].InstBroken();
2419 - (BOOL) unfiltered {
2420 NSString *section([self section]);
2421 return !obsolete_ && [self hasSupportingRole] && (section == nil || isSectionVisible(section));
2429 unsigned char current(iterator_->CurrentState);
2430 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2433 - (BOOL) halfConfigured {
2434 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2437 - (BOOL) halfInstalled {
2438 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2442 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2443 return state.Mode != pkgDepCache::ModeKeep;
2446 - (NSString *) mode {
2447 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2449 switch (state.Mode) {
2450 case pkgDepCache::ModeDelete:
2451 if ((state.iFlags & pkgDepCache::Purge) != 0)
2455 case pkgDepCache::ModeKeep:
2456 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2457 return @"REINSTALL";
2458 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2462 case pkgDepCache::ModeInstall:
2463 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2464 return @"REINSTALL";
2465 else*/ switch (state.Status) {
2467 return @"DOWNGRADE";
2473 return @"NEW_INSTALL";
2484 - (NSString *) name {
2485 return name_.empty() ? id_ : name_;
2488 - (UIImage *) icon {
2489 NSString *section = [self simpleSection];
2493 if ([icon_ hasPrefix:@"file:///"])
2494 icon = [UIImage imageAtPath:[icon_ substringFromIndex:7]];
2495 if (icon == nil) if (section != nil)
2496 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]];
2497 if (icon == nil) if (source_ != nil) if (NSString *dicon = [source_ defaultIcon])
2498 if ([dicon hasPrefix:@"file:///"])
2499 icon = [UIImage imageAtPath:[dicon substringFromIndex:7]];
2501 icon = [UIImage applicationImageNamed:@"unknown.png"];
2505 - (NSString *) homepage {
2509 - (NSString *) depiction {
2510 return !depiction_.empty() ? depiction_ : [[self source] depictionForPackage:id_];
2513 - (Address *) sponsor {
2514 if (sponsor$_ == nil) {
2515 if (sponsor_.empty())
2517 sponsor$_ = [[Address addressWithString:sponsor_] retain];
2521 - (Address *) author {
2522 if (author$_ == nil) {
2523 if (author_.empty())
2525 author$_ = [[Address addressWithString:author_] retain];
2529 - (NSString *) support {
2530 return !bugs_.empty() ? bugs_ : [[self source] supportForPackage:id_];
2533 - (NSArray *) files {
2534 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2535 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2538 fin.open([path UTF8String]);
2543 while (std::getline(fin, line))
2544 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2549 - (NSArray *) relationships {
2550 return relationships_;
2553 - (NSArray *) warnings {
2554 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2555 const char *name(iterator_.Name());
2557 size_t length(strlen(name));
2558 if (length < 2) invalid:
2559 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2560 else for (size_t i(0); i != length; ++i)
2562 /* XXX: technically this is not allowed */
2563 (name[i] < 'A' || name[i] > 'Z') &&
2564 (name[i] < 'a' || name[i] > 'z') &&
2565 (name[i] < '0' || name[i] > '9') &&
2566 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2569 if (strcmp(name, "cydia") != 0) {
2572 bool _private = false;
2575 bool repository = [[self section] isEqualToString:@"Repositories"];
2577 if (NSArray *files = [self files])
2578 for (NSString *file in files)
2579 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2581 else if (!user && [file isEqualToString:@"/User"])
2583 else if (!_private && [file isEqualToString:@"/private"])
2585 else if (!stash && [file isEqualToString:@"/var/stash"])
2588 /* XXX: this is not sensitive enough. only some folders are valid. */
2589 if (cydia && !repository)
2590 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2592 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2594 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2596 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2599 return [warnings count] == 0 ? nil : warnings;
2602 - (NSArray *) applications {
2603 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2605 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2607 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2608 if (NSArray *files = [self files])
2609 for (NSString *file in files)
2610 if (application_r(file)) {
2611 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2612 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2613 if ([id isEqualToString:me])
2616 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2618 display = application_r[1];
2620 NSString *bundle([file stringByDeletingLastPathComponent]);
2621 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2622 if (icon == nil || [icon length] == 0)
2624 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2626 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2627 [applications addObject:application];
2629 [application addObject:id];
2630 [application addObject:display];
2631 [application addObject:url];
2634 return [applications count] == 0 ? nil : applications;
2637 - (Source *) source {
2639 @synchronized (database_) {
2640 if ([database_ era] != era_ || file_.end())
2643 source_ = [database_ getSource:file_.File()];
2655 - (NSString *) role {
2659 - (BOOL) matches:(NSString *)text {
2665 range = [[self id] rangeOfString:text options:MatchCompareOptions_];
2666 if (range.location != NSNotFound)
2669 range = [[self name] rangeOfString:text options:MatchCompareOptions_];
2670 if (range.location != NSNotFound)
2673 range = [[self shortDescription] rangeOfString:text options:MatchCompareOptions_];
2674 if (range.location != NSNotFound)
2680 - (bool) hasSupportingRole {
2683 if ([role_ isEqualToString:@"enduser"])
2685 if ([Role_ isEqualToString:@"User"])
2687 if ([role_ isEqualToString:@"hacker"])
2689 if ([Role_ isEqualToString:@"Hacker"])
2691 if ([role_ isEqualToString:@"developer"])
2693 if ([Role_ isEqualToString:@"Developer"])
2698 - (BOOL) hasTag:(NSString *)tag {
2699 return tags_ == nil ? NO : [tags_ containsObject:tag];
2702 - (NSString *) primaryPurpose {
2703 for (NSString *tag in tags_)
2704 if ([tag hasPrefix:@"purpose::"])
2705 return [tag substringFromIndex:9];
2709 - (NSArray *) purposes {
2710 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2711 for (NSString *tag in tags_)
2712 if ([tag hasPrefix:@"purpose::"])
2713 [purposes addObject:[tag substringFromIndex:9]];
2714 return [purposes count] == 0 ? nil : purposes;
2717 - (bool) isCommercial {
2718 return [self hasTag:@"cydia::commercial"];
2721 - (CYString &) cyname {
2722 return name_.empty() ? id_ : name_;
2725 - (uint32_t) compareBySection:(NSArray *)sections {
2726 NSString *section([self section]);
2727 for (size_t i(0), e([sections count]); i != e; ++i) {
2728 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2732 return _not(uint32_t);
2735 - (uint32_t) compareForChanges {
2740 uint32_t timestamp : 30;
2741 uint32_t ignored : 1;
2742 uint32_t upgradable : 1;
2746 bool upgradable([self upgradableAndEssential:YES]);
2747 value.bits.upgradable = upgradable ? 1 : 0;
2750 value.bits.timestamp = 0;
2751 value.bits.ignored = [self ignored] ? 0 : 1;
2752 value.bits.upgradable = 1;
2754 value.bits.timestamp = static_cast<uint32_t>([[self seen] timeIntervalSince1970]) >> 2;
2755 value.bits.ignored = 0;
2756 value.bits.upgradable = 0;
2759 return _not(uint32_t) - value.key;
2763 pkgProblemResolver *resolver = [database_ resolver];
2764 resolver->Clear(iterator_);
2765 resolver->Protect(iterator_);
2769 pkgProblemResolver *resolver = [database_ resolver];
2770 resolver->Clear(iterator_);
2771 resolver->Protect(iterator_);
2772 pkgCacheFile &cache([database_ cache]);
2773 cache->MarkInstall(iterator_, false);
2774 pkgDepCache::StateCache &state((*cache)[iterator_]);
2775 if (!state.Install())
2776 cache->SetReInstall(iterator_, true);
2780 pkgProblemResolver *resolver = [database_ resolver];
2781 resolver->Clear(iterator_);
2782 resolver->Protect(iterator_);
2783 resolver->Remove(iterator_);
2784 [database_ cache]->MarkDelete(iterator_, true);
2787 - (bool) isUnfilteredAndSearchedForBy:(NSString *)search {
2788 _profile(Package$isUnfilteredAndSearchedForBy)
2791 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
2792 value &= [self unfiltered];
2795 _profile(Package$isUnfilteredAndSearchedForBy$Match)
2796 value &= [self matches:search];
2803 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
2804 if ([search length] == 0)
2807 _profile(Package$isUnfilteredAndSelectedForBy)
2810 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
2811 value &= [self unfiltered];
2814 _profile(Package$isUnfilteredAndSelectedForBy$Match)
2815 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
2822 - (bool) isInstalledAndVisible:(NSNumber *)number {
2823 return (![number boolValue] || [self visible]) && ![self uninstalled];
2826 - (bool) isVisibleInSection:(NSString *)name {
2827 NSString *section = [self section];
2832 section == nil && [name length] == 0 ||
2833 [name isEqualToString:section]
2837 - (bool) isVisibleInSource:(Source *)source {
2838 return [self source] == source && [self visible];
2843 /* Section Class {{{ */
2844 @interface Section : NSObject {
2849 NSString *localized_;
2852 - (NSComparisonResult) compareByLocalized:(Section *)section;
2853 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
2854 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
2855 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
2856 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
2857 - (NSString *) name;
2864 - (void) addToCount;
2866 - (void) setCount:(size_t)count;
2867 - (NSString *) localized;
2871 @implementation Section
2875 if (localized_ != nil)
2876 [localized_ release];
2880 - (NSComparisonResult) compareByLocalized:(Section *)section {
2881 NSString *lhs(localized_);
2882 NSString *rhs([section localized]);
2884 /*if ([lhs length] != 0 && [rhs length] != 0) {
2885 unichar lhc = [lhs characterAtIndex:0];
2886 unichar rhc = [rhs characterAtIndex:0];
2888 if (isalpha(lhc) && !isalpha(rhc))
2889 return NSOrderedAscending;
2890 else if (!isalpha(lhc) && isalpha(rhc))
2891 return NSOrderedDescending;
2894 return [lhs compare:rhs options:LaxCompareOptions_];
2897 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
2898 if ((self = [self initWithName:name localize:NO]) != nil) {
2899 if (localized != nil)
2900 localized_ = [localized retain];
2904 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
2905 return [self initWithName:name row:0 localize:localize];
2908 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
2909 if ((self = [super init]) != nil) {
2910 name_ = [name retain];
2914 localized_ = [LocalizeSection(name_) retain];
2918 /* XXX: localize the index thingees */
2919 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
2920 if ((self = [super init]) != nil) {
2921 name_ = [[NSString stringWithCharacters:&index length:1] retain];
2927 - (NSString *) name {
2947 - (void) addToCount {
2951 - (void) setCount:(size_t)count {
2955 - (NSString *) localized {
2962 static NSString *Colon_;
2963 static NSString *Error_;
2964 static NSString *Warning_;
2966 /* Database Implementation {{{ */
2967 @implementation Database
2969 + (Database *) sharedInstance {
2970 static Database *instance;
2971 if (instance == nil)
2972 instance = [[Database alloc] init];
2982 NSRecycleZone(zone_);
2983 // XXX: malloc_destroy_zone(zone_);
2984 apr_pool_destroy(pool_);
2988 - (void) _readCydia:(NSNumber *)fd { _pooled
2989 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
2990 std::istream is(&ib);
2993 static Pcre finish_r("^finish:([^:]*)$");
2995 while (std::getline(is, line)) {
2996 const char *data(line.c_str());
2997 size_t size = line.size();
2998 lprintf("C:%s\n", data);
3000 if (finish_r(data, size)) {
3001 NSString *finish = finish_r[1];
3002 int index = [Finishes_ indexOfObject:finish];
3003 if (index != INT_MAX && index > Finish_)
3011 - (void) _readStatus:(NSNumber *)fd { _pooled
3012 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3013 std::istream is(&ib);
3016 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3017 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3019 while (std::getline(is, line)) {
3020 const char *data(line.c_str());
3021 size_t size(line.size());
3022 lprintf("S:%s\n", data);
3024 if (conffile_r(data, size)) {
3025 [delegate_ setConfigurationData:conffile_r[1]];
3026 } else if (strncmp(data, "status: ", 8) == 0) {
3027 NSString *string = [NSString stringWithUTF8String:(data + 8)];
3028 [delegate_ setProgressTitle:string];
3029 } else if (pmstatus_r(data, size)) {
3030 std::string type([pmstatus_r[1] UTF8String]);
3031 NSString *id = pmstatus_r[2];
3033 float percent([pmstatus_r[3] floatValue]);
3034 [delegate_ setProgressPercent:(percent / 100)];
3036 NSString *string = pmstatus_r[4];
3038 if (type == "pmerror")
3039 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3040 withObject:[NSArray arrayWithObjects:string, id, nil]
3043 else if (type == "pmstatus") {
3044 [delegate_ setProgressTitle:string];
3045 } else if (type == "pmconffile")
3046 [delegate_ setConfigurationData:string];
3048 lprintf("E:unknown pmstatus\n");
3050 lprintf("E:unknown status\n");
3056 - (void) _readOutput:(NSNumber *)fd { _pooled
3057 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3058 std::istream is(&ib);
3061 while (std::getline(is, line)) {
3062 lprintf("O:%s\n", line.c_str());
3063 [delegate_ addProgressOutput:[NSString stringWithUTF8String:line.c_str()]];
3073 - (Package *) packageWithName:(NSString *)name {
3074 @synchronized ([Database class]) {
3075 if (static_cast<pkgDepCache *>(cache_) == NULL)
3077 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3078 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:pool_ database:self];
3081 - (Database *) init {
3082 if ((self = [super init]) != nil) {
3089 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3090 apr_pool_create(&pool_, NULL);
3092 packages_ = [[NSMutableArray alloc] init];
3096 _assert(pipe(fds) != -1);
3099 _config->Set("APT::Keep-Fds::", cydiafd_);
3100 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3103 detachNewThreadSelector:@selector(_readCydia:)
3105 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3108 _assert(pipe(fds) != -1);
3112 detachNewThreadSelector:@selector(_readStatus:)
3114 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3117 _assert(pipe(fds) != -1);
3118 _assert(dup2(fds[0], 0) != -1);
3119 _assert(close(fds[0]) != -1);
3121 input_ = fdopen(fds[1], "a");
3123 _assert(pipe(fds) != -1);
3124 _assert(dup2(fds[1], 1) != -1);
3125 _assert(close(fds[1]) != -1);
3128 detachNewThreadSelector:@selector(_readOutput:)
3130 withObject:[[NSNumber numberWithInt:fds[0]] retain]
3135 - (pkgCacheFile &) cache {
3139 - (pkgDepCache::Policy *) policy {
3143 - (pkgRecords *) records {
3147 - (pkgProblemResolver *) resolver {
3151 - (pkgAcquire &) fetcher {
3155 - (pkgSourceList &) list {
3159 - (NSArray *) packages {
3163 - (NSArray *) sources {
3164 NSMutableArray *sources([NSMutableArray arrayWithCapacity:sources_.size()]);
3165 for (SourceMap::const_iterator i(sources_.begin()); i != sources_.end(); ++i)
3166 [sources addObject:i->second];
3170 - (NSArray *) issues {
3171 if (cache_->BrokenCount() == 0)
3174 NSMutableArray *issues([NSMutableArray arrayWithCapacity:4]);
3176 for (Package *package in packages_) {
3177 if (![package broken])
3179 pkgCache::PkgIterator pkg([package iterator]);
3181 NSMutableArray *entry([NSMutableArray arrayWithCapacity:4]);
3182 [entry addObject:[package name]];
3183 [issues addObject:entry];
3185 pkgCache::VerIterator ver(cache_[pkg].InstVerIter(cache_));
3189 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
3190 pkgCache::DepIterator start;
3191 pkgCache::DepIterator end;
3192 dep.GlobOr(start, end); // ++dep
3194 if (!cache_->IsImportantDep(end))
3196 if ((cache_[end] & pkgDepCache::DepGInstall) != 0)
3199 NSMutableArray *failure([NSMutableArray arrayWithCapacity:4]);
3200 [entry addObject:failure];
3201 [failure addObject:[NSString stringWithUTF8String:start.DepType()]];
3203 NSString *name([NSString stringWithUTF8String:start.TargetPkg().Name()]);
3204 if (Package *package = [self packageWithName:name])
3205 name = [package name];
3206 [failure addObject:name];
3208 pkgCache::PkgIterator target(start.TargetPkg());
3209 if (target->ProvidesList != 0)
3210 [failure addObject:@"?"];
3212 pkgCache::VerIterator ver(cache_[target].InstVerIter(cache_));
3214 [failure addObject:[NSString stringWithUTF8String:ver.VerStr()]];
3215 else if (!cache_[target].CandidateVerIter(cache_).end())
3216 [failure addObject:@"-"];
3217 else if (target->ProvidesList == 0)
3218 [failure addObject:@"!"];
3220 [failure addObject:@"%"];
3224 if (start.TargetVer() != 0)
3225 [failure addObject:[NSString stringWithFormat:@"%s %s", start.CompType(), start.TargetVer()]];
3236 - (bool) popErrorWithTitle:(NSString *)title {
3238 std::string message;
3240 while (!_error->empty()) {
3242 bool warning(!_error->PopMessage(error));
3246 size_t size(error.size());
3247 if (size == 0 || error[size - 1] != '\n')
3249 error.resize(size - 1);
3251 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3253 if (!message.empty())
3258 if (fatal && !message.empty())
3259 [delegate_ _setProgressError:[NSString stringWithUTF8String:message.c_str()] withTitle:[NSString stringWithFormat:Colon_, fatal ? Error_ : Warning_, title]];
3264 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3265 return [self popErrorWithTitle:title] || !success;
3268 - (void) reloadData { _pooled
3269 @synchronized ([Database class]) {
3270 @synchronized (self) {
3274 [packages_ removeAllObjects];
3300 apr_pool_clear(pool_);
3301 NSRecycleZone(zone_);
3303 int chk(creat("/tmp/cydia.chk", 0644));
3307 NSString *title(UCLocalize("DATABASE"));
3310 if (!cache_.Open(progress_, true)) { pop:
3312 bool warning(!_error->PopMessage(error));
3313 lprintf("cache_.Open():[%s]\n", error.c_str());
3315 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3316 [delegate_ repairWithSelector:@selector(configure)];
3317 else if (error == "The package lists or status file could not be parsed or opened.")
3318 [delegate_ repairWithSelector:@selector(update)];
3319 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3320 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3321 // else if (error == "The list of sources could not be read.")
3323 [delegate_ _setProgressError:[NSString stringWithUTF8String:error.c_str()] withTitle:[NSString stringWithFormat:Colon_, warning ? Warning_ : Error_, title]];
3332 unlink("/tmp/cydia.chk");
3334 now_ = [[NSDate date] retain];
3336 policy_ = new pkgDepCache::Policy();
3337 records_ = new pkgRecords(cache_);
3338 resolver_ = new pkgProblemResolver(cache_);
3339 fetcher_ = new pkgAcquire(&status_);
3342 list_ = new pkgSourceList();
3343 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3346 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3347 [delegate_ _setProgressError:@"COUNTS_NONZERO_EX" withTitle:title];
3351 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3354 if (cache_->BrokenCount() != 0) {
3355 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3358 if (cache_->BrokenCount() != 0) {
3359 [delegate_ _setProgressError:@"STILL_BROKEN_EX" withTitle:title];
3363 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3369 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3370 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3371 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3372 // XXX: this could be more intelligent
3373 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3374 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3376 sources_[cached->ID] = [[[Source alloc] initWithMetaIndex:*source inPool:pool_] autorelease];
3383 /*std::vector<Package *> packages;
3384 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3385 [packages_ release];
3390 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3391 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3392 //packages.push_back(package);
3393 [packages_ addObject:package];
3397 /*if (packages.empty())
3398 packages_ = [[NSArray alloc] init];
3400 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3403 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3404 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3405 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3413 /*if (!packages.empty())
3414 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3415 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3417 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3419 CFArrayInsertionSortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3421 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3427 - (void) configure {
3428 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3429 system([dpkg UTF8String]);
3433 // XXX: I don't remember this condition
3438 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3440 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3442 if ([self popErrorWithTitle:title])
3446 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3449 public pkgArchiveCleaner
3452 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3457 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3464 fetcher_->Shutdown();
3466 pkgRecords records(cache_);
3468 lock_ = new FileFd();
3469 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3471 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3473 if ([self popErrorWithTitle:title])
3477 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3480 manager_ = (_system->CreatePM(cache_));
3481 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3488 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3490 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3492 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3494 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3495 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3498 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3503 bool failed = false;
3504 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3505 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3507 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3510 std::string uri = (*item)->DescURI();
3511 std::string error = (*item)->ErrorText;
3513 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
3516 [delegate_ performSelectorOnMainThread:@selector(_setProgressErrorPackage:)
3517 withObject:[NSArray arrayWithObjects:
3518 [NSString stringWithUTF8String:error.c_str()],
3530 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3532 if (_error->PendingError()) {
3537 if (result == pkgPackageManager::Failed) {
3542 if (result != pkgPackageManager::Completed) {
3547 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3549 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3551 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3552 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3555 if (![before isEqualToArray:after])
3560 NSString *title(UCLocalize("UPGRADE"));
3561 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3567 [self updateWithStatus:status_];
3570 - (void) setVisible {
3571 for (Package *package in packages_)
3572 [package setVisible];
3575 - (void) updateWithStatus:(Status &)status {
3576 _transient NSObject<ProgressDelegate> *delegate(status.getDelegate());
3577 NSString *title(UCLocalize("REFRESHING_DATA"));
3580 if (!list.ReadMainList())
3581 [delegate _setProgressError:@"Unable to read source list." withTitle:title];
3584 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3585 if ([self popErrorWithTitle:title])
3588 if ([self popErrorWithTitle:title forOperation:ListUpdate(status, list, PulseInterval_)])
3589 /* XXX: ignore this because users suck and don't understand why refreshing is important: return */;
3591 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3595 - (void) setDelegate:(id)delegate {
3596 delegate_ = delegate;
3597 status_.setDelegate(delegate);
3598 progress_.setDelegate(delegate);
3601 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3602 SourceMap::const_iterator i(sources_.find(file->ID));
3603 return i == sources_.end() ? nil : i->second;
3609 /* Confirmation View {{{ */
3610 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
3611 if (!iterator.end())
3612 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
3613 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
3615 pkgCache::PkgIterator package(dep.TargetPkg());
3618 if (strcmp(package.Name(), "mobilesubstrate") == 0)
3625 /* Web Scripting {{{ */
3626 @interface CydiaObject : NSObject {
3631 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3634 @implementation CydiaObject
3637 [indirect_ release];
3641 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3642 if ((self = [super init]) != nil) {
3643 indirect_ = [indirect retain];
3647 - (void) setDelegate:(id)delegate {
3648 delegate_ = delegate;
3651 + (NSArray *) _attributeKeys {
3652 return [NSArray arrayWithObjects:@"device", @"firewire", @"imei", @"mac", @"serial", nil];
3655 - (NSArray *) attributeKeys {
3656 return [[self class] _attributeKeys];
3659 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3660 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3663 - (NSString *) device {
3664 return [[UIDevice currentDevice] uniqueIdentifier];
3667 #if 0 // XXX: implement!
3668 - (NSString *) mac {
3669 if (![indirect_ promptForSensitive:@"Mac Address"])
3673 - (NSString *) serial {
3674 if (![indirect_ promptForSensitive:@"Serial #"])
3678 - (NSString *) firewire {
3679 if (![indirect_ promptForSensitive:@"Firewire GUID"])
3683 - (NSString *) imei {
3684 if (![indirect_ promptForSensitive:@"IMEI"])
3689 + (NSString *) webScriptNameForSelector:(SEL)selector {
3690 if (selector == @selector(close))
3692 else if (selector == @selector(getInstalledPackages))
3693 return @"getInstalledPackages";
3694 else if (selector == @selector(getPackageById:))
3695 return @"getPackageById";
3696 else if (selector == @selector(installPackages:))
3697 return @"installPackages";
3698 else if (selector == @selector(setAutoPopup:))
3699 return @"setAutoPopup";
3700 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
3701 return @"setButtonImage";
3702 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
3703 return @"setButtonTitle";
3704 else if (selector == @selector(setFinishHook:))
3705 return @"setFinishHook";
3706 else if (selector == @selector(setPopupHook:))
3707 return @"setPopupHook";
3708 else if (selector == @selector(setSpecial:))
3709 return @"setSpecial";
3710 else if (selector == @selector(setToken:))
3712 else if (selector == @selector(setViewportWidth:))
3713 return @"setViewportWidth";
3714 else if (selector == @selector(supports:))
3716 else if (selector == @selector(stringWithFormat:arguments:))
3718 else if (selector == @selector(localizedStringForKey:value:table:))
3720 else if (selector == @selector(du:))
3722 else if (selector == @selector(statfs:))
3728 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
3729 return [self webScriptNameForSelector:selector] == nil;
3732 - (BOOL) supports:(NSString *)feature {
3733 return [feature isEqualToString:@"window.open"];
3736 - (NSArray *) getInstalledPackages {
3737 NSArray *packages([[Database sharedInstance] packages]);
3738 NSMutableArray *installed([NSMutableArray arrayWithCapacity:[packages count]]);
3739 for (Package *package in packages)
3740 if ([package installed] != nil)
3741 [installed addObject:package];
3745 - (Package *) getPackageById:(NSString *)id {
3746 Package *package([[Database sharedInstance] packageWithName:id]);
3751 - (NSArray *) statfs:(NSString *)path {
3754 if (path == nil || statfs([path UTF8String], &stat) == -1)
3757 return [NSArray arrayWithObjects:
3758 [NSNumber numberWithUnsignedLong:stat.f_bsize],
3759 [NSNumber numberWithUnsignedLong:stat.f_blocks],
3760 [NSNumber numberWithUnsignedLong:stat.f_bfree],
3764 - (NSNumber *) du:(NSString *)path {
3765 NSNumber *value(nil);
3768 _assert(pipe(fds) != -1);
3770 pid_t pid(ExecFork());
3772 _assert(dup2(fds[1], 1) != -1);
3773 _assert(close(fds[0]) != -1);
3774 _assert(close(fds[1]) != -1);
3775 /* XXX: this should probably not use du */
3776 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
3781 _assert(close(fds[1]) != -1);
3783 if (FILE *du = fdopen(fds[0], "r")) {
3785 while (fgets(line, sizeof(line), du) != NULL) {
3786 size_t length(strlen(line));
3787 while (length != 0 && line[length - 1] == '\n')
3788 line[--length] = '\0';
3789 if (char *tab = strchr(line, '\t')) {
3791 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
3796 } else _assert(close(fds[0]));
3800 if (waitpid(pid, &status, 0) == -1)
3803 else _assert(false);
3812 - (void) installPackages:(NSArray *)packages {
3813 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
3816 - (void) setAutoPopup:(BOOL)popup {
3817 [indirect_ setAutoPopup:popup];
3820 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3821 [indirect_ setButtonImage:button withStyle:style toFunction:function];
3824 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
3825 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
3828 - (void) setSpecial:(id)function {
3829 [indirect_ setSpecial:function];
3832 - (void) setToken:(NSString *)token {
3835 Token_ = [token retain];
3837 [Metadata_ setObject:Token_ forKey:@"Token"];
3841 - (void) setFinishHook:(id)function {
3842 [indirect_ setFinishHook:function];
3845 - (void) setPopupHook:(id)function {
3846 [indirect_ setPopupHook:function];
3849 - (void) setViewportWidth:(float)width {
3850 [indirect_ setViewportWidth:width];
3853 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
3854 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
3855 unsigned count([arguments count]);
3857 for (unsigned i(0); i != count; ++i)
3858 values[i] = [arguments objectAtIndex:i];
3859 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
3862 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
3863 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
3865 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
3867 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
3873 @interface CydiaBrowserView : BrowserView {
3874 CydiaObject *cydia_;
3879 @implementation CydiaBrowserView
3886 - (void) setHeaders:(NSDictionary *)headers forHost:(NSString *)host {
3889 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
3890 [super webView:sender didClearWindowObject:window forFrame:frame];
3892 WebDataSource *source([frame dataSource]);
3893 NSURLResponse *response([source response]);
3894 NSURL *url([response URL]);
3895 NSString *scheme([url scheme]);
3897 NSHTTPURLResponse *http;
3898 if (scheme != nil && ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]))
3899 http = (NSHTTPURLResponse *) response;
3903 NSDictionary *headers([http allHeaderFields]);
3904 NSString *host([url host]);
3905 [self setHeaders:headers forHost:host];
3908 [host isEqualToString:@"cydia.saurik.com"] ||
3909 [host hasSuffix:@".cydia.saurik.com"] ||
3910 [scheme isEqualToString:@"file"]
3912 [window setValue:cydia_ forKey:@"cydia"];
3915 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
3916 if (System_ != NULL)
3917 [request setValue:System_ forHTTPHeaderField:@"X-System"];
3918 if (Machine_ != NULL)
3919 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
3921 [request setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
3923 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
3926 - (NSURLRequest *) webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)source {
3927 NSMutableURLRequest *copy = [request mutableCopy];
3928 [self _setMoreHeaders:copy];
3932 - (void) setDelegate:(id)delegate {
3933 [super setDelegate:delegate];
3934 [cydia_ setDelegate:delegate];
3937 - (id) initWithBook:(RVBook *)book forWidth:(float)width {
3938 if ((self = [super initWithBook:book forWidth:width ofClass:[CydiaBrowserView class]]) != nil) {
3939 cydia_ = [[CydiaObject alloc] initWithDelegate:indirect_];
3941 WebView *webview([document_ webView]);
3943 Package *package([[Database sharedInstance] packageWithName:@"cydia"]);
3945 NSString *application = package == nil ? @"Cydia" : [NSString
3946 stringWithFormat:@"Cydia/%@",
3951 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
3953 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
3954 if (Product_ != nil)
3955 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
3957 [webview setApplicationNameForUserAgent:application];
3963 @protocol ConfirmationViewDelegate
3969 @interface ConfirmationView : CydiaBrowserView {
3970 _transient Database *database_;
3971 UIActionSheet *essential_;
3978 - (id) initWithBook:(RVBook *)book database:(Database *)database;
3982 @implementation ConfirmationView
3989 if (essential_ != nil)
3990 [essential_ release];
3996 [book_ popFromSuperviewAnimated:YES];
3999 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button {
4000 NSString *context([sheet context]);
4002 if ([context isEqualToString:@"remove"]) {
4010 [delegate_ confirm];
4016 } else if ([context isEqualToString:@"unable"]) {
4020 [super alertSheet:sheet buttonClicked:button];
4023 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4024 [super webView:sender didClearWindowObject:window forFrame:frame];
4025 [window setValue:changes_ forKey:@"changes"];
4026 [window setValue:issues_ forKey:@"issues"];
4027 [window setValue:sizes_ forKey:@"sizes"];
4030 - (id) initWithBook:(RVBook *)book database:(Database *)database {
4031 if ((self = [super initWithBook:book]) != nil) {
4032 database_ = database;
4034 NSMutableArray *installing = [NSMutableArray arrayWithCapacity:16];
4035 NSMutableArray *reinstalling = [NSMutableArray arrayWithCapacity:16];
4036 NSMutableArray *upgrading = [NSMutableArray arrayWithCapacity:16];
4037 NSMutableArray *downgrading = [NSMutableArray arrayWithCapacity:16];
4038 NSMutableArray *removing = [NSMutableArray arrayWithCapacity:16];
4042 pkgDepCache::Policy *policy([database_ policy]);
4044 pkgCacheFile &cache([database_ cache]);
4045 NSArray *packages = [database_ packages];
4046 for (Package *package in packages) {
4047 pkgCache::PkgIterator iterator = [package iterator];
4048 pkgDepCache::StateCache &state(cache[iterator]);
4050 NSString *name([package name]);
4052 if (state.NewInstall())
4053 [installing addObject:name];
4054 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4055 [reinstalling addObject:name];
4056 else if (state.Upgrade())
4057 [upgrading addObject:name];
4058 else if (state.Downgrade())
4059 [downgrading addObject:name];
4060 else if (state.Delete()) {
4061 if ([package essential])
4063 [removing addObject:name];
4066 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4067 substrate_ |= DepSubstrate(iterator.CurrentVer());
4072 else if (Advanced_) {
4073 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4075 essential_ = [[UIActionSheet alloc]
4076 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4077 buttons:[NSArray arrayWithObjects:
4078 [NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")],
4079 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
4081 defaultButtonIndex:0
4086 [essential_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
4088 [essential_ setDestructiveButtonIndex:1];
4089 [essential_ setBodyText:UCLocalize("REMOVING_ESSENTIALS_EX")];
4091 essential_ = [[UIActionSheet alloc]
4092 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4093 buttons:[NSArray arrayWithObjects:UCLocalize("OKAY"), nil]
4094 defaultButtonIndex:0
4099 [essential_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
4101 [essential_ setBodyText:UCLocalize("UNABLE_TO_COMPLY_EX")];
4104 changes_ = [[NSArray alloc] initWithObjects:
4112 issues_ = [database_ issues];
4114 issues_ = [issues_ retain];
4116 sizes_ = [[NSArray alloc] initWithObjects:
4117 SizeString([database_ fetcher].FetchNeeded()),
4118 SizeString([database_ fetcher].PartialPresent()),
4119 SizeString([database_ cache]->UsrSize()),
4122 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"confirm" ofType:@"html"]]];
4124 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4128 - (NSString *) backButtonTitle {
4129 return UCLocalize("CONFIRM");
4132 - (NSString *) leftButtonTitle {
4133 return [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("CANCEL"), UCLocalize("QUEUE")];
4136 - (id) rightButtonTitle {
4137 return issues_ != nil ? nil : [super rightButtonTitle];
4140 - (id) _rightButtonTitle {
4141 #if AlwaysReload || IgnoreInstall
4142 return [super _rightButtonTitle];
4144 return UCLocalize("CONFIRM");
4148 - (void) _leftButtonClicked {
4153 - (void) _rightButtonClicked {
4155 return [super _rightButtonClicked];
4157 if (essential_ != nil)
4158 [essential_ popupAlertAnimated:YES];
4162 [delegate_ confirm];
4170 /* Progress Data {{{ */
4171 @interface ProgressData : NSObject {
4177 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object;
4184 @implementation ProgressData
4186 - (ProgressData *) initWithSelector:(SEL)selector target:(id)target object:(id)object {
4187 if ((self = [super init]) != nil) {
4188 selector_ = selector;
4208 /* Progress View {{{ */
4209 @interface ProgressView : UIView <
4210 ConfigurationDelegate,
4213 _transient Database *database_;
4215 UIView *background_;
4216 UITransitionView *transition_;
4218 UINavigationBar *navbar_;
4219 UIProgressBar *progress_;
4220 UITextView *output_;
4221 UITextLabel *status_;
4222 UIPushButton *close_;
4225 SHA1SumValue springlist_;
4226 SHA1SumValue notifyconf_;
4230 - (id) initWithFrame:(struct CGRect)frame database:(Database *)database delegate:(id)delegate;
4231 - (void) setContentView:(UIView *)view;
4234 - (void) _retachThread;
4235 - (void) _detachNewThreadData:(ProgressData *)data;
4236 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title;
4242 @protocol ProgressViewDelegate
4243 - (void) progressViewIsComplete:(ProgressView *)sender;
4246 @implementation ProgressView
4249 [transition_ setDelegate:nil];
4250 [navbar_ setDelegate:nil];
4253 if (background_ != nil)
4254 [background_ release];
4255 [transition_ release];
4258 [progress_ release];
4267 - (id) initWithFrame:(struct CGRect)frame database:(Database *)database delegate:(id)delegate {
4268 if ((self = [super initWithFrame:frame]) != nil) {
4269 database_ = database;
4270 delegate_ = delegate;
4272 transition_ = [[UITransitionView alloc] initWithFrame:[self bounds]];
4273 [transition_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4274 [transition_ setDelegate:self];
4276 overlay_ = [[UIView alloc] initWithFrame:[transition_ bounds]];
4277 [overlay_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4279 background_ = [[UIView alloc] initWithFrame:[self bounds]];
4280 [background_ setBackgroundColor:[UIColor blackColor]];
4281 [self addSubview:background_];
4283 [self addSubview:transition_];
4285 CGSize navsize = [UINavigationBar defaultSize];
4286 CGRect navrect = {{0, 0}, navsize};
4288 navbar_ = [[UINavigationBar alloc] initWithFrame:navrect];
4289 [navbar_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
4290 [overlay_ addSubview:navbar_];
4292 [navbar_ setBarStyle:1];
4293 [navbar_ setDelegate:self];
4295 UINavigationItem *navitem = [[[UINavigationItem alloc] initWithTitle:nil] autorelease];
4296 [navbar_ pushNavigationItem:navitem];
4298 CGRect bounds = [overlay_ bounds];
4299 CGSize prgsize = [UIProgressBar defaultSize];
4302 (bounds.size.width - prgsize.width) / 2,
4303 bounds.size.height - prgsize.height - 20
4306 progress_ = [[UIProgressBar alloc] initWithFrame:prgrect];
4307 [progress_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4308 [progress_ setStyle:0];
4310 status_ = [[UITextLabel alloc] initWithFrame:CGRectMake(
4312 bounds.size.height - prgsize.height - 50,
4313 bounds.size.width - 20,
4317 [status_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4319 [status_ setColor:[UIColor whiteColor]];
4320 [status_ setBackgroundColor:[UIColor clearColor]];
4322 [status_ setCentersHorizontally:YES];
4323 //[status_ setFont:font];
4325 output_ = [[UITextView alloc] initWithFrame:CGRectMake(
4327 navrect.size.height + 20,
4328 bounds.size.width - 20,
4329 bounds.size.height - navsize.height - 62 - navrect.size.height
4332 [output_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4333 [overlay_ addSubview:output_];
4335 //[output_ setTextFont:@"Courier New"];
4336 [output_ setFont:[[output_ font] fontWithSize:12]];
4338 [output_ setTextColor:[UIColor whiteColor]];
4339 [output_ setBackgroundColor:[UIColor clearColor]];
4341 [output_ setMarginTop:0];
4342 [output_ setAllowsRubberBanding:YES];
4343 [output_ setEditable:NO];
4345 close_ = [[UIPushButton alloc] initWithFrame:CGRectMake(
4347 bounds.size.height - prgsize.height - 50,
4348 bounds.size.width - 20,
4352 [close_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
4354 [close_ setAutosizesToFit:NO];
4355 [close_ setDrawsShadow:YES];
4356 [close_ setStretchBackground:YES];
4357 [close_ setEnabled:YES];
4359 UIFont *bold = [UIFont boldSystemFontOfSize:22];
4360 [close_ setTitleFont:bold];
4362 [close_ addTarget:self action:@selector(closeButtonPushed) forEvents:UIControlEventTouchUpInside];
4363 [close_ setBackground:[UIImage applicationImageNamed:@"green-up.png"] forState:0];
4364 [close_ setBackground:[UIImage applicationImageNamed:@"green-dn.png"] forState:1];
4368 - (void) setContentView:(UIView *)view {
4369 view_ = [view retain];
4372 - (void) resetView {
4373 [transition_ transition:6 toView:view_];
4376 - (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4377 NSString *context([alert context]);
4379 if ([context isEqualToString:@"conffile"]) {
4380 FILE *input = [database_ input];
4381 if (button == [alert cancelButtonIndex]) fprintf(input, "N\n");
4382 else if (button == [alert firstOtherButtonIndex]) fprintf(input, "Y\n");
4385 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4389 - (void) closeButtonPushed {
4398 [delegate_ terminateWithSuccess];
4399 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
4400 [delegate_ suspendWithAnimation:YES];
4402 [delegate_ suspend];*/
4406 system("launchctl stop com.apple.SpringBoard");
4410 system("launchctl unload "SpringBoard_"; launchctl load "SpringBoard_);
4419 - (void) _retachThread {
4420 UINavigationItem *item([navbar_ topItem]);
4421 [item setTitle:UCLocalize("COMPLETE")];
4423 [overlay_ addSubview:close_];
4424 [progress_ removeFromSuperview];
4425 [status_ removeFromSuperview];
4427 [database_ popErrorWithTitle:title_];
4428 [delegate_ progressViewIsComplete:self];
4432 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4435 MMap mmap(file, MMap::ReadOnly);
4437 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4438 if (!(notifyconf_ == sha1.Result()))
4445 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4448 MMap mmap(file, MMap::ReadOnly);
4450 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4451 if (!(springlist_ == sha1.Result()))
4457 case 0: [close_ setTitle:UCLocalize("RETURN_TO_CYDIA")]; break;
4458 case 1: [close_ setTitle:UCLocalize("CLOSE_CYDIA")]; break;
4459 case 2: [close_ setTitle:UCLocalize("RESTART_SPRINGBOARD")]; break;
4460 case 3: [close_ setTitle:UCLocalize("RELOAD_SPRINGBOARD")]; break;
4461 case 4: [close_ setTitle:UCLocalize("REBOOT_DEVICE")]; break;
4464 system("su -c /usr/bin/uicache mobile");
4466 [delegate_ setStatusBarShowsProgress:NO];
4469 - (void) _detachNewThreadData:(ProgressData *)data { _pooled
4470 [[data target] performSelector:[data selector] withObject:[data object]];
4473 [self performSelectorOnMainThread:@selector(_retachThread) withObject:nil waitUntilDone:YES];
4476 - (void) detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)object title:(NSString *)title {
4482 title_ = [title retain];
4484 UINavigationItem *item([navbar_ topItem]);
4485 [item setTitle:title_];
4487 [status_ setText:nil];
4488 [output_ setText:@""];
4489 [progress_ setProgress:0];
4491 [close_ removeFromSuperview];
4492 [overlay_ addSubview:progress_];
4493 [overlay_ addSubview:status_];
4495 [delegate_ setStatusBarShowsProgress:YES];
4500 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
4503 MMap mmap(file, MMap::ReadOnly);
4505 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4506 notifyconf_ = sha1.Result();
4512 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
4515 MMap mmap(file, MMap::ReadOnly);
4517 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
4518 springlist_ = sha1.Result();
4522 [transition_ transition:6 toView:overlay_];
4525 detachNewThreadSelector:@selector(_detachNewThreadData:)
4527 withObject:[[ProgressData alloc]
4528 initWithSelector:selector
4535 - (void) repairWithSelector:(SEL)selector {
4537 detachNewThreadSelector:selector
4540 title:UCLocalize("REPAIRING")
4544 - (void) setConfigurationData:(NSString *)data {
4546 performSelectorOnMainThread:@selector(_setConfigurationData:)
4552 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
4553 CYActionSheet *sheet([[[CYActionSheet alloc]
4555 buttons:[NSArray arrayWithObjects:UCLocalize("OKAY"), nil]
4556 defaultButtonIndex:0
4559 [sheet setBodyText:error];
4560 [sheet yieldToPopupAlertAnimated:YES];
4564 - (void) setProgressTitle:(NSString *)title {
4566 performSelectorOnMainThread:@selector(_setProgressTitle:)
4572 - (void) setProgressPercent:(float)percent {
4574 performSelectorOnMainThread:@selector(_setProgressPercent:)
4575 withObject:[NSNumber numberWithFloat:percent]
4580 - (void) startProgress {
4583 - (void) addProgressOutput:(NSString *)output {
4585 performSelectorOnMainThread:@selector(_addProgressOutput:)
4591 - (bool) isCancelling:(size_t)received {
4595 - (void) _setConfigurationData:(NSString *)data {
4596 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
4598 if (!conffile_r(data)) {
4599 lprintf("E:invalid conffile\n");
4603 NSString *ofile = conffile_r[1];
4604 //NSString *nfile = conffile_r[2];
4606 UIAlertView *alert = [[[UIAlertView alloc]
4607 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
4608 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
4610 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
4611 otherButtonTitles:UCLocalize("ACCEPT_NEW_COPY"),
4612 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
4616 [alert setContext:@"conffile"];
4620 - (void) _setProgressTitle:(NSString *)title {
4621 NSMutableArray *words([[title componentsSeparatedByString:@" "] mutableCopy]);
4622 for (size_t i(0), e([words count]); i != e; ++i) {
4623 NSString *word([words objectAtIndex:i]);
4624 if (Package *package = [database_ packageWithName:word])
4625 [words replaceObjectAtIndex:i withObject:[package name]];
4628 [status_ setText:[words componentsJoinedByString:@" "]];
4631 - (void) _setProgressPercent:(NSNumber *)percent {
4632 [progress_ setProgress:[percent floatValue]];
4635 - (void) _addProgressOutput:(NSString *)output {
4636 [output_ setText:[NSString stringWithFormat:@"%@\n%@", [output_ text], output]];
4637 CGSize size = [output_ contentSize];
4638 CGRect rect = {{0, size.height}, {size.width, 0}};
4639 [output_ scrollRectToVisible:rect animated:YES];
4642 - (BOOL) isRunning {
4649 /* Package Cell {{{ */
4650 @interface ContentView : UIView {
4651 _transient id delegate_;
4656 @interface PackageCell : UITableViewCell {
4659 NSString *description_;
4665 ContentView *content_;
4671 - (PackageCell *) init;
4672 - (void) setPackage:(Package *)package;
4674 + (int) heightForPackage:(Package *)package;
4675 - (void) drawContentRect:(CGRect)rect;
4679 @implementation ContentView
4681 - (id) initWithFrame:(CGRect)frame {
4682 if ((self = [super initWithFrame:frame]) != nil) {
4686 - (void) setDelegate:(id)delegate {
4687 delegate_ = delegate;
4690 /* Fix landscape: redraw when frame changes. */
4691 - (void) setFrame:(CGRect)frame {
4692 [super setFrame:frame];
4693 [self setNeedsDisplay];
4696 - (void) drawRect:(CGRect)rect {
4697 [super drawRect:rect];
4698 [delegate_ drawContentRect:rect];
4703 @implementation PackageCell
4705 - (void) clearPackage {
4716 if (description_ != nil) {
4717 [description_ release];
4721 if (source_ != nil) {
4726 if (badge_ != nil) {
4731 if (placard_ != nil) {
4741 [self clearPackage];
4748 return faded_ ? [self selectionPercent] : fade_;
4751 - (PackageCell *) init {
4752 CGRect frame(CGRectMake(0, 0, 320, 74));
4753 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
4754 UIView *content([self contentView]);
4755 CGRect bounds([content bounds]);
4757 content_ = [[ContentView alloc] initWithFrame:bounds];
4758 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
4759 [content addSubview:content_];
4761 [content_ setDelegate:self];
4762 [content_ setOpaque:YES];
4763 if ([self respondsToSelector:@selector(selectionPercent)])
4766 [self setNeedsDisplayOnBoundsChange:YES];
4770 - (void) _setBackgroundColor {
4772 if (NSString *mode = [package_ mode]) {
4773 bool remove([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]);
4774 color = remove ? RemovingColor_ : InstallingColor_;
4776 color = [UIColor whiteColor];
4778 [content_ setBackgroundColor:color];
4779 [self setNeedsDisplay];
4782 - (void) setPackage:(Package *)package {
4783 [self clearPackage];
4786 Source *source = [package source];
4788 icon_ = [[package icon] retain];
4789 name_ = [[package name] retain];
4792 description_ = [package longDescription];
4793 if (description_ == nil)
4794 description_ = [package shortDescription];
4795 if (description_ != nil)
4796 description_ = [description_ retain];
4798 commercial_ = [package isCommercial];
4800 package_ = [package retain];
4802 NSString *label = nil;
4803 bool trusted = false;
4805 if (source != nil) {
4806 label = [source label];
4807 trusted = [source trusted];
4808 } else if ([[package id] isEqualToString:@"firmware"])
4809 label = UCLocalize("APPLE");
4811 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
4813 NSString *from(label);
4815 NSString *section = [package simpleSection];
4816 if (section != nil && ![section isEqualToString:label]) {
4817 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
4818 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
4821 from = [NSString stringWithFormat:UCLocalize("FROM"), from];
4822 source_ = [from retain];
4824 if (NSString *purpose = [package primaryPurpose])
4825 if ((badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]) != nil)
4826 badge_ = [badge_ retain];
4828 if ([package installed] != nil)
4829 if ((placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/installed.png", App_]]) != nil)
4830 placard_ = [placard_ retain];
4832 [self _setBackgroundColor];
4833 [content_ setNeedsDisplay];
4836 - (void) drawContentRect:(CGRect)rect {
4837 bool selected([self isSelected]);
4838 float width([self bounds].size.width);
4841 CGContextRef context(UIGraphicsGetCurrentContext());
4842 [([[self selectedBackgroundView] superview] != nil ? [UIColor clearColor] : [self backgroundColor]) set];
4843 CGContextFillRect(context, rect);
4848 rect.size = [icon_ size];
4850 rect.size.width /= 2;
4851 rect.size.height /= 2;
4853 rect.origin.x = 25 - rect.size.width / 2;
4854 rect.origin.y = 25 - rect.size.height / 2;
4856 [icon_ drawInRect:rect];
4859 if (badge_ != nil) {
4860 CGSize size = [badge_ size];
4862 [badge_ drawAtPoint:CGPointMake(
4863 36 - size.width / 2,
4864 36 - size.height / 2
4872 UISetColor(commercial_ ? Purple_ : Black_);
4873 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ ellipsis:2];
4874 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ ellipsis:2];
4877 UISetColor(commercial_ ? Purplish_ : Gray_);
4878 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ ellipsis:2];
4880 if (placard_ != nil)
4881 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
4884 - (void) setSelected:(BOOL)selected animated:(BOOL)fade {
4885 //[self _setBackgroundColor];
4886 [super setSelected:selected animated:fade];
4887 [content_ setNeedsDisplay];
4890 + (int) heightForPackage:(Package *)package {
4896 /* Section Cell {{{ */
4897 @interface SectionCell : UISimpleTableCell {
4903 _UISwitchSlider *switch_;
4908 - (void) setSection:(Section *)section editing:(BOOL)editing;
4912 @implementation SectionCell
4914 - (void) clearSection {
4915 if (basic_ != nil) {
4920 if (section_ != nil) {
4930 if (count_ != nil) {
4937 [self clearSection];
4944 if ((self = [super init]) != nil) {
4945 icon_ = [[UIImage applicationImageNamed:@"folder.png"] retain];
4946 switch_ = [[_UISwitchSlider alloc] initWithFrame:CGRectMake(218, 9, 60, 25)];
4947 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventTouchUpInside];
4951 - (void) onSwitch:(id)sender {
4952 NSMutableDictionary *metadata = [Sections_ objectForKey:basic_];
4953 if (metadata == nil) {
4954 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
4955 [Sections_ setObject:metadata forKey:basic_];
4959 [metadata setObject:[NSNumber numberWithBool:([switch_ value] == 0)] forKey:@"Hidden"];
4962 - (void) setSection:(Section *)section editing:(BOOL)editing {
4963 if (editing != editing_) {
4965 [switch_ removeFromSuperview];
4967 [self addSubview:switch_];
4971 [self clearSection];
4973 if (section == nil) {
4974 name_ = [UCLocalize("ALL_PACKAGES") retain];
4977 basic_ = [section name];
4979 basic_ = [basic_ retain];
4981 section_ = [section localized];
4982 if (section_ != nil)
4983 section_ = [section_ retain];
4985 name_ = [(section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : section_) retain];
4986 count_ = [[NSString stringWithFormat:@"%d", [section count]] retain];
4989 [switch_ setValue:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
4993 - (void) setFrame:(CGRect)frame {
4994 [super setFrame:frame];
4995 CGRect rect([switch_ frame]);
4996 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
4999 - (void) drawContentInRect:(CGRect)rect selected:(BOOL)selected {
5000 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
5008 float width(rect.size.width + 23);
5012 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ ellipsis:2];
5014 CGSize size = [count_ sizeWithFont:Font14_];
5018 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
5020 [super drawContentInRect:rect selected:selected];
5026 /* File Table {{{ */
5027 @interface FileTable : RVPage {
5028 _transient Database *database_;
5031 NSMutableArray *files_;
5035 - (id) initWithBook:(RVBook *)book database:(Database *)database;
5036 - (void) setPackage:(Package *)package;
5040 @implementation FileTable
5043 if (package_ != nil)
5052 - (int) numberOfRowsInTable:(UITable *)table {
5053 return files_ == nil ? 0 : [files_ count];
5056 - (float) table:(UITable *)table heightForRow:(int)row {
5060 - (UITableCell *) table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col reusing:(UITableCell *)reusing {
5061 if (reusing == nil) {
5062 reusing = [[[UIImageAndTextTableCell alloc] init] autorelease];
5063 UIFont *font = [UIFont systemFontOfSize:16];
5064 [[(UIImageAndTextTableCell *)reusing titleTextLabel] setFont:font];
5066 [(UIImageAndTextTableCell *)reusing setTitle:[files_ objectAtIndex:row]];
5070 - (BOOL) table:(UITable *)table canSelectRow:(int)row {
5074 - (id) initWithBook:(RVBook *)book database:(Database *)database {
5075 if ((self = [super initWithBook:book]) != nil) {
5076 database_ = database;
5078 files_ = [[NSMutableArray arrayWithCapacity:32] retain];
5080 list_ = [[UITable alloc] initWithFrame:[self bounds]];
5081 [self addSubview:list_];
5083 UITableColumn *column = [[[UITableColumn alloc]
5084 initWithTitle:UCLocalize("NAME")
5086 width:[self frame].size.width
5089 [list_ setDataSource:self];
5090 [list_ setSeparatorStyle:1];
5091 [list_ addTableColumn:column];
5092 [list_ setDelegate:self];
5093 [list_ setReusesTableCells:YES];
5095 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5096 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5100 - (void) setPackage:(Package *)package {
5101 if (package_ != nil) {
5102 [package_ autorelease];
5111 [files_ removeAllObjects];
5113 if (package != nil) {
5114 package_ = [package retain];
5115 name_ = [[package id] retain];
5117 if (NSArray *files = [package files])
5118 [files_ addObjectsFromArray:files];
5120 if ([files_ count] != 0) {
5121 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5122 [files_ removeObjectAtIndex:0];
5123 [files_ sortUsingSelector:@selector(compareByPath:)];
5125 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5126 [stack addObject:@"/"];
5128 for (int i(0), e([files_ count]); i != e; ++i) {
5129 NSString *file = [files_ objectAtIndex:i];
5130 while (![file hasPrefix:[stack lastObject]])
5131 [stack removeLastObject];
5132 NSString *directory = [stack lastObject];
5133 [stack addObject:[file stringByAppendingString:@"/"]];
5134 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
5135 ([stack count] - 2) * 3, "",
5136 [file substringFromIndex:[directory length]]
5145 - (void) resetViewAnimated:(BOOL)animated {
5146 [list_ resetViewAnimated:animated];
5149 - (void) reloadData {
5150 [self setPackage:[database_ packageWithName:name_]];
5151 [self reloadButtons];
5154 - (NSString *) title {
5155 return UCLocalize("INSTALLED_FILES");
5158 - (NSString *) backButtonTitle {
5159 return UCLocalize("FILES");
5164 /* Package View {{{ */
5165 @interface PackageView : CydiaBrowserView {
5166 _transient Database *database_;
5170 NSMutableArray *buttons_;
5173 - (id) initWithBook:(RVBook *)book database:(Database *)database;
5174 - (void) setPackage:(Package *)package;
5178 @implementation PackageView
5181 if (package_ != nil)
5190 if ([self retainCount] == 1)
5191 [delegate_ setPackageView:self];
5195 /* XXX: this is not safe at all... localization of /fail/ */
5196 - (void) _clickButtonWithName:(NSString *)name {
5197 if ([name isEqualToString:UCLocalize("CLEAR")])
5198 [delegate_ clearPackage:package_];
5199 else if ([name isEqualToString:UCLocalize("INSTALL")])
5200 [delegate_ installPackage:package_];
5201 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5202 [delegate_ installPackage:package_];
5203 else if ([name isEqualToString:UCLocalize("REMOVE")])
5204 [delegate_ removePackage:package_];
5205 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5206 [delegate_ installPackage:package_];
5207 else _assert(false);
5210 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button {
5211 NSString *context([sheet context]);
5213 if ([context isEqualToString:@"modify"]) {
5214 int count = [buttons_ count];
5215 _assert(count != 0);
5216 _assert(button <= count + 1);
5218 if (count != button - 1)
5219 [self _clickButtonWithName:[buttons_ objectAtIndex:(button - 1)]];
5223 [super alertSheet:sheet buttonClicked:button];
5226 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame {
5227 return [super webView:sender didFinishLoadForFrame:frame];
5230 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5231 [super webView:sender didClearWindowObject:window forFrame:frame];
5232 [window setValue:package_ forKey:@"package"];
5235 - (bool) _allowJavaScriptPanel {
5240 - (void) __rightButtonClicked {
5241 int count([buttons_ count]);
5246 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5248 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:(count + 1)];
5249 [buttons addObjectsFromArray:buttons_];
5250 [buttons addObject:UCLocalize("CANCEL")];
5252 [delegate_ slideUp:[[[UIActionSheet alloc]
5255 defaultButtonIndex:([buttons count] - 1)
5262 - (void) _rightButtonClicked {
5264 [super _rightButtonClicked];
5266 [self __rightButtonClicked];
5270 - (id) _rightButtonTitle {
5271 int count = [buttons_ count];
5272 return count == 0 ? nil : count != 1 ? UCLocalize("MODIFY") : [buttons_ objectAtIndex:0];
5275 - (NSString *) backButtonTitle {
5279 - (id) initWithBook:(RVBook *)book database:(Database *)database {
5280 if ((self = [super initWithBook:book]) != nil) {
5281 database_ = database;
5282 buttons_ = [[NSMutableArray alloc] initWithCapacity:4];
5283 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"package" ofType:@"html"]]];
5287 - (void) setPackage:(Package *)package {
5288 if (package_ != nil) {
5289 [package_ autorelease];
5298 [buttons_ removeAllObjects];
5300 if (package != nil) {
5303 package_ = [package retain];
5304 name_ = [[package id] retain];
5305 commercial_ = [package isCommercial];
5307 if ([package_ mode] != nil)
5308 [buttons_ addObject:UCLocalize("CLEAR")];
5309 if ([package_ source] == nil);
5310 else if ([package_ upgradableAndEssential:NO])
5311 [buttons_ addObject:UCLocalize("UPGRADE")];
5312 else if ([package_ uninstalled])
5313 [buttons_ addObject:UCLocalize("INSTALL")];
5315 [buttons_ addObject:UCLocalize("REINSTALL")];
5316 if (![package_ uninstalled])
5317 [buttons_ addObject:UCLocalize("REMOVE")];
5319 if (special_ != NULL) {
5320 CGRect frame([document_ frame]);
5321 frame.size.width = 320;
5322 frame.size.height = 0;
5323 [document_ setFrame:frame];
5325 if ([scroller_ respondsToSelector:@selector(scrollPointVisibleAtTopLeft:)])
5326 [scroller_ scrollPointVisibleAtTopLeft:CGPointZero];
5328 [scroller_ scrollRectToVisible:CGRectZero animated:NO];
5331 [[[document_ webView] windowScriptObject] setValue:package_ forKey:@"package"];
5333 [self setButtonTitle:nil withStyle:nil toFunction:nil];
5335 [self setFinishHook:nil];
5336 [self setPopupHook:nil];
5339 //[self yieldToSelector:@selector(callFunction:) withObject:special_];
5340 [super callFunction:special_];
5344 [self reloadButtons];
5347 - (bool) isLoading {
5348 return commercial_ ? [super isLoading] : false;
5351 - (void) reloadData {
5352 [self setPackage:[database_ packageWithName:name_]];
5357 /* Package Table {{{ */
5358 @interface PackageTable : RVPage {
5359 _transient Database *database_;
5361 NSMutableArray *packages_;
5362 NSMutableArray *sections_;
5364 NSMutableArray *index_;
5365 NSMutableDictionary *indices_;
5368 - (id) initWithBook:(RVBook *)book database:(Database *)database title:(NSString *)title;
5370 - (void) setDelegate:(id)delegate;
5372 - (void) reloadData;
5373 - (void) resetCursor;
5375 - (UITableView *) list;
5377 - (void) setShouldHideHeaderInShortLists:(BOOL)hide;
5381 @implementation PackageTable
5384 [list_ setDataSource:nil];
5387 [packages_ release];
5388 [sections_ release];
5395 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
5396 NSInteger count([sections_ count]);
5397 return count == 0 ? 1 : count;
5400 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
5401 if ([sections_ count] == 0)
5403 return [[sections_ objectAtIndex:section] name];
5406 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
5407 if ([sections_ count] == 0)
5409 return [[sections_ objectAtIndex:section] count];
5412 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
5413 Section *section([sections_ objectAtIndex:[path section]]);
5414 NSInteger row([path row]);
5415 Package *package([packages_ objectAtIndex:([section row] + row)]);
5419 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
5420 PackageCell *cell([table dequeueReusableCellWithIdentifier:@"Package"]);
5422 cell = [[[PackageCell alloc] init] autorelease];
5423 [cell setPackage:[self packageAtIndexPath:path]];
5427 - (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
5429 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
5432 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
5433 Package *package([self packageAtIndexPath:path]);
5434 package = [database_ packageWithName:[package id]];
5435 PackageView *view([delegate_ packageView]);
5436 [view setPackage:package];
5437 [view setDelegate:delegate_];
5438 [book_ pushPage:view];
5442 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
5443 return [packages_ count] > 20 ? index_ : nil;
5446 - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
5450 - (id) initWithBook:(RVBook *)book database:(Database *)database title:(NSString *)title {
5451 if ((self = [super initWithBook:book]) != nil) {
5452 database_ = database;
5453 title_ = [title retain];
5455 index_ = [[NSMutableArray alloc] initWithCapacity:32];
5456 indices_ = [[NSMutableDictionary alloc] initWithCapacity:32];
5458 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
5459 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
5461 list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain];
5462 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5463 [self addSubview:list_];
5465 [list_ setDataSource:self];
5466 [list_ setDelegate:self];
5468 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5472 - (void) setDelegate:(id)delegate {
5473 delegate_ = delegate;
5476 - (bool) hasPackage:(Package *)package {
5480 - (void) reloadData {
5481 NSArray *packages = [database_ packages];
5483 [packages_ removeAllObjects];
5484 [sections_ removeAllObjects];
5486 _profile(PackageTable$reloadData$Filter)
5487 for (Package *package in packages)
5488 if ([self hasPackage:package])
5489 [packages_ addObject:package];
5492 [index_ removeAllObjects];
5493 [indices_ removeAllObjects];
5495 Section *section = nil;
5497 _profile(PackageTable$reloadData$Section)
5498 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
5502 _profile(PackageTable$reloadData$Section$Package)
5503 package = [packages_ objectAtIndex:offset];
5504 index = [package index];
5507 if (section == nil || [section index] != index) {
5508 _profile(PackageTable$reloadData$Section$Allocate)
5509 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
5512 [index_ addObject:[section name]];
5513 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
5515 _profile(PackageTable$reloadData$Section$Add)
5516 [sections_ addObject:section];
5520 [section addToCount];
5524 _profile(PackageTable$reloadData$List)
5529 - (NSString *) title {
5533 - (void) resetViewAnimated:(BOOL)animated {
5534 [list_ resetViewAnimated:animated];
5537 - (void) resetCursor {
5538 [list_ scrollRectToVisible:CGRectMake(0, 0, 0, 0) animated:NO];
5541 - (UITableView *) list {
5545 - (void) setShouldHideHeaderInShortLists:(BOOL)hide {
5546 //XXX:[list_ setShouldHideHeaderInShortLists:hide];
5551 /* Filtered Package Table {{{ */
5552 @interface FilteredPackageTable : PackageTable {
5558 - (void) setObject:(id)object;
5559 - (void) setObject:(id)object forFilter:(SEL)filter;
5561 - (id) initWithBook:(RVBook *)book database:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
5565 @implementation FilteredPackageTable
5573 - (void) setFilter:(SEL)filter {
5576 /* XXX: this is an unsafe optimization of doomy hell */
5577 Method method(class_getInstanceMethod([Package class], filter));
5578 _assert(method != NULL);
5579 imp_ = method_getImplementation(method);
5580 _assert(imp_ != NULL);
5583 - (void) setObject:(id)object {
5589 object_ = [object retain];
5592 - (void) setObject:(id)object forFilter:(SEL)filter {
5593 [self setFilter:filter];
5594 [self setObject:object];
5598 - (bool) hasPackage:(Package *)package {
5599 _profile(FilteredPackageTable$hasPackage)
5600 return [package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp_))(package, filter_, object_);
5604 - (id) initWithBook:(RVBook *)book database:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
5605 if ((self = [super initWithBook:book database:database title:title]) != nil) {
5606 [self setFilter:filter];
5607 object_ = object == nil ? nil : [object retain];
5615 /* Add Source View {{{ */
5616 @interface AddSourceView : RVPage {
5617 _transient Database *database_;
5620 - (id) initWithBook:(RVBook *)book database:(Database *)database;
5624 @implementation AddSourceView
5626 - (id) initWithBook:(RVBook *)book database:(Database *)database {
5627 if ((self = [super initWithBook:book]) != nil) {
5628 database_ = database;
5634 /* Source Cell {{{ */
5635 @interface SourceCell : UITableCell {
5638 NSString *description_;
5644 - (SourceCell *) initWithSource:(Source *)source;
5648 @implementation SourceCell
5653 [description_ release];
5658 - (SourceCell *) initWithSource:(Source *)source {
5659 if ((self = [super init]) != nil) {
5661 icon_ = [UIImage applicationImageNamed:[NSString stringWithFormat:@"Sources/%@.png", [source host]]];
5663 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
5664 icon_ = [icon_ retain];
5666 origin_ = [[source name] retain];
5667 label_ = [[source uri] retain];
5668 description_ = [[source description] retain];
5672 - (void) drawContentInRect:(CGRect)rect selected:(BOOL)selected {
5673 float width(rect.size.width);
5676 [icon_ drawInRect:CGRectMake(10, 10, 30, 30)];
5683 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 80) withFont:Font18Bold_ ellipsis:2];
5687 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ ellipsis:2];
5691 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 40) withFont:Font14_ ellipsis:2];
5693 [super drawContentInRect:rect selected:selected];
5698 /* Source Table {{{ */
5699 @interface SourceTable : RVPage {
5700 _transient Database *database_;
5701 UISectionList *list_;
5702 NSMutableArray *sources_;
5703 UIActionSheet *alert_;
5707 UIProgressHUD *hud_;
5710 //NSURLConnection *installer_;
5711 NSURLConnection *trivial_;
5712 NSURLConnection *trivial_bz2_;
5713 NSURLConnection *trivial_gz_;
5714 //NSURLConnection *automatic_;
5719 - (id) initWithBook:(RVBook *)book database:(Database *)database;
5723 @implementation SourceTable
5725 - (void) _deallocConnection:(NSURLConnection *)connection {
5726 if (connection != nil) {
5727 [connection cancel];
5728 //[connection setDelegate:nil];
5729 [connection release];
5734 [[list_ table] setDelegate:nil];
5735 [list_ setDataSource:nil];
5744 //[self _deallocConnection:installer_];
5745 [self _deallocConnection:trivial_];
5746 [self _deallocConnection:trivial_gz_];
5747 [self _deallocConnection:trivial_bz2_];
5748 //[self _deallocConnection:automatic_];
5755 - (int) numberOfSectionsInSectionList:(UISectionList *)list {
5756 return offset_ == 0 ? 1 : 2;
5759 - (NSString *) sectionList:(UISectionList *)list titleForSection:(int)section {
5760 switch (section + (offset_ == 0 ? 1 : 0)) {
5761 case 0: return UCLocalize("ENTERED_BY_USER");
5762 case 1: return UCLocalize("INSTALLED_BY_PACKAGE");
5768 - (int) sectionList:(UISectionList *)list rowForSection:(int)section {
5769 switch (section + (offset_ == 0 ? 1 : 0)) {
5771 case 1: return offset_;
5777 - (int) numberOfRowsInTable:(UITable *)table {
5778 return [sources_ count];
5781 - (float) table:(UITable *)table heightForRow:(int)row {
5782 Source *source = [sources_ objectAtIndex:row];
5783 return [source description] == nil ? 56 : 73;
5786 - (UITableCell *) table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col {
5787 Source *source = [sources_ objectAtIndex:row];
5788 // XXX: weird warning, stupid selectors ;P
5789 return [[[SourceCell alloc] initWithSource:(id)source] autorelease];
5792 - (BOOL) table:(UITable *)table showDisclosureForRow:(int)row {
5796 - (BOOL) table:(UITable *)table canSelectRow:(int)row {
5800 - (void) tableRowSelected:(NSNotification*)notification {
5801 UITable *table([list_ table]);
5802 int row([table selectedRow]);
5806 Source *source = [sources_ objectAtIndex:row];
5808 PackageTable *packages = [[[FilteredPackageTable alloc]
5811 title:[source label]
5812 filter:@selector(isVisibleInSource:)
5816 [packages setDelegate:delegate_];
5818 [book_ pushPage:packages];
5821 - (BOOL) table:(UITable *)table canDeleteRow:(int)row {
5822 Source *source = [sources_ objectAtIndex:row];
5823 return [source record] != nil;
5826 - (void) table:(UITable *)table willSwipeToDeleteRow:(int)row {
5827 [[list_ table] setDeleteConfirmationRow:row];
5830 - (void) table:(UITable *)table deleteRow:(int)row {
5831 Source *source = [sources_ objectAtIndex:row];
5832 [Sources_ removeObjectForKey:[source key]];
5833 [delegate_ syncData];
5837 [Sources_ setObject:[NSDictionary dictionaryWithObjectsAndKeys:
5840 @"./", @"Distribution",
5841 nil] forKey:[NSString stringWithFormat:@"deb:%@:./", href_]];
5843 [delegate_ syncData];
5846 - (NSString *) getWarning {
5847 NSString *href(href_);
5848 NSRange colon([href rangeOfString:@"://"]);
5849 if (colon.location != NSNotFound)
5850 href = [href substringFromIndex:(colon.location + 3)];
5851 href = [href stringByAddingPercentEscapes];
5852 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
5853 href = [href stringByCachingURLWithCurrentCDN];
5855 NSURL *url([NSURL URLWithString:href]);
5857 NSStringEncoding encoding;
5858 NSError *error(nil);
5860 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
5861 return [warning length] == 0 ? nil : warning;
5865 - (void) _endConnection:(NSURLConnection *)connection {
5866 NSURLConnection **field = NULL;
5867 if (connection == trivial_)
5869 else if (connection == trivial_bz2_)
5870 field = &trivial_bz2_;
5871 else if (connection == trivial_gz_)
5872 field = &trivial_gz_;
5873 _assert(field != NULL);
5874 [connection release];
5879 trivial_bz2_ == nil &&
5885 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
5888 UIActionSheet *sheet = [[[UIActionSheet alloc]
5889 initWithTitle:UCLocalize("SOURCE_WARNING")
5890 buttons:[NSArray arrayWithObjects:UCLocalize("ADD_ANYWAY"), UCLocalize("CANCEL"), nil]
5891 defaultButtonIndex:0
5896 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
5898 [sheet setNumberOfRows:1];
5899 [sheet setBodyText:warning];
5900 [sheet popupAlertAnimated:YES];
5903 } else if (error_ != nil) {
5904 UIActionSheet *sheet = [[[UIActionSheet alloc]
5905 initWithTitle:UCLocalize("VERIFICATION_ERROR")
5906 buttons:[NSArray arrayWithObjects:UCLocalize("OK"), nil]
5907 defaultButtonIndex:0
5912 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
5914 [sheet setBodyText:[error_ localizedDescription]];
5915 [sheet popupAlertAnimated:YES];
5917 UIActionSheet *sheet = [[[UIActionSheet alloc]
5918 initWithTitle:UCLocalize("NOT_REPOSITORY")
5919 buttons:[NSArray arrayWithObjects:UCLocalize("OK"), nil]
5920 defaultButtonIndex:0
5925 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
5927 [sheet setBodyText:UCLocalize("NOT_REPOSITORY_EX")];
5928 [sheet popupAlertAnimated:YES];
5931 [delegate_ setStatusBarShowsProgress:NO];
5932 [delegate_ removeProgressHUD:hud_];
5942 if (error_ != nil) {
5949 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
5950 switch ([response statusCode]) {
5956 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
5957 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
5959 error_ = [error retain];
5960 [self _endConnection:connection];
5963 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
5964 [self _endConnection:connection];
5967 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
5968 NSMutableURLRequest *request = [NSMutableURLRequest
5969 requestWithURL:[NSURL URLWithString:href]
5970 cachePolicy:NSURLRequestUseProtocolCachePolicy
5971 timeoutInterval:120.0
5974 [request setHTTPMethod:method];
5976 if (Machine_ != NULL)
5977 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
5978 if (UniqueID_ != nil)
5979 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
5981 [request setValue:Role_ forHTTPHeaderField:@"X-Role"];
5983 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
5986 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button {
5987 NSString *context([sheet context]);
5989 if ([context isEqualToString:@"source"]) {
5992 NSString *href = [[sheet textField] text];
5994 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
5996 if (![href hasSuffix:@"/"])
5997 href_ = [href stringByAppendingString:@"/"];
6000 href_ = [href_ retain];
6002 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
6003 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
6004 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
6005 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
6009 hud_ = [[delegate_ addProgressHUD] retain];
6010 [hud_ setText:UCLocalize("VERIFYING_URL")];
6020 } else if ([context isEqualToString:@"trivial"])
6022 else if ([context isEqualToString:@"urlerror"])
6024 else if ([context isEqualToString:@"warning"]) {
6043 - (id) initWithBook:(RVBook *)book database:(Database *)database {
6044 if ((self = [super initWithBook:book]) != nil) {
6045 database_ = database;
6046 sources_ = [[NSMutableArray arrayWithCapacity:16] retain];
6048 //list_ = [[UITable alloc] initWithFrame:[self bounds]];
6049 list_ = [[UISectionList alloc] initWithFrame:[self bounds] showSectionIndex:NO];
6050 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6051 [self addSubview:list_];
6053 [list_ setShouldHideHeaderInShortLists:NO];
6054 [list_ setDataSource:self];
6056 UITableColumn *column = [[UITableColumn alloc]
6057 initWithTitle:UCLocalize("NAME")
6059 width:[self frame].size.width
6062 UITable *table = [list_ table];
6063 [table setSeparatorStyle:1];
6064 [table addTableColumn:column];
6065 [table setDelegate:self];
6069 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6073 - (void) reloadData {
6075 if (!list.ReadMainList())
6078 [sources_ removeAllObjects];
6079 [sources_ addObjectsFromArray:[database_ sources]];
6081 [sources_ sortUsingSelector:@selector(compareByNameAndType:)];
6084 int count([sources_ count]);
6085 for (offset_ = 0; offset_ != count; ++offset_) {
6086 Source *source = [sources_ objectAtIndex:offset_];
6087 if ([source record] == nil)
6094 - (void) resetViewAnimated:(BOOL)animated {
6095 [list_ resetViewAnimated:animated];
6098 - (void) _leftButtonClicked {
6099 /*[book_ pushPage:[[[AddSourceView alloc]
6104 UIActionSheet *sheet = [[[UIActionSheet alloc]
6105 initWithTitle:UCLocalize("ENTER_APT_URL")
6106 buttons:[NSArray arrayWithObjects:UCLocalize("ADD_SOURCE"), UCLocalize("CANCEL"), nil]
6107 defaultButtonIndex:0
6112 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
6114 [sheet setNumberOfRows:1];
6115 [sheet addTextFieldWithValue:@"http://" label:@""];
6117 UITextInputTraits *traits = [[sheet textField] textInputTraits];
6118 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
6119 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
6120 [traits setKeyboardType:UIKeyboardTypeURL];
6121 // XXX: UIReturnKeyDone
6122 [traits setReturnKeyType:UIReturnKeyNext];
6124 [sheet popupAlertAnimated:YES];
6127 - (void) _rightButtonClicked {
6128 UITable *table = [list_ table];
6129 BOOL editing = [table isRowDeletionEnabled];
6130 [table enableRowDeletion:!editing animated:YES];
6131 [book_ reloadButtonsForPage:self];
6134 - (NSString *) title {
6135 return UCLocalize("SOURCES");
6138 - (NSString *) leftButtonTitle {
6139 return [[list_ table] isRowDeletionEnabled] ? UCLocalize("ADD") : nil;
6142 - (id) rightButtonTitle {
6143 return [[list_ table] isRowDeletionEnabled] ? UCLocalize("DONE") : UCLocalize("EDIT");
6146 - (UINavigationButtonStyle) rightButtonStyle {
6147 return [[list_ table] isRowDeletionEnabled] ? UINavigationButtonStyleHighlighted : UINavigationButtonStyleNormal;
6153 /* Installed View {{{ */
6154 @interface InstalledView : RVPage {
6155 _transient Database *database_;
6156 FilteredPackageTable *packages_;
6160 - (id) initWithBook:(RVBook *)book database:(Database *)database;
6164 @implementation InstalledView
6167 [packages_ release];
6171 - (id) initWithBook:(RVBook *)book database:(Database *)database {
6172 if ((self = [super initWithBook:book]) != nil) {
6173 database_ = database;
6175 packages_ = [[FilteredPackageTable alloc]
6179 filter:@selector(isInstalledAndVisible:)
6180 with:[NSNumber numberWithBool:YES]
6183 [packages_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6184 [self addSubview:packages_];
6186 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6190 - (void) resetViewAnimated:(BOOL)animated {
6191 [packages_ resetViewAnimated:animated];
6194 - (void) reloadData {
6195 [packages_ reloadData];
6198 - (void) _rightButtonClicked {
6199 [packages_ setObject:[NSNumber numberWithBool:expert_]];
6200 [packages_ reloadData];
6202 [book_ reloadButtonsForPage:self];
6205 - (NSString *) title {
6206 return UCLocalize("INSTALLED");
6209 - (NSString *) backButtonTitle {
6210 return UCLocalize("PACKAGES");
6213 - (id) rightButtonTitle {
6214 return Role_ != nil && [Role_ isEqualToString:@"Developer"] ? nil : expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE");
6217 - (UINavigationButtonStyle) rightButtonStyle {
6218 return expert_ ? UINavigationButtonStyleHighlighted : UINavigationButtonStyleNormal;
6221 - (void) setDelegate:(id)delegate {
6222 [super setDelegate:delegate];
6223 [packages_ setDelegate:delegate];
6230 @interface HomeView : CydiaBrowserView {
6235 @implementation HomeView
6237 - (void) _setMoreHeaders:(NSMutableURLRequest *)request {
6238 [super _setMoreHeaders:request];
6240 [request setValue:ChipID_ forHTTPHeaderField:@"X-Chip-ID"];
6241 if (UniqueID_ != nil)
6242 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
6245 - (void) _leftButtonClicked {
6246 UIAlertView *alert = [[[UIAlertView alloc] init] autorelease];
6247 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6248 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6249 [alert setCancelButtonIndex:0];
6252 @"Copyright (C) 2008-2010\n"
6253 "Jay Freeman (saurik)\n"
6254 "saurik@saurik.com\n"
6255 "http://www.saurik.com/"
6261 - (NSString *) leftButtonTitle {
6262 return UCLocalize("ABOUT");
6267 /* Manage View {{{ */
6268 @interface ManageView : CydiaBrowserView {
6273 @implementation ManageView
6275 - (NSString *) title {
6276 return UCLocalize("MANAGE");
6279 - (void) _leftButtonClicked {
6280 [delegate_ askForSettings];
6281 [delegate_ updateData];
6284 - (NSString *) leftButtonTitle {
6285 return UCLocalize("SETTINGS");
6289 - (id) _rightButtonTitle {
6290 return Queuing_ ? UCLocalize("QUEUE") : nil;
6293 - (UINavigationButtonStyle) rightButtonStyle {
6294 return Queuing_ ? UINavigationButtonStyleHighlighted : UINavigationButtonStyleNormal;
6297 - (void) _rightButtonClicked {
6302 - (bool) isLoading {
6309 /* Cydia Book {{{ */
6310 @interface CYBook : RVBook <
6313 _transient Database *database_;
6314 UINavigationBar *overlay_;
6315 UINavigationBar *underlay_;
6316 UIProgressIndicator *indicator_;
6317 UITextLabel *prompt_;
6318 UIProgressBar *progress_;
6319 UINavigationButton *cancel_;
6324 - (id) initWithFrame:(CGRect)frame database:(Database *)database;
6327 - (void) setUpdate:(NSDate *)date;
6331 @implementation CYBook
6335 [indicator_ release];
6337 [progress_ release];
6342 - (NSString *) getTitleForPage:(RVPage *)page {
6343 return [super getTitleForPage:page];
6355 [UIView beginAnimations:nil context:NULL];
6357 CGRect ovrframe = [overlay_ frame];
6358 ovrframe.origin.y = 0;
6359 [overlay_ setFrame:ovrframe];
6361 CGRect barframe = [navbar_ frame];
6362 barframe.origin.y += ovrframe.size.height;
6363 [navbar_ setFrame:barframe];
6365 CGRect trnframe = [transition_ frame];
6366 trnframe.origin.y += ovrframe.size.height;
6367 trnframe.size.height -= ovrframe.size.height;
6368 [transition_ setFrame:trnframe];
6370 [UIView endAnimations];
6378 [UIView beginAnimations:nil context:NULL];
6380 CGRect ovrframe = [overlay_ frame];
6381 ovrframe.origin.y = -ovrframe.size.height;
6382 [overlay_ setFrame:ovrframe];
6384 CGRect barframe = [navbar_ frame];
6385 barframe.origin.y -= ovrframe.size.height;
6386 [navbar_ setFrame:barframe];
6388 CGRect trnframe = [transition_ frame];
6389 trnframe.origin.y -= ovrframe.size.height;
6390 trnframe.size.height += ovrframe.size.height;
6391 [transition_ setFrame:trnframe];
6393 [UIView commitAnimations];
6396 - (void) setUpdate:(NSDate *)date {
6403 [indicator_ startAnimation];
6404 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6405 [progress_ setProgress:0];
6408 [overlay_ addSubview:cancel_];
6411 detachNewThreadSelector:@selector(_update)
6417 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button {
6418 NSString *context([sheet context]);
6420 if ([context isEqualToString:@"refresh"])
6427 [indicator_ stopAnimation];
6431 [delegate_ performSelector:@selector(reloadData) withObject:nil afterDelay:0];
6434 - (id) initWithFrame:(CGRect)frame database:(Database *)database {
6435 if ((self = [super initWithFrame:frame]) != nil) {
6436 database_ = database;
6438 CGRect ovrrect([navbar_ bounds]);
6439 ovrrect.size.height = [UINavigationBar defaultSize].height;
6440 ovrrect.origin.y = -ovrrect.size.height;
6442 overlay_ = [[UINavigationBar alloc] initWithFrame:ovrrect];
6443 [overlay_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6444 [self addSubview:overlay_];
6446 ovrrect.origin.y = frame.size.height;
6447 underlay_ = [[UINavigationBar alloc] initWithFrame:ovrrect];
6448 [underlay_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6449 [self addSubview:underlay_];
6451 [underlay_ setTintColor:[UIColor colorWithRed:0.23 green:0.23 blue:0.23 alpha:1]];
6453 [overlay_ setBarStyle:1];
6454 [underlay_ setBarStyle:1];
6456 int barstyle([overlay_ _barStyle:NO]);
6457 bool ugly(barstyle == 0);
6459 UIProgressIndicatorStyle style = ugly ?
6460 UIProgressIndicatorStyleMediumBrown :
6461 UIProgressIndicatorStyleMediumWhite;
6463 CGSize indsize([UIProgressIndicator defaultSizeForStyle:style]);
6464 unsigned indoffset = (ovrrect.size.height - indsize.height) / 2;
6465 CGRect indrect = {{indoffset, indoffset}, indsize};
6467 indicator_ = [[UIProgressIndicator alloc] initWithFrame:indrect];
6468 [indicator_ setStyle:style];
6469 [overlay_ addSubview:indicator_];
6471 CGSize prmsize = {215, indsize.height + 4};
6474 indoffset * 2 + indsize.width,
6475 unsigned(ovrrect.size.height - prmsize.height) / 2 - 1
6478 UIFont *font([UIFont systemFontOfSize:15]);
6480 prompt_ = [[UITextLabel alloc] initWithFrame:prmrect];
6482 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6483 [prompt_ setBackgroundColor:[UIColor clearColor]];
6484 [prompt_ setFont:font];
6486 [overlay_ addSubview:prompt_];
6488 CGSize prgsize = {75, 100};
6491 ovrrect.size.width - prgsize.width - 10,
6492 (ovrrect.size.height - prgsize.height) / 2
6495 progress_ = [[UIProgressBar alloc] initWithFrame:prgrect];
6496 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6497 [overlay_ addSubview:progress_];
6499 [progress_ setStyle:0];
6501 cancel_ = [[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted];
6502 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6503 [cancel_ addTarget:self action:@selector(_onCancel) forControlEvents:UIControlEventTouchUpInside];
6505 CGRect frame = [cancel_ frame];
6506 frame.origin.x = ovrrect.size.width - frame.size.width - 5;
6507 frame.origin.y = (ovrrect.size.height - frame.size.height) / 2;
6508 [cancel_ setFrame:frame];
6510 [cancel_ setBarStyle:barstyle];
6514 - (void) _onCancel {
6516 [cancel_ removeFromSuperview];
6519 - (void) _update { _pooled
6521 status.setDelegate(self);
6522 [database_ updateWithStatus:status];
6525 performSelectorOnMainThread:@selector(_update_)
6531 - (void) setProgressError:(NSString *)error withTitle:(NSString *)title {
6532 [prompt_ setText:[NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), UCLocalize("ERROR"), error]];
6536 UIActionSheet *sheet = [[[UIActionSheet alloc]
6537 initWithTitle:[NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), UCLocalize("ERROR"), UCLocalize("REFRESH")]
6538 buttons:[NSArray arrayWithObjects:
6541 defaultButtonIndex:0
6546 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
6548 [sheet setBodyText:error];
6549 [sheet popupAlertAnimated:YES];
6551 [self reloadButtons];
6554 - (void) setProgressTitle:(NSString *)title {
6556 performSelectorOnMainThread:@selector(_setProgressTitle:)
6562 - (void) setProgressPercent:(float)percent {
6564 performSelectorOnMainThread:@selector(_setProgressPercent:)
6565 withObject:[NSNumber numberWithFloat:percent]
6570 - (void) startProgress {
6573 - (void) addProgressOutput:(NSString *)output {
6575 performSelectorOnMainThread:@selector(_addProgressOutput:)
6581 - (bool) isCancelling:(size_t)received {
6585 - (void) _setProgressTitle:(NSString *)title {
6586 [prompt_ setText:title];
6589 - (void) _setProgressPercent:(NSNumber *)percent {
6590 [progress_ setProgress:[percent floatValue]];
6593 - (void) _addProgressOutput:(NSString *)output {
6598 /* Cydia:// Protocol {{{ */
6599 @interface CydiaURLProtocol : NSURLProtocol {
6604 @implementation CydiaURLProtocol
6606 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
6607 NSURL *url([request URL]);
6610 NSString *scheme([[url scheme] lowercaseString]);
6611 if (scheme == nil || ![scheme isEqualToString:@"cydia"])
6616 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
6620 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
6621 id<NSURLProtocolClient> client([self client]);
6623 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
6625 NSData *data(UIImagePNGRepresentation(icon));
6627 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
6628 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
6629 [client URLProtocol:self didLoadData:data];
6630 [client URLProtocolDidFinishLoading:self];
6634 - (void) startLoading {
6635 id<NSURLProtocolClient> client([self client]);
6636 NSURLRequest *request([self request]);
6638 NSURL *url([request URL]);
6639 NSString *href([url absoluteString]);
6641 NSString *path([href substringFromIndex:8]);
6642 NSRange slash([path rangeOfString:@"/"]);
6645 if (slash.location == NSNotFound) {
6649 command = [path substringToIndex:slash.location];
6650 path = [path substringFromIndex:(slash.location + 1)];
6653 Database *database([Database sharedInstance]);
6655 if ([command isEqualToString:@"package-icon"]) {
6658 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6659 Package *package([database packageWithName:path]);
6662 UIImage *icon([package icon]);
6663 [self _returnPNGWithImage:icon forRequest:request];
6664 } else if ([command isEqualToString:@"source-icon"]) {
6667 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6668 NSString *source(Simplify(path));
6669 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sources/%@.png", App_, source]]);
6671 icon = [UIImage applicationImageNamed:@"unknown.png"];
6672 [self _returnPNGWithImage:icon forRequest:request];
6673 } else if ([command isEqualToString:@"uikit-image"]) {
6676 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6677 UIImage *icon(_UIImageWithName(path));
6678 [self _returnPNGWithImage:icon forRequest:request];
6679 } else if ([command isEqualToString:@"section-icon"]) {
6682 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
6683 NSString *section(Simplify(path));
6684 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, section]]);
6686 icon = [UIImage applicationImageNamed:@"unknown.png"];
6687 [self _returnPNGWithImage:icon forRequest:request];
6689 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
6693 - (void) stopLoading {
6699 /* Sections View {{{ */
6700 @interface SectionsView : RVPage {
6701 _transient Database *database_;
6702 NSMutableArray *sections_;
6703 NSMutableArray *filtered_;
6709 - (id) initWithBook:(RVBook *)book database:(Database *)database;
6710 - (void) reloadData;
6715 @implementation SectionsView
6718 [list_ setDataSource:nil];
6719 [list_ setDelegate:nil];
6721 [sections_ release];
6722 [filtered_ release];
6724 [accessory_ release];
6728 - (int) numberOfRowsInTable:(UITable *)table {
6729 return editing_ ? [sections_ count] : [filtered_ count] + 1;
6732 - (float) table:(UITable *)table heightForRow:(int)row {
6736 - (UITableCell *) table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col reusing:(UITableCell *)reusing {
6738 reusing = [[[SectionCell alloc] init] autorelease];
6739 [(SectionCell *)reusing setSection:(editing_ ?
6740 [sections_ objectAtIndex:row] :
6741 (row == 0 ? nil : [filtered_ objectAtIndex:(row - 1)])
6742 ) editing:editing_];
6746 - (BOOL) table:(UITable *)table showDisclosureForRow:(int)row {
6750 - (BOOL) table:(UITable *)table canSelectRow:(int)row {
6754 - (void) tableRowSelected:(NSNotification *)notification {
6755 int row = [[notification object] selectedRow];
6766 title = UCLocalize("ALL_PACKAGES");
6768 section = [filtered_ objectAtIndex:(row - 1)];
6769 name = [section name];
6772 name = [NSString stringWithString:name];
6773 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
6776 title = UCLocalize("NO_SECTION");
6780 PackageTable *table = [[[FilteredPackageTable alloc]
6784 filter:@selector(isVisibleInSection:)
6788 [table setDelegate:delegate_];
6790 [book_ pushPage:table];
6793 - (id) initWithBook:(RVBook *)book database:(Database *)database {
6794 if ((self = [super initWithBook:book]) != nil) {
6795 database_ = database;
6797 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
6798 filtered_ = [[NSMutableArray arrayWithCapacity:16] retain];
6800 list_ = [[UITable alloc] initWithFrame:[self bounds]];
6801 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6802 [self addSubview:list_];
6804 UITableColumn *column = [[[UITableColumn alloc]
6805 initWithTitle:UCLocalize("NAME")
6807 width:[self frame].size.width
6810 [list_ setDataSource:self];
6811 [list_ setSeparatorStyle:1];
6812 [list_ addTableColumn:column];
6813 [list_ setDelegate:self];
6814 [list_ setReusesTableCells:YES];
6818 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6822 - (void) reloadData {
6823 NSArray *packages = [database_ packages];
6825 [sections_ removeAllObjects];
6826 [filtered_ removeAllObjects];
6829 typedef __gnu_cxx::hash_map<NSString *, Section *, NSStringMapHash, NSStringMapEqual> SectionMap;
6830 SectionMap sections;
6831 sections.resize(64);
6833 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
6837 for (Package *package in packages) {
6838 NSString *name([package section]);
6839 NSString *key(name == nil ? @"" : name);
6844 _profile(SectionsView$reloadData$Section)
6845 section = §ions[key];
6846 if (*section == nil) {
6847 _profile(SectionsView$reloadData$Section$Allocate)
6848 *section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6853 [*section addToCount];
6855 _profile(SectionsView$reloadData$Filter)
6856 if (![package valid] || ![package visible])
6860 [*section addToRow];
6864 _profile(SectionsView$reloadData$Section)
6865 section = [sections objectForKey:key];
6866 if (section == nil) {
6867 _profile(SectionsView$reloadData$Section$Allocate)
6868 section = [[[Section alloc] initWithName:name localize:YES] autorelease];
6869 [sections setObject:section forKey:key];
6874 [section addToCount];
6876 _profile(SectionsView$reloadData$Filter)
6877 if (![package valid] || ![package visible])
6887 for (SectionMap::const_iterator i(sections.begin()), e(sections.end()); i != e; ++i)
6888 [sections_ addObject:i->second];
6890 [sections_ addObjectsFromArray:[sections allValues]];
6893 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
6895 for (Section *section in sections_) {
6896 size_t count([section row]);
6900 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
6901 [section setCount:count];
6902 [filtered_ addObject:section];
6909 - (void) resetView {
6911 [self _rightButtonClicked];
6914 - (void) resetViewAnimated:(BOOL)animated {
6915 [list_ resetViewAnimated:animated];
6918 - (void) _rightButtonClicked {
6919 if ((editing_ = !editing_))
6922 [delegate_ updateData];
6923 [book_ reloadTitleForPage:self];
6924 [book_ reloadButtonsForPage:self];
6927 - (NSString *) title {
6928 return editing_ ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS");
6931 - (NSString *) backButtonTitle {
6932 return UCLocalize("SECTIONS");
6935 - (id) rightButtonTitle {
6936 return [sections_ count] == 0 ? nil : editing_ ? UCLocalize("DONE") : UCLocalize("EDIT");
6939 - (UINavigationButtonStyle) rightButtonStyle {
6940 return editing_ ? UINavigationButtonStyleHighlighted : UINavigationButtonStyleNormal;
6943 - (UIView *) accessoryView {
6949 /* Changes View {{{ */
6950 @interface ChangesView : RVPage {
6951 _transient Database *database_;
6952 NSMutableArray *packages_;
6953 NSMutableArray *sections_;
6958 - (id) initWithBook:(RVBook *)book database:(Database *)database delegate:(id)delegate;
6959 - (void) reloadData;
6963 @implementation ChangesView
6966 [list_ setDelegate:nil];
6967 [list_ setDataSource:nil];
6969 [packages_ release];
6970 [sections_ release];
6975 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6976 NSInteger count([sections_ count]);
6977 return count == 0 ? 1 : count;
6980 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6981 if ([sections_ count] == 0)
6983 return [[sections_ objectAtIndex:section] name];
6986 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6987 if ([sections_ count] == 0)
6989 return [[sections_ objectAtIndex:section] count];
6992 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6993 Section *section([sections_ objectAtIndex:[path section]]);
6994 NSInteger row([path row]);
6995 return [packages_ objectAtIndex:([section row] + row)];
6998 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6999 PackageCell *cell([table dequeueReusableCellWithIdentifier:@"Package"]);
7001 cell = [[[PackageCell alloc] init] autorelease];
7002 [cell setPackage:[self packageAtIndexPath:path]];
7006 - (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path {
7008 return [PackageCell heightForPackage:[self packageAtIndexPath:path]];
7011 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
7012 Package *package([self packageAtIndexPath:path]);
7013 PackageView *view([delegate_ packageView]);
7014 [view setDelegate:delegate_];
7015 [view setPackage:package];
7016 [book_ pushPage:view];
7020 - (void) _leftButtonClicked {
7021 [(CYBook *)book_ update];
7022 [self reloadButtons];
7025 - (void) _rightButtonClicked {
7026 [delegate_ distUpgrade];
7029 - (id) initWithBook:(RVBook *)book database:(Database *)database delegate:(id)delegate {
7030 if ((self = [super initWithBook:book]) != nil) {
7031 database_ = database;
7033 packages_ = [[NSMutableArray arrayWithCapacity:16] retain];
7034 sections_ = [[NSMutableArray arrayWithCapacity:16] retain];
7036 list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain];
7037 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7038 [self addSubview:list_];
7040 //XXX:[list_ setShouldHideHeaderInShortLists:NO];
7041 [list_ setDataSource:self];
7042 [list_ setDelegate:self];
7043 //[list_ setSectionListStyle:1];
7045 delegate_ = delegate;
7048 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7052 - (void) _reloadPackages:(NSArray *)packages {
7054 for (Package *package in packages)
7056 [package uninstalled] && [package valid] && [package visible] ||
7057 [package upgradableAndEssential:YES]
7059 [packages_ addObject:package];
7062 [packages_ radixSortUsingFunction:reinterpret_cast<SKRadixFunction>(&PackageChangesRadix) withContext:NULL];
7066 - (void) reloadData {
7067 NSArray *packages = [database_ packages];
7069 [packages_ removeAllObjects];
7070 [sections_ removeAllObjects];
7072 UIProgressHUD *hud([delegate_ addProgressHUD]);
7074 [hud setText:@"Loading Changes"];
7075 NSLog(@"HUD:%@::%@", delegate_, hud);
7076 [self yieldToSelector:@selector(_reloadPackages:) withObject:packages];
7077 [delegate_ removeProgressHUD:hud];
7079 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7080 Section *ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") localize:NO] autorelease];
7081 Section *section = nil;
7085 bool unseens = false;
7087 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7089 for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) {
7090 Package *package = [packages_ objectAtIndex:offset];
7092 BOOL uae = [package upgradableAndEssential:YES];
7098 _profile(ChangesView$reloadData$Remember)
7099 seen = [package seen];
7102 if (section == nil || last != seen && (seen == nil || [seen compare:last] != NSOrderedSame)) {
7107 name = UCLocalize("UNKNOWN");
7109 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) seen);
7113 _profile(ChangesView$reloadData$Allocate)
7114 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7115 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7116 [sections_ addObject:section];
7120 [section addToCount];
7121 } else if ([package ignored])
7122 [ignored addToCount];
7125 [upgradable addToCount];
7130 CFRelease(formatter);
7133 Section *last = [sections_ lastObject];
7134 size_t count = [last count];
7135 [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)];
7136 [sections_ removeLastObject];
7139 if ([ignored count] != 0)
7140 [sections_ insertObject:ignored atIndex:0];
7142 [sections_ insertObject:upgradable atIndex:0];
7145 [self reloadButtons];
7148 - (void) resetViewAnimated:(BOOL)animated {
7149 [list_ resetViewAnimated:animated];
7152 - (NSString *) leftButtonTitle {
7153 return [(CYBook *)book_ updating] ? nil : UCLocalize("REFRESH");
7156 - (id) rightButtonTitle {
7157 return upgrades_ == 0 ? nil : [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]];
7160 - (NSString *) title {
7161 return UCLocalize("CHANGES");
7166 /* Search View {{{ */
7167 @protocol SearchViewDelegate
7168 - (void) showKeyboard:(BOOL)show;
7171 @interface SearchView : RVPage {
7173 UISearchField *field_;
7174 FilteredPackageTable *table_;
7178 - (id) initWithBook:(RVBook *)book database:(Database *)database;
7179 - (void) reloadData;
7183 @implementation SearchView
7186 [field_ setDelegate:nil];
7188 [accessory_ release];
7194 - (void) _showKeyboard:(BOOL)show {
7195 CGSize keysize = [UIKeyboard defaultSize];
7196 CGRect keydown = [book_ pageBounds];
7197 CGRect keyup = keydown;
7198 keyup.size.height -= keysize.height - ButtonBarHeight_;
7200 float delay = KeyboardTime_ * ButtonBarHeight_ / keysize.height;
7202 UIFrameAnimation *animation = [[[UIFrameAnimation alloc] initWithTarget:[table_ list]] autorelease];
7203 [animation setSignificantRectFields:8];
7206 [animation setStartFrame:keydown];
7207 [animation setEndFrame:keyup];
7209 [animation setStartFrame:keyup];
7210 [animation setEndFrame:keydown];
7213 UIAnimator *animator = [UIAnimator sharedAnimator];
7216 addAnimations:[NSArray arrayWithObjects:animation, nil]
7217 withDuration:(KeyboardTime_ - delay)
7222 [animator performSelector:@selector(startAnimation:) withObject:animation afterDelay:delay];
7224 //[delegate_ showKeyboard:show];
7227 - (void) textFieldDidBecomeFirstResponder:(UITextField *)field {
7228 [self _showKeyboard:YES];
7229 [table_ setObject:[field_ text] forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7233 - (void) textFieldDidResignFirstResponder:(UITextField *)field {
7234 [self _showKeyboard:NO];
7235 [table_ setObject:[field_ text] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7239 - (void) keyboardInputChanged:(UIFieldEditor *)editor {
7241 NSString *text([field_ text]);
7242 [field_ setClearButtonStyle:(text == nil || [text length] == 0 ? 0 : 2)];
7243 [table_ setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7249 - (void) textFieldClearButtonPressed:(UITextField *)field {
7253 - (void) keyboardInputShouldDelete:(id)input {
7257 - (BOOL) keyboardInput:(id)input shouldInsertText:(NSString *)text isMarkedText:(int)marked {
7258 if ([text length] != 1 || [text characterAtIndex:0] != '\n') {
7262 [field_ resignFirstResponder];
7267 - (id) initWithBook:(RVBook *)book database:(Database *)database {
7268 if ((self = [super initWithBook:book]) != nil) {
7269 CGRect pageBounds = [book_ pageBounds];
7271 table_ = [[FilteredPackageTable alloc]
7275 filter:@selector(isUnfilteredAndSearchedForBy:)
7279 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7280 [self addSubview:table_];
7282 [table_ setShouldHideHeaderInShortLists:NO];
7284 CGRect cnfrect = {{7, 38}, {17, 18}};
7291 area.size.width = [self bounds].size.width - area.origin.x * 2;
7292 area.size.height = [UISearchField defaultHeight];
7294 field_ = [[UISearchField alloc] initWithFrame:area];
7295 [field_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
7297 UIFont *font = [UIFont systemFontOfSize:16];
7298 [field_ setFont:font];
7300 [field_ setPlaceholder:UCLocalize("SEARCH_EX")];
7301 [field_ setDelegate:self];
7303 [field_ setPaddingTop:5];
7305 UITextInputTraits *traits([field_ textInputTraits]);
7306 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
7307 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
7308 [traits setReturnKeyType:UIReturnKeySearch];
7310 CGRect accrect = {{0, 6}, {6 + cnfrect.size.width + 6 + area.size.width + 6, area.size.height}};
7312 accessory_ = [[UIView alloc] initWithFrame:accrect];
7313 [accessory_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
7314 [accessory_ addSubview:field_];
7316 [self setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7320 - (void) resetViewAnimated:(BOOL)animated {
7321 [table_ resetViewAnimated:animated];
7324 - (void) _reloadData {
7327 - (void) reloadData {
7328 _profile(SearchView$reloadData)
7329 [table_ reloadData];
7332 [table_ resetCursor];
7335 - (UIView *) accessoryView {
7339 - (NSString *) title {
7343 - (NSString *) backButtonTitle {
7344 return UCLocalize("SEARCH");
7347 - (void) setDelegate:(id)delegate {
7348 [table_ setDelegate:delegate];
7349 [super setDelegate:delegate];
7354 /* Settings View {{{ */
7355 @interface SettingsView : RVPage {
7356 _transient Database *database_;
7359 UIPreferencesTable *table_;
7360 _UISwitchSlider *subscribedSwitch_;
7361 _UISwitchSlider *ignoredSwitch_;
7362 UIPreferencesControlTableCell *subscribedCell_;
7363 UIPreferencesControlTableCell *ignoredCell_;
7366 - (id) initWithBook:(RVBook *)book database:(Database *)database package:(NSString *)package;
7370 @implementation SettingsView
7373 [table_ setDataSource:nil];
7376 if (package_ != nil)
7379 [subscribedSwitch_ release];
7380 [ignoredSwitch_ release];
7381 [subscribedCell_ release];
7382 [ignoredCell_ release];
7386 - (int) numberOfGroupsInPreferencesTable:(UIPreferencesTable *)table {
7387 if (package_ == nil)
7393 - (NSString *) preferencesTable:(UIPreferencesTable *)table titleForGroup:(int)group {
7394 if (package_ == nil)
7407 - (BOOL) preferencesTable:(UIPreferencesTable *)table isLabelGroup:(int)group {
7408 if (package_ == nil)
7421 - (int) preferencesTable:(UIPreferencesTable *)table numberOfRowsInGroup:(int)group {
7422 if (package_ == nil)
7435 - (void) onSomething:(UIPreferencesControlTableCell *)cell withKey:(NSString *)key {
7436 if (package_ == nil)
7439 _UISwitchSlider *slider([cell control]);
7440 BOOL value([slider value] != 0);
7441 NSMutableDictionary *metadata([package_ metadata]);
7444 if (NSNumber *number = [metadata objectForKey:key])
7445 before = [number boolValue];
7449 if (value != before) {
7450 [metadata setObject:[NSNumber numberWithBool:value] forKey:key];
7452 [delegate_ updateData];
7456 - (void) onSubscribed:(UIPreferencesControlTableCell *)cell {
7457 [self onSomething:cell withKey:@"IsSubscribed"];
7460 - (void) onIgnored:(UIPreferencesControlTableCell *)cell {
7461 [self onSomething:cell withKey:@"IsIgnored"];
7464 - (id) preferencesTable:(UIPreferencesTable *)table cellForRow:(int)row inGroup:(int)group {
7465 if (package_ == nil)
7469 case 0: switch (row) {
7471 return subscribedCell_;
7473 return ignoredCell_;
7477 case 1: switch (row) {
7479 UIPreferencesControlTableCell *cell([[[UIPreferencesControlTableCell alloc] init] autorelease]);
7480 [cell setShowSelection:NO];
7481 [cell setTitle:UCLocalize("SHOW_ALL_CHANGES_EX")];
7494 - (id) initWithBook:(RVBook *)book database:(Database *)database package:(NSString *)package {
7495 if ((self = [super initWithBook:book])) {
7496 database_ = database;
7497 name_ = [package retain];
7499 table_ = [[UIPreferencesTable alloc] initWithFrame:[self bounds]];
7500 [self addSubview:table_];
7502 subscribedSwitch_ = [[_UISwitchSlider alloc] initWithFrame:CGRectMake(200, 10, 50, 20)];
7503 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventTouchUpInside];
7505 ignoredSwitch_ = [[_UISwitchSlider alloc] initWithFrame:CGRectMake(200, 10, 50, 20)];
7506 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventTouchUpInside];
7508 subscribedCell_ = [[UIPreferencesControlTableCell alloc] init];
7509 [subscribedCell_ setShowSelection:NO];
7510 [subscribedCell_ setTitle:UCLocalize("SHOW_ALL_CHANGES")];
7511 [subscribedCell_ setControl:subscribedSwitch_];
7513 ignoredCell_ = [[UIPreferencesControlTableCell alloc] init];
7514 [ignoredCell_ setShowSelection:NO];
7515 [ignoredCell_ setTitle:UCLocalize("IGNORE_UPGRADES")];
7516 [ignoredCell_ setControl:ignoredSwitch_];
7518 [table_ setDataSource:self];
7523 - (void) resetViewAnimated:(BOOL)animated {
7524 [table_ resetViewAnimated:animated];
7527 - (void) reloadData {
7528 if (package_ != nil)
7529 [package_ autorelease];
7530 package_ = [database_ packageWithName:name_];
7531 if (package_ != nil) {
7533 [subscribedSwitch_ setValue:([package_ subscribed] ? 1 : 0) animated:NO];
7534 [ignoredSwitch_ setValue:([package_ ignored] ? 1 : 0) animated:NO];
7537 [table_ reloadData];
7540 - (NSString *) title {
7541 return UCLocalize("SETTINGS");
7547 /* Signature View {{{ */
7548 @interface SignatureView : CydiaBrowserView {
7549 _transient Database *database_;
7553 - (id) initWithBook:(RVBook *)book database:(Database *)database package:(NSString *)package;
7557 @implementation SignatureView
7564 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
7566 [super webView:sender didClearWindowObject:window forFrame:frame];
7569 - (id) initWithBook:(RVBook *)book database:(Database *)database package:(NSString *)package {
7570 if ((self = [super initWithBook:book]) != nil) {
7571 database_ = database;
7572 package_ = [package retain];
7577 - (void) resetViewAnimated:(BOOL)animated {
7580 - (void) reloadData {
7581 [self loadURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"signature" ofType:@"html"]]];
7587 @interface CydiaViewController : UIViewController {
7592 @implementation CydiaViewController
7594 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
7595 return NO; // XXX: return YES;
7600 @interface Cydia : UIApplication <
7601 ConfirmationViewDelegate,
7602 ProgressViewDelegate,
7607 CydiaViewController *root_;
7618 NSMutableArray *essential_;
7619 NSMutableArray *broken_;
7621 Database *database_;
7622 ProgressView *progress_;
7626 UIKeyboard *keyboard_;
7627 UIProgressHUD *hud_;
7629 SectionsView *sections_;
7630 ChangesView *changes_;
7631 ManageView *manage_;
7632 SearchView *search_;
7634 #if RecyclePackageViews
7635 NSMutableArray *details_;
7639 - (RVPage *) _pageForURL:(NSURL *)url withClass:(Class)_class;
7640 - (void) setPage:(RVPage *)page;
7644 static _finline void _setHomePage(Cydia *self) {
7645 [self setPage:[self _pageForURL:[NSURL URLWithString:CydiaURL(@"")] withClass:[HomeView class]]];
7648 @implementation Cydia
7650 - (UIView *) rotatingContentViewForWindow:(UIWindow *)window {
7655 if ([broken_ count] != 0) {
7656 int count = [broken_ count];
7658 UIActionSheet *sheet = [[[UIActionSheet alloc]
7659 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
7660 buttons:[NSArray arrayWithObjects:
7661 UCLocalize("FORCIBLY_CLEAR"),
7662 UCLocalize("TEMPORARY_IGNORE"),
7664 defaultButtonIndex:0
7669 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
7671 [sheet setBodyText:UCLocalize("HALFINSTALLED_PACKAGE_EX")];
7672 [sheet popupAlertAnimated:YES];
7673 } else if (!Ignored_ && [essential_ count] != 0) {
7674 int count = [essential_ count];
7676 UIActionSheet *sheet = [[[UIActionSheet alloc]
7677 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
7678 buttons:[NSArray arrayWithObjects:
7679 UCLocalize("UPGRADE_ESSENTIAL"),
7680 UCLocalize("COMPLETE_UPGRADE"),
7681 UCLocalize("TEMPORARY_IGNORE"),
7683 defaultButtonIndex:0
7688 [sheet setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
7690 [sheet setBodyText:UCLocalize("ESSENTIAL_UPGRADE_EX")];
7691 [sheet popupAlertAnimated:YES];
7695 - (void) _saveConfig {
7698 NSString *error(nil);
7699 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
7701 NSError *error(nil);
7702 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
7703 NSLog(@"failure to save metadata data: %@", error);
7706 NSLog(@"failure to serialize metadata: %@", error);
7714 - (void) _updateData {
7717 /* XXX: this is just stupid */
7718 if (tag_ != 1 && sections_ != nil)
7719 [sections_ reloadData];
7720 if (tag_ != 2 && changes_ != nil)
7721 [changes_ reloadData];
7722 if (tag_ != 4 && search_ != nil)
7723 [search_ reloadData];
7728 - (void) _reloadData {
7731 static bool loaded(false);
7732 UIProgressHUD *hud([self addProgressHUD]);
7733 [hud setText:(loaded ? UCLocalize("RELOADING_DATA") : UCLocalize("LOADING_DATA"))];
7735 [database_ yieldToSelector:@selector(reloadData) withObject:nil];
7738 [self removeProgressHUD:hud];
7742 [essential_ removeAllObjects];
7743 [broken_ removeAllObjects];
7745 NSArray *packages([database_ packages]);
7746 for (Package *package in packages) {
7748 [broken_ addObject:package];
7749 if ([package upgradableAndEssential:NO]) {
7750 if ([package essential])
7751 [essential_ addObject:package];
7757 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
7758 [[[toolbar_ items] objectAtIndex:2] setBadgeValue:badge];
7759 if ([toolbar_ respondsToSelector:@selector(setBadgeAnimated:forButton:)])
7760 [[[toolbar_ items] objectAtIndex:2] setAnimatedBadge:YES];
7761 if ([self respondsToSelector:@selector(setApplicationBadge:)])
7762 [self setApplicationBadge:badge];
7764 [self setApplicationBadgeString:badge];
7766 [[[toolbar_ items] objectAtIndex:2] setBadgeValue:nil];
7767 if ([toolbar_ respondsToSelector:@selector(setBadgeAnimated:forButton:)])
7768 [[[toolbar_ items] objectAtIndex:2] setAnimatedBadge:NO];
7769 if ([self respondsToSelector:@selector(removeApplicationBadge)])
7770 [self removeApplicationBadge];
7771 else // XXX: maybe use setApplicationBadgeString also?
7772 [self setApplicationIconBadgeNumber:0];
7776 [[[toolbar_ items] objectAtIndex:3] setBadgeValue:nil];
7780 if (loaded || ManualRefresh) loaded:
7785 NSDate *update([Metadata_ objectForKey:@"LastUpdate"]);
7787 if (update != nil) {
7788 NSTimeInterval interval([update timeIntervalSinceNow]);
7789 if (interval <= 0 && interval > -(15*60))
7793 [book_ setUpdate:update];
7797 - (void) updateData {
7798 [database_ setVisible];
7807 FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w"));
7808 _assert(file != NULL);
7810 for (NSString *key in [Sources_ allKeys]) {
7811 NSDictionary *source([Sources_ objectForKey:key]);
7813 fprintf(file, "%s %s %s\n",
7814 [[source objectForKey:@"Type"] UTF8String],
7815 [[source objectForKey:@"URI"] UTF8String],
7816 [[source objectForKey:@"Distribution"] UTF8String]
7825 detachNewThreadSelector:@selector(update_)
7828 title:UCLocalize("UPDATING_SOURCES")
7832 - (void) reloadData {
7833 @synchronized (self) {
7834 if (confirm_ == nil)
7840 pkgProblemResolver *resolver = [database_ resolver];
7842 resolver->InstallProtect();
7843 if (!resolver->Resolve(true))
7847 - (void) popUpBook:(RVBook *)book {
7848 [underlay_ popSubview:book];
7851 - (CGRect) popUpBounds {
7852 return [underlay_ bounds];
7856 if (![database_ prepare])
7859 confirm_ = [[RVBook alloc] initWithFrame:[self popUpBounds]];
7860 [confirm_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7861 [confirm_ setDelegate:self];
7863 ConfirmationView *page([[[ConfirmationView alloc] initWithBook:confirm_ database:database_] autorelease]);
7864 [page setDelegate:self];
7866 [confirm_ setPage:page];
7867 [self popUpBook:confirm_];
7873 @synchronized (self) {
7878 - (void) clearPackage:(Package *)package {
7879 @synchronized (self) {
7886 - (void) installPackages:(NSArray *)packages {
7887 @synchronized (self) {
7888 for (Package *package in packages)
7895 - (void) installPackage:(Package *)package {
7896 @synchronized (self) {
7903 - (void) removePackage:(Package *)package {
7904 @synchronized (self) {
7911 - (void) distUpgrade {
7912 @synchronized (self) {
7913 if (![database_ upgrade])
7920 [self slideUp:[[[UIActionSheet alloc]
7922 buttons:[NSArray arrayWithObjects:UCLocalize("CONTINUE_QUEUING"), UCLocalize("CANCEL_CLEAR"), nil]
7923 defaultButtonIndex:1
7930 @synchronized (self) {
7933 if (confirm_ != nil) {
7941 [overlay_ removeFromSuperview];
7945 detachNewThreadSelector:@selector(perform)
7948 title:UCLocalize("RUNNING")
7952 - (void) progressViewIsComplete:(ProgressView *)progress {
7953 if (confirm_ != nil) {
7954 [underlay_ addSubview:overlay_];
7955 [confirm_ popFromSuperviewAnimated:NO];
7961 - (void) setPage:(RVPage *)page {
7962 [page resetViewAnimated:NO];
7963 [page setDelegate:self];
7964 [book_ setPage:page];
7967 - (RVPage *) _pageForURL:(NSURL *)url withClass:(Class)_class {
7968 CydiaBrowserView *browser = [[[_class alloc] initWithBook:book_] autorelease];
7969 [browser loadURL:url];
7973 - (SectionsView *) sectionsView {
7974 if (sections_ == nil)
7975 sections_ = [[SectionsView alloc] initWithBook:book_ database:database_];
7979 - (ChangesView *) changesView {
7980 if (changes_ == nil)
7981 changes_ = [[ChangesView alloc] initWithBook:book_ database:database_ delegate:self];
7985 - (ManageView *) manageView {
7987 manage_ = (ManageView *) [[self
7988 _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]
7989 withClass:[ManageView class]
7994 - (SearchView *) searchView {
7996 search_ = [[SearchView alloc] initWithBook:book_ database:database_];
8000 - (void) tabBar:(UITabBar *)sender didSelectItem:(UITabBarItem *)item {
8001 int tag = [item tag];
8003 [book_ resetViewAnimated:YES];
8005 } else if (tag_ == 1)
8006 [[self sectionsView] resetView];
8009 case 0: _setHomePage(self); break;
8011 case 1: [self setPage:[self sectionsView]]; break;
8012 case 2: [self setPage:[self changesView]]; break;
8013 case 3: [self setPage:[self manageView]]; break;
8014 case 4: [self setPage:[self searchView]]; break;
8022 - (void) askForSettings {
8023 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
8025 CYActionSheet *role([[[CYActionSheet alloc]
8026 initWithTitle:UCLocalize("WHO_ARE_YOU")
8027 buttons:[NSArray arrayWithObjects:
8028 [NSString stringWithFormat:parenthetical, UCLocalize("USER"), UCLocalize("USER_EX")],
8029 [NSString stringWithFormat:parenthetical, UCLocalize("HACKER"), UCLocalize("HACKER_EX")],
8030 [NSString stringWithFormat:parenthetical, UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")],
8032 defaultButtonIndex:-1
8035 [role setBodyText:UCLocalize("ROLE_EX")];
8037 int button([role yieldToPopupAlertAnimated:YES]);
8040 case 1: Role_ = @"User"; break;
8041 case 2: Role_ = @"Hacker"; break;
8042 case 3: Role_ = @"Developer"; break;
8047 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
8051 [Metadata_ setObject:Settings_ forKey:@"Settings"];
8058 - (void) setPackageView:(PackageView *)view {
8060 [view setPackage:nil];
8061 #if RecyclePackageViews
8062 if ([details_ count] < 3)
8063 [details_ addObject:view];
8068 - (PackageView *) _packageView {
8069 return [[[PackageView alloc] initWithBook:book_ database:database_] autorelease];
8072 - (PackageView *) packageView {
8073 #if RecyclePackageViews
8075 size_t count([details_ count]);
8078 view = [self _packageView];
8080 [details_ addObject:[self _packageView]];
8082 view = [[[details_ lastObject] retain] autorelease];
8083 [details_ removeLastObject];
8090 return [self _packageView];
8094 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button {
8095 NSString *context([sheet context]);
8097 if ([context isEqualToString:@"missing"])
8099 else if ([context isEqualToString:@"cancel"]) {
8116 @synchronized (self) {
8121 [[[toolbar_ items] objectAtIndex:3] setBadgeValue:UCLocalize("Q_D")];
8125 if (confirm_ != nil) {
8130 } else if ([context isEqualToString:@"fixhalf"]) {
8133 @synchronized (self) {
8134 for (Package *broken in broken_) {
8137 NSString *id = [broken id];
8138 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
8139 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
8140 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
8141 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
8150 [broken_ removeAllObjects];
8158 } else if ([context isEqualToString:@"upgrade"]) {
8161 @synchronized (self) {
8162 for (Package *essential in essential_)
8163 [essential install];
8185 - (void) system:(NSString *)command { _pooled
8186 system([command UTF8String]);
8189 - (void) applicationWillSuspend {
8191 [super applicationWillSuspend];
8194 - (void) applicationSuspend:(__GSEvent *)event {
8195 if (hud_ == nil && ![progress_ isRunning])
8196 [super applicationSuspend:event];
8199 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
8201 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
8204 - (void) _setSuspended:(BOOL)value {
8206 [super _setSuspended:value];
8209 - (UIProgressHUD *) addProgressHUD {
8210 UIProgressHUD *hud([[[UIProgressHUD alloc] initWithWindow:window_] autorelease]);
8211 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8213 [window_ setUserInteractionEnabled:NO];
8215 [progress_ addSubview:hud];
8219 - (void) removeProgressHUD:(UIProgressHUD *)hud {
8221 [hud removeFromSuperview];
8222 [window_ setUserInteractionEnabled:YES];
8225 - (RVPage *) pageForPackage:(NSString *)name {
8226 if (Package *package = [database_ packageWithName:name]) {
8227 PackageView *view([self packageView]);
8228 [view setPackage:package];
8231 NSURL *url([NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"unknown" ofType:@"html"]]);
8232 url = [NSURL URLWithString:[[url absoluteString] stringByAppendingString:[NSString stringWithFormat:@"?%@", name]]];
8233 return [self _pageForURL:url withClass:[CydiaBrowserView class]];
8237 - (RVPage *) pageForURL:(NSURL *)url hasTag:(int *)tag {
8241 NSString *href([url absoluteString]);
8242 if ([href hasPrefix:@"apptapp://package/"])
8243 return [self pageForPackage:[href substringFromIndex:18]];
8245 NSString *scheme([[url scheme] lowercaseString]);
8246 if (![scheme isEqualToString:@"cydia"])
8248 NSString *path([url absoluteString]);
8249 if ([path length] < 8)
8251 path = [path substringFromIndex:8];
8252 if (![path hasPrefix:@"/"])
8253 path = [@"/" stringByAppendingString:path];
8255 if ([path isEqualToString:@"/add-source"])
8256 return [[[AddSourceView alloc] initWithBook:book_ database:database_] autorelease];
8257 else if ([path isEqualToString:@"/storage"])
8258 return [self _pageForURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"storage" ofType:@"html"]] withClass:[CydiaBrowserView class]];
8259 else if ([path isEqualToString:@"/sources"])
8260 return [[[SourceTable alloc] initWithBook:book_ database:database_] autorelease];
8261 else if ([path isEqualToString:@"/packages"])
8262 return [[[InstalledView alloc] initWithBook:book_ database:database_] autorelease];
8263 else if ([path hasPrefix:@"/url/"])
8264 return [self _pageForURL:[NSURL URLWithString:[path substringFromIndex:5]] withClass:[CydiaBrowserView class]];
8265 else if ([path hasPrefix:@"/launch/"])
8266 [self launchApplicationWithIdentifier:[path substringFromIndex:8] suspended:NO];
8267 else if ([path hasPrefix:@"/package-settings/"])
8268 return [[[SettingsView alloc] initWithBook:book_ database:database_ package:[path substringFromIndex:18]] autorelease];
8269 else if ([path hasPrefix:@"/package-signature/"])
8270 return [[[SignatureView alloc] initWithBook:book_ database:database_ package:[path substringFromIndex:19]] autorelease];
8271 else if ([path hasPrefix:@"/package/"])
8272 return [self pageForPackage:[path substringFromIndex:9]];
8273 else if ([path hasPrefix:@"/files/"]) {
8274 NSString *name = [path substringFromIndex:7];
8276 if (Package *package = [database_ packageWithName:name]) {
8277 FileTable *files = [[[FileTable alloc] initWithBook:book_ database:database_] autorelease];
8278 [files setPackage:package];
8286 - (void) applicationOpenURL:(NSURL *)url {
8287 [super applicationOpenURL:url];
8289 if (RVPage *page = [self pageForURL:url hasTag:&tag]) {
8290 [self setPage:page];
8292 [toolbar_ setSelectedItem:(tag_ == -1 ? nil : [items_ objectAtIndex:tag_])];
8296 - (void) applicationDidFinishLaunching:(id)unused {
8297 [BrowserView _initialize];
8299 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
8301 Font12_ = [[UIFont systemFontOfSize:12] retain];
8302 Font12Bold_ = [[UIFont boldSystemFontOfSize:12] retain];
8303 Font14_ = [[UIFont systemFontOfSize:14] retain];
8304 Font18Bold_ = [[UIFont boldSystemFontOfSize:18] retain];
8305 Font22Bold_ = [[UIFont boldSystemFontOfSize:22] retain];
8309 essential_ = [[NSMutableArray alloc] initWithCapacity:4];
8310 broken_ = [[NSMutableArray alloc] initWithCapacity:4];
8312 UIScreen *screen([UIScreen mainScreen]);
8314 window_ = [[UIWindow alloc] initWithFrame:[screen bounds]];
8315 [window_ orderFront:self];
8316 [window_ makeKey:self];
8317 [window_ setHidden:NO];
8319 root_ = [[CydiaViewController alloc] init];
8320 [window_ addSubview:[root_ view]];
8322 database_ = [Database sharedInstance];
8324 progress_ = [[ProgressView alloc] initWithFrame:[[root_ view] bounds] database:database_ delegate:self];
8325 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8326 [[root_ view] addSubview:progress_];
8328 [database_ setDelegate:progress_];
8330 underlay_ = [[UIView alloc] initWithFrame:[progress_ bounds]];
8331 [underlay_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8332 [progress_ setContentView:underlay_];
8334 [progress_ resetView];
8337 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
8338 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
8339 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
8340 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
8341 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
8342 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
8343 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
8344 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
8345 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
8348 [self setIdleTimerDisabled:YES];
8350 hud_ = [self addProgressHUD];
8351 [hud_ setText:@"Reorganizing\n\nWill Automatically\nClose When Done"];
8352 [self setStatusBarShowsProgress:YES];
8354 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
8356 [self setStatusBarShowsProgress:NO];
8357 [self removeProgressHUD:hud_];
8360 if (ExecFork() == 0) {
8361 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
8362 perror("launchctl stop");
8369 [self askForSettings];
8372 overlay_ = [[UIView alloc] initWithFrame:[underlay_ bounds]];
8373 [overlay_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8375 CGRect screenrect = [UIHardware fullScreenApplicationContentRect];
8377 book_ = [[CYBook alloc] initWithFrame:CGRectMake(
8378 0, 0, screenrect.size.width, screenrect.size.height - 48
8379 ) database:database_];
8381 [book_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8382 [overlay_ addSubview:book_];
8384 [book_ setDelegate:self];
8386 items_ = [[NSArray arrayWithObjects:
8387 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease],
8388 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:1] autorelease],
8389 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:2] autorelease],
8390 [[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:3] autorelease],
8391 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:4] autorelease],
8394 toolbar_ = [[UITabBar alloc]
8395 initWithFrame:CGRectMake(
8396 0, screenrect.size.height - ButtonBarHeight_,
8397 screenrect.size.width, ButtonBarHeight_
8401 [toolbar_ setItems:items_];
8403 [toolbar_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin)];
8404 [overlay_ addSubview:toolbar_];
8406 [toolbar_ setDelegate:self];
8408 /*int buttons[5] = {1, 2, 3, 4, 5};
8409 [toolbar_ registerButtonGroup:0 withButtons:buttons withCount:5];
8410 [toolbar_ showButtonGroup:0 withDuration:0];
8412 for (int i = 0; i != 5; ++i) {
8413 UIView *button([toolbar_ viewWithTag:(i + 1)]);
8415 [button setFrame:CGRectMake(
8416 i * (screenrect.size.width / 5) + (screenrect.size.width / 5 - ButtonBarWidth_) / 2, 1,
8417 ButtonBarWidth_, ButtonBarHeight_
8420 [button setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
8423 [toolbar_ setSelectedItem:[items_ objectAtIndex:0]];
8425 [UIKeyboard initImplementationNow];
8426 /*CGSize keysize = [UIKeyboard defaultSize];
8427 CGRect keyrect = {{0, [overlay_ bounds].size.height}, keysize};
8428 keyboard_ = [[UIKeyboard alloc] initWithFrame:keyrect];
8429 [overlay_ addSubview:keyboard_];*/
8431 [underlay_ addSubview:overlay_];
8435 #if RecyclePackageViews
8436 details_ = [[NSMutableArray alloc] initWithCapacity:4];
8437 [details_ addObject:[self _packageView]];
8438 [details_ addObject:[self _packageView]];
8446 - (void) showKeyboard:(BOOL)show {
8447 CGSize keysize([UIKeyboard defaultSize]);
8448 CGRect keydown = {{0, [overlay_ bounds].size.height}, keysize};
8449 CGRect keyup(keydown);
8450 keyup.origin.y -= keysize.height;
8452 UIFrameAnimation *animation([[[UIFrameAnimation alloc] initWithTarget:keyboard_] autorelease]);
8453 [animation setSignificantRectFields:2];
8456 [animation setStartFrame:keydown];
8457 [animation setEndFrame:keyup];
8458 [keyboard_ activate];
8460 [animation setStartFrame:keyup];
8461 [animation setEndFrame:keydown];
8462 [keyboard_ deactivate];
8465 [[UIAnimator sharedAnimator]
8466 addAnimations:[NSArray arrayWithObjects:animation, nil]
8467 withDuration:KeyboardTime_
8472 - (void) slideUp:(UIActionSheet *)alert {
8473 [alert setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
8474 [alert presentSheetInView:overlay_];
8480 id Alloc_(id self, SEL selector) {
8481 id object = alloc_(self, selector);
8482 lprintf("[%s]A-%p\n", self->isa->name, object);
8487 id Dealloc_(id self, SEL selector) {
8488 id object = dealloc_(self, selector);
8489 lprintf("[%s]D-%p\n", self->isa->name, object);
8493 Class $WebDefaultUIKitDelegate;
8495 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
8496 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
8497 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
8498 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
8501 int main(int argc, char *argv[]) { _pooled
8504 if (Class $UIDevice = objc_getClass("UIDevice")) {
8505 UIDevice *device([$UIDevice currentDevice]);
8506 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
8510 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
8512 /* Library Hacks {{{ */
8513 class_addMethod(objc_getClass("WebScriptObject"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &WebScriptObject$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8514 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
8516 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
8517 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
8518 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
8519 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
8520 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
8523 /* Set Locale {{{ */
8524 Locale_ = CFLocaleCopyCurrent();
8525 Languages_ = [NSLocale preferredLanguages];
8526 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
8527 //NSLog(@"%@", [Languages_ description]);
8530 if (Languages_ == nil || [Languages_ count] == 0)
8531 // XXX: consider just setting to C and then falling through?
8534 lang = [[Languages_ objectAtIndex:0] UTF8String];
8535 setenv("LANG", lang, true);
8538 //std::setlocale(LC_ALL, lang);
8539 NSLog(@"Setting Language: %s", lang);
8542 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
8544 /* Parse Arguments {{{ */
8545 bool substrate(false);
8551 for (int argi(1); argi != argc; ++argi)
8552 if (strcmp(argv[argi], "--") == 0) {
8554 argv[argi] = argv[0];
8560 for (int argi(1); argi != arge; ++argi)
8561 if (strcmp(args[argi], "--substrate") == 0)
8564 fprintf(stderr, "unknown argument: %s\n", args[argi]);
8568 App_ = [[NSBundle mainBundle] bundlePath];
8569 Home_ = NSHomeDirectory();
8575 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
8576 alloc_ = alloc->method_imp;
8577 alloc->method_imp = (IMP) &Alloc_;*/
8579 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
8580 dealloc_ = dealloc->method_imp;
8581 dealloc->method_imp = (IMP) &Dealloc_;*/
8583 /* System Information {{{ */
8587 size = sizeof(maxproc);
8588 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
8589 perror("sysctlbyname(\"kern.maxproc\", ?)");
8590 else if (maxproc < 64) {
8592 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
8593 perror("sysctlbyname(\"kern.maxproc\", #)");
8596 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
8597 char *osversion = new char[size];
8598 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
8599 perror("sysctlbyname(\"kern.osversion\", ?)");
8601 System_ = [NSString stringWithUTF8String:osversion];
8603 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
8604 char *machine = new char[size];
8605 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
8606 perror("sysctlbyname(\"hw.machine\", ?)");
8610 if (CFMutableDictionaryRef dict = IOServiceMatching("IOPlatformExpertDevice")) {
8611 if (io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault, dict)) {
8612 if (CFTypeRef serial = IORegistryEntryCreateCFProperty(service, CFSTR(kIOPlatformSerialNumberKey), kCFAllocatorDefault, 0)) {
8613 SerialNumber_ = [NSString stringWithString:(NSString *)serial];
8617 if (CFTypeRef ecid = IORegistryEntrySearchCFProperty(service, kIODeviceTreePlane, CFSTR("unique-chip-id"), kCFAllocatorDefault, kIORegistryIterateRecursively)) {
8618 NSData *data((NSData *) ecid);
8619 size_t length([data length]);
8620 uint8_t bytes[length];
8621 [data getBytes:bytes];
8622 char string[length * 2 + 1];
8623 for (size_t i(0); i != length; ++i)
8624 sprintf(string + i * 2, "%.2X", bytes[length - i - 1]);
8625 ChipID_ = [NSString stringWithUTF8String:string];
8629 IOObjectRelease(service);
8633 UniqueID_ = [[UIDevice currentDevice] uniqueIdentifier];
8635 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
8636 Build_ = [system objectForKey:@"ProductBuildVersion"];
8637 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
8638 Product_ = [info objectForKey:@"SafariProductVersion"];
8639 Safari_ = [info objectForKey:@"CFBundleVersion"];
8642 /* Load Database {{{ */
8644 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
8646 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
8649 if (Metadata_ == NULL)
8650 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
8652 Settings_ = [Metadata_ objectForKey:@"Settings"];
8654 Packages_ = [Metadata_ objectForKey:@"Packages"];
8655 Sections_ = [Metadata_ objectForKey:@"Sections"];
8656 Sources_ = [Metadata_ objectForKey:@"Sources"];
8658 Token_ = [Metadata_ objectForKey:@"Token"];
8661 if (Settings_ != nil)
8662 Role_ = [Settings_ objectForKey:@"Role"];
8664 if (Packages_ == nil) {
8665 Packages_ = [[[NSMutableDictionary alloc] initWithCapacity:128] autorelease];
8666 [Metadata_ setObject:Packages_ forKey:@"Packages"];
8669 if (Sections_ == nil) {
8670 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
8671 [Metadata_ setObject:Sections_ forKey:@"Sections"];
8674 if (Sources_ == nil) {
8675 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
8676 [Metadata_ setObject:Sources_ forKey:@"Sources"];
8681 Documents_ = [[[NSMutableArray alloc] initWithCapacity:4] autorelease];
8684 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
8686 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", F_OK) == 0)
8687 dlopen("/Library/MobileSubstrate/DynamicLibraries/SimulatedKeyEvents.dylib", RTLD_LAZY | RTLD_GLOBAL);
8688 if (substrate && access("/Applications/WinterBoard.app/WinterBoard.dylib", F_OK) == 0)
8689 dlopen("/Applications/WinterBoard.app/WinterBoard.dylib", RTLD_LAZY | RTLD_GLOBAL);
8690 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
8691 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
8693 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
8695 if (access("/tmp/.cydia.fw", F_OK) == 0) {
8696 unlink("/tmp/.cydia.fw");
8698 } else if (access("/User", F_OK) != 0 || version < 2) {
8701 system("/usr/libexec/cydia/firmware.sh");
8705 _assert([[NSFileManager defaultManager]
8706 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
8707 withIntermediateDirectories:YES
8712 if (access("/tmp/cydia.chk", F_OK) == 0) {
8713 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
8714 _assert(errno == ENOENT);
8715 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
8716 _assert(errno == ENOENT);
8719 /* APT Initialization {{{ */
8720 _assert(pkgInitConfig(*_config));
8721 _assert(pkgInitSystem(*_config, _system));
8724 _config->Set("APT::Acquire::Translation", lang);
8725 _config->Set("Acquire::http::Timeout", 15);
8726 _config->Set("Acquire::http::MaxParallel", 3);
8728 /* Color Choices {{{ */
8729 space_ = CGColorSpaceCreateDeviceRGB();
8731 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
8732 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
8733 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
8734 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
8735 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
8736 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
8737 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
8738 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
8739 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
8741 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
8742 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
8744 /* UIKit Configuration {{{ */
8745 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
8746 if ($GSFontSetUseLegacyFontMetrics != NULL)
8747 $GSFontSetUseLegacyFontMetrics(YES);
8749 // XXX: I have a feeling this was important
8750 //UIKeyboardDisableAutomaticAppearance();
8753 Colon_ = UCLocalize("COLON_DELIMITED");
8754 Error_ = UCLocalize("ERROR");
8755 Warning_ = UCLocalize("WARNING");
8758 int value = UIApplicationMain(argc, argv, @"Cydia", @"Cydia");
8760 CGColorSpaceRelease(space_);