1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
22 // XXX: wtf/FastMalloc.h... wtf?
23 #define USE_SYSTEM_MALLOC 1
25 /* #include Directives {{{ */
26 #include "CyteKit/UCPlatform.h"
27 #include "CyteKit/Localize.h"
29 #include <unicode/ustring.h>
30 #include <unicode/utrans.h>
32 #include <objc/objc.h>
33 #include <objc/runtime.h>
35 #include <CoreGraphics/CoreGraphics.h>
36 #include <Foundation/Foundation.h>
39 #define DEPLOYMENT_TARGET_MACOSX 1
40 #define CF_BUILDING_CF 1
41 #include <CoreFoundation/CFInternal.h>
44 #include <CoreFoundation/CFUniChar.h>
46 #include <SystemConfiguration/SystemConfiguration.h>
48 #include <UIKit/UIKit.h>
49 #include "iPhonePrivate.h"
51 #include <IOKit/IOKitLib.h>
53 #include <QuartzCore/CALayer.h>
55 #include <WebCore/WebCoreThread.h>
56 #include <WebKit/DOMHTMLIFrameElement.h>
64 #include <ext/stdio_filebuf.h>
68 #include <apt-pkg/acquire.h>
69 #include <apt-pkg/acquire-item.h>
70 #include <apt-pkg/algorithms.h>
71 #include <apt-pkg/cachefile.h>
72 #include <apt-pkg/clean.h>
73 #include <apt-pkg/configuration.h>
74 #include <apt-pkg/debindexfile.h>
75 #include <apt-pkg/debmetaindex.h>
76 #include <apt-pkg/error.h>
77 #include <apt-pkg/init.h>
78 #include <apt-pkg/mmap.h>
79 #include <apt-pkg/pkgrecords.h>
80 #include <apt-pkg/sha1.h>
81 #include <apt-pkg/sourcelist.h>
82 #include <apt-pkg/sptr.h>
83 #include <apt-pkg/strutl.h>
84 #include <apt-pkg/tagfile.h>
86 #include <apr-1/apr_pools.h>
88 #include <sys/types.h>
90 #include <sys/sysctl.h>
91 #include <sys/param.h>
92 #include <sys/mount.h>
93 #include <sys/reboot.h>
100 #include <mach-o/nlist.h>
109 #include <Cytore.hpp>
112 #include <CydiaSubstrate/CydiaSubstrate.h>
113 #include "Menes/Menes.h"
115 #include "CyteKit/IndirectDelegate.h"
116 #include "CyteKit/PerlCompatibleRegEx.hpp"
117 #include "CyteKit/TableViewCell.h"
118 #include "CyteKit/TabBarController.h"
119 #include "CyteKit/WebScriptObject-Cyte.h"
120 #include "CyteKit/WebViewController.h"
121 #include "CyteKit/WebViewTableViewCell.h"
122 #include "CyteKit/stringWithUTF8Bytes.h"
124 #include "Cydia/MIMEAddress.h"
125 #include "Cydia/LoadingViewController.h"
126 #include "Cydia/ProgressEvent.h"
128 #include "SDURLCache/SDURLCache.h"
135 #define _timestamp ({ \
137 gettimeofday(&tv, NULL); \
138 tv.tv_sec * 1000000 + tv.tv_usec; \
141 typedef std::vector<class ProfileTime *> TimeList;
151 ProfileTime(const char *name) :
155 times_.push_back(this);
158 void AddTime(uint64_t time) {
165 std::cerr << std::setw(7) << count_ << ", " << std::setw(8) << total_ << " : " << name_ << std::endl;
177 ProfileTimer(ProfileTime &time) :
184 time_.AddTime(_timestamp - start_);
189 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
191 std::cerr << "========" << std::endl;
194 #define _profile(name) { \
195 static ProfileTime name(#name); \
196 ProfileTimer _ ## name(name);
201 // XXX: I hate clang. Apple: please get over your petty hatred of GPL and fix your gcc fork
202 #define synchronized(lock) \
203 synchronized(static_cast<NSObject *>(lock))
205 extern NSString *Cydia_;
207 #define lprintf(args...) fprintf(stderr, args)
210 #define TraceLogging (1 && !ForRelease)
211 #define HistogramInsertionSort (0 && !ForRelease)
212 #define ProfileTimes (0 && !ForRelease)
213 #define ForSaurik (0 && !ForRelease)
214 #define LogBrowser (0 && !ForRelease)
215 #define TrackResize (0 && !ForRelease)
216 #define ManualRefresh (1 && !ForRelease)
217 #define ShowInternals (0 && !ForRelease)
218 #define AlwaysReload (0 && !ForRelease)
222 #define _trace(args...)
227 #define _profile(name) {
230 #define PrintTimes() do {} while (false)
233 // Hash Functions/Structures {{{
234 extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0);
242 static NSString *Colon_;
244 static NSString *Error_;
245 static NSString *Warning_;
247 static NSString *Cache_;
249 static void (*$SBSSetInterceptsMenuButtonForever)(bool);
251 static CFStringRef (*$MGCopyAnswer)(CFStringRef);
253 static NSString *UniqueIdentifier(UIDevice *device = nil) {
254 if (kCFCoreFoundationVersionNumber < 800) // iOS 7.x
255 return [device ?: [UIDevice currentDevice] uniqueIdentifier];
257 return [(id)$MGCopyAnswer(CFSTR("UniqueDeviceID")) autorelease];
260 static bool IsReachable(const char *name) {
261 SCNetworkReachabilityFlags flags; {
262 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, name));
263 SCNetworkReachabilityGetFlags(reachability, &flags);
264 CFRelease(reachability);
267 // XXX: this elaborate mess is what Apple is using to determine this? :(
268 // XXX: do we care if the user has to intervene? maybe that's ok?
270 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
271 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
272 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
273 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
274 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
275 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
280 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
282 static _finline NSString *CydiaURL(NSString *path) {
284 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's';
285 page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y';
286 page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's';
287 page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k';
288 page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/';
290 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
293 static void ReapZombie(pid_t pid) {
296 if (waitpid(pid, &status, 0) == -1)
302 static _finline void UpdateExternalStatus(uint64_t newStatus) {
304 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
305 notify_set_state(notify_token, newStatus);
306 notify_cancel(notify_token);
308 notify_post("com.saurik.Cydia.status");
311 static CGFloat CYStatusBarHeight() {
312 CGSize size([[UIApplication sharedApplication] statusBarFrame].size);
313 return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width;
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_ = kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
321 /* Insertion Sort {{{ */
323 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
324 const char *ptr = (const char *)list;
326 CFIndex half = count / 2;
327 const char *probe = ptr + elementSize * half;
328 CFComparisonResult cr = comparator(element, probe, context);
329 if (0 == cr) return (probe - (const char *)list) / elementSize;
330 ptr = (cr < 0) ? ptr : probe + elementSize;
331 count = (cr < 0) ? half : (half + (count & 1) - 1);
333 return (ptr - (const char *)list) / elementSize;
336 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
337 const char *ptr = (const char *)list;
339 CFIndex half = count / 2;
340 const char *probe = ptr + elementSize * half;
341 CFComparisonResult cr = comparator(element, probe, context);
342 if (0 == cr) return (probe - (const char *)list) / elementSize;
343 ptr = (cr < 0) ? ptr : probe + elementSize;
344 count = (cr < 0) ? half : (half + (count & 1) - 1);
346 return (ptr - (const char *)list) / elementSize;
349 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
350 if (range.length == 0)
352 const void **values(new const void *[range.length]);
353 CFArrayGetValues(array, range, values);
355 #if HistogramInsertionSort > 0
356 uint32_t total(0), *offsets(new uint32_t[range.length]);
359 for (CFIndex index(1); index != range.length; ++index) {
360 const void *value(values[index]);
361 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
362 CFIndex correct(index);
363 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
364 #if HistogramInsertionSort > 1
365 NSLog(@"%@ < %@", value, values[correct - 1]);
370 if (correct != index) {
371 size_t offset(index - correct);
372 #if HistogramInsertionSort
376 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
378 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
379 values[correct] = value;
383 CFArrayReplaceValues(array, range, values, range.length);
386 #if HistogramInsertionSort > 0
387 for (CFIndex index(0); index != range.length; ++index)
388 if (offsets[index] != 0)
389 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
390 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
397 /* Apple Bug Fixes {{{ */
398 @implementation UIWebDocumentView (Cydia)
400 - (void) _setScrollerOffset:(CGPoint)offset {
401 UIScroller *scroller([self _scroller]);
403 CGSize size([scroller contentSize]);
404 CGSize bounds([scroller bounds].size);
407 max.x = size.width - bounds.width;
408 max.y = size.height - bounds.height;
416 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
417 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
419 [scroller setOffset:offset];
425 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
426 size_t length([self length] - state->state);
429 else if (length > count)
431 for (size_t i(0); i != length; ++i)
432 objects[i] = [self item:state->state++];
433 state->itemsPtr = objects;
434 state->mutationsPtr = (unsigned long *) self;
438 /* Cydia NSString Additions {{{ */
439 @interface NSString (Cydia)
440 - (NSComparisonResult) compareByPath:(NSString *)other;
441 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
444 @implementation NSString (Cydia)
446 - (NSComparisonResult) compareByPath:(NSString *)other {
447 NSString *prefix = [self commonPrefixWithString:other options:0];
448 size_t length = [prefix length];
450 NSRange lrange = NSMakeRange(length, [self length] - length);
451 NSRange rrange = NSMakeRange(length, [other length] - length);
453 lrange = [self rangeOfString:@"/" options:0 range:lrange];
454 rrange = [other rangeOfString:@"/" options:0 range:rrange];
456 NSComparisonResult value;
458 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
459 value = NSOrderedSame;
460 else if (lrange.location == NSNotFound)
461 value = NSOrderedAscending;
462 else if (rrange.location == NSNotFound)
463 value = NSOrderedDescending;
465 value = NSOrderedSame;
467 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
468 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
469 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
470 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
472 NSComparisonResult result = [lpath compare:rpath];
473 return result == NSOrderedSame ? value : result;
476 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
477 return [(id)CFURLCreateStringByAddingPercentEscapes(
482 kCFStringEncodingUTF8
489 /* C++ NSString Wrapper Cache {{{ */
490 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
491 return size == 0 ? NULL :
492 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
493 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
496 static _finline CFStringRef CYStringCreate(const char *data) {
497 return CYStringCreate(data, strlen(data));
506 _finline void clear_() {
507 if (cache_ != NULL) {
514 _finline bool empty() const {
518 _finline size_t size() const {
522 _finline char *data() const {
526 _finline void clear() {
531 _finline CYString() :
538 _finline ~CYString() {
542 void operator =(const CYString &rhs) {
546 if (rhs.cache_ == nil)
549 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
552 void copy(apr_pool_t *pool) {
553 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size_ + 1)));
554 memcpy(temp, data_, size_);
559 void set(apr_pool_t *pool, const char *data, size_t size) {
565 data_ = const_cast<char *>(data);
573 _finline void set(apr_pool_t *pool, const char *data) {
574 set(pool, data, data == NULL ? 0 : strlen(data));
577 _finline void set(apr_pool_t *pool, const std::string &rhs) {
578 set(pool, rhs.data(), rhs.size());
581 bool operator ==(const CYString &rhs) const {
582 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
585 _finline operator CFStringRef() {
587 cache_ = CYStringCreate(data_, size_);
591 _finline operator id() {
592 return (NSString *) static_cast<CFStringRef>(*this);
595 _finline operator const char *() {
596 return reinterpret_cast<const char *>(data_);
600 /* C++ NSString Algorithm Adapters {{{ */
602 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
605 struct NSStringMapHash :
606 std::unary_function<NSString *, size_t>
608 _finline size_t operator ()(NSString *value) const {
609 return CFStringHashNSString((CFStringRef) value);
613 struct NSStringMapLess :
614 std::binary_function<NSString *, NSString *, bool>
616 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
617 return [lhs compare:rhs] == NSOrderedAscending;
621 struct NSStringMapEqual :
622 std::binary_function<NSString *, NSString *, bool>
624 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
625 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
626 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
627 //[lhs isEqualToString:rhs];
632 /* CoreGraphics Primitives {{{ */
637 static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
638 CGFloat color[] = {red, green, blue, alpha};
639 return CGColorCreate(space, color);
648 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
649 color_(Create_(space, red, green, blue, alpha))
651 Set(space, red, green, blue, alpha);
656 CGColorRelease(color_);
663 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
665 color_ = Create_(space, red, green, blue, alpha);
668 operator CGColorRef() {
674 /* Random Global Variables {{{ */
675 static int PulseInterval_ = 500000;
677 static const NSString *UI_;
680 static bool RestartSubstrate_;
681 static NSArray *Finishes_;
683 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
684 #define NotifyConfig_ "/etc/notify.conf"
686 static bool Queuing_;
688 static CYColor Blue_;
689 static CYColor Blueish_;
690 static CYColor Black_;
691 static CYColor Folder_;
693 static CYColor White_;
694 static CYColor Gray_;
695 static CYColor Green_;
696 static CYColor Purple_;
697 static CYColor Purplish_;
699 static UIColor *InstallingColor_;
700 static UIColor *RemovingColor_;
702 static NSString *App_;
704 static BOOL Advanced_;
705 static BOOL Ignored_;
707 static _H<UIFont> Font12_;
708 static _H<UIFont> Font12Bold_;
709 static _H<UIFont> Font14_;
710 static _H<UIFont> Font18_;
711 static _H<UIFont> Font18Bold_;
712 static _H<UIFont> Font22Bold_;
714 static const char *Machine_ = NULL;
715 static _H<NSString> System_;
716 static NSString *SerialNumber_ = nil;
717 static NSString *ChipID_ = nil;
718 static NSString *BBSNum_ = nil;
719 static _H<NSString> Token_;
720 static _H<NSString> UniqueID_;
721 static _H<NSString> UserAgent_;
722 static _H<NSString> Product_;
723 static _H<NSString> Safari_;
725 static _H<NSLocale> CollationLocale_;
726 static _H<NSArray> CollationThumbs_;
727 static std::vector<NSInteger> CollationOffset_;
728 static _H<NSArray> CollationTitles_;
729 static _H<NSArray> CollationStarts_;
730 static UTransliterator *CollationTransl_;
731 //static Function<NSString *, NSString *> CollationModify_;
733 typedef std::basic_string<UChar> ustring;
734 static ustring CollationString_;
736 #define CUC const ustring &str(*reinterpret_cast<const ustring *>(rep))
737 #define UC ustring &str(*reinterpret_cast<ustring *>(rep))
738 static struct UReplaceableCallbacks CollationUCalls_ = {
739 .length = [](const UReplaceable *rep) -> int32_t { CUC;
743 .charAt = [](const UReplaceable *rep, int32_t offset) -> UChar { CUC;
744 //fprintf(stderr, "charAt(%d) : %d\n", offset, str.size());
745 if (offset >= str.size())
750 .char32At = [](const UReplaceable *rep, int32_t offset) -> UChar32 { CUC;
751 //fprintf(stderr, "char32At(%d) : %d\n", offset, str.size());
752 if (offset >= str.size())
755 U16_GET(str.data(), 0, offset, str.size(), c);
759 .replace = [](UReplaceable *rep, int32_t start, int32_t limit, const UChar *text, int32_t length) -> void { UC;
760 //fprintf(stderr, "replace(%d, %d, %d) : %d\n", start, limit, length, str.size());
761 str.replace(start, limit - start, text, length);
764 .extract = [](UReplaceable *rep, int32_t start, int32_t limit, UChar *dst) -> void { UC;
765 //fprintf(stderr, "extract(%d, %d) : %d\n", start, limit, str.size());
766 str.copy(dst, limit - start, start);
769 .copy = [](UReplaceable *rep, int32_t start, int32_t limit, int32_t dest) -> void { UC;
770 //fprintf(stderr, "copy(%d, %d, %d) : %d\n", start, limit, dest, str.size());
771 str.replace(dest, 0, str, start, limit - start);
775 static CFLocaleRef Locale_;
776 static NSArray *Languages_;
777 static CGColorSpaceRef space_;
779 static NSDictionary *SectionMap_;
780 static NSMutableDictionary *Metadata_;
781 static _transient NSMutableDictionary *Settings_;
782 static _transient NSMutableDictionary *Packages_;
783 static _transient NSMutableDictionary *Values_;
784 static _transient NSMutableDictionary *Sections_;
785 _H<NSMutableDictionary> Sources_;
786 static _transient NSNumber *Version_;
791 static CGFloat ScreenScale_;
792 static NSString *Idiom_;
793 static _H<NSString> Firmware_;
794 static NSString *Major_;
796 static _H<NSMutableDictionary> SessionData_;
797 static _H<NSObject> HostConfig_;
798 static _H<NSMutableSet> BridgedHosts_;
799 static _H<NSMutableSet> TokenHosts_;
800 static _H<NSMutableSet> InsecureHosts_;
801 static _H<NSMutableSet> PipelinedHosts_;
802 static _H<NSMutableSet> CachedURLs_;
804 static NSString *kCydiaProgressEventTypeError = @"Error";
805 static NSString *kCydiaProgressEventTypeInformation = @"Information";
806 static NSString *kCydiaProgressEventTypeStatus = @"Status";
807 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
810 /* Display Helpers {{{ */
811 inline float Interpolate(float begin, float end, float fraction) {
812 return (end - begin) * fraction + begin;
815 static _finline const char *StripVersion_(const char *version) {
816 const char *colon(strchr(version, ':'));
817 return colon == NULL ? version : colon + 1;
820 NSString *LocalizeSection(NSString *section) {
821 static Pcre title_r("^(.*?) \\((.*)\\)$");
822 if (title_r(section)) {
823 NSString *parent(title_r[1]);
824 NSString *child(title_r[2]);
826 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
827 LocalizeSection(parent),
828 LocalizeSection(child)
832 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
835 NSString *Simplify(NSString *title) {
836 const char *data = [title UTF8String];
837 size_t size = [title lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
839 static Pcre square_r("^\\[(.*)\\]$");
840 if (square_r(data, size))
841 return Simplify(square_r[1]);
843 static Pcre paren_r("^\\((.*)\\)$");
844 if (paren_r(data, size))
845 return Simplify(paren_r[1]);
847 static Pcre title_r("^(.*?) \\((.*)\\)$");
848 if (title_r(data, size))
849 return Simplify(title_r[1]);
855 NSString *GetLastUpdate() {
856 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
859 return UCLocalize("NEVER_OR_UNKNOWN");
861 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
862 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
864 CFRelease(formatter);
866 return [(NSString *) formatted autorelease];
869 bool isSectionVisible(NSString *section) {
870 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
871 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
872 return hidden == nil || ![hidden boolValue];
875 static NSObject *CYIOGetValue(const char *path, NSString *property) {
876 io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path));
877 if (entry == MACH_PORT_NULL)
880 CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0));
881 IOObjectRelease(entry);
885 return [(id) value autorelease];
888 static NSString *CYHex(NSData *data, bool reverse = false) {
892 size_t length([data length]);
893 uint8_t bytes[length];
894 [data getBytes:bytes];
896 char string[length * 2 + 1];
897 for (size_t i(0); i != length; ++i)
898 sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]);
900 return [NSString stringWithUTF8String:string];
905 /* Delegate Prototypes {{{ */
908 @class CydiaProgressEvent;
910 @protocol DatabaseDelegate
911 - (void) repairWithSelector:(SEL)selector;
912 - (void) setConfigurationData:(NSString *)data;
913 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
916 @class CYPackageController;
918 @protocol SourceDelegate
919 - (void) setFetch:(NSNumber *)fetch;
922 @protocol FetchDelegate
923 - (bool) isSourceCancelled;
924 - (void) startSourceFetch:(NSString *)uri;
925 - (void) stopSourceFetch:(NSString *)uri;
928 @protocol CydiaDelegate
929 - (void) returnToCydia;
931 - (void) retainNetworkActivityIndicator;
932 - (void) releaseNetworkActivityIndicator;
933 - (void) clearPackage:(Package *)package;
934 - (void) installPackage:(Package *)package;
935 - (void) installPackages:(NSArray *)packages;
936 - (void) removePackage:(Package *)package;
937 - (void) beginUpdate;
939 - (bool) requestUpdate;
940 - (void) distUpgrade;
943 - (void) _saveConfig;
945 - (void) addSource:(NSDictionary *)source;
946 - (void) addTrivialSource:(NSString *)href;
947 - (UIProgressHUD *) addProgressHUD;
948 - (void) removeProgressHUD:(UIProgressHUD *)hud;
949 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
950 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
954 /* CancelStatus {{{ */
956 public pkgAcquireStatus
967 virtual bool MediaChange(std::string media, std::string drive) {
971 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
975 virtual bool Pulse_(pkgAcquire *Owner) = 0;
977 virtual bool Pulse(pkgAcquire *Owner) {
978 if (pkgAcquireStatus::Pulse(Owner) && Pulse_(Owner))
986 _finline bool WasCancelled() const {
991 /* DelegateStatus {{{ */
996 _transient NSObject<ProgressDelegate> *delegate_;
1004 void setDelegate(NSObject<ProgressDelegate> *delegate) {
1005 delegate_ = delegate;
1008 virtual void Fetch(pkgAcquire::ItemDesc &item) {
1009 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1010 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
1011 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1014 virtual void Done(pkgAcquire::ItemDesc &item) {
1015 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
1016 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
1017 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1020 virtual void Fail(pkgAcquire::ItemDesc &item) {
1022 item.Owner->Status == pkgAcquire::Item::StatIdle ||
1023 item.Owner->Status == pkgAcquire::Item::StatDone
1027 std::string &error(item.Owner->ErrorText);
1031 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItem:item]);
1032 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1035 virtual bool Pulse_(pkgAcquire *Owner) {
1037 double(CurrentBytes + CurrentItems) /
1038 double(TotalBytes + TotalItems)
1041 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
1042 [NSNumber numberWithDouble:percent], @"Percent",
1044 [NSNumber numberWithDouble:CurrentBytes], @"Current",
1045 [NSNumber numberWithDouble:TotalBytes], @"Total",
1046 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
1047 nil] waitUntilDone:YES];
1049 return ![delegate_ isProgressCancelled];
1052 virtual void Start() {
1053 pkgAcquireStatus::Start();
1054 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
1057 virtual void Stop() {
1058 pkgAcquireStatus::Stop();
1059 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
1060 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
1064 /* Database Interface {{{ */
1065 typedef std::map< unsigned long, _H<Source> > SourceMap;
1067 @interface Database : NSObject {
1073 pkgCacheFile cache_;
1074 pkgDepCache::Policy *policy_;
1075 pkgRecords *records_;
1076 pkgProblemResolver *resolver_;
1077 pkgAcquire *fetcher_;
1079 SPtr<pkgPackageManager> manager_;
1080 pkgSourceList *list_;
1082 SourceMap sourceMap_;
1083 _H<NSMutableArray> sourceList_;
1085 CFMutableArrayRef packages_;
1087 _transient NSObject<DatabaseDelegate> *delegate_;
1088 _transient NSObject<ProgressDelegate> *progress_;
1090 CydiaStatus status_;
1096 std::map<const char *, _H<NSString> > sections_;
1099 + (Database *) sharedInstance;
1102 - (void) _readCydia:(NSNumber *)fd;
1103 - (void) _readStatus:(NSNumber *)fd;
1104 - (void) _readOutput:(NSNumber *)fd;
1108 - (Package *) packageWithName:(NSString *)name;
1110 - (pkgCacheFile &) cache;
1111 - (pkgDepCache::Policy *) policy;
1112 - (pkgRecords *) records;
1113 - (pkgProblemResolver *) resolver;
1114 - (pkgAcquire &) fetcher;
1115 - (pkgSourceList &) list;
1116 - (NSArray *) packages;
1117 - (NSArray *) sources;
1118 - (Source *) sourceWithKey:(NSString *)key;
1119 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1127 - (void) updateWithStatus:(CancelStatus &)status;
1129 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1131 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1132 - (NSObject<ProgressDelegate> *) progressDelegate;
1134 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1135 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1136 - (void) resetFetch;
1138 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1142 /* SourceStatus {{{ */
1143 class SourceStatus :
1147 _transient NSObject<FetchDelegate> *delegate_;
1148 _transient Database *database_;
1151 SourceStatus(NSObject<FetchDelegate> *delegate, Database *database) :
1152 delegate_(delegate),
1157 void Set(bool fetch, pkgAcquire::ItemDesc &desc) {
1159 [database_ setFetch:fetch forURI:desc.Owner->DescURI().c_str()];
1162 virtual void Fetch(pkgAcquire::ItemDesc &desc) {
1166 virtual void Done(pkgAcquire::ItemDesc &desc) {
1170 virtual void Fail(pkgAcquire::ItemDesc &desc) {
1174 virtual bool Pulse_(pkgAcquire *Owner) {
1175 for (pkgAcquire::ItemCIterator item = Owner->ItemsBegin(); item != Owner->ItemsEnd(); ++item)
1176 if ((*item)->ID != 0);
1177 else if ((*item)->Status == pkgAcquire::Item::StatIdle) {
1179 [database_ setFetch:true forURI:(*item)->DescURI().c_str()];
1180 } else (*item)->ID = 0;
1181 return ![delegate_ isSourceCancelled];
1184 virtual void Stop() {
1185 pkgAcquireStatus::Stop();
1186 [database_ resetFetch];
1190 /* ProgressEvent Implementation {{{ */
1191 @implementation CydiaProgressEvent
1193 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1194 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1197 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1198 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1199 [event setPackage:package];
1203 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item {
1204 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1206 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1207 NSArray *fields([description componentsSeparatedByString:@" "]);
1208 [event setItem:fields];
1210 if ([fields count] > 3) {
1211 [event setPackage:[fields objectAtIndex:2]];
1212 [event setVersion:[fields objectAtIndex:3]];
1215 [event setURL:[NSString stringWithUTF8String:item.URI.c_str()]];
1220 + (NSArray *) _attributeKeys {
1221 return [NSArray arrayWithObjects:
1231 - (NSArray *) attributeKeys {
1232 return [[self class] _attributeKeys];
1235 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1236 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1239 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1240 if ((self = [super init]) != nil) {
1246 - (NSString *) message {
1250 - (NSString *) type {
1254 - (NSArray *) item {
1255 return (id) item_ ?: [NSNull null];
1258 - (void) setItem:(NSArray *)item {
1262 - (NSString *) package {
1263 return (id) package_ ?: [NSNull null];
1266 - (void) setPackage:(NSString *)package {
1270 - (NSString *) url {
1271 return (id) url_ ?: [NSNull null];
1274 - (void) setURL:(NSString *)url {
1278 - (void) setVersion:(NSString *)version {
1282 - (NSString *) version {
1283 return (id) version_ ?: [NSNull null];
1286 - (NSString *) compound:(NSString *)value {
1288 NSString *mode(nil); {
1289 NSString *type([self type]);
1290 if ([type isEqualToString:kCydiaProgressEventTypeError])
1291 mode = UCLocalize("ERROR");
1292 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1293 mode = UCLocalize("WARNING");
1297 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1303 - (NSString *) compoundMessage {
1304 return [self compound:[self message]];
1307 - (NSString *) compoundTitle {
1310 if (package_ == nil)
1312 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1313 title = [package name];
1317 return [self compound:title];
1323 // Cytore Definitions {{{
1324 struct PackageValue :
1327 Cytore::Offset<PackageValue> next_;
1329 uint32_t index_ : 23;
1330 uint32_t subscribed_ : 1;
1347 Cytore::Offset<PackageValue> packages_[1 << 16];
1350 static Cytore::File<MetaValue> MetaFile_;
1352 // Cytore Helper Functions {{{
1353 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1354 SplitHash nhash = { hashlittle(name, length) };
1356 PackageValue *metadata;
1358 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1359 for (;; offset = &metadata->next_) { if (offset->IsNull()) {
1360 *offset = MetaFile_.New<PackageValue>(length + 1);
1361 metadata = &MetaFile_.Get(*offset);
1363 if (metadata == NULL) {
1367 metadata = new PackageValue();
1368 memset(metadata, 0, sizeof(*metadata));
1371 memcpy(metadata->name_, name, length);
1372 metadata->name_[length] = '\0';
1373 metadata->nhash_ = nhash.u16[1];
1375 metadata = &MetaFile_.Get(*offset);
1376 if (metadata->nhash_ != nhash.u16[1])
1378 if (strncmp(metadata->name_, name, length) != 0)
1380 if (metadata->name_[length] != '\0')
1387 static void PackageImport(const void *key, const void *value, void *context) {
1388 bool &fail(*reinterpret_cast<bool *>(context));
1391 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1392 NSLog(@"failed to import package %@", key);
1396 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1397 NSDictionary *package((NSDictionary *) value);
1399 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1400 if ([subscribed boolValue] && !metadata->subscribed_)
1401 metadata->subscribed_ = true;
1403 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1404 time_t time([date timeIntervalSince1970]);
1405 if (metadata->first_ > time || metadata->first_ == 0)
1406 metadata->first_ = time;
1409 NSDate *date([package objectForKey:@"LastSeen"]);
1410 NSString *version([package objectForKey:@"LastVersion"]);
1412 if (date != nil && version != nil) {
1413 time_t time([date timeIntervalSince1970]);
1414 if (metadata->last_ < time || metadata->last_ == 0)
1415 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1416 size_t length(strlen(buffer));
1417 uint16_t vhash(hashlittle(buffer, length));
1419 size_t capped(std::min<size_t>(8, length));
1420 char *latest(buffer + length - capped);
1422 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1423 metadata->vhash_ = vhash;
1425 metadata->last_ = time;
1431 /* Source Class {{{ */
1432 @interface Source : NSObject {
1434 Database *database_;
1437 CYString depiction_;
1438 CYString description_;
1444 CYString distribution_;
1450 _H<NSString> authority_;
1452 CYString defaultIcon_;
1454 _H<NSMutableDictionary> record_;
1457 std::set<std::string> fetches_;
1458 std::set<std::string> files_;
1459 _transient NSObject<SourceDelegate> *delegate_;
1462 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool;
1464 - (NSComparisonResult) compareByName:(Source *)source;
1466 - (NSString *) depictionForPackage:(NSString *)package;
1467 - (NSString *) supportForPackage:(NSString *)package;
1469 - (metaIndex *) metaIndex;
1470 - (NSDictionary *) record;
1473 - (NSString *) rooturi;
1474 - (NSString *) distribution;
1475 - (NSString *) type;
1478 - (NSString *) host;
1480 - (NSString *) name;
1481 - (NSString *) shortDescription;
1482 - (NSString *) label;
1483 - (NSString *) origin;
1484 - (NSString *) version;
1486 - (NSString *) defaultIcon;
1487 - (NSURL *) iconURL;
1489 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1490 - (void) resetFetch;
1494 @implementation Source
1496 + (NSString *) webScriptNameForSelector:(SEL)selector {
1498 else if (selector == @selector(addSection:))
1499 return @"addSection";
1500 else if (selector == @selector(getField:))
1502 else if (selector == @selector(removeSection:))
1503 return @"removeSection";
1504 else if (selector == @selector(remove))
1510 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
1511 return [self webScriptNameForSelector:selector] == nil;
1514 + (NSArray *) _attributeKeys {
1515 return [NSArray arrayWithObjects:
1526 @"shortDescription",
1533 - (NSArray *) attributeKeys {
1534 return [[self class] _attributeKeys];
1537 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1538 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1541 - (metaIndex *) metaIndex {
1545 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1546 trusted_ = index->IsTrusted();
1548 uri_.set(pool, index->GetURI());
1549 distribution_.set(pool, index->GetDist());
1550 type_.set(pool, index->GetType());
1552 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1553 if (dindex != NULL) {
1554 std::string file(dindex->MetaIndexURI(""));
1555 base_.set(pool, file);
1558 _profile(Source$setMetaIndex$GetIndexes)
1559 dindex->GetIndexes(&acquire, true);
1561 _profile(Source$setMetaIndex$DescURI)
1562 for (pkgAcquire::ItemIterator item(acquire.ItemsBegin()); item != acquire.ItemsEnd(); item++) {
1563 std::string file((*item)->DescURI());
1564 files_.insert(file);
1565 if (file.length() < sizeof("Packages.bz2") || file.substr(file.length() - sizeof("Packages.bz2")) != "/Packages.bz2")
1567 file = file.substr(0, file.length() - 4);
1568 files_.insert(file);
1569 files_.insert(file + ".gz");
1570 files_.insert(file + "Index");
1575 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1578 pkgTagFile tags(&fd);
1580 pkgTagSection section;
1587 {"default-icon", &defaultIcon_},
1588 {"depiction", &depiction_},
1589 {"description", &description_},
1591 {"origin", &origin_},
1592 {"support", &support_},
1593 {"version", &version_},
1596 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1597 const char *start, *end;
1599 if (section.Find(names[i].name_, start, end)) {
1600 CYString &value(*names[i].value_);
1601 value.set(pool, start, end - start);
1607 record_ = [Sources_ objectForKey:[self key]];
1609 NSURL *url([NSURL URLWithString:uri_]);
1613 host_ = [host_ lowercaseString];
1618 authority_ = [url path];
1621 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool {
1622 if ((self = [super init]) != nil) {
1623 era_ = [database era];
1624 database_ = database;
1627 _profile(Source$initWithMetaIndex$setMetaIndex)
1628 [self setMetaIndex:index inPool:pool];
1633 - (NSString *) getField:(NSString *)name {
1634 @synchronized (database_) {
1635 if ([database_ era] != era_ || index_ == NULL)
1638 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_));
1643 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) {
1648 pkgTagFile tags(&fd);
1650 pkgTagSection section;
1653 const char *start, *end;
1654 if (!section.Find([name UTF8String], start, end))
1655 return (NSString *) [NSNull null];
1657 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
1660 - (NSComparisonResult) compareByName:(Source *)source {
1661 NSString *lhs = [self name];
1662 NSString *rhs = [source name];
1664 if ([lhs length] != 0 && [rhs length] != 0) {
1665 unichar lhc = [lhs characterAtIndex:0];
1666 unichar rhc = [rhs characterAtIndex:0];
1668 if (isalpha(lhc) && !isalpha(rhc))
1669 return NSOrderedAscending;
1670 else if (!isalpha(lhc) && isalpha(rhc))
1671 return NSOrderedDescending;
1674 return [lhs compare:rhs options:LaxCompareOptions_];
1677 - (NSString *) depictionForPackage:(NSString *)package {
1678 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1681 - (NSString *) supportForPackage:(NSString *)package {
1682 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1685 - (NSArray *) sections {
1686 return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array];
1689 - (void) _addSection:(NSString *)section {
1692 else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) {
1693 if (![sections containsObject:section]) {
1694 [sections addObject:section];
1698 [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"];
1703 - (bool) addSection:(NSString *)section {
1707 [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO];
1711 - (void) _removeSection:(NSString *)section {
1715 if (NSMutableArray *sections = [record_ objectForKey:@"Sections"])
1716 if ([sections containsObject:section]) {
1717 [sections removeObject:section];
1722 - (bool) removeSection:(NSString *)section {
1726 [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO];
1731 [Sources_ removeObjectForKey:[self key]];
1736 bool value(record_ != nil);
1737 [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO];
1741 - (NSDictionary *) record {
1749 - (NSString *) rooturi {
1753 - (NSString *) distribution {
1754 return distribution_;
1757 - (NSString *) type {
1761 - (NSString *) baseuri {
1762 return base_.empty() ? nil : (id) base_;
1765 - (NSString *) iconuri {
1766 if (NSString *base = [self baseuri])
1767 return [base stringByAppendingString:@"CydiaIcon.png"];
1772 - (NSURL *) iconURL {
1773 if (NSString *uri = [self iconuri])
1774 return [NSURL URLWithString:uri];
1778 - (NSString *) key {
1779 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1782 - (NSString *) host {
1786 - (NSString *) name {
1787 return origin_.empty() ? (id) authority_ : origin_;
1790 - (NSString *) shortDescription {
1791 return description_;
1794 - (NSString *) label {
1795 return label_.empty() ? (id) authority_ : label_;
1798 - (NSString *) origin {
1802 - (NSString *) version {
1806 - (NSString *) defaultIcon {
1807 return defaultIcon_;
1810 - (void) setDelegate:(NSObject<SourceDelegate> *)delegate {
1811 delegate_ = delegate;
1815 return !fetches_.empty();
1818 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
1820 if (fetches_.erase(uri) == 0)
1822 } else if (files_.find(uri) == files_.end())
1824 else if (!fetches_.insert(uri).second)
1827 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:[self fetch]] waitUntilDone:NO];
1830 - (void) resetFetch {
1832 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:NO];
1837 /* CydiaOperation Class {{{ */
1838 @interface CydiaOperation : NSObject {
1839 _H<NSString> operator_;
1840 _H<NSString> value_;
1843 - (NSString *) operator;
1844 - (NSString *) value;
1848 @implementation CydiaOperation
1850 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1851 if ((self = [super init]) != nil) {
1852 operator_ = [NSString stringWithUTF8String:_operator];
1853 value_ = [NSString stringWithUTF8String:value];
1857 + (NSArray *) _attributeKeys {
1858 return [NSArray arrayWithObjects:
1864 - (NSArray *) attributeKeys {
1865 return [[self class] _attributeKeys];
1868 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1869 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1872 - (NSString *) operator {
1876 - (NSString *) value {
1882 /* CydiaClause Class {{{ */
1883 @interface CydiaClause : NSObject {
1884 _H<NSString> package_;
1885 _H<CydiaOperation> version_;
1888 - (NSString *) package;
1889 - (CydiaOperation *) version;
1893 @implementation CydiaClause
1895 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1896 if ((self = [super init]) != nil) {
1897 package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()];
1899 if (const char *version = dep.TargetVer())
1900 version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease];
1902 version_ = (id) [NSNull null];
1906 + (NSArray *) _attributeKeys {
1907 return [NSArray arrayWithObjects:
1913 - (NSArray *) attributeKeys {
1914 return [[self class] _attributeKeys];
1917 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1918 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1921 - (NSString *) package {
1925 - (CydiaOperation *) version {
1931 /* CydiaRelation Class {{{ */
1932 @interface CydiaRelation : NSObject {
1933 _H<NSString> relationship_;
1934 _H<NSMutableArray> clauses_;
1937 - (NSString *) relationship;
1938 - (NSArray *) clauses;
1942 @implementation CydiaRelation
1944 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1945 if ((self = [super init]) != nil) {
1946 relationship_ = [NSString stringWithUTF8String:dep.DepType()];
1947 clauses_ = [NSMutableArray arrayWithCapacity:8];
1949 pkgCache::DepIterator start;
1950 pkgCache::DepIterator end;
1951 dep.GlobOr(start, end); // ++dep
1954 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
1956 // yes, seriously. (wtf?)
1964 + (NSArray *) _attributeKeys {
1965 return [NSArray arrayWithObjects:
1971 - (NSArray *) attributeKeys {
1972 return [[self class] _attributeKeys];
1975 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1976 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1979 - (NSString *) relationship {
1980 return relationship_;
1983 - (NSArray *) clauses {
1987 - (void) addClause:(CydiaClause *)clause {
1988 [clauses_ addObject:clause];
1993 /* Package Class {{{ */
1994 struct ParsedPackage {
1998 CYString architecture_;
2001 CYString depiction_;
2008 @interface Package : NSObject {
2010 @public uint32_t role_ : 3;
2011 uint32_t essential_ : 1;
2012 uint32_t obsolete_ : 1;
2013 uint32_t ignored_ : 1;
2014 uint32_t pooled_ : 1;
2020 _transient Database *database_;
2022 pkgCache::VerIterator version_;
2023 pkgCache::PkgIterator iterator_;
2024 pkgCache::VerFileIterator file_;
2028 CYString transform_;
2031 CYString installed_;
2034 const char *section_;
2035 _transient NSString *section$_;
2039 PackageValue *metadata_;
2040 ParsedPackage *parsed_;
2042 _H<NSMutableArray> tags_;
2045 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
2046 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
2048 - (pkgCache::PkgIterator) iterator;
2051 - (NSString *) section;
2052 - (NSString *) simpleSection;
2054 - (NSString *) longSection;
2055 - (NSString *) shortSection;
2059 - (MIMEAddress *) maintainer;
2061 - (NSString *) longDescription;
2062 - (NSString *) shortDescription;
2065 - (PackageValue *) metadata;
2068 - (bool) subscribed;
2069 - (bool) setSubscribed:(bool)subscribed;
2073 - (NSString *) latest;
2074 - (NSString *) installed;
2075 - (BOOL) uninstalled;
2078 - (BOOL) upgradableAndEssential:(BOOL)essential;
2081 - (BOOL) unfiltered;
2085 - (BOOL) halfConfigured;
2086 - (BOOL) halfInstalled;
2088 - (NSString *) mode;
2091 - (NSString *) name;
2093 - (NSString *) homepage;
2094 - (NSString *) depiction;
2095 - (MIMEAddress *) author;
2097 - (NSString *) support;
2099 - (NSArray *) files;
2100 - (NSArray *) warnings;
2101 - (NSArray *) applications;
2103 - (Source *) source;
2106 - (BOOL) matches:(NSArray *)query;
2108 - (BOOL) hasTag:(NSString *)tag;
2109 - (NSString *) primaryPurpose;
2110 - (NSArray *) purposes;
2111 - (bool) isCommercial;
2113 - (void) setIndex:(size_t)index;
2115 - (CYString &) cyname;
2117 - (uint32_t) compareBySection:(NSArray *)sections;
2124 uint32_t PackageChangesRadix(Package *self, void *) {
2129 uint32_t timestamp : 30;
2130 uint32_t ignored : 1;
2131 uint32_t upgradable : 1;
2135 bool upgradable([self upgradableAndEssential:YES]);
2136 value.bits.upgradable = upgradable ? 1 : 0;
2139 value.bits.timestamp = 0;
2140 value.bits.ignored = [self ignored] ? 0 : 1;
2141 value.bits.upgradable = 1;
2143 value.bits.timestamp = [self seen] >> 2;
2144 value.bits.ignored = 0;
2145 value.bits.upgradable = 0;
2148 return _not(uint32_t) - value.key;
2151 CYString &(*PackageName)(Package *self, SEL sel);
2153 uint32_t PackagePrefixRadix(Package *self, void *context) {
2154 size_t offset(reinterpret_cast<size_t>(context));
2155 CYString &name(PackageName(self, @selector(cyname)));
2157 size_t size(name.size());
2160 char *text(name.data());
2163 if (!isdigit(text[0]))
2167 while (size != digits && isdigit(text[digits]))
2175 if (offset == 0 && zeros != 0) {
2176 memset(data, '0', zeros);
2177 memcpy(data + zeros, text, 4 - zeros);
2179 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2180 if (size <= offset - zeros)
2183 text += offset - zeros;
2184 size -= offset - zeros;
2187 memcpy(data, text, 4);
2189 memcpy(data, text, size);
2190 memset(data + size, 0, 4 - size);
2193 for (size_t i(0); i != 4; ++i)
2194 if (isalpha(data[i]))
2202 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2204 /* XXX: ntohl may be more honest */
2205 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2208 CFComparisonResult StringNameCompare(CFStringRef lhn, CFStringRef rhn, size_t length) {
2209 _profile(PackageNameCompare)
2211 return rhn == NULL ? kCFCompareEqualTo : kCFCompareLessThan;
2212 else if (rhn == NULL)
2213 return kCFCompareGreaterThan;
2215 CFIndex length(CFStringGetLength(lhn));
2217 _profile(PackageNameCompare$NumbersLast)
2218 if (length != 0 && CFStringGetLength(rhn) != 0) {
2219 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2220 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2221 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2222 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2223 return lha ? kCFCompareLessThan : kCFCompareGreaterThan;
2227 _profile(PackageNameCompare$Compare)
2228 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, (CFLocaleRef) (id) CollationLocale_);
2233 _finline CFComparisonResult StringNameCompare(NSString *lhn, NSString*rhn, size_t length) {
2234 return StringNameCompare((CFStringRef) lhn, (CFStringRef) rhn, length);
2237 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2238 CYString &lhn(PackageName(lhs, @selector(cyname)));
2239 NSString *rhn(PackageName(rhs, @selector(cyname)));
2240 return StringNameCompare(lhn, rhn, lhn.size());
2243 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *arg) {
2244 return PackageNameCompare(*lhs, *rhs, arg);
2247 struct PackageNameOrdering :
2248 std::binary_function<Package *, Package *, bool>
2250 _finline bool operator ()(Package *lhs, Package *rhs) const {
2251 return PackageNameCompare(lhs, rhs, NULL) == kCFCompareLessThan;
2255 @implementation Package
2257 - (NSString *) description {
2258 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2263 apr_pool_destroy(pool_);
2264 if (parsed_ != NULL)
2269 + (NSString *) webScriptNameForSelector:(SEL)selector {
2271 else if (selector == @selector(clear))
2273 else if (selector == @selector(getField:))
2275 else if (selector == @selector(getRecord))
2276 return @"getRecord";
2277 else if (selector == @selector(hasTag:))
2279 else if (selector == @selector(install))
2281 else if (selector == @selector(remove))
2287 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2288 return [self webScriptNameForSelector:selector] == nil;
2291 + (NSArray *) _attributeKeys {
2292 return [NSArray arrayWithObjects:
2313 @"shortDescription",
2325 - (NSArray *) attributeKeys {
2326 return [[self class] _attributeKeys];
2329 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2330 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2333 - (NSArray *) relations {
2334 @synchronized (database_) {
2335 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2336 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2337 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2341 - (NSString *) architecture {
2343 @synchronized (database_) {
2344 return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_;
2347 - (NSString *) getField:(NSString *)name {
2348 @synchronized (database_) {
2349 if ([database_ era] != era_ || file_.end())
2352 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2354 const char *start, *end;
2355 if (!parser.Find([name UTF8String], start, end))
2356 return (NSString *) [NSNull null];
2358 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2361 - (NSString *) getRecord {
2362 @synchronized (database_) {
2363 if ([database_ era] != era_ || file_.end())
2366 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2368 const char *start, *end;
2369 parser.GetRec(start, end);
2371 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2375 if (parsed_ != NULL)
2377 @synchronized (database_) {
2378 if ([database_ era] != era_ || file_.end())
2381 ParsedPackage *parsed(new ParsedPackage);
2384 _profile(Package$parse)
2385 pkgRecords::Parser *parser;
2387 _profile(Package$parse$Lookup)
2388 parser = &[database_ records]->Lookup(file_);
2394 _profile(Package$parse$Find)
2399 {"architecture", &parsed->architecture_},
2400 {"icon", &parsed->icon_},
2401 {"depiction", &parsed->depiction_},
2402 {"homepage", &parsed->homepage_},
2403 {"website", &website},
2405 {"support", &parsed->support_},
2406 {"author", &parsed->author_},
2407 {"md5sum", &parsed->md5sum_},
2410 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2411 const char *start, *end;
2413 if (parser->Find(names[i].name_, start, end)) {
2414 CYString &value(*names[i].value_);
2415 _profile(Package$parse$Value)
2416 value.set(pool_, start, end - start);
2422 _profile(Package$parse$Tagline)
2423 const char *start, *end;
2424 if (parser->ShortDesc(start, end)) {
2425 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2428 while (stop != start && stop[-1] == '\r')
2430 parsed->tagline_.set(pool_, start, stop - start);
2434 _profile(Package$parse$Retain)
2435 if (parsed->homepage_.empty())
2436 parsed->homepage_ = website;
2437 if (parsed->homepage_ == parsed->depiction_)
2438 parsed->homepage_.clear();
2439 if (parsed->support_.empty())
2440 parsed->support_ = bugs;
2445 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2446 if ((self = [super init]) != nil) {
2447 _profile(Package$initWithVersion)
2449 apr_pool_create(&pool_, NULL);
2455 database_ = database;
2456 era_ = [database era];
2460 pkgCache::PkgIterator iterator(version.ParentPkg());
2461 iterator_ = iterator;
2463 _profile(Package$initWithVersion$Version)
2464 if (!version_.end())
2465 file_ = version_.FileList();
2467 pkgCache &cache([database_ cache]);
2468 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2472 _profile(Package$initWithVersion$Cache)
2473 name_.set(NULL, iterator.Display());
2475 latest_.set(NULL, StripVersion_(version_.VerStr()));
2477 pkgCache::VerIterator current(iterator.CurrentVer());
2479 installed_.set(NULL, StripVersion_(current.VerStr()));
2482 _profile(Package$initWithVersion$Transliterate) do {
2483 if (CollationTransl_ == NULL)
2488 _profile(Package$initWithVersion$Transliterate$utf8)
2489 const uint8_t *data(reinterpret_cast<const uint8_t *>(name_.data()));
2490 for (size_t i(0), e(name_.size()); i != e; ++i)
2491 if (data[i] >= 0x80)
2496 UErrorCode code(U_ZERO_ERROR);
2499 _profile(Package$initWithVersion$Transliterate$u_strFromUTF8WithSub)
2500 CollationString_.resize(name_.size());
2501 u_strFromUTF8WithSub(&CollationString_[0], CollationString_.size(), &length, name_.data(), name_.size(), 0xfffd, NULL, &code);
2502 if (!U_SUCCESS(code))
2504 CollationString_.resize(length);
2507 _profile(Package$initWithVersion$Transliterate$utrans_trans)
2508 length = CollationString_.size();
2509 utrans_trans(CollationTransl_, reinterpret_cast<UReplaceable *>(&CollationString_), &CollationUCalls_, 0, &length, &code);
2510 if (!U_SUCCESS(code))
2512 _assert(CollationString_.size() == length);
2515 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$preflight)
2516 u_strToUTF8WithSub(NULL, 0, &length, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2517 if (code == U_BUFFER_OVERFLOW_ERROR)
2518 code = U_ZERO_ERROR;
2519 else if (!U_SUCCESS(code))
2524 _profile(Package$initWithVersion$Transliterate$apr_palloc)
2525 transform = static_cast<char *>(apr_palloc(pool_, length));
2527 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$transform)
2528 u_strToUTF8WithSub(transform, length, NULL, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2529 if (!U_SUCCESS(code))
2533 transform_.set(NULL, transform, length);
2534 } while (false); _end
2536 _profile(Package$initWithVersion$Tags)
2537 pkgCache::TagIterator tag(iterator.TagList());
2539 tags_ = [NSMutableArray arrayWithCapacity:8];
2541 goto tag; for (; !tag.end(); ++tag) tag: {
2542 const char *name(tag.Name());
2543 NSString *string((NSString *) CYStringCreate(name));
2547 [tags_ addObject:[string autorelease]];
2549 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2550 if (strcmp(name + 6, "enduser") == 0)
2552 else if (strcmp(name + 6, "hacker") == 0)
2554 else if (strcmp(name + 6, "developer") == 0)
2556 else if (strcmp(name + 6, "cydia") == 0)
2562 if (strncmp(name, "cydia::", 7) == 0) {
2563 if (strcmp(name + 7, "essential") == 0)
2565 else if (strcmp(name + 7, "obsolete") == 0)
2572 _profile(Package$initWithVersion$Metadata)
2573 const char *mixed(iterator.Name());
2574 size_t size(strlen(mixed));
2575 static const size_t prefix(sizeof("/var/lib/dpkg/info/") - 1);
2576 char lower[prefix + size + 5 + 1];
2578 for (size_t i(0); i != size; ++i)
2579 lower[prefix + i] = mixed[i] | 0x20;
2581 if (!installed_.empty()) {
2582 memcpy(lower, "/var/lib/dpkg/info/", prefix);
2583 memcpy(lower + prefix + size, ".list", 6);
2585 if (stat(lower, &info) != -1)
2586 updated_ = info.st_birthtime;
2589 PackageValue *metadata(PackageFind(lower + prefix, size));
2590 metadata_ = metadata;
2592 id_.set(NULL, metadata->name_, size);
2594 const char *latest(version_.VerStr());
2595 size_t length(strlen(latest));
2597 uint16_t vhash(hashlittle(latest, length));
2599 size_t capped(std::min<size_t>(8, length));
2600 latest = latest + length - capped;
2602 if (metadata->first_ == 0)
2603 metadata->first_ = now_;
2605 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2606 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2607 metadata->vhash_ = vhash;
2608 metadata->last_ = now_;
2609 } else if (metadata->last_ == 0)
2610 metadata->last_ = metadata->first_;
2613 _profile(Package$initWithVersion$Section)
2614 section_ = version_.Section();
2617 _profile(Package$initWithVersion$Flags)
2618 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2619 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2624 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2625 pkgCache::VerIterator version;
2627 _profile(Package$packageWithIterator$GetCandidateVer)
2628 version = [database policy]->GetCandidateVer(iterator);
2636 _profile(Package$packageWithIterator$Allocate)
2637 package = [Package allocWithZone:zone];
2640 _profile(Package$packageWithIterator$Initialize)
2642 initWithVersion:version
2649 _profile(Package$packageWithIterator$Autorelease)
2650 package = [package autorelease];
2656 - (pkgCache::PkgIterator) iterator {
2660 - (NSString *) section {
2661 if (section$_ == nil) {
2662 if (section_ == NULL)
2665 _profile(Package$section$mappedSectionForPointer)
2666 section$_ = [database_ mappedSectionForPointer:section_];
2671 - (NSString *) simpleSection {
2672 if (NSString *section = [self section])
2673 return Simplify(section);
2678 - (NSString *) longSection {
2679 return LocalizeSection([self section]);
2682 - (NSString *) shortSection {
2683 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2686 - (NSString *) uri {
2689 pkgIndexFile *index;
2690 pkgCache::PkgFileIterator file(file_.File());
2691 if (![database_ list].FindIndex(file, index))
2693 return [NSString stringWithUTF8String:iterator_->Path];
2694 //return [NSString stringWithUTF8String:file.Site()];
2695 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2699 - (MIMEAddress *) maintainer {
2700 @synchronized (database_) {
2701 if ([database_ era] != era_ || file_.end())
2704 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2705 const std::string &maintainer(parser->Maintainer());
2706 return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2709 - (NSString *) md5sum {
2710 return parsed_ == NULL ? nil : (id) parsed_->md5sum_;
2714 @synchronized (database_) {
2715 if ([database_ era] != era_ || version_.end())
2718 return version_->InstalledSize;
2721 - (NSString *) longDescription {
2722 @synchronized (database_) {
2723 if ([database_ era] != era_ || file_.end())
2726 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2727 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2729 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2730 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2731 if ([lines count] < 2)
2734 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2735 for (size_t i(1), e([lines count]); i != e; ++i) {
2736 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2737 [trimmed addObject:trim];
2740 return [trimmed componentsJoinedByString:@"\n"];
2743 - (NSString *) shortDescription {
2744 if (parsed_ != NULL)
2745 return static_cast<NSString *>(parsed_->tagline_);
2747 @synchronized (database_) {
2748 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2750 const char *start, *end;
2751 if (!parser.ShortDesc(start, end))
2754 if (end - start > 200)
2758 if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start)))
2761 while (end != start && end[-1] == '\r')
2765 return [(id) CYStringCreate(start, end - start) autorelease];
2769 _profile(Package$index)
2770 CFStringRef name((CFStringRef) [self name]);
2771 if (CFStringGetLength(name) == 0)
2773 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2774 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2776 return toupper(character);
2780 - (PackageValue *) metadata {
2785 PackageValue *metadata([self metadata]);
2786 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2789 - (bool) subscribed {
2790 return [self metadata]->subscribed_;
2793 - (bool) setSubscribed:(bool)subscribed {
2794 PackageValue *metadata([self metadata]);
2795 if (metadata->subscribed_ == subscribed)
2797 metadata->subscribed_ = subscribed;
2805 - (NSString *) latest {
2809 - (NSString *) installed {
2813 - (BOOL) uninstalled {
2814 return installed_.empty();
2818 return !version_.end();
2821 - (BOOL) upgradableAndEssential:(BOOL)essential {
2822 _profile(Package$upgradableAndEssential)
2823 pkgCache::VerIterator current(iterator_.CurrentVer());
2825 return essential && essential_;
2827 return !version_.end() && version_ != current;
2831 - (BOOL) essential {
2836 return [database_ cache][iterator_].InstBroken();
2839 - (BOOL) unfiltered {
2840 _profile(Package$unfiltered$obsolete)
2841 if (_unlikely(obsolete_))
2845 _profile(Package$unfiltered$role)
2846 if (_unlikely(role_ > 3))
2854 if (![self unfiltered])
2859 _profile(Package$visible$section)
2860 section = [self section];
2863 _profile(Package$visible$isSectionVisible)
2864 if (!isSectionVisible(section))
2872 unsigned char current(iterator_->CurrentState);
2873 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2876 - (BOOL) halfConfigured {
2877 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2880 - (BOOL) halfInstalled {
2881 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2885 @synchronized (database_) {
2886 if ([database_ era] != era_ || iterator_.end())
2889 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2890 return state.Mode != pkgDepCache::ModeKeep;
2893 - (NSString *) mode {
2894 @synchronized (database_) {
2895 if ([database_ era] != era_ || iterator_.end())
2898 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2900 switch (state.Mode) {
2901 case pkgDepCache::ModeDelete:
2902 if ((state.iFlags & pkgDepCache::Purge) != 0)
2906 case pkgDepCache::ModeKeep:
2907 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2908 return @"REINSTALL";
2909 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2913 case pkgDepCache::ModeInstall:
2914 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2915 return @"REINSTALL";
2916 else*/ switch (state.Status) {
2918 return @"DOWNGRADE";
2924 return @"NEW_INSTALL";
2935 - (NSString *) name {
2936 return name_.empty() ? id_ : name_;
2939 - (UIImage *) icon {
2940 NSString *section = [self simpleSection];
2943 if (parsed_ != NULL)
2944 if (NSString *href = parsed_->icon_)
2945 if ([href hasPrefix:@"file:///"])
2946 icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2947 if (icon == nil) if (section != nil)
2948 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
2949 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
2950 if ([dicon hasPrefix:@"file:///"])
2951 icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2953 icon = [UIImage applicationImageNamed:@"unknown.png"];
2957 - (NSString *) homepage {
2958 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
2961 - (NSString *) depiction {
2962 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
2965 - (MIMEAddress *) author {
2966 return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_];
2969 - (NSString *) support {
2970 return parsed_ != NULL && !parsed_->support_.empty() ? parsed_->support_ : [[self source] supportForPackage:id_];
2973 - (NSArray *) files {
2974 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2975 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2978 fin.open([path UTF8String]);
2983 while (std::getline(fin, line))
2984 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2989 - (NSString *) state {
2990 @synchronized (database_) {
2991 if ([database_ era] != era_ || file_.end())
2994 switch (iterator_->CurrentState) {
2995 case pkgCache::State::NotInstalled:
2996 return @"NotInstalled";
2997 case pkgCache::State::UnPacked:
2999 case pkgCache::State::HalfConfigured:
3000 return @"HalfConfigured";
3001 case pkgCache::State::HalfInstalled:
3002 return @"HalfInstalled";
3003 case pkgCache::State::ConfigFiles:
3004 return @"ConfigFiles";
3005 case pkgCache::State::Installed:
3006 return @"Installed";
3007 case pkgCache::State::TriggersAwaited:
3008 return @"TriggersAwaited";
3009 case pkgCache::State::TriggersPending:
3010 return @"TriggersPending";
3013 return (NSString *) [NSNull null];
3016 - (NSString *) selection {
3017 @synchronized (database_) {
3018 if ([database_ era] != era_ || file_.end())
3021 switch (iterator_->SelectedState) {
3022 case pkgCache::State::Unknown:
3024 case pkgCache::State::Install:
3026 case pkgCache::State::Hold:
3028 case pkgCache::State::DeInstall:
3029 return @"DeInstall";
3030 case pkgCache::State::Purge:
3034 return (NSString *) [NSNull null];
3037 - (NSArray *) warnings {
3038 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
3039 const char *name(iterator_.Name());
3041 size_t length(strlen(name));
3042 if (length < 2) invalid:
3043 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
3044 else for (size_t i(0); i != length; ++i)
3046 /* XXX: technically this is not allowed */
3047 (name[i] < 'A' || name[i] > 'Z') &&
3048 (name[i] < 'a' || name[i] > 'z') &&
3049 (name[i] < '0' || name[i] > '9') &&
3050 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
3053 if (strcmp(name, "cydia") != 0) {
3056 bool _private = false;
3059 bool repository = [[self section] isEqualToString:@"Repositories"];
3061 if (NSArray *files = [self files])
3062 for (NSString *file in files)
3063 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
3065 else if (!user && [file isEqualToString:@"/User"])
3067 else if (!_private && [file isEqualToString:@"/private"])
3069 else if (!stash && [file isEqualToString:@"/var/stash"])
3072 /* XXX: this is not sensitive enough. only some folders are valid. */
3073 if (cydia && !repository)
3074 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
3076 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
3078 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
3080 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
3083 return [warnings count] == 0 ? nil : warnings;
3086 - (NSArray *) applications {
3087 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
3089 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
3091 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
3092 if (NSArray *files = [self files])
3093 for (NSString *file in files)
3094 if (application_r(file)) {
3095 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
3096 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
3097 if ([id isEqualToString:me])
3100 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
3102 display = application_r[1];
3104 NSString *bundle([file stringByDeletingLastPathComponent]);
3105 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
3106 // XXX: maybe this should check if this is really a string, not just for length
3107 if (icon == nil || ![icon respondsToSelector:@selector(length)] || [icon length] == 0)
3109 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
3111 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
3112 [applications addObject:application];
3114 [application addObject:id];
3115 [application addObject:display];
3116 [application addObject:url];
3119 return [applications count] == 0 ? nil : applications;
3122 - (Source *) source {
3123 if (source_ == nil) {
3124 @synchronized (database_) {
3125 if ([database_ era] != era_ || file_.end())
3126 source_ = (Source *) [NSNull null];
3128 source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null];
3132 return source_ == (Source *) [NSNull null] ? nil : source_;
3135 - (time_t) updated {
3139 - (uint32_t) updatedRadix {
3140 return std::numeric_limits<uint32_t>::max() - updated_;
3147 - (BOOL) matches:(NSArray *)query {
3148 if (query == nil || [query count] == 0)
3157 string = [self name];
3158 length = [string length];
3161 for (NSString *term in query) {
3162 range = [string rangeOfString:term options:MatchCompareOptions_];
3163 if (range.location != NSNotFound)
3164 rank_ -= 6 * 1000000 / length;
3169 length = [string length];
3172 for (NSString *term in query) {
3173 range = [string rangeOfString:term options:MatchCompareOptions_];
3174 if (range.location != NSNotFound)
3175 rank_ -= 6 * 1000000 / length;
3179 string = [self shortDescription];
3180 length = [string length];
3181 NSUInteger stop(std::min<NSUInteger>(length, 200));
3184 for (NSString *term in query) {
3185 range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)];
3186 if (range.location != NSNotFound)
3187 rank_ -= 2 * 100000;
3193 - (NSArray *) tags {
3197 - (BOOL) hasTag:(NSString *)tag {
3198 return tags_ == nil ? NO : [tags_ containsObject:tag];
3201 - (NSString *) primaryPurpose {
3202 for (NSString *tag in (NSArray *) tags_)
3203 if ([tag hasPrefix:@"purpose::"])
3204 return [tag substringFromIndex:9];
3208 - (NSArray *) purposes {
3209 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
3210 for (NSString *tag in (NSArray *) tags_)
3211 if ([tag hasPrefix:@"purpose::"])
3212 [purposes addObject:[tag substringFromIndex:9]];
3213 return [purposes count] == 0 ? nil : purposes;
3216 - (bool) isCommercial {
3217 return [self hasTag:@"cydia::commercial"];
3220 - (void) setIndex:(size_t)index {
3221 if (metadata_->index_ != index)
3222 metadata_->index_ = index;
3225 - (CYString &) cyname {
3226 return !transform_.empty() ? transform_ : !name_.empty() ? name_ : id_;
3229 - (uint32_t) compareBySection:(NSArray *)sections {
3230 NSString *section([self section]);
3231 for (size_t i(0), e([sections count]); i != e; ++i) {
3232 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
3236 return _not(uint32_t);
3240 @synchronized (database_) {
3241 pkgProblemResolver *resolver = [database_ resolver];
3242 resolver->Clear(iterator_);
3244 pkgCacheFile &cache([database_ cache]);
3245 cache->SetReInstall(iterator_, false);
3246 cache->MarkKeep(iterator_, false);
3250 @synchronized (database_) {
3251 pkgProblemResolver *resolver = [database_ resolver];
3252 resolver->Clear(iterator_);
3253 resolver->Protect(iterator_);
3255 pkgCacheFile &cache([database_ cache]);
3256 cache->SetReInstall(iterator_, false);
3257 cache->MarkInstall(iterator_, false);
3259 pkgDepCache::StateCache &state((*cache)[iterator_]);
3260 if (!state.Install())
3261 cache->SetReInstall(iterator_, true);
3265 @synchronized (database_) {
3266 pkgProblemResolver *resolver = [database_ resolver];
3267 resolver->Clear(iterator_);
3268 resolver->Remove(iterator_);
3269 resolver->Protect(iterator_);
3271 pkgCacheFile &cache([database_ cache]);
3272 cache->SetReInstall(iterator_, false);
3273 cache->MarkDelete(iterator_, true);
3278 /* Section Class {{{ */
3279 @interface Section : NSObject {
3283 _H<NSString> localized_;
3286 - (NSComparisonResult) compareByLocalized:(Section *)section;
3287 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3288 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3289 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3291 - (NSString *) name;
3292 - (void) setName:(NSString *)name;
3298 - (void) addToCount;
3300 - (void) setCount:(size_t)count;
3301 - (NSString *) localized;
3305 @implementation Section
3307 - (NSComparisonResult) compareByLocalized:(Section *)section {
3308 NSString *lhs(localized_);
3309 NSString *rhs([section localized]);
3311 /*if ([lhs length] != 0 && [rhs length] != 0) {
3312 unichar lhc = [lhs characterAtIndex:0];
3313 unichar rhc = [rhs characterAtIndex:0];
3315 if (isalpha(lhc) && !isalpha(rhc))
3316 return NSOrderedAscending;
3317 else if (!isalpha(lhc) && isalpha(rhc))
3318 return NSOrderedDescending;
3321 return [lhs compare:rhs options:LaxCompareOptions_];
3324 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3325 if ((self = [self initWithName:name localize:NO]) != nil) {
3326 if (localized != nil)
3327 localized_ = localized;
3331 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3332 return [self initWithName:name row:0 localize:localize];
3335 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3336 if ((self = [super init]) != nil) {
3340 localized_ = LocalizeSection(name_);
3344 - (NSString *) name {
3348 - (void) setName:(NSString *)name {
3364 - (void) addToCount {
3368 - (void) setCount:(size_t)count {
3372 - (NSString *) localized {
3379 class CydiaLogCleaner :
3380 public pkgArchiveCleaner
3383 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3388 /* Database Implementation {{{ */
3389 @implementation Database
3391 + (Database *) sharedInstance {
3392 static _H<Database> instance;
3393 if (instance == nil)
3394 instance = [[[Database alloc] init] autorelease];
3402 - (void) releasePackages {
3403 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3404 CFArrayRemoveAllValues(packages_);
3408 // XXX: actually implement this thing
3410 [self releasePackages];
3411 apr_pool_destroy(pool_);
3412 NSRecycleZone(zone_);
3416 - (void) _readCydia:(NSNumber *)fd {
3417 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3418 std::istream is(&ib);
3421 static Pcre finish_r("^finish:([^:]*)$");
3423 while (std::getline(is, line)) {
3424 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3426 const char *data(line.c_str());
3427 size_t size = line.size();
3428 lprintf("C:%s\n", data);
3430 if (finish_r(data, size)) {
3431 NSString *finish = finish_r[1];
3432 int index = [Finishes_ indexOfObject:finish];
3433 if (index != INT_MAX && index > Finish_)
3443 - (void) _readStatus:(NSNumber *)fd {
3444 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3445 std::istream is(&ib);
3448 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3449 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3451 while (std::getline(is, line)) {
3452 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3454 const char *data(line.c_str());
3455 size_t size(line.size());
3456 lprintf("S:%s\n", data);
3458 if (conffile_r(data, size)) {
3459 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3460 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3461 } else if (strncmp(data, "status: ", 8) == 0) {
3462 // status: <package>: {unpacked,half-configured,installed}
3463 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3464 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3465 } else if (strncmp(data, "processing: ", 12) == 0) {
3466 // processing: configure: config-test
3467 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3468 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3469 } else if (pmstatus_r(data, size)) {
3470 std::string type([pmstatus_r[1] UTF8String]);
3472 NSString *package = pmstatus_r[2];
3473 if ([package isEqualToString:@"dpkg-exec"])
3476 float percent([pmstatus_r[3] floatValue]);
3477 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3479 NSString *string = pmstatus_r[4];
3481 if (type == "pmerror") {
3482 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3483 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3484 } else if (type == "pmstatus") {
3485 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3486 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3487 } else if (type == "pmconffile")
3488 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3490 lprintf("E:unknown pmstatus\n");
3492 lprintf("E:unknown status\n");
3500 - (void) _readOutput:(NSNumber *)fd {
3501 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3502 std::istream is(&ib);
3505 while (std::getline(is, line)) {
3506 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3508 lprintf("O:%s\n", line.c_str());
3510 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3511 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3523 - (Package *) packageWithName:(NSString *)name {
3526 @synchronized (self) {
3527 if (static_cast<pkgDepCache *>(cache_) == NULL)
3529 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3530 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self];
3534 if ((self = [super init]) != nil) {
3541 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3542 apr_pool_create(&pool_, NULL);
3544 size_t capacity(MetaFile_->active_);
3550 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3551 sourceList_ = [NSMutableArray arrayWithCapacity:16];
3555 _assert(pipe(fds) != -1);
3558 _config->Set("APT::Keep-Fds::", cydiafd_);
3559 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3562 detachNewThreadSelector:@selector(_readCydia:)
3564 withObject:[NSNumber numberWithInt:fds[0]]
3567 _assert(pipe(fds) != -1);
3571 detachNewThreadSelector:@selector(_readStatus:)
3573 withObject:[NSNumber numberWithInt:fds[0]]
3576 _assert(pipe(fds) != -1);
3577 _assert(dup2(fds[0], 0) != -1);
3578 _assert(close(fds[0]) != -1);
3580 input_ = fdopen(fds[1], "a");
3582 _assert(pipe(fds) != -1);
3583 _assert(dup2(fds[1], 1) != -1);
3584 _assert(close(fds[1]) != -1);
3587 detachNewThreadSelector:@selector(_readOutput:)
3589 withObject:[NSNumber numberWithInt:fds[0]]
3594 - (pkgCacheFile &) cache {
3598 - (pkgDepCache::Policy *) policy {
3602 - (pkgRecords *) records {
3606 - (pkgProblemResolver *) resolver {
3610 - (pkgAcquire &) fetcher {
3614 - (pkgSourceList &) list {
3618 - (NSArray *) packages {
3619 return (NSArray *) packages_;
3622 - (NSArray *) sources {
3626 - (Source *) sourceWithKey:(NSString *)key {
3627 for (Source *source in [self sources]) {
3628 if ([[source key] isEqualToString:key])
3633 - (bool) popErrorWithTitle:(NSString *)title {
3636 while (!_error->empty()) {
3638 bool warning(!_error->PopMessage(error));
3643 size_t size(error.size());
3644 if (size == 0 || error[size - 1] != '\n')
3646 error.resize(size - 1);
3649 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3651 static Pcre no_pubkey("^GPG error:.* NO_PUBKEY .*$");
3652 if (warning && no_pubkey(error.c_str()))
3655 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3661 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3662 return [self popErrorWithTitle:title] || !success;
3665 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
3666 @synchronized (self) {
3669 [self releasePackages];
3672 [sourceList_ removeAllObjects];
3692 apr_pool_clear(pool_);
3694 NSRecycleZone(zone_);
3695 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3697 int chk(creat("/tmp/cydia.chk", 0644));
3701 if (invocation != nil)
3702 [invocation invoke];
3704 NSString *title(UCLocalize("DATABASE"));
3706 list_ = new pkgSourceList();
3707 _profile(reloadDataWithInvocation$ReadMainList)
3708 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3712 _profile(reloadDataWithInvocation$Source$initWithMetaIndex)
3713 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3714 Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:pool_] autorelease]);
3715 [sourceList_ addObject:object];
3720 OpProgress progress;
3723 _profile(reloadDataWithInvocation$pkgCacheFile)
3724 opened = cache_.Open(progress, true);
3727 // XXX: what if there are errors, but Open() == true? this should be merged with popError:
3728 while (!_error->empty()) {
3730 bool warning(!_error->PopMessage(error));
3732 lprintf("cache_.Open():[%s]\n", error.c_str());
3734 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3738 else if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3739 repair = @selector(configure);
3740 //else if (error == "The package lists or status file could not be parsed or opened.")
3741 // repair = @selector(update);
3742 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3743 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3744 // else if (error == "Malformed Status line")
3745 // else if (error == "The list of sources could not be read.")
3747 if (repair != NULL) {
3749 [delegate_ repairWithSelector:repair];
3758 unlink("/tmp/cydia.chk");
3760 now_ = [[NSDate date] timeIntervalSince1970];
3762 policy_ = new pkgDepCache::Policy();
3763 records_ = new pkgRecords(cache_);
3764 resolver_ = new pkgProblemResolver(cache_);
3765 fetcher_ = new pkgAcquire(&status_);
3768 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3769 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3773 _profile(reloadDataWithInvocation$pkgApplyStatus)
3774 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3778 if (cache_->BrokenCount() != 0) {
3779 _profile(pkgApplyStatus$pkgFixBroken)
3780 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3784 if (cache_->BrokenCount() != 0) {
3785 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3789 _profile(pkgApplyStatus$pkgMinimizeUpgrade)
3790 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3795 for (Source *object in (id) sourceList_) {
3796 metaIndex *source([object metaIndex]);
3797 std::vector<pkgIndexFile *> *indices = source->GetIndexFiles();
3798 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3799 // XXX: this could be more intelligent
3800 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3801 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3803 sourceMap_[cached->ID] = object;
3808 /*std::vector<Package *> packages;
3809 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3812 _profile(reloadDataWithInvocation$packageWithIterator)
3813 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3814 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3815 //packages.push_back(package);
3816 CFArrayAppendValue(packages_, CFRetain(package));
3820 /*if (packages.empty())
3821 packages_ = [[NSArray alloc] init];
3823 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3826 _profile(reloadDataWithInvocation$radix$8)
3827 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(8)];
3830 _profile(reloadDataWithInvocation$radix$4)
3831 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3834 _profile(reloadDataWithInvocation$radix$0)
3835 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3838 _profile(reloadDataWithInvocation$insertion)
3839 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3842 /*_profile(reloadDataWithInvocation$CFQSortArray)
3843 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);
3846 /*_profile(reloadDataWithInvocation$stdsort)
3847 std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3850 /*_profile(reloadDataWithInvocation$CFArraySortValues)
3851 CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3854 /*_profile(reloadDataWithInvocation$sortUsingFunction)
3855 [packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3859 size_t count(CFArrayGetCount(packages_));
3860 MetaFile_->active_ = count;
3861 for (size_t index(0); index != count; ++index)
3862 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3867 @synchronized (self) {
3869 resolver_ = new pkgProblemResolver(cache_);
3871 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3872 if (!cache_[iterator].Keep())
3873 cache_->MarkKeep(iterator, false);
3874 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3875 cache_->SetReInstall(iterator, false);
3878 - (void) configure {
3879 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3881 system([dpkg UTF8String]);
3886 @synchronized (self) {
3887 // XXX: I don't remember this condition
3892 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3894 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3896 if ([self popErrorWithTitle:title])
3900 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3902 CydiaLogCleaner cleaner;
3903 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3910 fetcher_->Shutdown();
3912 pkgRecords records(cache_);
3914 lock_ = new FileFd();
3915 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3917 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3919 if ([self popErrorWithTitle:title])
3923 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3926 manager_ = (_system->CreatePM(cache_));
3927 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3934 bool substrate(RestartSubstrate_);
3935 RestartSubstrate_ = false;
3937 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3939 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3941 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3943 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3944 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3947 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3949 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3951 [self popErrorWithTitle:title];
3955 bool failed = false;
3956 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3957 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3959 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3962 std::string uri = (*item)->DescURI();
3963 std::string error = (*item)->ErrorText;
3965 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
3968 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError]);
3969 [delegate_ addProgressEventOnMainThread:event forTask:title];
3972 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3980 RestartSubstrate_ = true;
3983 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3984 if ([self popErrorWithTitle:title])
3987 if (result == pkgPackageManager::Failed) {
3992 if (result != pkgPackageManager::Completed) {
3997 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3999 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
4001 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
4002 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
4005 if (![before isEqualToArray:after])
4010 NSString *title(UCLocalize("UPGRADE"));
4011 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
4017 [self updateWithStatus:status_];
4020 - (void) updateWithStatus:(CancelStatus &)status {
4021 NSString *title(UCLocalize("REFRESHING_DATA"));
4024 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
4028 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
4029 if ([self popErrorWithTitle:title])
4032 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4034 bool success(ListUpdate(status, list, PulseInterval_));
4035 if (status.WasCancelled())
4038 [self popErrorWithTitle:title forOperation:success];
4039 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
4043 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4046 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
4047 delegate_ = delegate;
4050 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
4051 progress_ = delegate;
4052 status_.setDelegate(delegate);
4055 - (NSObject<ProgressDelegate> *) progressDelegate {
4059 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
4060 SourceMap::const_iterator i(sourceMap_.find(file->ID));
4061 return i == sourceMap_.end() ? nil : i->second;
4064 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
4065 for (Source *source in (id) sourceList_)
4066 [source setFetch:fetch forURI:uri];
4069 - (void) resetFetch {
4070 for (Source *source in (id) sourceList_)
4071 [source resetFetch];
4074 - (NSString *) mappedSectionForPointer:(const char *)section {
4075 _H<NSString> *mapped;
4077 _profile(Database$mappedSectionForPointer$Cache)
4078 mapped = §ions_[section];
4081 if (*mapped == NULL) {
4082 size_t length(strlen(section));
4083 char spaced[length + 1];
4085 _profile(Database$mappedSectionForPointer$Replace)
4086 for (size_t index(0); index != length; ++index)
4087 spaced[index] = section[index] == '_' ? ' ' : section[index];
4088 spaced[length] = '\0';
4093 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
4094 string = [NSString stringWithUTF8String:spaced];
4097 _profile(Database$mappedSectionForPointer$Map)
4098 string = [SectionMap_ objectForKey:string] ?: string;
4108 static _H<NSMutableSet> Diversions_;
4110 @interface Diversion : NSObject {
4113 _H<NSString> format_;
4118 @implementation Diversion
4120 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
4121 if ((self = [super init]) != nil) {
4122 pattern_ = [from UTF8String];
4128 - (NSString *) divert:(NSString *)url {
4129 return !pattern_(url) ? nil : pattern_->*format_;
4132 + (NSURL *) divertURL:(NSURL *)url {
4134 NSString *href([url absoluteString]);
4136 for (Diversion *diversion in (id) Diversions_)
4137 if (NSString *diverted = [diversion divert:href]) {
4139 NSLog(@"div: %@", diverted);
4141 url = [NSURL URLWithString:diverted];
4148 - (NSString *) key {
4152 - (NSUInteger) hash {
4156 - (BOOL) isEqual:(Diversion *)object {
4157 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
4162 @interface CydiaObject : NSObject {
4163 _H<CyteWebViewController> indirect_;
4164 _transient id delegate_;
4167 - (id) initWithDelegate:(IndirectDelegate *)indirect;
4173 @interface CydiaWebViewController : CyteWebViewController {
4174 _H<CydiaObject> cydia_;
4177 + (void) addDiversion:(Diversion *)diversion;
4178 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request;
4179 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia;
4180 - (void) setDelegate:(id)delegate;
4184 /* Web Scripting {{{ */
4185 @implementation CydiaObject
4187 - (id) initWithDelegate:(IndirectDelegate *)indirect {
4188 if ((self = [super init]) != nil) {
4189 indirect_ = (CyteWebViewController *) indirect;
4193 - (void) setDelegate:(id)delegate {
4194 delegate_ = delegate;
4197 + (NSArray *) _attributeKeys {
4198 return [NSArray arrayWithObjects:
4201 @"coreFoundationVersionNumber",
4218 - (NSArray *) attributeKeys {
4219 return [[self class] _attributeKeys];
4222 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
4223 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
4226 - (NSString *) version {
4230 - (NSString *) build {
4234 - (NSString *) coreFoundationVersionNumber {
4235 return [NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber];
4238 - (NSString *) device {
4239 return UniqueIdentifier();
4242 - (NSString *) firmware {
4243 return [[UIDevice currentDevice] systemVersion];
4246 - (NSString *) hostname {
4247 return [[UIDevice currentDevice] name];
4250 - (NSString *) idiom {
4251 return (id) Idiom_ ?: [NSNull null];
4254 - (NSString *) mcc {
4255 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode")))
4256 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease];
4260 - (NSString *) mnc {
4261 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode")))
4262 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease];
4266 - (NSString *) operator {
4267 if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName")))
4268 return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease];
4272 - (NSString *) bbsnum {
4273 return (id) BBSNum_ ?: [NSNull null];
4276 - (NSString *) ecid {
4277 return (id) ChipID_ ?: [NSNull null];
4280 - (NSString *) serial {
4281 return SerialNumber_;
4284 - (NSString *) role {
4285 return (id) [NSNull null];
4288 - (NSString *) model {
4289 return [NSString stringWithUTF8String:Machine_];
4292 - (NSString *) token {
4293 return (id) Token_ ?: [NSNull null];
4296 + (NSString *) webScriptNameForSelector:(SEL)selector {
4298 else if (selector == @selector(addBridgedHost:))
4299 return @"addBridgedHost";
4300 else if (selector == @selector(addInsecureHost:))
4301 return @"addInsecureHost";
4302 else if (selector == @selector(addInternalRedirect::))
4303 return @"addInternalRedirect";
4304 else if (selector == @selector(addPipelinedHost:scheme:))
4305 return @"addPipelinedHost";
4306 else if (selector == @selector(addSource:::))
4307 return @"addSource";
4308 else if (selector == @selector(addTokenHost:))
4309 return @"addTokenHost";
4310 else if (selector == @selector(addTrivialSource:))
4311 return @"addTrivialSource";
4312 else if (selector == @selector(close))
4314 else if (selector == @selector(du:))
4316 else if (selector == @selector(stringWithFormat:arguments:))
4318 else if (selector == @selector(getAllSources))
4319 return @"getAllSources";
4320 else if (selector == @selector(getApplicationInfo:value:))
4321 return @"getApplicationInfoValue";
4322 else if (selector == @selector(getKernelNumber:))
4323 return @"getKernelNumber";
4324 else if (selector == @selector(getKernelString:))
4325 return @"getKernelString";
4326 else if (selector == @selector(getInstalledPackages))
4327 return @"getInstalledPackages";
4328 else if (selector == @selector(getIORegistryEntry::))
4329 return @"getIORegistryEntry";
4330 else if (selector == @selector(getLocaleIdentifier))
4331 return @"getLocaleIdentifier";
4332 else if (selector == @selector(getPreferredLanguages))
4333 return @"getPreferredLanguages";
4334 else if (selector == @selector(getPackageById:))
4335 return @"getPackageById";
4336 else if (selector == @selector(getMetadataKeys))
4337 return @"getMetadataKeys";
4338 else if (selector == @selector(getMetadataValue:))
4339 return @"getMetadataValue";
4340 else if (selector == @selector(getSessionValue:))
4341 return @"getSessionValue";
4342 else if (selector == @selector(installPackages:))
4343 return @"installPackages";
4344 else if (selector == @selector(isReachable:))
4345 return @"isReachable";
4346 else if (selector == @selector(localizedStringForKey:value:table:))
4348 else if (selector == @selector(popViewController:))
4349 return @"popViewController";
4350 else if (selector == @selector(refreshSources))
4351 return @"refreshSources";
4352 else if (selector == @selector(registerFrame:))
4353 return @"registerFrame";
4354 else if (selector == @selector(removeButton))
4355 return @"removeButton";
4356 else if (selector == @selector(saveConfig))
4357 return @"saveConfig";
4358 else if (selector == @selector(setMetadataValue::))
4359 return @"setMetadataValue";
4360 else if (selector == @selector(setSessionValue::))
4361 return @"setSessionValue";
4362 else if (selector == @selector(substitutePackageNames:))
4363 return @"substitutePackageNames";
4364 else if (selector == @selector(scrollToBottom:))
4365 return @"scrollToBottom";
4366 else if (selector == @selector(setAllowsNavigationAction:))
4367 return @"setAllowsNavigationAction";
4368 else if (selector == @selector(setBadgeValue:))
4369 return @"setBadgeValue";
4370 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4371 return @"setButtonImage";
4372 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4373 return @"setButtonTitle";
4374 else if (selector == @selector(setHidesBackButton:))
4375 return @"setHidesBackButton";
4376 else if (selector == @selector(setHidesNavigationBar:))
4377 return @"setHidesNavigationBar";
4378 else if (selector == @selector(setNavigationBarStyle:))
4379 return @"setNavigationBarStyle";
4380 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4381 return @"setNavigationBarTintColor";
4382 else if (selector == @selector(setPasteboardString:))
4383 return @"setPasteboardString";
4384 else if (selector == @selector(setPasteboardURL:))
4385 return @"setPasteboardURL";
4386 else if (selector == @selector(setScrollAlwaysBounceVertical:))
4387 return @"setScrollAlwaysBounceVertical";
4388 else if (selector == @selector(setScrollIndicatorStyle:))
4389 return @"setScrollIndicatorStyle";
4390 else if (selector == @selector(setToken:))
4392 else if (selector == @selector(setViewportWidth:))
4393 return @"setViewportWidth";
4394 else if (selector == @selector(statfs:))
4396 else if (selector == @selector(supports:))
4398 else if (selector == @selector(unload))
4404 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4405 return [self webScriptNameForSelector:selector] == nil;
4408 - (BOOL) supports:(NSString *)feature {
4409 return [feature isEqualToString:@"window.open"];
4413 [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO];
4416 - (void) setScrollAlwaysBounceVertical:(NSNumber *)value {
4417 [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO];
4420 - (void) setScrollIndicatorStyle:(NSString *)style {
4421 [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO];
4424 - (void) addInternalRedirect:(NSString *)from :(NSString *)to {
4425 [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4428 - (NSDictionary *) getApplicationInfo:(NSString *)display value:(NSString *)key {
4430 if (SBBundlePathForDisplayIdentifier(SBSSpringBoardServerPort(), [display UTF8String], path) != 0)
4431 return (id) [NSNull null];
4432 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:[[NSString stringWithUTF8String:path] stringByAppendingString:@"/Info.plist"]]);
4434 return (id) [NSNull null];
4435 return [info objectForKey:key];
4438 - (NSNumber *) getKernelNumber:(NSString *)name {
4439 const char *string([name UTF8String]);
4442 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4443 return (id) [NSNull null];
4445 if (size != sizeof(int))
4446 return (id) [NSNull null];
4449 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4450 return (id) [NSNull null];
4452 return [NSNumber numberWithInt:value];
4455 - (NSString *) getKernelString:(NSString *)name {
4456 const char *string([name UTF8String]);
4459 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4460 return (id) [NSNull null];
4462 char value[size + 1];
4463 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4464 return (id) [NSNull null];
4466 // XXX: just in case you request something ludicrous
4469 return [NSString stringWithCString:value];
4472 - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry {
4473 NSObject *value(CYIOGetValue([path UTF8String], entry));
4476 if ([value isKindOfClass:[NSData class]])
4477 value = CYHex((NSData *) value);
4482 - (NSArray *) getMetadataKeys {
4483 @synchronized (Values_) {
4484 return [Values_ allKeys];
4487 - (void) registerFrame:(DOMHTMLIFrameElement *)iframe {
4488 WebFrame *frame([iframe contentFrame]);
4489 [indirect_ registerFrame:frame];
4492 - (id) getMetadataValue:(NSString *)key {
4493 @synchronized (Values_) {
4494 return [Values_ objectForKey:key];
4497 - (void) setMetadataValue:(NSString *)key :(NSString *)value {
4498 @synchronized (Values_) {
4499 if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null])
4500 [Values_ removeObjectForKey:key];
4502 [Values_ setObject:value forKey:key];
4504 [delegate_ performSelectorOnMainThread:@selector(updateValues) withObject:nil waitUntilDone:YES];
4507 - (id) getSessionValue:(NSString *)key {
4508 @synchronized (SessionData_) {
4509 return [SessionData_ objectForKey:key];
4512 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4513 @synchronized (SessionData_) {
4514 if (value == (id) [WebUndefined undefined])
4515 [SessionData_ removeObjectForKey:key];
4517 [SessionData_ setObject:value forKey:key];
4520 - (void) addBridgedHost:(NSString *)host {
4521 @synchronized (HostConfig_) {
4522 [BridgedHosts_ addObject:host];
4525 - (void) addInsecureHost:(NSString *)host {
4526 @synchronized (HostConfig_) {
4527 [InsecureHosts_ addObject:host];
4530 - (void) addTokenHost:(NSString *)host {
4531 @synchronized (HostConfig_) {
4532 [TokenHosts_ addObject:host];
4535 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4536 @synchronized (HostConfig_) {
4537 if (scheme != (id) [WebUndefined undefined])
4538 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4540 [PipelinedHosts_ addObject:host];
4543 - (void) popViewController:(NSNumber *)value {
4544 if (value == (id) [WebUndefined undefined])
4545 value = [NSNumber numberWithBool:YES];
4546 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4549 - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections {
4550 NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]);
4552 for (NSString *section in sections)
4553 [array addObject:section];
4555 [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys:
4558 distribution, @"Distribution",
4560 nil] waitUntilDone:NO];
4563 - (void) addTrivialSource:(NSString *)href {
4564 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4567 - (void) refreshSources {
4568 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4571 - (void) saveConfig {
4572 [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO];
4575 - (NSArray *) getAllSources {
4576 return [[Database sharedInstance] sources];
4579 - (NSArray *) getInstalledPackages {
4580 Database *database([Database sharedInstance]);
4581 @synchronized (database) {
4582 NSArray *packages([database packages]);
4583 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4584 for (Package *package in packages)
4585 if (![package uninstalled])
4586 [installed addObject:package];
4590 - (Package *) getPackageById:(NSString *)id {
4591 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4595 return (Package *) [NSNull null];
4598 - (NSString *) getLocaleIdentifier {
4599 return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_);
4602 - (NSArray *) getPreferredLanguages {
4606 - (NSArray *) statfs:(NSString *)path {
4609 if (path == nil || statfs([path UTF8String], &stat) == -1)
4612 return [NSArray arrayWithObjects:
4613 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4614 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4615 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4619 - (NSNumber *) du:(NSString *)path {
4620 NSNumber *value(nil);
4623 _assert(pipe(fds) != -1);
4625 pid_t pid(ExecFork());
4627 _assert(dup2(fds[1], 1) != -1);
4628 _assert(close(fds[0]) != -1);
4629 _assert(close(fds[1]) != -1);
4630 /* XXX: this should probably not use du */
4631 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
4634 _assert(close(fds[1]) != -1);
4636 if (FILE *du = fdopen(fds[0], "r")) {
4638 while (fgets(line, sizeof(line), du) != NULL) {
4639 size_t length(strlen(line));
4640 while (length != 0 && line[length - 1] == '\n')
4641 line[--length] = '\0';
4642 if (char *tab = strchr(line, '\t')) {
4644 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
4650 _assert(close(fds[0]) != -1);
4657 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4660 - (NSNumber *) isReachable:(NSString *)name {
4661 return [NSNumber numberWithBool:IsReachable([name UTF8String])];
4664 - (void) installPackages:(NSArray *)packages {
4665 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4668 - (NSString *) substitutePackageNames:(NSString *)message {
4669 NSMutableArray *words([[[message componentsSeparatedByString:@" "] mutableCopy] autorelease]);
4670 for (size_t i(0), e([words count]); i != e; ++i) {
4671 NSString *word([words objectAtIndex:i]);
4672 if (Package *package = [[Database sharedInstance] packageWithName:word])
4673 [words replaceObjectAtIndex:i withObject:[package name]];
4676 return [words componentsJoinedByString:@" "];
4679 - (void) removeButton {
4680 [indirect_ removeButton];
4683 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4684 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4687 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4688 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4691 - (void) setBadgeValue:(id)value {
4692 [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO];
4695 - (void) setAllowsNavigationAction:(NSString *)value {
4696 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4699 - (void) setHidesBackButton:(NSString *)value {
4700 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4703 - (void) setHidesNavigationBar:(NSString *)value {
4704 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4707 - (void) setNavigationBarStyle:(NSString *)value {
4708 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4711 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4712 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4713 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4714 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4717 - (void) setPasteboardString:(NSString *)value {
4718 [[objc_getClass("UIPasteboard") generalPasteboard] setString:value];
4721 - (void) setPasteboardURL:(NSString *)value {
4722 [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]];
4725 - (void) _setToken:(NSString *)token {
4729 [Metadata_ removeObjectForKey:@"Token"];
4731 [Metadata_ setObject:Token_ forKey:@"Token"];
4736 - (void) setToken:(NSString *)token {
4737 [self performSelectorOnMainThread:@selector(_setToken:) withObject:token waitUntilDone:NO];
4740 - (void) scrollToBottom:(NSNumber *)animated {
4741 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4744 - (void) setViewportWidth:(float)width {
4745 [indirect_ setViewportWidthOnMainThread:width];
4748 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4749 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4750 unsigned count([arguments count]);
4752 for (unsigned i(0); i != count; ++i)
4753 values[i] = [arguments objectAtIndex:i];
4754 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4757 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4758 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4760 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4762 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4768 @interface NSURL (CydiaSecure)
4771 @implementation NSURL (CydiaSecure)
4773 - (bool) isCydiaSecure {
4774 if ([[[self scheme] lowercaseString] isEqualToString:@"https"])
4777 @synchronized (HostConfig_) {
4778 if ([InsecureHosts_ containsObject:[self host]])
4787 /* Cydia Browser Controller {{{ */
4788 @implementation CydiaWebViewController
4790 - (NSURL *) navigationURL {
4791 return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4794 + (void) _initialize {
4795 [super _initialize];
4797 Diversions_ = [NSMutableSet setWithCapacity:0];
4800 + (void) addDiversion:(Diversion *)diversion {
4801 [Diversions_ addObject:diversion];
4804 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4805 [super webView:view didClearWindowObject:window forFrame:frame];
4806 [CydiaWebViewController didClearWindowObject:window forFrame:frame withCydia:cydia_];
4809 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia {
4810 WebDataSource *source([frame dataSource]);
4811 NSURLResponse *response([source response]);
4812 NSURL *url([response URL]);
4813 NSString *scheme([[url scheme] lowercaseString]);
4815 bool bridged(false);
4817 @synchronized (HostConfig_) {
4818 if ([scheme isEqualToString:@"file"])
4820 else if ([scheme isEqualToString:@"https"])
4821 if ([BridgedHosts_ containsObject:[url host]])
4826 [window setValue:cydia forKey:@"cydia"];
4829 - (void) _setupMail:(MFMailComposeViewController *)controller {
4830 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"];
4832 system("/usr/bin/dpkg -l >/tmp/dpkgl.log");
4833 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"];
4836 - (NSURL *) URLWithURL:(NSURL *)url {
4837 return [Diversion divertURL:url];
4840 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4841 return [CydiaWebViewController requestWithHeaders:[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]];
4844 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request {
4845 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
4847 NSURL *url([copy URL]);
4848 NSString *href([url absoluteString]);
4849 NSString *host([url host]);
4851 if ([href hasPrefix:@"https://cydia.saurik.com/TSS/"]) {
4852 if (NSString *agent = [copy valueForHTTPHeaderField:@"X-User-Agent"]) {
4853 [copy setValue:agent forHTTPHeaderField:@"User-Agent"];
4854 [copy setValue:nil forHTTPHeaderField:@"X-User-Agent"];
4857 [copy setValue:nil forHTTPHeaderField:@"Referer"];
4858 [copy setValue:nil forHTTPHeaderField:@"Origin"];
4860 [copy setURL:[NSURL URLWithString:[@"http://gs.apple.com/TSS/" stringByAppendingString:[href substringFromIndex:29]]]];
4864 if ([copy valueForHTTPHeaderField:@"X-Cydia-Cf"] == nil)
4865 [copy setValue:[NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber] forHTTPHeaderField:@"X-Cydia-Cf"];
4866 if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil)
4867 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4872 @synchronized (HostConfig_) {
4873 bridged = [BridgedHosts_ containsObject:host];
4874 token = [TokenHosts_ containsObject:host];
4877 if ([url isCydiaSecure]) {
4879 if (UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil)
4880 [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
4882 if (Token_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Token"] == nil)
4883 [copy setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
4890 - (void) setDelegate:(id)delegate {
4891 [super setDelegate:delegate];
4892 [cydia_ setDelegate:delegate];
4895 - (NSString *) applicationNameForUserAgent {
4900 if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) {
4901 cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease];
4907 @interface AppCacheController : CydiaWebViewController {
4912 @implementation AppCacheController
4914 - (void) didReceiveMemoryWarning {
4915 // XXX: this doesn't work
4918 - (bool) retainsNetworkActivityIndicator {
4926 @interface NSObject (CydiaScript)
4927 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4930 @implementation NSObject (CydiaScript)
4932 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4938 @implementation NSArray (CydiaScript)
4940 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4941 WebScriptObject *object([context evaluateWebScript:@"[]"]);
4942 for (size_t i(0), e([self count]); i != e; ++i)
4943 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
4949 @implementation NSDictionary (CydiaScript)
4951 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4952 WebScriptObject *object([context evaluateWebScript:@"({})"]);
4954 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
4961 /* Confirmation Controller {{{ */
4962 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
4963 if (!iterator.end())
4964 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
4965 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
4967 pkgCache::PkgIterator package(dep.TargetPkg());
4970 if (strcmp(package.Name(), "mobilesubstrate") == 0)
4977 @protocol ConfirmationControllerDelegate
4978 - (void) cancelAndClear:(bool)clear;
4979 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
4983 @interface ConfirmationController : CydiaWebViewController {
4984 _transient Database *database_;
4986 _H<UIAlertView> essential_;
4988 _H<NSDictionary> changes_;
4989 _H<NSMutableArray> issues_;
4990 _H<NSDictionary> sizes_;
4995 - (id) initWithDatabase:(Database *)database;
4999 @implementation ConfirmationController
5003 RestartSubstrate_ = true;
5004 [delegate_ confirmWithNavigationController:[self navigationController]];
5007 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
5008 NSString *context([alert context]);
5010 if ([context isEqualToString:@"remove"]) {
5011 if (button == [alert cancelButtonIndex])
5012 [self dismissModalViewControllerAnimated:YES];
5013 else if (button == [alert firstOtherButtonIndex]) {
5014 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
5017 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5018 } else if ([context isEqualToString:@"unable"]) {
5019 [self dismissModalViewControllerAnimated:YES];
5020 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5022 [super alertView:alert clickedButtonAtIndex:button];
5026 - (void) _doContinue {
5027 [delegate_ cancelAndClear:NO];
5028 [self dismissModalViewControllerAnimated:YES];
5031 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
5032 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
5036 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5037 [super webView:view didClearWindowObject:window forFrame:frame];
5039 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
5040 (id) changes_, @"changes",
5041 (id) issues_, @"issues",
5042 (id) sizes_, @"sizes",
5044 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
5047 - (id) initWithDatabase:(Database *)database {
5048 if ((self = [super init]) != nil) {
5049 database_ = database;
5051 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
5052 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
5053 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
5054 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
5055 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
5059 pkgCacheFile &cache([database_ cache]);
5060 NSArray *packages([database_ packages]);
5061 pkgDepCache::Policy *policy([database_ policy]);
5063 issues_ = [NSMutableArray arrayWithCapacity:4];
5065 for (Package *package in packages) {
5066 pkgCache::PkgIterator iterator([package iterator]);
5067 NSString *name([package id]);
5069 if ([package broken]) {
5070 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
5072 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5074 reasons, @"reasons",
5077 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
5081 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
5082 pkgCache::DepIterator start;
5083 pkgCache::DepIterator end;
5084 dep.GlobOr(start, end); // ++dep
5086 if (!cache->IsImportantDep(end))
5088 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
5091 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
5093 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5094 [NSString stringWithUTF8String:start.DepType()], @"relationship",
5095 clauses, @"clauses",
5099 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
5101 pkgCache::PkgIterator target(start.TargetPkg());
5102 if (target->ProvidesList != 0)
5103 reason = @"missing";
5105 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
5107 reason = @"installed";
5108 installed = [NSString stringWithUTF8String:ver.VerStr()];
5109 } else if (!cache[target].CandidateVerIter(cache).end())
5110 reason = @"uninstalled";
5111 else if (target->ProvidesList == 0)
5112 reason = @"uninstallable";
5114 reason = @"virtual";
5117 NSDictionary *version(start.TargetVer() == 0 ? (NSDictionary *) [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
5118 [NSString stringWithUTF8String:start.CompType()], @"operator",
5119 [NSString stringWithUTF8String:start.TargetVer()], @"value",
5122 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5123 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
5124 version, @"version",
5126 installed, @"installed",
5129 // yes, seriously. (wtf?)
5137 pkgDepCache::StateCache &state(cache[iterator]);
5139 static Pcre special_r("^(firmware$|gsc\\.|cy\\+)");
5141 if (state.NewInstall())
5142 [installs addObject:name];
5143 // XXX: else if (state.Install())
5144 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
5145 [reinstalls addObject:name];
5146 // XXX: move before previous if
5147 else if (state.Upgrade())
5148 [upgrades addObject:name];
5149 else if (state.Downgrade())
5150 [downgrades addObject:name];
5151 else if (!state.Delete())
5152 // XXX: _assert(state.Keep());
5154 else if (special_r(name))
5155 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5156 [NSNull null], @"package",
5157 [NSArray arrayWithObjects:
5158 [NSDictionary dictionaryWithObjectsAndKeys:
5159 @"Conflicts", @"relationship",
5160 [NSArray arrayWithObjects:
5161 [NSDictionary dictionaryWithObjectsAndKeys:
5163 [NSNull null], @"version",
5164 @"installed", @"reason",
5171 if ([package essential])
5173 [removes addObject:name];
5176 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
5177 substrate_ |= DepSubstrate(iterator.CurrentVer());
5182 else if (Advanced_) {
5183 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
5185 essential_ = [[[UIAlertView alloc]
5186 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
5187 message:UCLocalize("REMOVING_ESSENTIALS_EX")
5189 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
5191 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
5195 [essential_ setContext:@"remove"];
5196 [essential_ setNumberOfRows:2];
5198 essential_ = [[[UIAlertView alloc]
5199 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
5200 message:UCLocalize("UNABLE_TO_COMPLY_EX")
5202 cancelButtonTitle:UCLocalize("OKAY")
5203 otherButtonTitles:nil
5206 [essential_ setContext:@"unable"];
5209 changes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5210 installs, @"installs",
5211 reinstalls, @"reinstalls",
5212 upgrades, @"upgrades",
5213 downgrades, @"downgrades",
5214 removes, @"removes",
5217 sizes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5218 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
5219 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
5222 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
5226 - (UIBarButtonItem *) leftButton {
5227 return [[[UIBarButtonItem alloc]
5228 initWithTitle:UCLocalize("CANCEL")
5229 style:UIBarButtonItemStylePlain
5231 action:@selector(cancelButtonClicked)
5236 - (void) applyRightButton {
5237 if ([issues_ count] == 0 && ![self isLoading])
5238 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
5239 initWithTitle:UCLocalize("CONFIRM")
5240 style:UIBarButtonItemStyleDone
5242 action:@selector(confirmButtonClicked)
5245 [[self navigationItem] setRightBarButtonItem:nil];
5249 - (void) cancelButtonClicked {
5250 [delegate_ cancelAndClear:YES];
5251 [self dismissModalViewControllerAnimated:YES];
5255 - (void) confirmButtonClicked {
5256 if (essential_ != nil)
5266 /* Progress Data {{{ */
5267 @interface CydiaProgressData : NSObject {
5268 _transient id delegate_;
5277 _H<NSMutableArray> events_;
5278 _H<NSString> title_;
5280 _H<NSString> status_;
5281 _H<NSString> finish_;
5286 @implementation CydiaProgressData
5288 + (NSArray *) _attributeKeys {
5289 return [NSArray arrayWithObjects:
5301 - (NSArray *) attributeKeys {
5302 return [[self class] _attributeKeys];
5305 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
5306 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
5310 if ((self = [super init]) != nil) {
5311 events_ = [NSMutableArray arrayWithCapacity:32];
5319 - (void) setDelegate:(id)delegate {
5320 delegate_ = delegate;
5323 - (void) setPercent:(float)value {
5327 - (NSNumber *) percent {
5328 return [NSNumber numberWithFloat:percent_];
5331 - (void) setCurrent:(float)value {
5335 - (NSNumber *) current {
5336 return [NSNumber numberWithFloat:current_];
5339 - (void) setTotal:(float)value {
5343 - (NSNumber *) total {
5344 return [NSNumber numberWithFloat:total_];
5347 - (void) setSpeed:(float)value {
5351 - (NSNumber *) speed {
5352 return [NSNumber numberWithFloat:speed_];
5355 - (NSArray *) events {
5359 - (void) removeAllEvents {
5360 [events_ removeAllObjects];
5363 - (void) addEvent:(CydiaProgressEvent *)event {
5364 [events_ addObject:event];
5367 - (void) setTitle:(NSString *)text {
5371 - (NSString *) title {
5375 - (void) setFinish:(NSString *)text {
5379 - (NSString *) finish {
5380 return (id) finish_ ?: [NSNull null];
5383 - (void) setRunning:(bool)running {
5387 - (NSNumber *) running {
5388 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5393 /* Progress Controller {{{ */
5394 @interface ProgressController : CydiaWebViewController <
5397 _transient Database *database_;
5398 _H<CydiaProgressData, 1> progress_;
5402 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5404 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5406 - (void) setTitle:(NSString *)title;
5407 - (void) setCancellable:(bool)cancellable;
5411 @implementation ProgressController
5414 [database_ setProgressDelegate:nil];
5418 - (UIBarButtonItem *) leftButton {
5419 return cancel_ == 1 ? [[[UIBarButtonItem alloc]
5420 initWithTitle:UCLocalize("CANCEL")
5421 style:UIBarButtonItemStylePlain
5423 action:@selector(cancel)
5424 ] autorelease] : nil;
5427 - (void) updateCancel {
5428 [super applyLeftButton];
5431 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5432 if ((self = [super init]) != nil) {
5433 database_ = database;
5434 delegate_ = delegate;
5436 [database_ setProgressDelegate:self];
5438 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5439 [progress_ setDelegate:self];
5441 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5443 [scroller_ setBackgroundColor:[UIColor blackColor]];
5445 [[self navigationItem] setHidesBackButton:YES];
5447 [self updateCancel];
5451 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5452 [super webView:view didClearWindowObject:window forFrame:frame];
5453 [window setValue:progress_ forKey:@"cydiaProgress"];
5456 - (void) updateProgress {
5457 [self dispatchEvent:@"CydiaProgressUpdate"];
5460 - (void) viewWillAppear:(BOOL)animated {
5461 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5462 [super viewWillAppear:animated];
5465 - (void) reloadSpringBoard {
5466 if (kCFCoreFoundationVersionNumber > 700) { // XXX: iOS 6.x
5467 system("/bin/launchctl stop com.apple.backboardd");
5469 system("/usr/bin/killall backboardd SpringBoard sbreload");
5473 pid_t pid(ExecFork());
5478 pid_t pid(ExecFork());
5480 execl("/usr/bin/sbreload", "sbreload", NULL);
5490 system("/usr/bin/killall backboardd SpringBoard sbreload");
5494 UpdateExternalStatus(0);
5497 [delegate_ saveState];
5501 [delegate_ returnToCydia];
5505 [delegate_ terminateWithSuccess];
5506 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5507 [delegate_ suspendWithAnimation:YES];
5509 [delegate_ suspend];*/
5521 UIProgressHUD *hud([delegate_ addProgressHUD]);
5522 [hud setText:UCLocalize("LOADING")];
5523 [self performSelector:@selector(reloadSpringBoard) withObject:nil afterDelay:0.5];
5529 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5530 SBReboot(SBSSpringBoardServerPort());
5532 reboot2(RB_AUTOBOOT);
5539 - (void) setTitle:(NSString *)title {
5540 [progress_ setTitle:title];
5541 [self updateProgress];
5544 - (UIBarButtonItem *) rightButton {
5545 return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc]
5546 initWithTitle:UCLocalize("CLOSE")
5547 style:UIBarButtonItemStylePlain
5549 action:@selector(close)
5553 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5554 UpdateExternalStatus(1);
5556 [progress_ setRunning:true];
5557 [self setTitle:title];
5558 // implicit updateProgress
5560 SHA1SumValue notifyconf; {
5562 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5565 MMap mmap(file, MMap::ReadOnly);
5567 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5568 notifyconf = sha1.Result();
5572 SHA1SumValue springlist; {
5574 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5577 MMap mmap(file, MMap::ReadOnly);
5579 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5580 springlist = sha1.Result();
5584 if (invocation != nil) {
5585 [invocation yieldToSelector:@selector(invoke)];
5586 [self setTitle:@"COMPLETE"];
5591 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5594 MMap mmap(file, MMap::ReadOnly);
5596 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5597 if (!(notifyconf == sha1.Result()))
5604 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5607 MMap mmap(file, MMap::ReadOnly);
5609 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5610 if (!(springlist == sha1.Result()))
5616 if (RestartSubstrate_)
5620 RestartSubstrate_ = false;
5623 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5624 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5625 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5626 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5627 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5630 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5632 [progress_ setRunning:false];
5633 [self updateProgress];
5635 [self applyRightButton];
5638 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5639 [progress_ addEvent:event];
5640 [self updateProgress];
5643 - (bool) isProgressCancelled {
5644 return cancel_ == 2;
5649 [self updateCancel];
5652 - (void) setCancellable:(bool)cancellable {
5653 unsigned cancel(cancel_);
5657 else if (cancel_ == 0)
5660 if (cancel != cancel_)
5661 [self updateCancel];
5664 - (void) setProgressCancellable:(NSNumber *)cancellable {
5665 [self setCancellable:[cancellable boolValue]];
5668 - (void) setProgressPercent:(NSNumber *)percent {
5669 [progress_ setPercent:[percent floatValue]];
5670 [self updateProgress];
5673 - (void) setProgressStatus:(NSDictionary *)status {
5674 if (status == nil) {
5675 [progress_ setCurrent:0];
5676 [progress_ setTotal:0];
5677 [progress_ setSpeed:0];
5679 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5681 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5682 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5683 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5686 [self updateProgress];
5692 /* Package Cell {{{ */
5693 @interface PackageCell : CyteTableViewCell <
5694 CyteTableViewCellDelegate
5698 _H<NSString> description_;
5700 _H<NSString> source_;
5702 _H<UIImage> placard_;
5706 - (PackageCell *) init;
5707 - (void) setPackage:(Package *)package asSummary:(bool)summary;
5709 - (void) drawContentRect:(CGRect)rect;
5713 @implementation PackageCell
5715 - (PackageCell *) init {
5716 CGRect frame(CGRectMake(0, 0, 320, 74));
5717 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5718 UIView *content([self contentView]);
5719 CGRect bounds([content bounds]);
5721 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5722 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5723 [content addSubview:content_];
5725 [content_ setDelegate:self];
5726 [content_ setOpaque:YES];
5730 - (NSString *) accessibilityLabel {
5734 - (void) setPackage:(Package *)package asSummary:(bool)summary {
5735 summarized_ = summary;
5745 [content_ setBackgroundColor:[UIColor whiteColor]];
5749 Source *source = [package source];
5751 icon_ = [package icon];
5753 if (NSString *name = [package name])
5754 name_ = [NSString stringWithString:name];
5756 if (NSString *description = [package shortDescription])
5757 description_ = [NSString stringWithString:description];
5759 commercial_ = [package isCommercial];
5761 NSString *label = nil;
5762 bool trusted = false;
5764 if (source != nil) {
5765 label = [source label];
5766 trusted = [source trusted];
5767 } else if ([[package id] isEqualToString:@"firmware"])
5768 label = UCLocalize("APPLE");
5770 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5772 NSString *from(label);
5774 NSString *section = [package simpleSection];
5775 if (section != nil && ![section isEqualToString:label]) {
5776 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5777 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5780 source_ = [NSString stringWithFormat:UCLocalize("FROM"), from];
5782 if (NSString *purpose = [package primaryPurpose])
5783 badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]];
5788 if (NSString *mode = [package mode]) {
5789 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5790 color = RemovingColor_;
5791 placard = @"removing";
5793 color = InstallingColor_;
5794 placard = @"installing";
5797 color = [UIColor whiteColor];
5799 if ([package installed] != nil)
5800 placard = @"installed";
5805 [content_ setBackgroundColor:color];
5808 placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]];
5811 [self setNeedsDisplay];
5812 [content_ setNeedsDisplay];
5815 - (void) drawSummaryContentRect:(CGRect)rect {
5816 bool highlighted(highlighted_);
5817 float width([self bounds].size.width);
5821 rect.size = [(UIImage *) icon_ size];
5823 while (rect.size.width > 16 || rect.size.height > 16) {
5824 rect.size.width /= 2;
5825 rect.size.height /= 2;
5828 rect.origin.x = 19 - rect.size.width / 2;
5829 rect.origin.y = 19 - rect.size.height / 2;
5831 [icon_ drawInRect:rect];
5834 if (badge_ != nil) {
5836 rect.size = [(UIImage *) badge_ size];
5838 rect.size.width /= 4;
5839 rect.size.height /= 4;
5841 rect.origin.x = 25 - rect.size.width / 2;
5842 rect.origin.y = 25 - rect.size.height / 2;
5844 [badge_ drawInRect:rect];
5847 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5851 UISetColor(commercial_ ? Purple_ : Black_);
5852 [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5854 if (placard_ != nil)
5855 [placard_ drawAtPoint:CGPointMake(width - 52, 11)];
5858 - (void) drawNormalContentRect:(CGRect)rect {
5859 bool highlighted(highlighted_);
5860 float width([self bounds].size.width);
5864 rect.size = [(UIImage *) icon_ size];
5866 while (rect.size.width > 32 || rect.size.height > 32) {
5867 rect.size.width /= 2;
5868 rect.size.height /= 2;
5871 rect.origin.x = 25 - rect.size.width / 2;
5872 rect.origin.y = 25 - rect.size.height / 2;
5874 [icon_ drawInRect:rect];
5877 if (badge_ != nil) {
5879 rect.size = [(UIImage *) badge_ size];
5881 rect.size.width /= 2;
5882 rect.size.height /= 2;
5884 rect.origin.x = 36 - rect.size.width / 2;
5885 rect.origin.y = 36 - rect.size.height / 2;
5887 [badge_ drawInRect:rect];
5890 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5894 UISetColor(commercial_ ? Purple_ : Black_);
5895 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5896 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
5899 UISetColor(commercial_ ? Purplish_ : Gray_);
5900 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:NSLineBreakByTruncatingTail];
5902 if (placard_ != nil)
5903 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5906 - (void) drawContentRect:(CGRect)rect {
5908 [self drawSummaryContentRect:rect];
5910 [self drawNormalContentRect:rect];
5915 /* Section Cell {{{ */
5916 @interface SectionCell : CyteTableViewCell <
5917 CyteTableViewCellDelegate
5919 _H<NSString> basic_;
5920 _H<NSString> section_;
5922 _H<NSString> count_;
5924 _H<UISwitch> switch_;
5928 - (void) setSection:(Section *)section editing:(BOOL)editing;
5932 @implementation SectionCell
5934 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5935 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5936 icon_ = [UIImage applicationImageNamed:@"folder.png"];
5937 // XXX: this initial frame is wrong, but is fixed later
5938 switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease];
5939 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5941 UIView *content([self contentView]);
5942 CGRect bounds([content bounds]);
5944 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5945 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5946 [content addSubview:content_];
5947 [content_ setBackgroundColor:[UIColor whiteColor]];
5949 [content_ setDelegate:self];
5953 - (void) onSwitch:(id)sender {
5954 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
5955 if (metadata == nil) {
5956 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
5957 [Sections_ setObject:metadata forKey:basic_];
5960 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
5964 - (void) setSection:(Section *)section editing:(BOOL)editing {
5965 if (editing != editing_) {
5967 [switch_ removeFromSuperview];
5969 [self addSubview:switch_];
5978 if (section == nil) {
5979 name_ = UCLocalize("ALL_PACKAGES");
5982 basic_ = [section name];
5983 section_ = [section localized];
5985 name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_;
5986 count_ = [NSString stringWithFormat:@"%zd", [section count]];
5989 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
5992 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
5993 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
5995 [content_ setNeedsDisplay];
5998 - (void) setFrame:(CGRect)frame {
5999 [super setFrame:frame];
6001 CGRect rect([switch_ frame]);
6002 [switch_ setFrame:CGRectMake(frame.size.width - rect.size.width - 9, 9, rect.size.width, rect.size.height)];
6005 - (NSString *) accessibilityLabel {
6009 - (void) drawContentRect:(CGRect)rect {
6010 bool highlighted(highlighted_ && !editing_);
6012 [icon_ drawInRect:CGRectMake(7, 7, 32, 32)];
6014 if (highlighted && kCFCoreFoundationVersionNumber < 800)
6017 float width(rect.size.width);
6019 width -= 9 + [switch_ frame].size.width;
6023 [name_ drawAtPoint:CGPointMake(48, 12) forWidth:(width - 58) withFont:Font18_ lineBreakMode:NSLineBreakByTruncatingTail];
6025 CGSize size = [count_ sizeWithFont:Font14_];
6027 UISetColor(Folder_);
6029 [count_ drawAtPoint:CGPointMake(10 + (30 - size.width) / 2, 18) withFont:Font12Bold_];
6035 /* File Table {{{ */
6036 @interface FileTable : CyteViewController <
6037 UITableViewDataSource,
6040 _transient Database *database_;
6041 _H<Package> package_;
6043 _H<NSMutableArray> files_;
6044 _H<UITableView, 2> list_;
6047 - (id) initWithDatabase:(Database *)database;
6048 - (void) setPackage:(Package *)package;
6052 @implementation FileTable
6054 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6055 return files_ == nil ? 0 : [files_ count];
6058 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6062 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6063 static NSString *reuseIdentifier = @"Cell";
6065 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6067 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6068 [cell setFont:[UIFont systemFontOfSize:16]];
6070 [cell setText:[files_ objectAtIndex:indexPath.row]];
6071 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
6076 - (NSURL *) navigationURL {
6077 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
6081 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
6082 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6083 [list_ setRowHeight:24.0f];
6084 [(UITableView *) list_ setDataSource:self];
6085 [list_ setDelegate:self];
6086 [self setView:list_];
6089 - (void) viewDidLoad {
6090 [super viewDidLoad];
6092 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
6095 - (void) releaseSubviews {
6101 [super releaseSubviews];
6104 - (id) initWithDatabase:(Database *)database {
6105 if ((self = [super init]) != nil) {
6106 database_ = database;
6110 - (void) setPackage:(Package *)package {
6114 files_ = [NSMutableArray arrayWithCapacity:32];
6116 if (package != nil) {
6118 name_ = [package id];
6120 if (NSArray *files = [package files])
6121 [files_ addObjectsFromArray:files];
6123 if ([files_ count] != 0) {
6124 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
6125 [files_ removeObjectAtIndex:0];
6126 [files_ sortUsingSelector:@selector(compareByPath:)];
6128 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
6129 [stack addObject:@"/"];
6131 for (int i(0), e([files_ count]); i != e; ++i) {
6132 NSString *file = [files_ objectAtIndex:i];
6133 while (![file hasPrefix:[stack lastObject]])
6134 [stack removeLastObject];
6135 NSString *directory = [stack lastObject];
6136 [stack addObject:[file stringByAppendingString:@"/"]];
6137 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
6138 ([stack count] - 2) * 3, "",
6139 [file substringFromIndex:[directory length]]
6148 - (void) reloadData {
6151 [self setPackage:[database_ packageWithName:name_]];
6156 /* Package Controller {{{ */
6157 @interface CYPackageController : CydiaWebViewController <
6158 UIActionSheetDelegate
6160 _transient Database *database_;
6161 _H<Package> package_;
6164 _H<NSMutableArray> buttons_;
6165 _H<UIBarButtonItem> button_;
6168 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer;
6172 @implementation CYPackageController
6174 - (NSURL *) navigationURL {
6175 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
6178 /* XXX: this is not safe at all... localization of /fail/ */
6179 - (void) _clickButtonWithName:(NSString *)name {
6180 if ([name isEqualToString:UCLocalize("CLEAR")])
6181 [delegate_ clearPackage:package_];
6182 else if ([name isEqualToString:UCLocalize("INSTALL")])
6183 [delegate_ installPackage:package_];
6184 else if ([name isEqualToString:UCLocalize("REINSTALL")])
6185 [delegate_ installPackage:package_];
6186 else if ([name isEqualToString:UCLocalize("REMOVE")])
6187 [delegate_ removePackage:package_];
6188 else if ([name isEqualToString:UCLocalize("UPGRADE")])
6189 [delegate_ installPackage:package_];
6190 else _assert(false);
6193 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
6194 NSString *context([sheet context]);
6196 if ([context isEqualToString:@"modify"]) {
6197 if (button != [sheet cancelButtonIndex]) {
6198 NSString *buttonName = [buttons_ objectAtIndex:button];
6199 [self _clickButtonWithName:buttonName];
6202 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
6206 - (bool) _allowJavaScriptPanel {
6211 - (void) _customButtonClicked {
6212 int count([buttons_ count]);
6217 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
6219 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
6220 [buttons addObjectsFromArray:buttons_];
6222 UIActionSheet *sheet = [[[UIActionSheet alloc]
6225 cancelButtonTitle:nil
6226 destructiveButtonTitle:nil
6227 otherButtonTitles:nil
6230 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
6232 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
6233 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
6235 [sheet setContext:@"modify"];
6237 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
6241 - (void) reloadButtonClicked {
6242 if (commercial_ && function_ == nil && [package_ uninstalled])
6244 [self customButtonClicked];
6247 - (void) applyLoadingTitle {
6248 // Don't show "Loading" as the title. Ever.
6251 - (UIBarButtonItem *) rightButton {
6256 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer {
6257 if ((self = [super init]) != nil) {
6258 database_ = database;
6259 buttons_ = [NSMutableArray arrayWithCapacity:4];
6260 name_ = name == nil ? @"" : [NSString stringWithString:name];
6261 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]] withReferrer:referrer];
6265 - (void) reloadData {
6268 package_ = [database_ packageWithName:name_];
6270 [buttons_ removeAllObjects];
6272 if (package_ != nil) {
6273 [(Package *) package_ parse];
6275 commercial_ = [package_ isCommercial];
6277 if ([package_ mode] != nil)
6278 [buttons_ addObject:UCLocalize("CLEAR")];
6279 if ([package_ source] == nil);
6280 else if ([package_ upgradableAndEssential:NO])
6281 [buttons_ addObject:UCLocalize("UPGRADE")];
6282 else if ([package_ uninstalled])
6283 [buttons_ addObject:UCLocalize("INSTALL")];
6285 [buttons_ addObject:UCLocalize("REINSTALL")];
6286 if (![package_ uninstalled])
6287 [buttons_ addObject:UCLocalize("REMOVE")];
6291 switch ([buttons_ count]) {
6292 case 0: title = nil; break;
6293 case 1: title = [buttons_ objectAtIndex:0]; break;
6294 default: title = UCLocalize("MODIFY"); break;
6297 button_ = [[[UIBarButtonItem alloc]
6299 style:UIBarButtonItemStylePlain
6301 action:@selector(customButtonClicked)
6305 - (bool) isLoading {
6306 return commercial_ ? [super isLoading] : false;
6312 /* Package List Controller {{{ */
6313 @interface PackageListController : CyteViewController <
6314 UITableViewDataSource,
6317 _transient Database *database_;
6319 _H<NSArray> packages_;
6320 _H<NSArray> sections_;
6321 _H<UITableView, 2> list_;
6323 _H<NSArray> thumbs_;
6324 std::vector<NSInteger> offset_;
6326 _H<NSString> title_;
6327 unsigned reloading_;
6330 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6331 - (void) setDelegate:(id)delegate;
6332 - (void) resetCursor;
6335 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages;
6339 @implementation PackageListController
6341 - (NSURL *) referrerURL {
6342 return [self navigationURL];
6345 - (bool) isSummarized {
6349 - (bool) showsSections {
6353 - (void) deselectWithAnimation:(BOOL)animated {
6354 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6357 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6358 CGRect base = [[self view] bounds];
6359 base.size.height -= bounds.size.height;
6360 base.origin = [list_ frame].origin;
6362 [UIView beginAnimations:nil context:NULL];
6363 [UIView setAnimationBeginsFromCurrentState:YES];
6364 [UIView setAnimationCurve:curve];
6365 [UIView setAnimationDuration:duration];
6366 [list_ setFrame:base];
6367 [UIView commitAnimations];
6370 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6371 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6374 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6375 [self resizeForKeyboardBounds:bounds duration:0];
6378 - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification {
6379 if (&UIKeyboardAnimationCurveUserInfoKey == NULL)
6380 *curve = UIViewAnimationCurveEaseInOut;
6382 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve];
6384 if (&UIKeyboardAnimationDurationUserInfoKey == NULL)
6387 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration];
6390 - (void) keyboardWillShow:(NSNotification *)notification {
6393 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6394 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er];
6396 NSTimeInterval duration;
6397 UIViewAnimationCurve curve;
6398 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6400 CGRect kbframe = CGRectMake(round(center.x - bounds.size.width / 2.0), round(center.y - bounds.size.height / 2.0), bounds.size.width, bounds.size.height);
6401 UIViewController *base = self;
6402 while ([base parentOrPresentingViewController] != nil)
6403 base = [base parentOrPresentingViewController];
6404 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6405 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6407 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6408 intersection.size.height += CYStatusBarHeight();
6410 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6413 - (void) keyboardWillHide:(NSNotification *)notification {
6414 NSTimeInterval duration;
6415 UIViewAnimationCurve curve;
6416 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6418 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6421 - (void) viewWillAppear:(BOOL)animated {
6422 [super viewWillAppear:animated];
6424 [self resizeForKeyboardBounds:CGRectZero];
6425 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6426 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6429 - (void) viewWillDisappear:(BOOL)animated {
6430 [super viewWillDisappear:animated];
6432 [self resizeForKeyboardBounds:CGRectZero];
6433 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6434 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6437 - (void) viewDidAppear:(BOOL)animated {
6438 [super viewDidAppear:animated];
6439 [self deselectWithAnimation:animated];
6442 - (void) didSelectPackage:(Package *)package {
6443 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id] withReferrer:[[self referrerURL] absoluteString]] autorelease]);
6444 [view setDelegate:delegate_];
6445 [[self navigationController] pushViewController:view animated:YES];
6448 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6449 NSInteger count([sections_ count]);
6450 return count == 0 ? 1 : count;
6453 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6454 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6456 return [[sections_ objectAtIndex:section] name];
6459 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6460 if ([sections_ count] == 0)
6462 return [[sections_ objectAtIndex:section] count];
6465 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6466 @synchronized (database_) {
6467 if ([database_ era] != era_)
6470 Section *section([sections_ objectAtIndex:[path section]]);
6471 NSInteger row([path row]);
6472 Package *package([packages_ objectAtIndex:([section row] + row)]);
6473 return [[package retain] autorelease];
6476 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6477 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6479 cell = [[[PackageCell alloc] init] autorelease];
6481 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
6482 [cell setPackage:package asSummary:[self isSummarized]];
6486 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6487 Package *package([self packageAtIndexPath:path]);
6488 package = [database_ packageWithName:[package id]];
6489 [self didSelectPackage:package];
6492 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6496 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6497 return offset_[index];
6500 - (void) updateHeight {
6501 [list_ setRowHeight:([self isSummarized] ? 38 : 73)];
6504 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6505 if ((self = [super init]) != nil) {
6506 database_ = database;
6507 title_ = [title copy];
6508 [[self navigationItem] setTitle:title_];
6513 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
6514 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
6515 [self setView:view];
6517 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
6518 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6519 [view addSubview:list_];
6521 // XXX: is 20 the most optimal number here?
6522 [list_ setSectionIndexMinimumDisplayRowCount:20];
6524 [(UITableView *) list_ setDataSource:self];
6525 [list_ setDelegate:self];
6527 [self updateHeight];
6530 - (void) releaseSubviews {
6539 [super releaseSubviews];
6542 - (void) setDelegate:(id)delegate {
6543 delegate_ = delegate;
6546 - (bool) shouldYield {
6550 - (bool) shouldBlock {
6554 - (NSMutableArray *) _reloadPackages {
6555 @synchronized (database_) {
6556 era_ = [database_ era];
6557 NSArray *packages([database_ packages]);
6559 return [NSMutableArray arrayWithArray:packages];
6562 - (void) _reloadData {
6563 if (reloading_ != 0) {
6568 NSMutableArray *packages;
6571 if ([self shouldYield]) {
6575 if (![self shouldBlock])
6578 hud = [delegate_ addProgressHUD];
6579 [hud setText:UCLocalize("LOADING")];
6583 packages = [self yieldToSelector:@selector(_reloadPackages)];
6586 [delegate_ removeProgressHUD:hud];
6587 } while (reloading_ == 2);
6589 packages = [self _reloadPackages];
6592 @synchronized (database_) {
6593 if (era_ != [database_ era])
6600 packages_ = packages;
6602 if ([self showsSections])
6603 sections_ = [self sectionsForPackages:packages];
6605 Section *section([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6606 [section setCount:[packages_ count]];
6607 sections_ = [NSArray arrayWithObject:section];
6610 [self updateHeight];
6612 _profile(PackageTable$reloadData$List)
6613 [(UITableView *) list_ setDataSource:self];
6621 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
6622 Section *prefix([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6623 size_t end([packages count]);
6625 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
6626 Section *section(prefix);
6628 thumbs_ = CollationThumbs_;
6629 offset_ = CollationOffset_;
6632 size_t offsets([CollationStarts_ count]);
6634 NSString *start([CollationStarts_ objectAtIndex:offset]);
6635 size_t length([start length]);
6637 for (size_t index(0); index != end; ++index) {
6639 Package *package([packages objectAtIndex:index]);
6640 NSString *name(PackageName(package, @selector(cyname)));
6642 //while ([start compare:name options:NSNumericSearch range:NSMakeRange(0, length) locale:CollationLocale_] != NSOrderedDescending) {
6643 while (StringNameCompare(start, name, length) != kCFCompareGreaterThan) {
6644 NSString *title([CollationTitles_ objectAtIndex:offset]);
6645 section = [[[Section alloc] initWithName:title row:index localize:NO] autorelease];
6646 [sections addObject:section];
6648 start = ++offset == offsets ? nil : [CollationStarts_ objectAtIndex:offset];
6651 length = [start length];
6655 [section addToCount];
6658 for (; offset != offsets; ++offset) {
6659 NSString *title([CollationTitles_ objectAtIndex:offset]);
6660 Section *section([[[Section alloc] initWithName:title row:end localize:NO] autorelease]);
6661 [sections addObject:section];
6664 if ([prefix count] != 0) {
6665 Section *suffix([sections lastObject]);
6666 [prefix setName:[suffix name]];
6667 [suffix setName:nil];
6668 [sections insertObject:prefix atIndex:(offsets - 1)];
6674 - (void) reloadData {
6677 if ([self shouldYield])
6678 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
6683 - (void) resetCursor {
6684 [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
6687 - (void) clearData {
6688 [self updateHeight];
6690 [list_ setDataSource:nil];
6698 /* Filtered Package List Controller {{{ */
6699 typedef Function<bool, Package *> PackageFilter;
6700 typedef Function<void, NSMutableArray *> PackageSorter;
6701 @interface FilteredPackageListController : PackageListController {
6702 PackageFilter filter_;
6703 PackageSorter sorter_;
6706 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter;
6708 - (void) setFilter:(PackageFilter)filter;
6709 - (void) setSorter:(PackageSorter)sorter;
6713 @implementation FilteredPackageListController
6715 - (void) setFilter:(PackageFilter)filter {
6716 @synchronized (self) {
6720 - (void) setSorter:(PackageSorter)sorter {
6721 @synchronized (self) {
6725 - (NSMutableArray *) _reloadPackages {
6726 @synchronized (database_) {
6727 era_ = [database_ era];
6729 NSArray *packages([database_ packages]);
6730 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
6732 PackageFilter filter;
6733 PackageSorter sorter;
6735 @synchronized (self) {
6740 _profile(PackageTable$reloadData$Filter)
6741 for (Package *package in packages)
6742 if ([package valid] && filter(package))
6743 [filtered addObject:package];
6751 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter {
6752 if ((self = [super initWithDatabase:database title:title]) != nil) {
6753 [self setFilter:filter];
6760 /* Home Controller {{{ */
6761 @interface HomeController : CydiaWebViewController {
6762 CFRunLoopRef runloop_;
6763 SCNetworkReachabilityRef reachability_;
6768 @implementation HomeController
6770 static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachability, SCNetworkReachabilityFlags flags, void *info) {
6771 [(HomeController *) info dispatchEvent:@"CydiaReachabilityCallback"];
6775 if ((self = [super init]) != nil) {
6776 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6779 reachability_ = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "cydia.saurik.com");
6780 if (reachability_ != NULL) {
6781 SCNetworkReachabilityContext context = {0, self, NULL, NULL, NULL};
6782 SCNetworkReachabilitySetCallback(reachability_, HomeControllerReachabilityCallback, &context);
6784 CFRunLoopRef runloop(CFRunLoopGetCurrent());
6785 if (SCNetworkReachabilityScheduleWithRunLoop(reachability_, runloop, kCFRunLoopDefaultMode))
6792 if (reachability_ != NULL && runloop_ != NULL)
6793 SCNetworkReachabilityUnscheduleFromRunLoop(reachability_, runloop_, kCFRunLoopDefaultMode);
6797 - (NSURL *) navigationURL {
6798 return [NSURL URLWithString:@"cydia://home"];
6801 - (void) aboutButtonClicked {
6802 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6804 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6805 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6806 [alert setCancelButtonIndex:0];
6809 @"Copyright \u00a9 2008-2013\n"
6812 "Jay Freeman (saurik)\n"
6813 "saurik@saurik.com\n"
6814 "http://www.saurik.com/"
6820 - (UIBarButtonItem *) leftButton {
6821 return [[[UIBarButtonItem alloc]
6822 initWithTitle:UCLocalize("ABOUT")
6823 style:UIBarButtonItemStylePlain
6825 action:@selector(aboutButtonClicked)
6832 /* Cydia Navigation Controller Interface {{{ */
6833 @interface UINavigationController (Cydia)
6835 - (NSArray *) navigationURLCollection;
6836 - (void) unloadData;
6841 /* Cydia Tab Bar Controller {{{ */
6842 @interface CydiaTabBarController : CyteTabBarController <
6843 UITabBarControllerDelegate,
6846 _transient Database *database_;
6848 _H<UIActivityIndicatorView> indicator_;
6851 // XXX: ok, "updatedelegate_"?...
6852 _transient NSObject<CydiaDelegate> *updatedelegate_;
6855 - (NSArray *) navigationURLCollection;
6856 - (void) beginUpdate;
6861 @implementation CydiaTabBarController
6863 - (NSArray *) navigationURLCollection {
6864 NSMutableArray *items([NSMutableArray array]);
6866 // XXX: Should this deal with transient view controllers?
6867 for (id navigation in [self viewControllers]) {
6868 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6870 [items addObject:stack];
6876 - (id) initWithDatabase:(Database *)database {
6877 if ((self = [super init]) != nil) {
6878 database_ = database;
6879 [self setDelegate:self];
6881 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteTiny] autorelease];
6882 [indicator_ setOrigin:CGPointMake(kCFCoreFoundationVersionNumber >= 800 ? 2 : 4, 2)];
6884 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6888 - (void) setUpdate:(NSDate *)date {
6892 - (void) beginUpdate {
6896 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6897 UITabBarItem *item([controller tabBarItem]);
6899 [item setBadgeValue:@""];
6900 UIView *badge(MSHookIvar<UIView *>([item view], "_badge"));
6902 [indicator_ startAnimating];
6903 [badge addSubview:indicator_];
6905 [updatedelegate_ retainNetworkActivityIndicator];
6909 detachNewThreadSelector:@selector(performUpdate)
6915 - (void) performUpdate {
6916 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
6918 SourceStatus status(self, database_);
6919 [database_ updateWithStatus:status];
6922 performSelectorOnMainThread:@selector(completeUpdate)
6930 - (void) stopUpdateWithSelector:(SEL)selector {
6932 [updatedelegate_ releaseNetworkActivityIndicator];
6934 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6935 [[controller tabBarItem] setBadgeValue:nil];
6937 [indicator_ removeFromSuperview];
6938 [indicator_ stopAnimating];
6940 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6943 - (void) completeUpdate {
6946 [self stopUpdateWithSelector:@selector(reloadData)];
6949 - (void) cancelUpdate {
6950 [self stopUpdateWithSelector:@selector(updateDataAndLoad)];
6953 - (void) cancelPressed {
6954 [self cancelUpdate];
6961 - (bool) isSourceCancelled {
6965 - (void) startSourceFetch:(NSString *)uri {
6968 - (void) stopSourceFetch:(NSString *)uri {
6971 - (void) setUpdateDelegate:(id)delegate {
6972 updatedelegate_ = delegate;
6975 - (UIView *) transitionView {
6976 if (![self respondsToSelector:@selector(_transitionView)])
6977 return MSHookIvar<id>(self, "_viewControllerTransitionView");
6978 else if (kCFCoreFoundationVersionNumber < 800)
6979 return [self _transitionView];
6981 return [[[self _transitionView] superview] superview];
6987 /* Cydia Navigation Controller Implementation {{{ */
6988 @implementation UINavigationController (Cydia)
6990 - (NSArray *) navigationURLCollection {
6991 NSMutableArray *stack([NSMutableArray array]);
6993 for (CyteViewController *controller in [self viewControllers]) {
6994 NSString *url = [[controller navigationURL] absoluteString];
6996 [stack addObject:url];
7002 - (void) reloadData {
7005 UIViewController *visible([self visibleViewController]);
7007 [visible reloadData];
7009 // on the iPad, this view controller is ALSO visible. :(
7011 if (UIViewController *top = [self topViewController])
7016 - (void) unloadData {
7017 for (CyteViewController *page in [self viewControllers])
7026 /* Cydia:// Protocol {{{ */
7027 @interface CydiaURLProtocol : NSURLProtocol {
7032 @implementation CydiaURLProtocol
7034 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7035 NSURL *url([request URL]);
7039 NSString *scheme([[url scheme] lowercaseString]);
7040 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7042 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7048 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7052 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7053 id<NSURLProtocolClient> client([self client]);
7055 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7057 NSData *data(UIImagePNGRepresentation(icon));
7059 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7060 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7061 [client URLProtocol:self didLoadData:data];
7062 [client URLProtocolDidFinishLoading:self];
7066 - (void) startLoading {
7067 id<NSURLProtocolClient> client([self client]);
7068 NSURLRequest *request([self request]);
7070 NSURL *url([request URL]);
7071 NSString *href([url absoluteString]);
7072 NSString *scheme([[url scheme] lowercaseString]);
7076 if ([scheme isEqualToString:@"cydia"])
7077 path = [href substringFromIndex:8];
7078 else if ([scheme isEqualToString:@"about"])
7079 path = [href substringFromIndex:12];
7080 else _assert(false);
7082 NSRange slash([path rangeOfString:@"/"]);
7085 if (slash.location == NSNotFound) {
7089 command = [path substringToIndex:slash.location];
7090 path = [path substringFromIndex:(slash.location + 1)];
7093 Database *database([Database sharedInstance]);
7095 if ([command isEqualToString:@"package-icon"]) {
7098 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7099 Package *package([database packageWithName:path]);
7103 UIImage *icon([package icon]);
7104 [self _returnPNGWithImage:icon forRequest:request];
7105 } else if ([command isEqualToString:@"uikit-image"]) {
7108 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7109 UIImage *icon(_UIImageWithName(path));
7110 [self _returnPNGWithImage:icon forRequest:request];
7111 } else if ([command isEqualToString:@"section-icon"]) {
7114 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7115 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]);
7117 icon = [UIImage applicationImageNamed:@"unknown.png"];
7118 [self _returnPNGWithImage:icon forRequest:request];
7120 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7124 - (void) stopLoading {
7130 /* Section Controller {{{ */
7131 @interface SectionController : FilteredPackageListController {
7133 _H<NSString> section_;
7136 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section;
7140 @implementation SectionController
7142 - (NSURL *) referrerURL {
7143 NSString *name(section_);
7144 name = name ?: @"*";
7145 NSString *key(key_);
7147 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/sections/%@/%@", UI_, [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7150 - (NSURL *) navigationURL {
7151 NSString *name(section_);
7152 name = name ?: @"*";
7153 NSString *key(key_);
7155 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@/%@", [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7158 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section {
7161 title = UCLocalize("ALL_PACKAGES");
7162 else if (![section isEqual:@""])
7163 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(section) value:nil table:@"Sections"];
7165 title = UCLocalize("NO_SECTION");
7167 if ((self = [super initWithDatabase:database title:title]) != nil) {
7168 key_ = [source key];
7173 - (void) reloadData {
7174 Source *source([database_ sourceWithKey:key_]);
7175 _H<NSString> name(section_);
7177 [self setFilter:[=](Package *package) {
7178 NSString *section([package section]);
7182 section == nil && [name length] == 0 ||
7183 [name isEqualToString:section]
7186 [package source] == source
7187 ) && [package visible];
7195 /* Sections Controller {{{ */
7196 @interface SectionsController : CyteViewController <
7197 UITableViewDataSource,
7200 _transient Database *database_;
7202 _H<NSMutableArray> sections_;
7203 _H<NSMutableArray> filtered_;
7204 _H<UITableView, 2> list_;
7207 - (id) initWithDatabase:(Database *)database source:(Source *)source;
7208 - (void) editButtonClicked;
7212 @implementation SectionsController
7214 - (NSURL *) navigationURL {
7215 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]];
7218 - (Source *) source {
7221 return [database_ sourceWithKey:key_];
7224 - (void) updateNavigationItem {
7225 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7226 if ([sections_ count] == 0) {
7227 [[self navigationItem] setRightBarButtonItem:nil];
7229 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7230 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7232 action:@selector(editButtonClicked)
7233 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7237 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7238 [super setEditing:editing animated:animated];
7243 [delegate_ updateData];
7245 [self updateNavigationItem];
7248 - (void) viewDidAppear:(BOOL)animated {
7249 [super viewDidAppear:animated];
7250 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7253 - (void) viewWillDisappear:(BOOL)animated {
7254 [super viewWillDisappear:animated];
7255 [self setEditing:NO];
7258 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7259 Section *section = nil;
7260 int index = [indexPath row];
7261 if (![self isEditing]) {
7264 section = [filtered_ objectAtIndex:index];
7266 section = [sections_ objectAtIndex:index];
7271 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7272 if ([self isEditing])
7273 return [sections_ count];
7275 return [filtered_ count] + 1;
7278 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7282 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7283 static NSString *reuseIdentifier = @"SectionCell";
7285 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7287 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7289 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7294 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7295 if ([self isEditing])
7298 Section *section = [self sectionAtIndexPath:indexPath];
7300 SectionController *controller = [[[SectionController alloc]
7301 initWithDatabase:database_
7302 source:[self source]
7303 section:[section name]
7305 [controller setDelegate:delegate_];
7307 [[self navigationController] pushViewController:controller animated:YES];
7311 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
7312 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7313 [list_ setRowHeight:46];
7314 [(UITableView *) list_ setDataSource:self];
7315 [list_ setDelegate:self];
7316 [self setView:list_];
7319 - (void) viewDidLoad {
7320 [super viewDidLoad];
7322 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7325 - (void) releaseSubviews {
7331 [super releaseSubviews];
7334 - (id) initWithDatabase:(Database *)database source:(Source *)source {
7335 if ((self = [super init]) != nil) {
7336 database_ = database;
7337 key_ = [source key];
7341 - (void) reloadData {
7344 NSArray *packages = [database_ packages];
7346 sections_ = [NSMutableArray arrayWithCapacity:16];
7347 filtered_ = [NSMutableArray arrayWithCapacity:16];
7349 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7351 Source *source([self source]);
7354 for (Package *package in packages) {
7355 if (source != nil && [package source] != source)
7358 NSString *name([package section]);
7359 NSString *key(name == nil ? @"" : name);
7363 _profile(SectionsView$reloadData$Section)
7364 section = [sections objectForKey:key];
7365 if (section == nil) {
7366 _profile(SectionsView$reloadData$Section$Allocate)
7367 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7368 [sections setObject:section forKey:key];
7373 [section addToCount];
7375 _profile(SectionsView$reloadData$Filter)
7376 if (![package valid] || ![package visible])
7384 [sections_ addObjectsFromArray:[sections allValues]];
7386 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7388 for (Section *section in (id) sections_) {
7389 size_t count([section row]);
7393 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7394 [section setCount:count];
7395 [filtered_ addObject:section];
7398 [self updateNavigationItem];
7403 - (void) editButtonClicked {
7404 [self setEditing:![self isEditing] animated:YES];
7410 /* Changes Controller {{{ */
7411 @interface ChangesController : FilteredPackageListController {
7415 - (id) initWithDatabase:(Database *)database;
7419 @implementation ChangesController
7421 - (NSURL *) referrerURL {
7422 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/changes/", UI_]];
7425 - (NSURL *) navigationURL {
7426 return [NSURL URLWithString:@"cydia://changes"];
7429 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7430 @synchronized (database_) {
7431 if ([database_ era] != era_)
7434 NSUInteger sectionIndex([path section]);
7435 if (sectionIndex >= [sections_ count])
7437 Section *section([sections_ objectAtIndex:sectionIndex]);
7438 NSInteger row([path row]);
7439 return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease];
7442 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
7443 NSString *context([alert context]);
7445 if ([context isEqualToString:@"norefresh"])
7446 [alert dismissWithClickedButtonIndex:-1 animated:YES];
7449 - (void) setLeftBarButtonItem {
7450 if ([delegate_ updating])
7451 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7452 initWithTitle:UCLocalize("CANCEL")
7453 style:UIBarButtonItemStyleDone
7455 action:@selector(cancelButtonClicked)
7456 ] autorelease] animated:YES];
7458 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7459 initWithTitle:UCLocalize("REFRESH")
7460 style:UIBarButtonItemStylePlain
7462 action:@selector(refreshButtonClicked)
7463 ] autorelease] animated:YES];
7466 - (void) refreshButtonClicked {
7467 if ([delegate_ requestUpdate])
7468 [self setLeftBarButtonItem];
7471 - (void) cancelButtonClicked {
7472 [delegate_ cancelUpdate];
7475 - (void) upgradeButtonClicked {
7476 [delegate_ distUpgrade];
7477 [[self navigationItem] setRightBarButtonItem:nil animated:YES];
7480 - (bool) shouldYield {
7484 - (bool) shouldBlock {
7488 - (void) useFilter {
7489 @synchronized (self) {
7490 [self setFilter:[](Package *package) {
7491 return [package upgradableAndEssential:YES] || [package visible];
7494 [self setSorter:[](NSMutableArray *packages) {
7495 [packages radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL];
7499 - (id) initWithDatabase:(Database *)database {
7500 if ((self = [super initWithDatabase:database title:UCLocalize("CHANGES")]) != nil) {
7505 - (void) viewDidLoad {
7506 [super viewDidLoad];
7507 [self setLeftBarButtonItem];
7510 - (void) viewWillAppear:(BOOL)animated {
7511 [super viewWillAppear:animated];
7512 [self setLeftBarButtonItem];
7515 - (void) reloadData {
7516 [self setLeftBarButtonItem];
7520 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
7521 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
7523 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7524 Section *ignored = nil;
7525 Section *section = nil;
7529 bool unseens = false;
7531 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7533 for (size_t offset = 0, count = [packages count]; offset != count; ++offset) {
7534 Package *package = [packages objectAtIndex:offset];
7536 BOOL uae = [package upgradableAndEssential:YES];
7540 time_t seen([package seen]);
7542 if (section == nil || last != seen) {
7546 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7549 _profile(ChangesController$reloadData$Allocate)
7550 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7551 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7552 [sections addObject:section];
7556 [section addToCount];
7557 } else if ([package ignored]) {
7558 if (ignored == nil) {
7559 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7561 [ignored addToCount];
7564 [upgradable addToCount];
7569 CFRelease(formatter);
7572 Section *last = [sections lastObject];
7573 size_t count = [last count];
7574 [packages removeObjectsInRange:NSMakeRange([packages count] - count, count)];
7575 [sections removeLastObject];
7578 if ([ignored count] != 0)
7579 [sections insertObject:ignored atIndex:0];
7581 [sections insertObject:upgradable atIndex:0];
7585 [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc]
7586 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7587 style:UIBarButtonItemStylePlain
7589 action:@selector(upgradeButtonClicked)
7590 ] autorelease]) animated:YES];
7597 /* Search Controller {{{ */
7598 @interface SearchController : FilteredPackageListController <
7601 _H<UISearchBar, 1> search_;
7606 - (id) initWithDatabase:(Database *)database query:(NSString *)query;
7607 - (void) reloadData;
7611 @implementation SearchController
7613 - (NSURL *) referrerURL {
7614 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/search?q=%@", UI_, [([search_ text] ?: @"") stringByAddingPercentEscapesIncludingReserved]]];
7617 - (NSURL *) navigationURL {
7618 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7619 return [NSURL URLWithString:@"cydia://search"];
7621 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [[search_ text] stringByAddingPercentEscapesIncludingReserved]]];
7624 - (NSArray *) termsForQuery:(NSString *)query {
7625 NSMutableArray *terms([NSMutableArray arrayWithCapacity:2]);
7626 for (NSString *component in [query componentsSeparatedByString:@" "])
7627 if ([component length] != 0)
7628 [terms addObject:component];
7633 - (void) useSearch {
7634 _H<NSArray> query([self termsForQuery:[search_ text]]);
7637 @synchronized (self) {
7638 [self setFilter:[=](Package *package) {
7639 if (![package unfiltered])
7641 if (![package matches:query])
7646 [self setSorter:[](NSMutableArray *packages) {
7647 [packages radixSortUsingSelector:@selector(rank)];
7655 - (void) usePrefix:(NSString *)prefix {
7656 _H<NSString> query(prefix);
7659 @synchronized (self) {
7660 [self setFilter:[=](Package *package) {
7661 if ([query length] == 0)
7663 if (![package unfiltered])
7665 if ([[package name] compare:query options:MatchCompareOptions_ range:NSMakeRange(0, [query length])] != NSOrderedSame)
7670 [self setSorter:nullptr];
7676 - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
7678 [self usePrefix:[search_ text]];
7681 - (void) searchBarButtonClicked:(UISearchBar *)searchBar {
7682 [search_ resignFirstResponder];
7686 - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar {
7687 [search_ setText:@""];
7688 [self searchBarButtonClicked:searchBar];
7691 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7692 [self searchBarButtonClicked:searchBar];
7695 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7696 [self usePrefix:text];
7699 - (bool) shouldYield {
7703 - (bool) shouldBlock {
7707 - (bool) isSummarized {
7711 - (bool) showsSections {
7715 - (id) initWithDatabase:(Database *)database query:(NSString *)query {
7716 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH")])) {
7717 search_ = [[[UISearchBar alloc] init] autorelease];
7718 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7719 [search_ setDelegate:self];
7721 UITextField *textField;
7722 if ([search_ respondsToSelector:@selector(searchField)])
7723 textField = [search_ searchField];
7725 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7727 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7728 [textField setEnablesReturnKeyAutomatically:NO];
7729 [[self navigationItem] setTitleView:textField];
7732 [search_ setText:query];
7737 - (void) viewDidAppear:(BOOL)animated {
7738 [super viewDidAppear:animated];
7740 if (!searchloaded_) {
7741 searchloaded_ = YES;
7742 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7743 [search_ layoutSubviews];
7746 if ([self isSummarized])
7747 [search_ becomeFirstResponder];
7750 - (void) reloadData {
7755 - (void) didSelectPackage:(Package *)package {
7756 [search_ resignFirstResponder];
7757 [super didSelectPackage:package];
7762 /* Package Settings Controller {{{ */
7763 @interface PackageSettingsController : CyteViewController <
7764 UITableViewDataSource,
7767 _transient Database *database_;
7769 _H<Package> package_;
7770 _H<UITableView, 2> table_;
7771 _H<UISwitch> subscribedSwitch_;
7772 _H<UISwitch> ignoredSwitch_;
7773 _H<UITableViewCell> subscribedCell_;
7774 _H<UITableViewCell> ignoredCell_;
7777 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7781 @implementation PackageSettingsController
7783 - (NSURL *) navigationURL {
7784 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]];
7787 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7788 if (package_ == nil)
7791 if ([package_ installed] == nil)
7797 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7798 if (package_ == nil)
7801 // both sections contain just one item right now.
7805 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7809 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7811 return UCLocalize("SHOW_ALL_CHANGES_EX");
7813 return UCLocalize("IGNORE_UPGRADES_EX");
7816 - (void) onSubscribed:(id)control {
7817 bool value([control isOn]);
7818 if (package_ == nil)
7820 if ([package_ setSubscribed:value])
7821 [delegate_ updateData];
7824 - (void) _updateIgnored {
7825 const char *package([name_ UTF8String]);
7826 bool on([ignoredSwitch_ isOn]);
7828 pid_t pid(ExecFork());
7830 FILE *dpkg(popen("dpkg --set-selections", "w"));
7831 fwrite(package, strlen(package), 1, dpkg);
7834 fwrite(" hold\n", 6, 1, dpkg);
7836 fwrite(" install\n", 9, 1, dpkg);
7844 - (void) onIgnored:(id)control {
7845 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7846 [invocation setTarget:self];
7847 [invocation setSelector:@selector(_updateIgnored)];
7849 [delegate_ reloadDataWithInvocation:invocation];
7852 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7853 if (package_ == nil)
7856 switch ([indexPath section]) {
7857 case 0: return subscribedCell_;
7858 case 1: return ignoredCell_;
7867 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
7868 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
7869 [self setView:view];
7871 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
7872 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7873 [(UITableView *) table_ setDataSource:self];
7874 [table_ setDelegate:self];
7875 [view addSubview:table_];
7877 subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7878 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7879 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7881 ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7882 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7883 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7885 subscribedCell_ = [[[UITableViewCell alloc] init] autorelease];
7886 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7887 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7888 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7890 ignoredCell_ = [[[UITableViewCell alloc] init] autorelease];
7891 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7892 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7893 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7896 - (void) viewDidLoad {
7897 [super viewDidLoad];
7899 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7902 - (void) releaseSubviews {
7904 subscribedCell_ = nil;
7906 ignoredSwitch_ = nil;
7907 subscribedSwitch_ = nil;
7909 [super releaseSubviews];
7912 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7913 if ((self = [super init]) != nil) {
7914 database_ = database;
7919 - (void) reloadData {
7922 package_ = [database_ packageWithName:name_];
7924 if (package_ != nil) {
7925 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7926 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7927 } // XXX: what now, G?
7929 [table_ reloadData];
7935 /* Installed Controller {{{ */
7936 @interface InstalledController : FilteredPackageListController {
7940 - (id) initWithDatabase:(Database *)database;
7941 - (void) queueStatusDidChange;
7945 @implementation InstalledController
7947 - (NSURL *) referrerURL {
7948 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/installed/", UI_]];
7951 - (NSURL *) navigationURL {
7952 return [NSURL URLWithString:@"cydia://installed"];
7955 - (void) useUpdated {
7958 @synchronized (self) {
7959 [self setFilter:[](Package *package) {
7960 return ![package uninstalled] && package->role_ < 7;
7963 [self setSorter:[](NSMutableArray *packages) {
7964 [packages radixSortUsingSelector:@selector(updatedRadix)];
7968 - (void) useFilter:(UISegmentedControl *)segmented {
7969 NSInteger selected([segmented selectedSegmentIndex]);
7971 return [self useUpdated];
7972 bool simple(selected == 0);
7975 @synchronized (self) {
7976 [self setFilter:[=](Package *package) {
7977 return ![package uninstalled] && package->role_ <= (simple ? 1 : 3);
7980 [self setSorter:nullptr];
7983 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
7985 return [super sectionsForPackages:packages];
7987 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterLongStyle, kCFDateFormatterNoStyle));
7989 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
7995 for (size_t offset(0), count([packages count]); offset != count; ++offset) {
7996 Package *package([packages objectAtIndex:offset]);
7998 time_t updated([package updated]);
7999 updated -= updated % (60 * 60 * 24);
8001 if (updated != last) {
8005 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:updated]);
8008 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
8009 [sections addObject:section];
8012 [section addToCount];
8015 CFRelease(formatter);
8019 - (id) initWithDatabase:(Database *)database {
8020 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED")]) != nil) {
8021 UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("USER"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]);
8022 [segmented setSelectedSegmentIndex:0];
8023 [segmented setSegmentedControlStyle:UISegmentedControlStyleBar];
8024 [[self navigationItem] setTitleView:segmented];
8026 [segmented addTarget:self action:@selector(modeChanged:) forEvents:UIControlEventValueChanged];
8027 [self useFilter:segmented];
8029 [self queueStatusDidChange];
8034 - (void) queueButtonClicked {
8039 - (void) queueStatusDidChange {
8042 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8043 initWithTitle:UCLocalize("QUEUE")
8044 style:UIBarButtonItemStyleDone
8046 action:@selector(queueButtonClicked)
8049 [[self navigationItem] setLeftBarButtonItem:nil];
8054 - (void) modeChanged:(UISegmentedControl *)segmented {
8055 [self useFilter:segmented];
8062 /* Source Cell {{{ */
8063 @interface SourceCell : CyteTableViewCell <
8064 CyteTableViewCellDelegate,
8067 _H<Source, 1> source_;
8070 _H<NSString> origin_;
8071 _H<NSString> label_;
8072 _H<UIActivityIndicatorView> indicator_;
8075 - (void) setSource:(Source *)source;
8076 - (void) setFetch:(NSNumber *)fetch;
8080 @implementation SourceCell
8082 - (void) _setImage:(NSArray *)data {
8083 if ([url_ isEqual:[data objectAtIndex:0]]) {
8084 icon_ = [data objectAtIndex:1];
8085 [content_ setNeedsDisplay];
8089 - (void) _setSource:(NSURL *) url {
8090 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
8092 if (NSData *data = [NSURLConnection
8093 sendSynchronousRequest:[NSURLRequest
8095 cachePolicy:NSURLRequestUseProtocolCachePolicy
8099 returningResponse:NULL
8102 if (UIImage *image = [UIImage imageWithData:data])
8103 [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO];
8108 - (void) setSource:(Source *)source {
8110 [source_ setDelegate:self];
8112 [self setFetch:[NSNumber numberWithBool:[source_ fetch]]];
8114 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
8116 origin_ = [source name];
8117 label_ = [source rooturi];
8119 [content_ setNeedsDisplay];
8121 url_ = [source iconURL];
8122 [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_];
8125 - (void) setAllSource {
8127 [indicator_ stopAnimating];
8129 icon_ = [UIImage applicationImageNamed:@"folder.png"];
8130 origin_ = UCLocalize("ALL_SOURCES");
8131 label_ = UCLocalize("ALL_SOURCES_EX");
8132 [content_ setNeedsDisplay];
8135 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8136 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8137 UIView *content([self contentView]);
8138 CGRect bounds([content bounds]);
8140 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
8141 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8142 [content_ setBackgroundColor:[UIColor whiteColor]];
8143 [content addSubview:content_];
8145 [content_ setDelegate:self];
8146 [content_ setOpaque:YES];
8148 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGraySmall] autorelease];
8149 [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin];// | UIViewAutoresizingFlexibleBottomMargin];
8150 [content addSubview:indicator_];
8152 [[content_ layer] setContentsGravity:kCAGravityTopLeft];
8156 - (void) layoutSubviews {
8157 [super layoutSubviews];
8159 UIView *content([self contentView]);
8160 CGRect bounds([content bounds]);
8162 CGRect frame([indicator_ frame]);
8163 frame.origin.x = bounds.size.width - frame.size.width;
8164 frame.origin.y = (bounds.size.height - frame.size.height) / 2;
8166 if (kCFCoreFoundationVersionNumber < 800)
8167 frame.origin.x -= 8;
8168 [indicator_ setFrame:frame];
8171 - (NSString *) accessibilityLabel {
8175 - (void) drawContentRect:(CGRect)rect {
8176 bool highlighted(highlighted_);
8177 float width(rect.size.width);
8181 rect.size = [(UIImage *) icon_ size];
8183 while (rect.size.width > 32 || rect.size.height > 32) {
8184 rect.size.width /= 2;
8185 rect.size.height /= 2;
8188 rect.origin.x = 26 - rect.size.width / 2;
8189 rect.origin.y = 26 - rect.size.height / 2;
8191 [icon_ drawInRect:rect];
8194 if (highlighted && kCFCoreFoundationVersionNumber < 800)
8199 [origin_ drawAtPoint:CGPointMake(52, 8) forWidth:(width - 61) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
8203 [label_ drawAtPoint:CGPointMake(52, 29) forWidth:(width - 61) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
8206 - (void) setFetch:(NSNumber *)fetch {
8207 if ([fetch boolValue])
8208 [indicator_ startAnimating];
8210 [indicator_ stopAnimating];
8215 /* Sources Controller {{{ */
8216 @interface SourcesController : CyteViewController <
8217 UITableViewDataSource,
8220 _transient Database *database_;
8223 _H<UITableView, 2> list_;
8224 _H<NSMutableArray> sources_;
8228 _H<UIProgressHUD> hud_;
8231 NSURLConnection *trivial_bz2_;
8232 NSURLConnection *trivial_gz_;
8237 - (id) initWithDatabase:(Database *)database;
8238 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated;
8242 @implementation SourcesController
8244 - (void) _releaseConnection:(NSURLConnection *)connection {
8245 if (connection != nil) {
8246 [connection cancel];
8247 //[connection setDelegate:nil];
8248 [connection release];
8253 [self _releaseConnection:trivial_gz_];
8254 [self _releaseConnection:trivial_bz2_];
8259 - (NSURL *) navigationURL {
8260 return [NSURL URLWithString:@"cydia://sources"];
8263 - (void) viewDidAppear:(BOOL)animated {
8264 [super viewDidAppear:animated];
8265 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8268 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8272 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8274 return UCLocalize("INDIVIDUAL_SOURCES");
8278 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8281 case 1: return [sources_ count];
8286 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8287 @synchronized (database_) {
8288 if ([database_ era] != era_)
8290 if ([indexPath section] != 1)
8292 NSUInteger index([indexPath row]);
8293 if (index >= [sources_ count])
8295 return [sources_ objectAtIndex:index];
8298 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8299 static NSString *cellIdentifier = @"SourceCell";
8301 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8302 if (cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8303 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8305 Source *source([self sourceAtIndexPath:indexPath]);
8307 [cell setAllSource];
8309 [cell setSource:source];
8314 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8315 SectionsController *controller([[[SectionsController alloc]
8316 initWithDatabase:database_
8317 source:[self sourceAtIndexPath:indexPath]
8320 [controller setDelegate:delegate_];
8321 [[self navigationController] pushViewController:controller animated:YES];
8324 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8325 if ([indexPath section] != 1)
8327 Source *source = [self sourceAtIndexPath:indexPath];
8328 return [source record] != nil;
8331 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8332 _assert([indexPath section] == 1);
8333 if (editingStyle == UITableViewCellEditingStyleDelete) {
8334 Source *source = [self sourceAtIndexPath:indexPath];
8335 if (source == nil) return;
8337 [Sources_ removeObjectForKey:[source key]];
8340 [delegate_ _saveConfig];
8341 [delegate_ reloadDataWithInvocation:nil];
8345 - (void) tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
8346 [self updateButtonsForEditingStatusAnimated:YES];
8350 [delegate_ addTrivialSource:href_];
8353 [delegate_ syncData];
8356 - (NSString *) getWarning {
8357 NSString *href(href_);
8358 NSRange colon([href rangeOfString:@"://"]);
8359 if (colon.location != NSNotFound)
8360 href = [href substringFromIndex:(colon.location + 3)];
8361 href = [href stringByAddingPercentEscapes];
8362 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8364 NSURL *url([NSURL URLWithString:href]);
8366 NSStringEncoding encoding;
8367 NSError *error(nil);
8369 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8370 return [warning length] == 0 ? nil : warning;
8374 - (void) _endConnection:(NSURLConnection *)connection {
8375 // XXX: the memory management in this method is horribly awkward
8377 NSURLConnection **field = NULL;
8378 if (connection == trivial_bz2_)
8379 field = &trivial_bz2_;
8380 else if (connection == trivial_gz_)
8381 field = &trivial_gz_;
8382 _assert(field != NULL);
8383 [connection release];
8387 trivial_bz2_ == nil &&
8390 NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil);
8392 [delegate_ releaseNetworkActivityIndicator];
8394 [delegate_ removeProgressHUD:hud_];
8398 if (warning != nil) {
8399 UIAlertView *alert = [[[UIAlertView alloc]
8400 initWithTitle:UCLocalize("SOURCE_WARNING")
8403 cancelButtonTitle:UCLocalize("CANCEL")
8405 UCLocalize("ADD_ANYWAY"),
8409 [alert setContext:@"warning"];
8410 [alert setNumberOfRows:1];
8413 // XXX: there used to be this great mechanism called yieldToPopup... who deleted it?
8419 } else if (error_ != nil) {
8420 UIAlertView *alert = [[[UIAlertView alloc]
8421 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8422 message:[error_ localizedDescription]
8424 cancelButtonTitle:UCLocalize("OK")
8425 otherButtonTitles:nil
8428 [alert setContext:@"urlerror"];
8433 UIAlertView *alert = [[[UIAlertView alloc]
8434 initWithTitle:UCLocalize("NOT_REPOSITORY")
8435 message:UCLocalize("NOT_REPOSITORY_EX")
8437 cancelButtonTitle:UCLocalize("OK")
8438 otherButtonTitles:nil
8441 [alert setContext:@"trivial"];
8451 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8452 switch ([response statusCode]) {
8458 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8459 lprintf("connection:\"%s\" didFailWithError:\"%s\"\n", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8461 [self _endConnection:connection];
8464 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8465 [self _endConnection:connection];
8468 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8469 NSURL *url([NSURL URLWithString:href]);
8471 NSMutableURLRequest *request = [NSMutableURLRequest
8473 cachePolicy:NSURLRequestUseProtocolCachePolicy
8477 [request setHTTPMethod:method];
8479 if (Machine_ != NULL)
8480 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8482 if (UniqueID_ != nil)
8483 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8485 if ([url isCydiaSecure]) {
8486 if (UniqueID_ != nil)
8487 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
8490 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8493 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8494 NSString *context([alert context]);
8496 if ([context isEqualToString:@"source"]) {
8499 NSString *href = [[alert textField] text];
8501 static Pcre href_r("^http(s?)://[^# ]*$");
8502 if (!href_r(href)) {
8503 UIAlertView *alert = [[[UIAlertView alloc]
8504 initWithTitle:Error_
8505 message:UCLocalize("INVALID_URL")
8507 cancelButtonTitle:UCLocalize("OK")
8508 otherButtonTitles:nil
8511 [alert setContext:@"badurl"];
8517 if (![href hasSuffix:@"/"])
8518 href_ = [href stringByAppendingString:@"/"];
8522 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8523 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8527 // XXX: this is stupid
8528 hud_ = [delegate_ addProgressHUD];
8529 [hud_ setText:UCLocalize("VERIFYING_URL")];
8530 [delegate_ retainNetworkActivityIndicator];
8539 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8540 } else if ([context isEqualToString:@"trivial"])
8541 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8542 else if ([context isEqualToString:@"urlerror"])
8543 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8544 else if ([context isEqualToString:@"warning"]) {
8547 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
8556 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8560 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated {
8561 BOOL editing([list_ isEditing]);
8564 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8565 initWithTitle:UCLocalize("ADD")
8566 style:UIBarButtonItemStylePlain
8568 action:@selector(addButtonClicked)
8569 ] autorelease] animated:animated];
8570 else if ([delegate_ updating])
8571 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8572 initWithTitle:UCLocalize("CANCEL")
8573 style:UIBarButtonItemStyleDone
8575 action:@selector(cancelButtonClicked)
8576 ] autorelease] animated:animated];
8578 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8579 initWithTitle:UCLocalize("REFRESH")
8580 style:UIBarButtonItemStylePlain
8582 action:@selector(refreshButtonClicked)
8583 ] autorelease] animated:animated];
8585 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8586 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8587 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8589 action:@selector(editButtonClicked)
8590 ] autorelease] animated:animated];
8594 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain] autorelease];
8595 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8596 [list_ setRowHeight:53];
8597 [(UITableView *) list_ setDataSource:self];
8598 [list_ setDelegate:self];
8599 [self setView:list_];
8602 - (void) viewDidLoad {
8603 [super viewDidLoad];
8605 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8606 [self updateButtonsForEditingStatusAnimated:NO];
8609 - (void) viewWillAppear:(BOOL)animated {
8610 [super viewWillAppear:animated];
8612 [list_ setEditing:NO];
8613 [self updateButtonsForEditingStatusAnimated:NO];
8616 - (void) releaseSubviews {
8621 [super releaseSubviews];
8624 - (id) initWithDatabase:(Database *)database {
8625 if ((self = [super init]) != nil) {
8626 database_ = database;
8630 - (void) reloadData {
8632 [self updateButtonsForEditingStatusAnimated:YES];
8634 @synchronized (database_) {
8635 era_ = [database_ era];
8637 sources_ = [NSMutableArray arrayWithCapacity:16];
8638 [sources_ addObjectsFromArray:[database_ sources]];
8640 [sources_ sortUsingSelector:@selector(compareByName:)];
8643 int count([sources_ count]);
8645 for (int i = 0; i != count; i++) {
8646 if ([[sources_ objectAtIndex:i] record] == nil)
8654 - (void) showAddSourcePrompt {
8655 UIAlertView *alert = [[[UIAlertView alloc]
8656 initWithTitle:UCLocalize("ENTER_APT_URL")
8659 cancelButtonTitle:UCLocalize("CANCEL")
8661 UCLocalize("ADD_SOURCE"),
8665 [alert setContext:@"source"];
8667 [alert setNumberOfRows:1];
8668 [alert addTextFieldWithValue:@"http://" label:@""];
8670 UITextInputTraits *traits = [[alert textField] textInputTraits];
8671 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8672 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8673 [traits setKeyboardType:UIKeyboardTypeURL];
8674 // XXX: UIReturnKeyDone
8675 [traits setReturnKeyType:UIReturnKeyNext];
8680 - (void) addButtonClicked {
8681 [self showAddSourcePrompt];
8684 - (void) refreshButtonClicked {
8685 if ([delegate_ requestUpdate])
8686 [self updateButtonsForEditingStatusAnimated:YES];
8689 - (void) cancelButtonClicked {
8690 [delegate_ cancelUpdate];
8693 - (void) editButtonClicked {
8694 [list_ setEditing:![list_ isEditing] animated:YES];
8695 [self updateButtonsForEditingStatusAnimated:YES];
8701 /* Stash Controller {{{ */
8702 @interface StashController : CyteViewController {
8703 _H<UIActivityIndicatorView> spinner_;
8704 _H<UILabel> status_;
8705 _H<UILabel> caption_;
8710 @implementation StashController
8713 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
8714 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
8715 [self setView:view];
8717 [view setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8719 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8720 CGRect spinrect = [spinner_ frame];
8721 spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2);
8722 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8723 [spinner_ setFrame:spinrect];
8724 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8725 [view addSubview:spinner_];
8726 [spinner_ startAnimating];
8729 captrect.size.width = [[self view] frame].size.width;
8730 captrect.size.height = 40.0f;
8731 captrect.origin.x = 0;
8732 captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2);
8733 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8734 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8735 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8736 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8737 [caption_ setTextColor:[UIColor whiteColor]];
8738 [caption_ setBackgroundColor:[UIColor clearColor]];
8739 [caption_ setShadowColor:[UIColor blackColor]];
8740 [caption_ setTextAlignment:NSTextAlignmentCenter];
8741 [view addSubview:caption_];
8744 statusrect.size.width = [[self view] frame].size.width;
8745 statusrect.size.height = 30.0f;
8746 statusrect.origin.x = 0;
8747 statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height;
8748 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8749 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8750 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8751 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8752 [status_ setTextColor:[UIColor whiteColor]];
8753 [status_ setBackgroundColor:[UIColor clearColor]];
8754 [status_ setShadowColor:[UIColor blackColor]];
8755 [status_ setTextAlignment:NSTextAlignmentCenter];
8756 [view addSubview:status_];
8759 - (void) releaseSubviews {
8764 [super releaseSubviews];
8770 @interface CYURLCache : SDURLCache {
8775 @implementation CYURLCache
8777 - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request {
8780 else if ([event isEqualToString:@"no-cache"])
8782 else if ([event isEqualToString:@"store"])
8784 else if ([event isEqualToString:@"invalid"])
8786 else if ([event isEqualToString:@"memory"])
8788 else if ([event isEqualToString:@"disk"])
8790 else if ([event isEqualToString:@"miss"])
8793 NSLog(@"%@: %@", event, [[request URL] absoluteString]);
8797 - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request {
8798 if (NSURLResponse *response = [cached response])
8799 if (NSString *mime = [response MIMEType])
8800 if ([mime isEqualToString:@"text/cache-manifest"]) {
8801 NSURL *url([response URL]);
8804 NSLog(@"###: %@", [url absoluteString]);
8807 @synchronized (HostConfig_) {
8808 [CachedURLs_ addObject:url];
8812 [super storeCachedResponse:cached forRequest:request];
8817 @interface Cydia : UIApplication <
8818 ConfirmationControllerDelegate,
8821 UINavigationControllerDelegate,
8822 UITabBarControllerDelegate
8824 _H<UIWindow> window_;
8825 _H<CydiaTabBarController> tabbar_;
8826 _H<CydiaLoadingViewController> emulated_;
8828 _H<NSMutableArray> essential_;
8829 _H<NSMutableArray> broken_;
8831 Database *database_;
8833 _H<NSURL> starturl_;
8838 _H<StashController> stash_;
8847 @implementation Cydia
8849 - (void) lockSuspend {
8850 if (locked_++ == 0) {
8851 if ($SBSSetInterceptsMenuButtonForever != NULL)
8852 (*$SBSSetInterceptsMenuButtonForever)(true);
8854 [self setIdleTimerDisabled:YES];
8858 - (void) unlockSuspend {
8859 if (--locked_ == 0) {
8860 [self setIdleTimerDisabled:NO];
8862 if ($SBSSetInterceptsMenuButtonForever != NULL)
8863 (*$SBSSetInterceptsMenuButtonForever)(false);
8867 - (void) beginUpdate {
8868 [tabbar_ beginUpdate];
8871 - (void) cancelUpdate {
8872 [tabbar_ cancelUpdate];
8875 - (bool) requestUpdate {
8876 if (IsReachable("cydia.saurik.com")) {
8880 UIAlertView *alert = [[[UIAlertView alloc]
8881 initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("REFRESH")]
8882 message:@"Host Unreachable" // XXX: Localize
8884 cancelButtonTitle:UCLocalize("OK")
8885 otherButtonTitles:nil
8888 [alert setContext:@"norefresh"];
8896 return [tabbar_ updating];
8900 if ([broken_ count] != 0) {
8901 int count = [broken_ count];
8903 UIAlertView *alert = [[[UIAlertView alloc]
8904 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8905 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8907 cancelButtonTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("FORCIBLY_CLEAR"), UCLocalize("UNSAFE")]
8909 UCLocalize("TEMPORARY_IGNORE"),
8913 [alert setContext:@"fixhalf"];
8914 [alert setNumberOfRows:2];
8916 } else if (!Ignored_ && [essential_ count] != 0) {
8917 int count = [essential_ count];
8919 UIAlertView *alert = [[[UIAlertView alloc]
8920 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8921 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8923 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8925 UCLocalize("UPGRADE_ESSENTIAL"),
8926 UCLocalize("COMPLETE_UPGRADE"),
8930 [alert setContext:@"upgrade"];
8935 - (void) returnToCydia {
8939 - (void) _saveConfig {
8940 @synchronized (database_) {
8947 NSString *error(nil);
8949 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
8951 NSError *error(nil);
8952 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
8953 NSLog(@"failure to save metadata data: %@", error);
8958 NSLog(@"failure to serialize metadata: %@", error);
8962 CydiaWriteSources();
8965 // Navigation controller for the queuing badge.
8966 - (UINavigationController *) queueNavigationController {
8967 NSArray *controllers = [tabbar_ viewControllers];
8968 return [controllers objectAtIndex:3];
8971 - (void) unloadData {
8972 [tabbar_ unloadData];
8975 - (void) _updateData {
8979 UINavigationController *navigation = [self queueNavigationController];
8981 id queuedelegate = nil;
8982 if ([[navigation viewControllers] count] > 0)
8983 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
8985 [queuedelegate queueStatusDidChange];
8986 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
8989 - (void) _refreshIfPossible:(NSDate *)update {
8990 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
8992 bool recently = false;
8993 if (update != nil) {
8994 NSTimeInterval interval([update timeIntervalSinceNow]);
8995 if (interval <= 0 && interval > -(15*60))
8999 // Don't automatic refresh if:
9000 // - We already refreshed recently.
9001 // - We already auto-refreshed this launch.
9002 // - Auto-refresh is disabled.
9003 // - Cydia's server is not reachable
9004 if (recently || loaded_ || ManualRefresh || !IsReachable("cydia.saurik.com")) {
9005 // If we are cancelling, we need to make sure it knows it's already loaded.
9008 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9010 // We are going to load, so remember that.
9013 [tabbar_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
9019 - (void) refreshIfPossible {
9020 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible:) toTarget:self withObject:[Metadata_ objectForKey:@"LastUpdate"]];
9023 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9024 _profile(reloadDataWithInvocation)
9025 @synchronized (self) {
9026 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9028 [hud setText:UCLocalize("RELOADING_DATA")];
9030 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9034 [essential_ removeAllObjects];
9035 [broken_ removeAllObjects];
9037 _profile(reloadDataWithInvocation$Essential)
9038 NSArray *packages([database_ packages]);
9039 for (Package *package in packages) {
9041 [broken_ addObject:package];
9042 if ([package upgradableAndEssential:YES] && ![package ignored]) {
9043 if ([package essential] && [package installed] != nil)
9044 [essential_ addObject:package];
9050 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9053 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9054 [changesItem setBadgeValue:badge];
9055 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9056 [self setApplicationIconBadgeNumber:changes];
9059 [changesItem setBadgeValue:nil];
9060 [changesItem setAnimatedBadge:NO];
9061 [self setApplicationIconBadgeNumber:0];
9067 [self removeProgressHUD:hud];
9074 - (void) updateData {
9078 - (void) updateDataAndLoad {
9080 if ([database_ progressDelegate] == nil)
9086 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9089 - (void) disemulate {
9090 if (emulated_ == nil)
9093 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9094 [window_ setRootViewController:tabbar_];
9096 [window_ addSubview:[tabbar_ view]];
9097 [[emulated_ view] removeFromSuperview];
9101 [window_ setUserInteractionEnabled:YES];
9104 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9105 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9107 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9109 UIViewController *parent;
9110 if (emulated_ == nil)
9119 [parent presentModalViewController:navigation animated:YES];
9122 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9123 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9125 if (navigation != nil)
9126 [navigation pushViewController:progress animated:YES];
9128 [self presentModalViewController:progress force:YES];
9130 [progress invoke:invocation withTitle:title];
9134 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9135 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9138 - (void) repairWithInvocation:(NSInvocation *)invocation {
9140 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9144 - (void) repairWithSelector:(SEL)selector {
9145 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9148 - (void) reloadData {
9149 [self reloadDataWithInvocation:nil];
9150 if ([database_ progressDelegate] == nil)
9156 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9159 - (void) addSource:(NSDictionary *) source {
9160 CydiaAddSource(source);
9163 - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections {
9164 CydiaAddSource(href, distribution, sections);
9167 - (void) addTrivialSource:(NSString *)href {
9168 CydiaAddSource(href, @"./");
9171 - (void) updateValues {
9176 pkgProblemResolver *resolver = [database_ resolver];
9178 resolver->InstallProtect();
9179 if (!resolver->Resolve(true))
9184 // XXX: this is a really crappy way of doing this.
9185 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9186 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9187 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9188 if ([tabbar_ updating])
9189 [tabbar_ cancelUpdate];
9191 if (![database_ prepare])
9194 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9195 [page setDelegate:self];
9196 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9199 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9200 [tabbar_ presentModalViewController:confirm_ animated:YES];
9206 @synchronized (self) {
9211 - (void) clearPackage:(Package *)package {
9212 @synchronized (self) {
9219 - (void) installPackages:(NSArray *)packages {
9220 @synchronized (self) {
9221 for (Package *package in packages)
9228 - (void) installPackage:(Package *)package {
9229 @synchronized (self) {
9236 - (void) removePackage:(Package *)package {
9237 @synchronized (self) {
9244 - (void) distUpgrade {
9245 @synchronized (self) {
9246 if (![database_ upgrade])
9254 system("su -c /usr/bin/uicache mobile");
9259 UIProgressHUD *hud([self addProgressHUD]);
9260 [hud setText:UCLocalize("LOADING")];
9261 [self yieldToSelector:@selector(_uicache)];
9262 [self removeProgressHUD:hud];
9266 [database_ perform];
9267 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9268 [self performSelectorOnMainThread:@selector(uicache) withObject:nil waitUntilDone:YES];
9271 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9274 [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"];
9275 [self unlockSuspend];
9278 - (void) retainNetworkActivityIndicator {
9279 if (activity_++ == 0)
9280 [self setNetworkActivityIndicatorVisible:YES];
9283 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9287 - (void) releaseNetworkActivityIndicator {
9288 if (--activity_ == 0)
9289 [self setNetworkActivityIndicatorVisible:NO];
9292 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9297 - (void) cancelAndClear:(bool)clear {
9298 @synchronized (self) {
9310 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9311 NSString *context([alert context]);
9313 if ([context isEqualToString:@"conffile"]) {
9314 FILE *input = [database_ input];
9315 if (button == [alert cancelButtonIndex])
9316 fprintf(input, "N\n");
9317 else if (button == [alert firstOtherButtonIndex])
9318 fprintf(input, "Y\n");
9321 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9322 } else if ([context isEqualToString:@"fixhalf"]) {
9323 if (button == [alert cancelButtonIndex]) {
9324 @synchronized (self) {
9325 for (Package *broken in (id) broken_) {
9328 NSString *id = [broken id];
9329 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
9330 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
9331 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
9332 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
9338 } else if (button == [alert firstOtherButtonIndex]) {
9339 [broken_ removeAllObjects];
9343 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9344 } else if ([context isEqualToString:@"upgrade"]) {
9345 if (button == [alert firstOtherButtonIndex]) {
9346 @synchronized (self) {
9347 for (Package *essential in (id) essential_)
9348 [essential install];
9353 } else if (button == [alert firstOtherButtonIndex] + 1) {
9355 } else if (button == [alert cancelButtonIndex]) {
9359 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9363 - (void) system:(NSString *)command {
9364 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9367 system([command UTF8String]);
9373 - (void) applicationWillSuspend {
9375 [super applicationWillSuspend];
9378 - (BOOL) isSafeToSuspend {
9381 NSLog(@"isSafeToSuspend: locked_ != 0");
9386 if ([tabbar_ modalViewController] != nil)
9389 // Use external process status API internally.
9390 // This is probably a really bad idea.
9391 // XXX: what is the point of this? does this solve anything at all?
9392 uint64_t status = 0;
9394 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
9395 notify_get_state(notify_token, &status);
9396 notify_cancel(notify_token);
9401 NSLog(@"isSafeToSuspend: status != 0");
9407 NSLog(@"isSafeToSuspend: -> true");
9412 - (void) applicationSuspend:(__GSEvent *)event {
9413 if ([self isSafeToSuspend])
9414 [super applicationSuspend:event];
9417 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9418 if ([self isSafeToSuspend])
9419 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9422 - (void) _setSuspended:(BOOL)value {
9423 if ([self isSafeToSuspend])
9424 [super _setSuspended:value];
9427 - (UIProgressHUD *) addProgressHUD {
9428 UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]);
9429 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9431 [window_ setUserInteractionEnabled:NO];
9433 UIViewController *target(tabbar_);
9434 if (UIViewController *modal = [target modalViewController])
9437 [hud showInView:[target view]];
9443 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9444 [self unlockSuspend];
9446 [hud removeFromSuperview];
9447 [window_ setUserInteractionEnabled:YES];
9450 - (CyteViewController *) pageForPackage:(NSString *)name withReferrer:(NSString *)referrer {
9451 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name withReferrer:referrer] autorelease];
9454 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external withReferrer:(NSString *)referrer {
9455 NSString *scheme([[url scheme] lowercaseString]);
9456 if ([[url absoluteString] length] <= [scheme length] + 3)
9458 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9459 NSArray *components([path componentsSeparatedByString:@"/"]);
9461 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"]) {
9462 CyteViewController *controller([self pageForPackage:[components objectAtIndex:1] withReferrer:referrer]);
9463 if (controller != nil)
9464 [controller setDelegate:self];
9468 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9471 NSString *base([components objectAtIndex:0]);
9473 CyteViewController *controller = nil;
9475 if ([base isEqualToString:@"url"]) {
9476 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9477 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9478 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9479 } else if (!external && [components count] == 1) {
9480 if ([base isEqualToString:@"sources"]) {
9481 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9484 if ([base isEqualToString:@"home"]) {
9485 controller = [[[HomeController alloc] init] autorelease];
9488 if ([base isEqualToString:@"sections"]) {
9489 controller = [[[SectionsController alloc] initWithDatabase:database_ source:nil] autorelease];
9492 if ([base isEqualToString:@"search"]) {
9493 controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease];
9496 if ([base isEqualToString:@"changes"]) {
9497 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9500 if ([base isEqualToString:@"installed"]) {
9501 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9503 } else if ([components count] == 2) {
9504 NSString *argument = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9506 if ([base isEqualToString:@"package"]) {
9507 controller = [self pageForPackage:argument withReferrer:referrer];
9510 if (!external && [base isEqualToString:@"search"]) {
9511 controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease];
9514 if (!external && [base isEqualToString:@"sections"]) {
9515 if ([argument isEqualToString:@"all"] || [argument isEqualToString:@"*"])
9517 controller = [[[SectionController alloc] initWithDatabase:database_ source:nil section:argument] autorelease];
9520 if (!external && [base isEqualToString:@"sources"]) {
9521 if ([argument isEqualToString:@"add"]) {
9522 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9523 [(SourcesController *)controller showAddSourcePrompt];
9525 Source *source([database_ sourceWithKey:argument]);
9526 controller = [[[SectionsController alloc] initWithDatabase:database_ source:source] autorelease];
9530 if (!external && [base isEqualToString:@"launch"]) {
9531 [self launchApplicationWithIdentifier:argument suspended:NO];
9534 } else if (!external && [components count] == 3) {
9535 NSString *arg1 = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9536 NSString *arg2 = [[components objectAtIndex:2] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9538 if ([base isEqualToString:@"package"]) {
9539 if ([arg2 isEqualToString:@"settings"]) {
9540 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9541 } else if ([arg2 isEqualToString:@"files"]) {
9542 if (Package *package = [database_ packageWithName:arg1]) {
9543 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9544 [(FileTable *)controller setPackage:package];
9549 if ([base isEqualToString:@"sections"]) {
9550 Source *source([arg1 isEqualToString:@"*"] ? nil : [database_ sourceWithKey:arg1]);
9551 NSString *section([arg2 isEqualToString:@"*"] ? nil : arg2);
9552 controller = [[[SectionController alloc] initWithDatabase:database_ source:source section:section] autorelease];
9556 [controller setDelegate:self];
9560 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9561 CyteViewController *page([self pageForURL:url forExternal:external withReferrer:nil]);
9564 [tabbar_ setUnselectedViewController:page];
9569 - (void) applicationOpenURL:(NSURL *)url {
9570 [super applicationOpenURL:url];
9575 [self openCydiaURL:url forExternal:YES];
9578 - (void) applicationWillResignActive:(UIApplication *)application {
9579 // Stop refreshing if you get a phone call or lock the device.
9580 if ([tabbar_ updating])
9581 [tabbar_ cancelUpdate];
9583 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9584 [super applicationWillResignActive:application];
9587 - (void) saveState {
9588 [Metadata_ setObject:[tabbar_ navigationURLCollection] forKey:@"InterfaceState"];
9589 [Metadata_ setObject:[NSDate date] forKey:@"LastClosed"];
9590 [Metadata_ setObject:[NSNumber numberWithInt:[tabbar_ selectedIndex]] forKey:@"InterfaceIndex"];
9596 - (void) applicationWillTerminate:(UIApplication *)application {
9600 - (void) setConfigurationData:(NSString *)data {
9601 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
9603 if (!conffile_r(data)) {
9604 lprintf("E:invalid conffile\n");
9608 NSString *ofile = conffile_r[1];
9609 //NSString *nfile = conffile_r[2];
9611 UIAlertView *alert = [[[UIAlertView alloc]
9612 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9613 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9615 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9617 UCLocalize("ACCEPT_NEW_COPY"),
9618 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9622 [alert setContext:@"conffile"];
9623 [alert setNumberOfRows:2];
9627 - (void) addStashController {
9629 stash_ = [[[StashController alloc] init] autorelease];
9630 [window_ addSubview:[stash_ view]];
9633 - (void) removeStashController {
9634 [[stash_ view] removeFromSuperview];
9636 [self unlockSuspend];
9640 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9641 UpdateExternalStatus(1);
9642 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
9643 UpdateExternalStatus(0);
9645 [self removeStashController];
9647 pid_t pid(ExecFork());
9649 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9650 perror("launchctl stop");
9656 - (void) setupViewControllers {
9657 tabbar_ = [[[CydiaTabBarController alloc] initWithDatabase:database_] autorelease];
9659 NSMutableArray *items;
9660 if (kCFCoreFoundationVersionNumber < 800) {
9661 items = [NSMutableArray arrayWithObjects:
9662 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease],
9663 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"install.png"] tag:0] autorelease],
9664 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:0] autorelease],
9665 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease],
9666 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:0] autorelease],
9669 items = [NSMutableArray arrayWithObjects:
9670 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home7.png"] selectedImage:[UIImage applicationImageNamed:@"home7s.png"]] autorelease],
9671 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"install7.png"] selectedImage:[UIImage applicationImageNamed:@"install7s.png"]] autorelease],
9672 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes7.png"] selectedImage:[UIImage applicationImageNamed:@"changes7s.png"]] autorelease],
9673 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage7.png"] selectedImage:[UIImage applicationImageNamed:@"manage7s.png"]] autorelease],
9674 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search7.png"] selectedImage:[UIImage applicationImageNamed:@"search7s.png"]] autorelease],
9678 NSMutableArray *controllers([NSMutableArray array]);
9679 for (UITabBarItem *item in items) {
9680 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9681 [controller setTabBarItem:item];
9682 [controllers addObject:controller];
9684 [tabbar_ setViewControllers:controllers];
9686 [tabbar_ setUpdateDelegate:self];
9689 - (void) _sendMemoryWarningNotification {
9690 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: maybe 4_0?
9691 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationMemoryWarningNotification" object:[UIApplication sharedApplication]];
9693 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]];
9696 - (void) _sendMemoryWarningNotifications {
9698 [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO];
9704 - (void) applicationDidReceiveMemoryWarning:(UIApplication *)application {
9706 [[NSURLCache sharedURLCache] removeAllCachedResponses];
9709 - (void) applicationDidFinishLaunching:(id)unused {
9710 //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil];
9713 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9714 [self setApplicationSupportsShakeToEdit:NO];
9716 @synchronized (HostConfig_) {
9717 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9720 [NSURLCache setSharedURLCache:[[[CYURLCache alloc]
9721 initWithMemoryCapacity:524288
9722 diskCapacity:10485760
9723 diskPath:[NSString stringWithFormat:@"%@/SDURLCache", Cache_]
9726 [CydiaWebViewController _initialize];
9728 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9730 // this would disallow http{,s} URLs from accessing this data
9731 //[WebView registerURLSchemeAsLocal:@"cydia"];
9733 Font12_ = [UIFont systemFontOfSize:12];
9734 Font12Bold_ = [UIFont boldSystemFontOfSize:12];
9735 Font14_ = [UIFont systemFontOfSize:14];
9736 Font18_ = [UIFont systemFontOfSize:18];
9737 Font18Bold_ = [UIFont boldSystemFontOfSize:18];
9738 Font22Bold_ = [UIFont boldSystemFontOfSize:22];
9740 essential_ = [NSMutableArray arrayWithCapacity:4];
9741 broken_ = [NSMutableArray arrayWithCapacity:4];
9743 // XXX: I really need this thing... like, seriously... I'm sorry
9744 [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] reloadData];
9746 window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
9747 [window_ orderFront:self];
9748 [window_ makeKey:self];
9749 [window_ setHidden:NO];
9752 [self addStashController];
9753 // XXX: this would be much cleaner as a yieldToSelector:
9754 // that way the removeStashController could happen right here inline
9755 // we also could no longer require the useless stash_ field anymore
9756 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9761 int error(stat("/", &root));
9762 _assert(error != -1);
9764 #define Stash_(path) do { \
9765 struct stat folder; \
9766 int error(lstat((path), &folder)); \
9767 if (error != -1 && ( \
9768 folder.st_dev == root.st_dev && \
9769 S_ISDIR(folder.st_mode) \
9770 ) || error == -1 && ( \
9771 errno == ENOENT || \
9776 Stash_("/Applications");
9777 Stash_("/Library/Ringtones");
9778 Stash_("/Library/Wallpaper");
9779 //Stash_("/usr/bin");
9780 Stash_("/usr/include");
9781 Stash_("/usr/lib/pam");
9782 Stash_("/usr/share");
9783 //Stash_("/var/lib");
9785 database_ = [Database sharedInstance];
9786 [database_ setDelegate:self];
9788 [window_ setUserInteractionEnabled:NO];
9789 [self setupViewControllers];
9791 emulated_ = [[[CydiaLoadingViewController alloc] init] autorelease];
9792 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9793 [window_ setRootViewController:emulated_];
9795 [window_ addSubview:[emulated_ view]];
9797 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9801 - (NSArray *) defaultStartPages {
9802 NSMutableArray *standard = [NSMutableArray array];
9803 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9804 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9805 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9806 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9807 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9813 if ([emulated_ modalViewController] != nil)
9814 [emulated_ dismissModalViewControllerAnimated:YES];
9815 [window_ setUserInteractionEnabled:NO];
9817 [self reloadDataWithInvocation:nil];
9818 [self refreshIfPossible];
9821 int savedIndex = [[Metadata_ objectForKey:@"InterfaceIndex"] intValue];
9822 NSArray *saved = [[[Metadata_ objectForKey:@"InterfaceState"] mutableCopy] autorelease];
9823 int standardIndex = 0;
9824 NSArray *standard = [self defaultStartPages];
9831 NSDate *closed = [Metadata_ objectForKey:@"LastClosed"];
9832 if (valid && closed != nil) {
9833 NSTimeInterval interval([closed timeIntervalSinceNow]);
9834 // XXX: Is 30 minutes the optimal time here?
9835 if (interval <= -(30*60))
9839 if (valid && [saved count] != [standard count])
9843 for (unsigned int i = 0; i < [standard count]; i++) {
9844 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9845 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9846 // but it's good enough for now.
9847 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9854 NSArray *items = nil;
9856 [tabbar_ setSelectedIndex:savedIndex];
9859 [tabbar_ setSelectedIndex:standardIndex];
9863 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9864 NSArray *stack = [items objectAtIndex:tab];
9865 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9866 NSMutableArray *current = [NSMutableArray array];
9868 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9869 NSString *addr = [stack objectAtIndex:nav];
9870 NSURL *url = [NSURL URLWithString:addr];
9871 CyteViewController *page = [self pageForURL:url forExternal:NO withReferrer:nil];
9873 [current addObject:page];
9876 [navigation setViewControllers:current];
9879 // (Try to) show the startup URL.
9880 if (starturl_ != nil) {
9881 [self openCydiaURL:starturl_ forExternal:YES];
9886 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9887 if (item != nil && IsWildcat_) {
9888 [sheet showFromBarButtonItem:item animated:YES];
9890 [sheet showInView:window_];
9894 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9895 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9896 [progress setTitle:task];
9897 [progress addProgressEvent:event];
9900 - (void) addProgressEventForTask:(NSArray *)data {
9901 CydiaProgressEvent *event([data objectAtIndex:0]);
9902 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9903 [self addProgressEvent:event forTask:task];
9906 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9907 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9913 id Alloc_(id self, SEL selector) {
9914 id object = alloc_(self, selector);
9915 lprintf("[%s]A-%p\n", self->isa->name, object);
9920 id Dealloc_(id self, SEL selector) {
9921 id object = dealloc_(self, selector);
9922 lprintf("[%s]D-%p\n", self->isa->name, object);
9926 static NSSet *MobilizedFiles_;
9928 static NSURL *MobilizeURL(NSURL *url) {
9929 NSString *path([url path]);
9930 if ([path hasPrefix:@"/var/root/"]) {
9931 NSString *file([path substringFromIndex:10]);
9932 if ([MobilizedFiles_ containsObject:file])
9933 url = [NSURL fileURLWithPath:[@"/var/mobile/" stringByAppendingString:file] isDirectory:NO];
9939 Class $CFXPreferencesPropertyListSource;
9940 @class CFXPreferencesPropertyListSource;
9942 MSHook(BOOL, CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9943 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9944 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9946 url = MobilizeURL(url);
9948 value = _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(self, _cmd);
9949 //NSLog(@"CFX %@ %s", [url absoluteString], value ? "YES" : "NO");
9958 MSHook(void *, CFXPreferencesPropertyListSource$createPlistFromDisk, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9959 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9960 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9962 url = MobilizeURL(url);
9964 value = _CFXPreferencesPropertyListSource$createPlistFromDisk(self, _cmd);
9965 //NSLog(@"CFX %@ %@", [url absoluteString], value);
9974 Class $NSURLConnection;
9976 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
9977 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
9979 NSURL *url([copy URL]);
9981 NSString *host([url host]);
9982 NSString *scheme([[url scheme] lowercaseString]);
9984 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
9986 @synchronized (HostConfig_) {
9987 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
9988 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
9989 [copy setHTTPShouldUsePipelining:YES];
9991 if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"])
9992 if ([control isEqualToString:@"max-age=0"])
9993 if ([CachedURLs_ containsObject:url]) {
9995 NSLog(@"~~~: %@", url);
9998 [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad];
10000 [copy setValue:nil forHTTPHeaderField:@"Cache-Control"];
10001 [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"];
10002 [copy setValue:nil forHTTPHeaderField:@"If-None-Match"];
10006 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
10012 static CGSize $WAKWindow$screenSize(WAKWindow *self, SEL _cmd) {
10013 CGSize size([[UIScreen mainScreen] bounds].size);
10014 /*if ([$WAKWindow respondsToSelector:@selector(hasLandscapeOrientation)])
10015 if ([$WAKWindow hasLandscapeOrientation])
10016 std::swap(size.width, size.height);*/
10020 Class $NSUserDefaults;
10022 MSHook(id, NSUserDefaults$objectForKey$, NSUserDefaults *self, SEL _cmd, NSString *key) {
10023 if ([key respondsToSelector:@selector(isEqualToString:)] && [key isEqualToString:@"WebKitLocalStorageDatabasePathPreferenceKey"])
10024 return [NSString stringWithFormat:@"%@/LocalStorage", Cache_];
10025 return _NSUserDefaults$objectForKey$(self, _cmd, key);
10028 int main(int argc, char *argv[]) {
10029 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
10033 UpdateExternalStatus(0);
10035 UIScreen *screen([UIScreen mainScreen]);
10036 if ([screen respondsToSelector:@selector(scale)])
10037 ScreenScale_ = [screen scale];
10041 UIDevice *device([UIDevice currentDevice]);
10042 if ([device respondsToSelector:@selector(userInterfaceIdiom)]) {
10043 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10044 if (idiom == UIUserInterfaceIdiomPad)
10048 Idiom_ = IsWildcat_ ? @"ipad" : @"iphone";
10050 Pcre pattern("^([0-9]+\\.[0-9]+)");
10052 if (pattern([device systemVersion]))
10053 Firmware_ = pattern[1];
10054 if (pattern(Cydia_))
10055 Major_ = pattern[1];
10057 SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4];
10059 HostConfig_ = [[[NSObject alloc] init] autorelease];
10060 @synchronized (HostConfig_) {
10061 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10062 TokenHosts_ = [NSMutableSet setWithCapacity:4];
10063 InsecureHosts_ = [NSMutableSet setWithCapacity:4];
10064 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10065 CachedURLs_ = [NSMutableSet setWithCapacity:32];
10068 NSString *ui(@"ui/ios");
10070 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]];
10071 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]];
10072 UI_ = CydiaURL(ui);
10074 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10076 MobilizedFiles_ = [NSMutableSet setWithObjects:
10077 @"Library/Preferences/.GlobalPreferences.plist",
10078 @"Library/Preferences/com.apple.Accessibility.plist",
10079 @"Library/Preferences/com.apple.preferences.sounds.plist",
10082 /* Library Hacks {{{ */
10083 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10085 $WAKWindow = objc_getClass("WAKWindow");
10086 if ($WAKWindow != NULL)
10087 if (Method method = class_getInstanceMethod($WAKWindow, @selector(screenSize)))
10088 method_setImplementation(method, (IMP) &$WAKWindow$screenSize);
10090 $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSourceSynchronizer");
10091 if ($CFXPreferencesPropertyListSource == Nil)
10092 $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSource");
10094 Method CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(_backingPlistChangedSinceLastSync)));
10095 if (CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync != NULL) {
10096 _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync = reinterpret_cast<BOOL (*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10097 method_setImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10100 Method CFXPreferencesPropertyListSource$createPlistFromDisk(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(createPlistFromDisk)));
10101 if (CFXPreferencesPropertyListSource$createPlistFromDisk != NULL) {
10102 _CFXPreferencesPropertyListSource$createPlistFromDisk = reinterpret_cast<void *(*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk));
10103 method_setImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$createPlistFromDisk));
10106 $NSURLConnection = objc_getClass("NSURLConnection");
10107 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10108 if (NSURLConnection$init$ != NULL) {
10109 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10110 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10113 $NSUserDefaults = objc_getClass("NSUserDefaults");
10114 Method NSUserDefaults$objectForKey$(class_getInstanceMethod($NSUserDefaults, @selector(objectForKey:)));
10115 if (NSUserDefaults$objectForKey$ != NULL) {
10116 _NSUserDefaults$objectForKey$ = reinterpret_cast<id (*)(NSUserDefaults *, SEL, NSString *)>(method_getImplementation(NSUserDefaults$objectForKey$));
10117 method_setImplementation(NSUserDefaults$objectForKey$, reinterpret_cast<IMP>(&$NSUserDefaults$objectForKey$));
10120 /* Set Locale {{{ */
10121 Locale_ = CFLocaleCopyCurrent();
10122 Languages_ = [NSLocale preferredLanguages];
10124 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10125 //NSLog(@"%@", [Languages_ description]);
10128 if (Locale_ != NULL)
10129 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10130 else if (Languages_ != nil && [Languages_ count] != 0)
10131 lang = [[Languages_ objectAtIndex:0] UTF8String];
10133 // XXX: consider just setting to C and then falling through?
10136 if (lang != NULL) {
10137 Pcre pattern("^([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?$");
10138 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10141 NSLog(@"Setting Language: %s", lang);
10143 if (lang != NULL) {
10144 setenv("LANG", lang, true);
10145 std::setlocale(LC_ALL, lang);
10148 /* Index Collation {{{ */
10149 if (Class $UILocalizedIndexedCollation = objc_getClass("UILocalizedIndexedCollation")) {
10150 NSBundle *bundle([NSBundle bundleForClass:$UILocalizedIndexedCollation]);
10151 NSString *path([bundle pathForResource:@"UITableViewLocalizedSectionIndex" ofType:@"plist"]);
10152 //path = @"/System/Library/Frameworks/UIKit.framework/.lproj/UITableViewLocalizedSectionIndex.plist";
10153 NSDictionary *dictionary([NSDictionary dictionaryWithContentsOfFile:path]);
10154 _H<UILocalizedIndexedCollation> collation([[[UILocalizedIndexedCollation alloc] initWithDictionary:dictionary] autorelease]);
10156 CollationLocale_ = MSHookIvar<NSLocale *>(collation, "_locale");
10158 CollationThumbs_ = [collation sectionIndexTitles];
10159 for (size_t index(0), end([CollationThumbs_ count]); index != end; ++index)
10160 CollationOffset_.push_back([collation sectionForSectionIndexTitleAtIndex:index]);
10162 CollationTitles_ = [collation sectionTitles];
10163 CollationStarts_ = MSHookIvar<NSArray *>(collation, "_sectionStartStrings");
10165 NSString *&transform(MSHookIvar<NSString *>(collation, "_transform"));
10166 if (&transform != NULL && transform != nil) {
10167 /*if ([collation respondsToSelector:@selector(transformedCollationStringForString:)])
10168 CollationModify_ = [=](NSString *value) { return [collation transformedCollationStringForString:value]; };*/
10169 const UChar *uid(reinterpret_cast<const UChar *>([transform cStringUsingEncoding:NSUnicodeStringEncoding]));
10170 UErrorCode code(U_ZERO_ERROR);
10171 CollationTransl_ = utrans_openU(uid, -1, UTRANS_FORWARD, NULL, 0, NULL, &code);
10172 if (!U_SUCCESS(code))
10173 NSLog(@"%s", u_errorName(code));
10176 CollationLocale_ = [[[NSLocale alloc] initWithLocaleIdentifier:@"en@collation=dictionary"] autorelease];
10178 CollationThumbs_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil];
10179 for (NSInteger offset(0); offset != 28; ++offset)
10180 CollationOffset_.push_back(offset);
10182 CollationTitles_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil];
10183 CollationStarts_ = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"ʒ",nil];
10187 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
10189 /* Parse Arguments {{{ */
10190 bool substrate(false);
10196 for (int argi(1); argi != argc; ++argi)
10197 if (strcmp(argv[argi], "--") == 0) {
10199 argv[argi] = argv[0];
10205 for (int argi(1); argi != arge; ++argi)
10206 if (strcmp(args[argi], "--substrate") == 0)
10209 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10213 App_ = [[NSBundle mainBundle] bundlePath];
10219 if (access("/var/mobile/Library/Keyboard/UserDictionary.sqlite", F_OK) == 0)
10220 system("mkdir -p /var/root/Library/Keyboard; cp -af /var/mobile/Library/Keyboard/UserDictionary.sqlite /var/root/Library/Keyboard/");
10222 Cache_ = [[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia", @"/var/root"] retain];
10224 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10225 alloc_ = alloc->method_imp;
10226 alloc->method_imp = (IMP) &Alloc_;*/
10228 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10229 dealloc_ = dealloc->method_imp;
10230 dealloc->method_imp = (IMP) &Dealloc_;*/
10232 void *gestalt(dlopen("/usr/lib/libMobileGestalt.dylib", RTLD_GLOBAL | RTLD_LAZY));
10233 $MGCopyAnswer = reinterpret_cast<CFStringRef (*)(CFStringRef)>(dlsym(gestalt, "MGCopyAnswer"));
10235 /* System Information {{{ */
10239 size = sizeof(maxproc);
10240 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10241 perror("sysctlbyname(\"kern.maxproc\", ?)");
10242 else if (maxproc < 64) {
10244 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10245 perror("sysctlbyname(\"kern.maxproc\", #)");
10248 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10249 char *osversion = new char[size];
10250 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10251 perror("sysctlbyname(\"kern.osversion\", ?)");
10253 System_ = [NSString stringWithUTF8String:osversion];
10255 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10256 char *machine = new char[size];
10257 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10258 perror("sysctlbyname(\"hw.machine\", ?)");
10260 Machine_ = machine;
10262 SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber");
10263 ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString];
10264 BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false);
10266 UniqueID_ = UniqueIdentifier(device);
10268 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10269 Product_ = [info objectForKey:@"SafariProductVersion"];
10270 Safari_ = [info objectForKey:@"CFBundleVersion"];
10273 NSString *agent([NSString stringWithFormat:@"Cydia/%@ CyF/%.2f", Cydia_, kCFCoreFoundationVersionNumber]);
10275 if (Pcre match = Pcre("^[0-9]+(\\.[0-9]+)+", Safari_))
10276 agent = [NSString stringWithFormat:@"Safari/%@ %@", match[0], agent];
10277 if (Pcre match = Pcre("^[0-9]+[A-Z][0-9]+[a-z]?", System_))
10278 agent = [NSString stringWithFormat:@"Mobile/%@ %@", match[0], agent];
10279 if (Pcre match = Pcre("^[0-9]+(\\.[0-9]+)+", Product_))
10280 agent = [NSString stringWithFormat:@"Version/%@ %@", match[0], agent];
10282 UserAgent_ = agent;
10284 /* Load Database {{{ */
10286 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
10288 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10290 if (Metadata_ == NULL)
10291 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
10293 Settings_ = [Metadata_ objectForKey:@"Settings"];
10295 Packages_ = [Metadata_ objectForKey:@"Packages"];
10297 Values_ = [Metadata_ objectForKey:@"Values"];
10298 Sections_ = [Metadata_ objectForKey:@"Sections"];
10299 Sources_ = [Metadata_ objectForKey:@"Sources"];
10301 Token_ = [Metadata_ objectForKey:@"Token"];
10303 Version_ = [Metadata_ objectForKey:@"Version"];
10306 if (Values_ == nil) {
10307 Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease];
10308 [Metadata_ setObject:Values_ forKey:@"Values"];
10311 if (Sections_ == nil) {
10312 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10313 [Metadata_ setObject:Sections_ forKey:@"Sections"];
10316 if (Sources_ == nil) {
10317 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10318 [Metadata_ setObject:Sources_ forKey:@"Sources"];
10321 if (Version_ == nil) {
10322 Version_ = [NSNumber numberWithUnsignedInt:0];
10323 [Metadata_ setObject:Version_ forKey:@"Version"];
10326 if ([Version_ unsignedIntValue] == 0) {
10327 CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10328 CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10329 CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10330 CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
10332 Version_ = [NSNumber numberWithUnsignedInt:1];
10333 [Metadata_ setObject:Version_ forKey:@"Version"];
10335 [Metadata_ removeObjectForKey:@"LastUpdate"];
10340 _H<NSMutableArray> broken([NSMutableArray array]);
10341 for (NSString *key in (id) Sources_)
10342 if ([key rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"# "]].location != NSNotFound)
10343 [broken addObject:key];
10344 if ([broken count] != 0) {
10345 for (NSString *key in (id) broken)
10346 [Sources_ removeObjectForKey:key];
10351 CydiaWriteSources();
10354 MetaFile_.Open("/var/lib/cydia/metadata.cb0");
10357 if (Packages_ != nil) {
10359 CFDictionaryApplyFunction((CFDictionaryRef) Packages_, &PackageImport, &fail);
10363 [Metadata_ removeObjectForKey:@"Packages"];
10369 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10371 #define MobileSubstrate_(name) \
10372 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", F_OK) == 0) { \
10373 void *handle(dlopen("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", RTLD_LAZY | RTLD_GLOBAL)); \
10374 if (handle == NULL) \
10375 NSLog(@"%s", dlerror()); \
10378 MobileSubstrate_(Activator)
10379 MobileSubstrate_(libstatusbar)
10380 MobileSubstrate_(SimulatedKeyEvents)
10381 MobileSubstrate_(WinterBoard)
10383 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
10384 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
10386 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10388 if (access("/User", F_OK) != 0 || version != 6) {
10390 system("/usr/libexec/cydia/firmware.sh");
10394 _assert([[NSFileManager defaultManager]
10395 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
10396 withIntermediateDirectories:YES
10401 if (access("/tmp/cydia.chk", F_OK) == 0) {
10402 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
10403 _assert(errno == ENOENT);
10404 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
10405 _assert(errno == ENOENT);
10408 /* APT Initialization {{{ */
10409 _assert(pkgInitConfig(*_config));
10410 _assert(pkgInitSystem(*_config, _system));
10413 _config->Set("APT::Acquire::Translation", lang);
10415 // XXX: this timeout might be important :(
10416 //_config->Set("Acquire::http::Timeout", 15);
10418 _config->Set("Acquire::http::MaxParallel", 3);
10420 /* Color Choices {{{ */
10421 space_ = CGColorSpaceCreateDeviceRGB();
10423 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10424 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10425 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10426 Folder_.Set(space_, 0x8e/255.f, 0x8e/255.f, 0x93/255.f, 1.0);
10427 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10428 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10429 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10430 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10431 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10432 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10434 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10435 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10437 /* UIKit Configuration {{{ */
10438 // XXX: I have a feeling this was important
10439 //UIKeyboardDisableAutomaticAppearance();
10442 $SBSSetInterceptsMenuButtonForever = reinterpret_cast<void (*)(bool)>(dlsym(RTLD_DEFAULT, "SBSSetInterceptsMenuButtonForever"));
10444 const char *symbol(kCFCoreFoundationVersionNumber >= 800 ? "MGGetBoolAnswer" : "GSSystemHasCapability");
10445 BOOL (*GSSystemHasCapability)(CFStringRef) = reinterpret_cast<BOOL (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, symbol));
10446 bool fast = GSSystemHasCapability != NULL && GSSystemHasCapability(CFSTR("armv7"));
10448 PulseInterval_ = fast ? 50000 : 500000;
10450 Colon_ = UCLocalize("COLON_DELIMITED");
10451 Elision_ = UCLocalize("ELISION");
10452 Error_ = UCLocalize("ERROR");
10453 Warning_ = UCLocalize("WARNING");
10456 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10458 CGColorSpaceRelease(space_);
10459 CFRelease(Locale_);