1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 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 <sys/types.h>
88 #include <sys/sysctl.h>
89 #include <sys/param.h>
90 #include <sys/mount.h>
91 #include <sys/reboot.h>
98 #include <mach-o/nlist.h>
107 #include <Cytore.hpp>
110 #include "Substrate.hpp"
111 #include "Menes/Menes.h"
113 #include "CyteKit/IndirectDelegate.h"
114 #include "CyteKit/RegEx.hpp"
115 #include "CyteKit/TableViewCell.h"
116 #include "CyteKit/TabBarController.h"
117 #include "CyteKit/WebScriptObject-Cyte.h"
118 #include "CyteKit/WebViewController.h"
119 #include "CyteKit/WebViewTableViewCell.h"
120 #include "CyteKit/stringWithUTF8Bytes.h"
122 #include "Cydia/MIMEAddress.h"
123 #include "Cydia/LoadingViewController.h"
124 #include "Cydia/ProgressEvent.h"
126 #include "SDURLCache/SDURLCache.h"
133 #define _timestamp ({ \
135 gettimeofday(&tv, NULL); \
136 tv.tv_sec * 1000000 + tv.tv_usec; \
139 typedef std::vector<class ProfileTime *> TimeList;
149 ProfileTime(const char *name) :
153 times_.push_back(this);
156 void AddTime(uint64_t time) {
163 std::cerr << std::setw(7) << count_ << ", " << std::setw(8) << total_ << " : " << name_ << std::endl;
175 ProfileTimer(ProfileTime &time) :
182 time_.AddTime(_timestamp - start_);
187 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
189 std::cerr << "========" << std::endl;
192 #define _profile(name) { \
193 static ProfileTime name(#name); \
194 ProfileTimer _ ## name(name);
199 // XXX: I hate clang. Apple: please get over your petty hatred of GPL and fix your gcc fork
200 #define synchronized(lock) \
201 synchronized(static_cast<NSObject *>(lock))
203 extern NSString *Cydia_;
205 #define lprintf(args...) fprintf(stderr, args)
208 #define TraceLogging (1 && !ForRelease)
209 #define HistogramInsertionSort (0 && !ForRelease)
210 #define ProfileTimes (0 && !ForRelease)
211 #define ForSaurik (0 && !ForRelease)
212 #define LogBrowser (0 && !ForRelease)
213 #define TrackResize (0 && !ForRelease)
214 #define ManualRefresh (1 && !ForRelease)
215 #define ShowInternals (0 && !ForRelease)
216 #define AlwaysReload (0 && !ForRelease)
220 #define _trace(args...)
225 #define _profile(name) {
228 #define PrintTimes() do {} while (false)
231 // Hash Functions/Structures {{{
232 extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0);
240 static NSString *Colon_;
242 static NSString *Error_;
243 static NSString *Warning_;
245 static NSString *Cache_;
246 #define Cache(file) \
247 [NSString stringWithFormat:@"%@/%s", Cache_, file]
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(CYPool *pool) {
553 char *temp(pool->malloc<char>(size_ + 1));
554 memcpy(temp, data_, size_);
559 void set(CYPool *pool, const char *data, size_t size) {
565 data_ = const_cast<char *>(data);
573 _finline void set(CYPool *pool, const char *data) {
574 set(pool, data, data == NULL ? 0 : strlen(data));
577 _finline void set(CYPool *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> UniqueID_;
720 static _H<NSString> UserAgent_;
721 static _H<NSString> Product_;
722 static _H<NSString> Safari_;
724 static _H<NSLocale> CollationLocale_;
725 static _H<NSArray> CollationThumbs_;
726 static std::vector<NSInteger> CollationOffset_;
727 static _H<NSArray> CollationTitles_;
728 static _H<NSArray> CollationStarts_;
729 static UTransliterator *CollationTransl_;
730 //static Function<NSString *, NSString *> CollationModify_;
732 typedef std::basic_string<UChar> ustring;
733 static ustring CollationString_;
735 #define CUC const ustring &str(*reinterpret_cast<const ustring *>(rep))
736 #define UC ustring &str(*reinterpret_cast<ustring *>(rep))
737 static struct UReplaceableCallbacks CollationUCalls_ = {
738 .length = [](const UReplaceable *rep) -> int32_t { CUC;
742 .charAt = [](const UReplaceable *rep, int32_t offset) -> UChar { CUC;
743 //fprintf(stderr, "charAt(%d) : %d\n", offset, str.size());
744 if (offset >= str.size())
749 .char32At = [](const UReplaceable *rep, int32_t offset) -> UChar32 { CUC;
750 //fprintf(stderr, "char32At(%d) : %d\n", offset, str.size());
751 if (offset >= str.size())
754 U16_GET(str.data(), 0, offset, str.size(), c);
758 .replace = [](UReplaceable *rep, int32_t start, int32_t limit, const UChar *text, int32_t length) -> void { UC;
759 //fprintf(stderr, "replace(%d, %d, %d) : %d\n", start, limit, length, str.size());
760 str.replace(start, limit - start, text, length);
763 .extract = [](UReplaceable *rep, int32_t start, int32_t limit, UChar *dst) -> void { UC;
764 //fprintf(stderr, "extract(%d, %d) : %d\n", start, limit, str.size());
765 str.copy(dst, limit - start, start);
768 .copy = [](UReplaceable *rep, int32_t start, int32_t limit, int32_t dest) -> void { UC;
769 //fprintf(stderr, "copy(%d, %d, %d) : %d\n", start, limit, dest, str.size());
770 str.replace(dest, 0, str, start, limit - start);
774 static CFLocaleRef Locale_;
775 static NSArray *Languages_;
776 static CGColorSpaceRef space_;
778 #define CacheState_ "/var/mobile/Library/Caches/com.saurik.Cydia/CacheState.plist"
779 #define SavedState_ "/var/mobile/Library/Caches/com.saurik.Cydia/SavedState.plist"
781 static NSDictionary *SectionMap_;
782 static _H<NSDate> Backgrounded_;
783 static _transient NSMutableDictionary *Values_;
784 static _transient NSMutableDictionary *Sections_;
785 _H<NSMutableDictionary> Sources_;
786 static _transient NSNumber *Version_;
790 CGFloat ScreenScale_;
791 static NSString *Idiom_;
792 static _H<NSString> Firmware_;
793 static NSString *Major_;
795 static _H<NSMutableDictionary> SessionData_;
796 static _H<NSObject> HostConfig_;
797 static _H<NSMutableSet> BridgedHosts_;
798 static _H<NSMutableSet> InsecureHosts_;
799 static _H<NSMutableSet> PipelinedHosts_;
800 static _H<NSMutableSet> CachedURLs_;
802 static NSString *kCydiaProgressEventTypeError = @"Error";
803 static NSString *kCydiaProgressEventTypeInformation = @"Information";
804 static NSString *kCydiaProgressEventTypeStatus = @"Status";
805 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
808 /* Display Helpers {{{ */
809 inline float Interpolate(float begin, float end, float fraction) {
810 return (end - begin) * fraction + begin;
813 static inline double Retina(double value) {
814 value *= ScreenScale_;
815 value = round(value);
816 value /= ScreenScale_;
820 static inline CGRect Retina(CGRect value) {
821 value.origin.x *= ScreenScale_;
822 value.origin.y *= ScreenScale_;
823 value.size.width *= ScreenScale_;
824 value.size.height *= ScreenScale_;
825 value = CGRectIntegral(value);
826 value.origin.x /= ScreenScale_;
827 value.origin.y /= ScreenScale_;
828 value.size.width /= ScreenScale_;
829 value.size.height /= ScreenScale_;
833 static _finline const char *StripVersion_(const char *version) {
834 const char *colon(strchr(version, ':'));
835 return colon == NULL ? version : colon + 1;
838 NSString *LocalizeSection(NSString *section) {
839 static RegEx title_r("(.*?) \\((.*)\\)");
840 if (title_r(section)) {
841 NSString *parent(title_r[1]);
842 NSString *child(title_r[2]);
844 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
845 LocalizeSection(parent),
846 LocalizeSection(child)
850 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
853 NSString *Simplify(NSString *title) {
854 const char *data = [title UTF8String];
855 size_t size = [title lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
857 static RegEx square_r("\\[(.*)\\]");
858 if (square_r(data, size))
859 return Simplify(square_r[1]);
861 static RegEx paren_r("\\((.*)\\)");
862 if (paren_r(data, size))
863 return Simplify(paren_r[1]);
865 static RegEx title_r("(.*?) \\((.*)\\)");
866 if (title_r(data, size))
867 return Simplify(title_r[1]);
873 bool isSectionVisible(NSString *section) {
874 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
875 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
876 return hidden == nil || ![hidden boolValue];
879 static NSObject *CYIOGetValue(const char *path, NSString *property) {
880 io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path));
881 if (entry == MACH_PORT_NULL)
884 CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0));
885 IOObjectRelease(entry);
889 return [(id) value autorelease];
892 static NSString *CYHex(NSData *data, bool reverse = false) {
896 size_t length([data length]);
897 uint8_t bytes[length];
898 [data getBytes:bytes];
900 char string[length * 2 + 1];
901 for (size_t i(0); i != length; ++i)
902 sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]);
904 return [NSString stringWithUTF8String:string];
909 /* Delegate Prototypes {{{ */
912 @class CydiaProgressEvent;
914 @protocol DatabaseDelegate
915 - (void) repairWithSelector:(SEL)selector;
916 - (void) setConfigurationData:(NSString *)data;
917 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
920 @class CYPackageController;
922 @protocol SourceDelegate
923 - (void) setFetch:(NSNumber *)fetch;
926 @protocol FetchDelegate
927 - (bool) isSourceCancelled;
928 - (void) startSourceFetch:(NSString *)uri;
929 - (void) stopSourceFetch:(NSString *)uri;
932 @protocol CydiaDelegate
933 - (void) returnToCydia;
935 - (void) retainNetworkActivityIndicator;
936 - (void) releaseNetworkActivityIndicator;
937 - (void) clearPackage:(Package *)package;
938 - (void) installPackage:(Package *)package;
939 - (void) installPackages:(NSArray *)packages;
940 - (void) removePackage:(Package *)package;
941 - (void) beginUpdate;
943 - (bool) requestUpdate;
944 - (void) distUpgrade;
947 - (void) _saveConfig;
949 - (void) addSource:(NSDictionary *)source;
950 - (void) addTrivialSource:(NSString *)href;
951 - (UIProgressHUD *) addProgressHUD;
952 - (void) removeProgressHUD:(UIProgressHUD *)hud;
953 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
954 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
958 /* CancelStatus {{{ */
960 public pkgAcquireStatus
971 virtual bool MediaChange(std::string media, std::string drive) {
975 virtual void IMSHit(pkgAcquire::ItemDesc &desc) {
979 virtual bool Pulse_(pkgAcquire *Owner) = 0;
981 virtual bool Pulse(pkgAcquire *Owner) {
982 if (pkgAcquireStatus::Pulse(Owner) && Pulse_(Owner))
990 _finline bool WasCancelled() const {
995 /* DelegateStatus {{{ */
1000 _transient NSObject<ProgressDelegate> *delegate_;
1008 void setDelegate(NSObject<ProgressDelegate> *delegate) {
1009 delegate_ = delegate;
1012 virtual void Fetch(pkgAcquire::ItemDesc &desc) {
1013 NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]);
1014 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]);
1015 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1018 virtual void Done(pkgAcquire::ItemDesc &desc) {
1019 NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]);
1020 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]);
1021 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1024 virtual void Fail(pkgAcquire::ItemDesc &desc) {
1026 desc.Owner->Status == pkgAcquire::Item::StatIdle ||
1027 desc.Owner->Status == pkgAcquire::Item::StatDone
1031 std::string &error(desc.Owner->ErrorText);
1035 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItemDesc:desc]);
1036 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1039 virtual bool Pulse_(pkgAcquire *Owner) {
1041 double(CurrentBytes + CurrentItems) /
1042 double(TotalBytes + TotalItems)
1045 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
1046 [NSNumber numberWithDouble:percent], @"Percent",
1048 [NSNumber numberWithDouble:CurrentBytes], @"Current",
1049 [NSNumber numberWithDouble:TotalBytes], @"Total",
1050 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
1051 nil] waitUntilDone:YES];
1053 return ![delegate_ isProgressCancelled];
1056 virtual void Start() {
1057 pkgAcquireStatus::Start();
1058 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
1061 virtual void Stop() {
1062 pkgAcquireStatus::Stop();
1063 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
1064 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
1068 /* Database Interface {{{ */
1069 typedef std::map< unsigned long, _H<Source> > SourceMap;
1071 @interface Database : NSObject {
1078 pkgCacheFile cache_;
1079 pkgDepCache::Policy *policy_;
1080 pkgRecords *records_;
1081 pkgProblemResolver *resolver_;
1082 pkgAcquire *fetcher_;
1084 SPtr<pkgPackageManager> manager_;
1085 pkgSourceList *list_;
1087 SourceMap sourceMap_;
1088 _H<NSMutableArray> sourceList_;
1090 CFMutableArrayRef packages_;
1092 _transient NSObject<DatabaseDelegate> *delegate_;
1093 _transient NSObject<ProgressDelegate> *progress_;
1095 CydiaStatus status_;
1101 std::map<const char *, _H<NSString> > sections_;
1104 + (Database *) sharedInstance;
1107 - (void) _readCydia:(NSNumber *)fd;
1108 - (void) _readStatus:(NSNumber *)fd;
1109 - (void) _readOutput:(NSNumber *)fd;
1113 - (Package *) packageWithName:(NSString *)name;
1115 - (pkgCacheFile &) cache;
1116 - (pkgDepCache::Policy *) policy;
1117 - (pkgRecords *) records;
1118 - (pkgProblemResolver *) resolver;
1119 - (pkgAcquire &) fetcher;
1120 - (pkgSourceList &) list;
1121 - (NSArray *) packages;
1122 - (NSArray *) sources;
1123 - (Source *) sourceWithKey:(NSString *)key;
1124 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1132 - (void) updateWithStatus:(CancelStatus &)status;
1134 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1136 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1137 - (NSObject<ProgressDelegate> *) progressDelegate;
1139 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1140 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1141 - (void) resetFetch;
1143 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1147 /* SourceStatus {{{ */
1148 class SourceStatus :
1152 _transient NSObject<FetchDelegate> *delegate_;
1153 _transient Database *database_;
1154 std::set<std::string> fetches_;
1157 SourceStatus(NSObject<FetchDelegate> *delegate, Database *database) :
1158 delegate_(delegate),
1163 void Set(bool fetch, const std::string &uri) {
1165 if (!fetches_.insert(uri).second)
1168 if (fetches_.erase(uri) == 0)
1172 //printf("Set(%s, %s)\n", fetch ? "true" : "false", uri.c_str());
1173 [database_ setFetch:fetch forURI:uri.c_str()];
1176 _finline void Set(bool fetch, pkgAcquire::Item *item) {
1177 /*unsigned long ID(fetch ? 1 : 0);
1181 Set(fetch, item->DescURI());
1184 void Log(const char *tag, pkgAcquire::Item *item) {
1185 //printf("%s(%s) S:%u Q:%u\n", tag, item->DescURI().c_str(), item->Status, item->QueueCounter);
1188 virtual void Fetch(pkgAcquire::ItemDesc &desc) {
1189 Log("Fetch", desc.Owner);
1190 Set(true, desc.Owner);
1193 virtual void Done(pkgAcquire::ItemDesc &desc) {
1194 Log("Done", desc.Owner);
1195 Set(false, desc.Owner);
1198 virtual void Fail(pkgAcquire::ItemDesc &desc) {
1199 Log("Fail", desc.Owner);
1200 Set(false, desc.Owner);
1203 virtual bool Pulse_(pkgAcquire *Owner) {
1204 std::set<std::string> fetches;
1205 for (pkgAcquire::ItemCIterator item(Owner->ItemsBegin()); item != Owner->ItemsEnd(); ++item) {
1207 if ((*item)->QueueCounter == 0)
1209 else switch ((*item)->Status) {
1210 case pkgAcquire::Item::StatFetching:
1211 fetches.insert((*item)->DescURI());
1220 Log(fetch ? "Pulse<true>" : "Pulse<false>", *item);
1224 std::vector<std::string> stops;
1225 std::set_difference(fetches_.begin(), fetches_.end(), fetches.begin(), fetches.end(), std::back_insert_iterator<std::vector<std::string>>(stops));
1226 for (std::vector<std::string>::const_iterator stop(stops.begin()); stop != stops.end(); ++stop) {
1227 //printf("Stop(%s)\n", stop->c_str());
1231 return ![delegate_ isSourceCancelled];
1234 virtual void Stop() {
1235 pkgAcquireStatus::Stop();
1236 [database_ resetFetch];
1240 /* ProgressEvent Implementation {{{ */
1241 @implementation CydiaProgressEvent
1243 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1244 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1247 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1248 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1249 [event setPackage:package];
1253 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc {
1254 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1256 NSString *description([NSString stringWithUTF8String:desc.Description.c_str()]);
1257 NSArray *fields([description componentsSeparatedByString:@" "]);
1258 [event setItem:fields];
1260 if ([fields count] > 3) {
1261 [event setPackage:[fields objectAtIndex:2]];
1262 [event setVersion:[fields objectAtIndex:3]];
1265 [event setURL:[NSString stringWithUTF8String:desc.URI.c_str()]];
1270 + (NSArray *) _attributeKeys {
1271 return [NSArray arrayWithObjects:
1281 - (NSArray *) attributeKeys {
1282 return [[self class] _attributeKeys];
1285 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1286 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1289 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1290 if ((self = [super init]) != nil) {
1296 - (NSString *) message {
1300 - (NSString *) type {
1304 - (NSArray *) item {
1305 return (id) item_ ?: [NSNull null];
1308 - (void) setItem:(NSArray *)item {
1312 - (NSString *) package {
1313 return (id) package_ ?: [NSNull null];
1316 - (void) setPackage:(NSString *)package {
1320 - (NSString *) url {
1321 return (id) url_ ?: [NSNull null];
1324 - (void) setURL:(NSString *)url {
1328 - (void) setVersion:(NSString *)version {
1332 - (NSString *) version {
1333 return (id) version_ ?: [NSNull null];
1336 - (NSString *) compound:(NSString *)value {
1338 NSString *mode(nil); {
1339 NSString *type([self type]);
1340 if ([type isEqualToString:kCydiaProgressEventTypeError])
1341 mode = UCLocalize("ERROR");
1342 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1343 mode = UCLocalize("WARNING");
1347 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1353 - (NSString *) compoundMessage {
1354 return [self compound:[self message]];
1357 - (NSString *) compoundTitle {
1360 if (package_ == nil)
1362 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1363 title = [package name];
1367 return [self compound:title];
1373 // Cytore Definitions {{{
1374 struct PackageValue :
1377 Cytore::Offset<PackageValue> next_;
1379 uint32_t index_ : 23;
1380 uint32_t subscribed_ : 1;
1397 Cytore::Offset<PackageValue> packages_[1 << 16];
1400 static Cytore::File<MetaValue> MetaFile_;
1402 // Cytore Helper Functions {{{
1403 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1404 SplitHash nhash = { hashlittle(name, length) };
1406 PackageValue *metadata;
1408 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1409 for (;; offset = &metadata->next_) { if (offset->IsNull()) {
1410 *offset = MetaFile_.New<PackageValue>(length + 1);
1411 metadata = &MetaFile_.Get(*offset);
1413 if (metadata == NULL) {
1417 metadata = new PackageValue();
1418 memset(metadata, 0, sizeof(*metadata));
1421 memcpy(metadata->name_, name, length);
1422 metadata->name_[length] = '\0';
1423 metadata->nhash_ = nhash.u16[1];
1425 metadata = &MetaFile_.Get(*offset);
1426 if (metadata->nhash_ != nhash.u16[1])
1428 if (strncmp(metadata->name_, name, length) != 0)
1430 if (metadata->name_[length] != '\0')
1437 static void PackageImport(const void *key, const void *value, void *context) {
1438 bool &fail(*reinterpret_cast<bool *>(context));
1441 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1442 NSLog(@"failed to import package %@", key);
1446 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1447 NSDictionary *package((NSDictionary *) value);
1449 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1450 if ([subscribed boolValue] && !metadata->subscribed_)
1451 metadata->subscribed_ = true;
1453 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1454 time_t time([date timeIntervalSince1970]);
1455 if (metadata->first_ > time || metadata->first_ == 0)
1456 metadata->first_ = time;
1459 NSDate *date([package objectForKey:@"LastSeen"]);
1460 NSString *version([package objectForKey:@"LastVersion"]);
1462 if (date != nil && version != nil) {
1463 time_t time([date timeIntervalSince1970]);
1464 if (metadata->last_ < time || metadata->last_ == 0)
1465 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1466 size_t length(strlen(buffer));
1467 uint16_t vhash(hashlittle(buffer, length));
1469 size_t capped(std::min<size_t>(8, length));
1470 char *latest(buffer + length - capped);
1472 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1473 metadata->vhash_ = vhash;
1475 metadata->last_ = time;
1481 static NSDate *GetStatusDate() {
1482 return [[[NSFileManager defaultManager] attributesOfItemAtPath:@"/var/lib/dpkg/status" error:NULL] fileModificationDate];
1485 static void SaveConfig(NSObject *lock) {
1486 @synchronized (lock) {
1492 CFPreferencesSetMultiple((CFDictionaryRef) [NSDictionary dictionaryWithObjectsAndKeys:
1493 Values_, @"CydiaValues",
1494 Sections_, @"CydiaSections",
1495 (id) Sources_, @"CydiaSources",
1496 Version_, @"CydiaVersion",
1497 nil], NULL, CFSTR("com.saurik.Cydia"), kCFPreferencesCurrentUser, kCFPreferencesCurrentHost);
1499 if (!CFPreferencesAppSynchronize(CFSTR("com.saurik.Cydia")))
1500 NSLog(@"CFPreferencesAppSynchronize(com.saurik.Cydia) == false");
1502 CydiaWriteSources();
1505 /* Source Class {{{ */
1506 @interface Source : NSObject {
1508 Database *database_;
1511 CYString depiction_;
1512 CYString description_;
1518 CYString distribution_;
1524 _H<NSString> authority_;
1526 CYString defaultIcon_;
1528 _H<NSMutableDictionary> record_;
1531 std::set<std::string> fetches_;
1532 std::set<std::string> files_;
1533 _transient NSObject<SourceDelegate> *delegate_;
1536 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool;
1538 - (NSComparisonResult) compareByName:(Source *)source;
1540 - (NSString *) depictionForPackage:(NSString *)package;
1541 - (NSString *) supportForPackage:(NSString *)package;
1543 - (metaIndex *) metaIndex;
1544 - (NSDictionary *) record;
1547 - (NSString *) rooturi;
1548 - (NSString *) distribution;
1549 - (NSString *) type;
1552 - (NSString *) host;
1554 - (NSString *) name;
1555 - (NSString *) shortDescription;
1556 - (NSString *) label;
1557 - (NSString *) origin;
1558 - (NSString *) version;
1560 - (NSString *) defaultIcon;
1561 - (NSURL *) iconURL;
1563 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1564 - (void) resetFetch;
1568 @implementation Source
1570 + (NSString *) webScriptNameForSelector:(SEL)selector {
1572 else if (selector == @selector(addSection:))
1573 return @"addSection";
1574 else if (selector == @selector(getField:))
1576 else if (selector == @selector(removeSection:))
1577 return @"removeSection";
1578 else if (selector == @selector(remove))
1584 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
1585 return [self webScriptNameForSelector:selector] == nil;
1588 + (NSArray *) _attributeKeys {
1589 return [NSArray arrayWithObjects:
1600 @"shortDescription",
1607 - (NSArray *) attributeKeys {
1608 return [[self class] _attributeKeys];
1611 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1612 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1615 - (metaIndex *) metaIndex {
1619 - (void) setMetaIndex:(metaIndex *)index inPool:(CYPool *)pool {
1620 trusted_ = index->IsTrusted();
1622 uri_.set(pool, index->GetURI());
1623 distribution_.set(pool, index->GetDist());
1624 type_.set(pool, index->GetType());
1626 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1627 if (dindex != NULL) {
1628 std::string file(dindex->MetaIndexURI(""));
1629 base_.set(pool, file);
1632 _profile(Source$setMetaIndex$GetIndexes)
1633 dindex->GetIndexes(&acquire, true);
1635 _profile(Source$setMetaIndex$DescURI)
1636 for (pkgAcquire::ItemIterator item(acquire.ItemsBegin()); item != acquire.ItemsEnd(); item++) {
1637 std::string file((*item)->DescURI());
1638 files_.insert(file);
1639 if (file.length() < sizeof("Packages.bz2") || file.substr(file.length() - sizeof("Packages.bz2")) != "/Packages.bz2")
1641 file = file.substr(0, file.length() - 4);
1642 files_.insert(file);
1643 files_.insert(file + ".gz");
1644 files_.insert(file + "Index");
1649 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1652 pkgTagFile tags(&fd);
1654 pkgTagSection section;
1661 {"default-icon", &defaultIcon_},
1662 {"depiction", &depiction_},
1663 {"description", &description_},
1665 {"origin", &origin_},
1666 {"support", &support_},
1667 {"version", &version_},
1670 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1671 const char *start, *end;
1673 if (section.Find(names[i].name_, start, end)) {
1674 CYString &value(*names[i].value_);
1675 value.set(pool, start, end - start);
1681 record_ = [Sources_ objectForKey:[self key]];
1683 NSURL *url([NSURL URLWithString:uri_]);
1687 host_ = [host_ lowercaseString];
1692 authority_ = [url path];
1695 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool {
1696 if ((self = [super init]) != nil) {
1697 era_ = [database era];
1698 database_ = database;
1701 _profile(Source$initWithMetaIndex$setMetaIndex)
1702 [self setMetaIndex:index inPool:pool];
1707 - (NSString *) getField:(NSString *)name {
1708 @synchronized (database_) {
1709 if ([database_ era] != era_ || index_ == NULL)
1712 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_));
1717 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) {
1722 pkgTagFile tags(&fd);
1724 pkgTagSection section;
1727 const char *start, *end;
1728 if (!section.Find([name UTF8String], start, end))
1729 return (NSString *) [NSNull null];
1731 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
1734 - (NSComparisonResult) compareByName:(Source *)source {
1735 NSString *lhs = [self name];
1736 NSString *rhs = [source name];
1738 if ([lhs length] != 0 && [rhs length] != 0) {
1739 unichar lhc = [lhs characterAtIndex:0];
1740 unichar rhc = [rhs characterAtIndex:0];
1742 if (isalpha(lhc) && !isalpha(rhc))
1743 return NSOrderedAscending;
1744 else if (!isalpha(lhc) && isalpha(rhc))
1745 return NSOrderedDescending;
1748 return [lhs compare:rhs options:LaxCompareOptions_];
1751 - (NSString *) depictionForPackage:(NSString *)package {
1752 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1755 - (NSString *) supportForPackage:(NSString *)package {
1756 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1759 - (NSArray *) sections {
1760 return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array];
1763 - (void) _addSection:(NSString *)section {
1766 else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) {
1767 if (![sections containsObject:section])
1768 [sections addObject:section];
1770 [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"];
1773 - (bool) addSection:(NSString *)section {
1777 [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO];
1781 - (void) _removeSection:(NSString *)section {
1785 if (NSMutableArray *sections = [record_ objectForKey:@"Sections"])
1786 if ([sections containsObject:section])
1787 [sections removeObject:section];
1790 - (bool) removeSection:(NSString *)section {
1794 [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO];
1799 [Sources_ removeObjectForKey:[self key]];
1803 bool value(record_ != nil);
1804 [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO];
1808 - (NSDictionary *) record {
1816 - (NSString *) rooturi {
1820 - (NSString *) distribution {
1821 return distribution_;
1824 - (NSString *) type {
1828 - (NSString *) baseuri {
1829 return base_.empty() ? nil : (id) base_;
1832 - (NSString *) iconuri {
1833 if (NSString *base = [self baseuri])
1834 return [base stringByAppendingString:@"CydiaIcon.png"];
1839 - (NSURL *) iconURL {
1840 if (NSString *uri = [self iconuri])
1841 return [NSURL URLWithString:uri];
1845 - (NSString *) key {
1846 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1849 - (NSString *) host {
1853 - (NSString *) name {
1854 return origin_.empty() ? (id) authority_ : origin_;
1857 - (NSString *) shortDescription {
1858 return description_;
1861 - (NSString *) label {
1862 return label_.empty() ? (id) authority_ : label_;
1865 - (NSString *) origin {
1869 - (NSString *) version {
1873 - (NSString *) defaultIcon {
1874 return defaultIcon_;
1877 - (void) setDelegate:(NSObject<SourceDelegate> *)delegate {
1878 delegate_ = delegate;
1882 return !fetches_.empty();
1885 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
1887 if (fetches_.erase(uri) == 0)
1889 } else if (files_.find(uri) == files_.end())
1891 else if (!fetches_.insert(uri).second)
1894 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:[self fetch]] waitUntilDone:NO];
1897 - (void) resetFetch {
1899 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:NO];
1904 /* CydiaOperation Class {{{ */
1905 @interface CydiaOperation : NSObject {
1906 _H<NSString> operator_;
1907 _H<NSString> value_;
1910 - (NSString *) operator;
1911 - (NSString *) value;
1915 @implementation CydiaOperation
1917 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1918 if ((self = [super init]) != nil) {
1919 operator_ = [NSString stringWithUTF8String:_operator];
1920 value_ = [NSString stringWithUTF8String:value];
1924 + (NSArray *) _attributeKeys {
1925 return [NSArray arrayWithObjects:
1931 - (NSArray *) attributeKeys {
1932 return [[self class] _attributeKeys];
1935 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1936 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1939 - (NSString *) operator {
1943 - (NSString *) value {
1949 /* CydiaClause Class {{{ */
1950 @interface CydiaClause : NSObject {
1951 _H<NSString> package_;
1952 _H<CydiaOperation> version_;
1955 - (NSString *) package;
1956 - (CydiaOperation *) version;
1960 @implementation CydiaClause
1962 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1963 if ((self = [super init]) != nil) {
1964 package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()];
1966 if (const char *version = dep.TargetVer())
1967 version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease];
1969 version_ = (id) [NSNull null];
1973 + (NSArray *) _attributeKeys {
1974 return [NSArray arrayWithObjects:
1980 - (NSArray *) attributeKeys {
1981 return [[self class] _attributeKeys];
1984 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1985 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1988 - (NSString *) package {
1992 - (CydiaOperation *) version {
1998 /* CydiaRelation Class {{{ */
1999 @interface CydiaRelation : NSObject {
2000 _H<NSString> relationship_;
2001 _H<NSMutableArray> clauses_;
2004 - (NSString *) relationship;
2005 - (NSArray *) clauses;
2009 @implementation CydiaRelation
2011 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
2012 if ((self = [super init]) != nil) {
2013 relationship_ = [NSString stringWithUTF8String:dep.DepType()];
2014 clauses_ = [NSMutableArray arrayWithCapacity:8];
2016 pkgCache::DepIterator start;
2017 pkgCache::DepIterator end;
2018 dep.GlobOr(start, end); // ++dep
2021 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
2023 // yes, seriously. (wtf?)
2031 + (NSArray *) _attributeKeys {
2032 return [NSArray arrayWithObjects:
2038 - (NSArray *) attributeKeys {
2039 return [[self class] _attributeKeys];
2042 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2043 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2046 - (NSString *) relationship {
2047 return relationship_;
2050 - (NSArray *) clauses {
2054 - (void) addClause:(CydiaClause *)clause {
2055 [clauses_ addObject:clause];
2060 /* Package Class {{{ */
2061 struct ParsedPackage {
2065 CYString architecture_;
2068 CYString depiction_;
2075 @interface Package : NSObject {
2077 @public uint32_t role_ : 3;
2078 uint32_t essential_ : 1;
2079 uint32_t obsolete_ : 1;
2080 uint32_t ignored_ : 1;
2081 uint32_t pooled_ : 1;
2087 _transient Database *database_;
2089 pkgCache::VerIterator version_;
2090 pkgCache::PkgIterator iterator_;
2091 pkgCache::VerFileIterator file_;
2095 CYString transform_;
2098 CYString installed_;
2101 const char *section_;
2102 _transient NSString *section$_;
2106 PackageValue *metadata_;
2107 ParsedPackage *parsed_;
2109 _H<NSMutableArray> tags_;
2112 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database;
2113 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database;
2115 - (pkgCache::PkgIterator) iterator;
2118 - (NSString *) section;
2119 - (NSString *) simpleSection;
2121 - (NSString *) longSection;
2122 - (NSString *) shortSection;
2126 - (MIMEAddress *) maintainer;
2128 - (NSString *) longDescription;
2129 - (NSString *) shortDescription;
2132 - (PackageValue *) metadata;
2135 - (bool) subscribed;
2136 - (bool) setSubscribed:(bool)subscribed;
2140 - (NSString *) latest;
2141 - (NSString *) installed;
2142 - (BOOL) uninstalled;
2145 - (BOOL) upgradableAndEssential:(BOOL)essential;
2148 - (BOOL) unfiltered;
2152 - (BOOL) halfConfigured;
2153 - (BOOL) halfInstalled;
2155 - (NSString *) mode;
2158 - (NSString *) name;
2160 - (NSString *) homepage;
2161 - (NSString *) depiction;
2162 - (MIMEAddress *) author;
2164 - (NSString *) support;
2166 - (NSArray *) files;
2167 - (NSArray *) warnings;
2168 - (NSArray *) applications;
2170 - (Source *) source;
2173 - (BOOL) matches:(NSArray *)query;
2175 - (BOOL) hasTag:(NSString *)tag;
2176 - (NSString *) primaryPurpose;
2177 - (NSArray *) purposes;
2178 - (bool) isCommercial;
2180 - (void) setIndex:(size_t)index;
2182 - (CYString &) cyname;
2184 - (uint32_t) compareBySection:(NSArray *)sections;
2191 uint32_t PackageChangesRadix(Package *self, void *) {
2196 uint32_t timestamp : 30;
2197 uint32_t ignored : 1;
2198 uint32_t upgradable : 1;
2202 bool upgradable([self upgradableAndEssential:YES]);
2203 value.bits.upgradable = upgradable ? 1 : 0;
2206 value.bits.timestamp = 0;
2207 value.bits.ignored = [self ignored] ? 0 : 1;
2208 value.bits.upgradable = 1;
2210 value.bits.timestamp = [self seen] >> 2;
2211 value.bits.ignored = 0;
2212 value.bits.upgradable = 0;
2215 return _not(uint32_t) - value.key;
2218 CYString &(*PackageName)(Package *self, SEL sel);
2220 uint32_t PackagePrefixRadix(Package *self, void *context) {
2221 size_t offset(reinterpret_cast<size_t>(context));
2222 CYString &name(PackageName(self, @selector(cyname)));
2224 size_t size(name.size());
2227 char *text(name.data());
2230 if (!isdigit(text[0]))
2234 while (size != digits && isdigit(text[digits]))
2242 if (offset == 0 && zeros != 0) {
2243 memset(data, '0', zeros);
2244 memcpy(data + zeros, text, 4 - zeros);
2246 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2247 if (size <= offset - zeros)
2250 text += offset - zeros;
2251 size -= offset - zeros;
2254 memcpy(data, text, 4);
2256 memcpy(data, text, size);
2257 memset(data + size, 0, 4 - size);
2260 for (size_t i(0); i != 4; ++i)
2261 if (isalpha(data[i]))
2269 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2271 /* XXX: ntohl may be more honest */
2272 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2275 CFComparisonResult StringNameCompare(CFStringRef lhn, CFStringRef rhn, size_t length) {
2276 _profile(PackageNameCompare)
2278 return rhn == NULL ? kCFCompareEqualTo : kCFCompareLessThan;
2279 else if (rhn == NULL)
2280 return kCFCompareGreaterThan;
2282 CFIndex length(CFStringGetLength(lhn));
2284 _profile(PackageNameCompare$NumbersLast)
2285 if (length != 0 && CFStringGetLength(rhn) != 0) {
2286 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2287 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2288 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2289 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2290 return lha ? kCFCompareLessThan : kCFCompareGreaterThan;
2294 _profile(PackageNameCompare$Compare)
2295 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, (CFLocaleRef) (id) CollationLocale_);
2300 _finline CFComparisonResult StringNameCompare(NSString *lhn, NSString*rhn, size_t length) {
2301 return StringNameCompare((CFStringRef) lhn, (CFStringRef) rhn, length);
2304 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2305 CYString &lhn(PackageName(lhs, @selector(cyname)));
2306 NSString *rhn(PackageName(rhs, @selector(cyname)));
2307 return StringNameCompare(lhn, rhn, lhn.size());
2310 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *arg) {
2311 return PackageNameCompare(*lhs, *rhs, arg);
2314 struct PackageNameOrdering :
2315 std::binary_function<Package *, Package *, bool>
2317 _finline bool operator ()(Package *lhs, Package *rhs) const {
2318 return PackageNameCompare(lhs, rhs, NULL) == kCFCompareLessThan;
2322 @implementation Package
2324 - (NSString *) description {
2325 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2331 if (parsed_ != NULL)
2336 + (NSString *) webScriptNameForSelector:(SEL)selector {
2338 else if (selector == @selector(clear))
2340 else if (selector == @selector(getField:))
2342 else if (selector == @selector(getRecord))
2343 return @"getRecord";
2344 else if (selector == @selector(hasTag:))
2346 else if (selector == @selector(install))
2348 else if (selector == @selector(remove))
2354 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2355 return [self webScriptNameForSelector:selector] == nil;
2358 + (NSArray *) _attributeKeys {
2359 return [NSArray arrayWithObjects:
2380 @"shortDescription",
2393 - (NSArray *) attributeKeys {
2394 return [[self class] _attributeKeys];
2397 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2398 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2401 - (NSArray *) relations {
2402 @synchronized (database_) {
2403 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2404 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2405 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2409 - (NSString *) architecture {
2411 @synchronized (database_) {
2412 return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_;
2415 - (NSString *) getField:(NSString *)name {
2416 @synchronized (database_) {
2417 if ([database_ era] != era_ || file_.end())
2420 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2422 const char *start, *end;
2423 if (!parser.Find([name UTF8String], start, end))
2424 return (NSString *) [NSNull null];
2426 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2429 - (NSString *) getRecord {
2430 @synchronized (database_) {
2431 if ([database_ era] != era_ || file_.end())
2434 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2436 const char *start, *end;
2437 parser.GetRec(start, end);
2439 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2443 if (parsed_ != NULL)
2445 @synchronized (database_) {
2446 if ([database_ era] != era_ || file_.end())
2449 ParsedPackage *parsed(new ParsedPackage);
2452 _profile(Package$parse)
2453 pkgRecords::Parser *parser;
2455 _profile(Package$parse$Lookup)
2456 parser = &[database_ records]->Lookup(file_);
2462 _profile(Package$parse$Find)
2467 {"architecture", &parsed->architecture_},
2468 {"icon", &parsed->icon_},
2469 {"depiction", &parsed->depiction_},
2470 {"homepage", &parsed->homepage_},
2471 {"website", &website},
2473 {"support", &parsed->support_},
2474 {"author", &parsed->author_},
2475 {"md5sum", &parsed->md5sum_},
2478 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2479 const char *start, *end;
2481 if (parser->Find(names[i].name_, start, end)) {
2482 CYString &value(*names[i].value_);
2483 _profile(Package$parse$Value)
2484 value.set(pool_, start, end - start);
2490 _profile(Package$parse$Tagline)
2491 const char *start, *end;
2492 if (parser->ShortDesc(start, end)) {
2493 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2496 while (stop != start && stop[-1] == '\r')
2498 parsed->tagline_.set(pool_, start, stop - start);
2502 _profile(Package$parse$Retain)
2503 if (parsed->homepage_.empty())
2504 parsed->homepage_ = website;
2505 if (parsed->homepage_ == parsed->depiction_)
2506 parsed->homepage_.clear();
2507 if (parsed->support_.empty())
2508 parsed->support_ = bugs;
2513 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database {
2514 if ((self = [super init]) != nil) {
2515 _profile(Package$initWithVersion)
2517 pool_ = new CYPool();
2523 database_ = database;
2524 era_ = [database era];
2528 pkgCache::PkgIterator iterator(version.ParentPkg());
2529 iterator_ = iterator;
2531 _profile(Package$initWithVersion$Version)
2532 if (!version_.end())
2533 file_ = version_.FileList();
2535 pkgCache &cache([database_ cache]);
2536 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2540 _profile(Package$initWithVersion$Cache)
2541 name_.set(NULL, iterator.Display());
2543 latest_.set(NULL, StripVersion_(version_.VerStr()));
2545 pkgCache::VerIterator current(iterator.CurrentVer());
2547 installed_.set(NULL, StripVersion_(current.VerStr()));
2550 _profile(Package$initWithVersion$Transliterate) do {
2551 if (CollationTransl_ == NULL)
2556 _profile(Package$initWithVersion$Transliterate$utf8)
2557 const uint8_t *data(reinterpret_cast<const uint8_t *>(name_.data()));
2558 for (size_t i(0), e(name_.size()); i != e; ++i)
2559 if (data[i] >= 0x80)
2564 UErrorCode code(U_ZERO_ERROR);
2567 _profile(Package$initWithVersion$Transliterate$u_strFromUTF8WithSub)
2568 CollationString_.resize(name_.size());
2569 u_strFromUTF8WithSub(&CollationString_[0], CollationString_.size(), &length, name_.data(), name_.size(), 0xfffd, NULL, &code);
2570 if (!U_SUCCESS(code))
2572 CollationString_.resize(length);
2575 _profile(Package$initWithVersion$Transliterate$utrans_trans)
2576 length = CollationString_.size();
2577 utrans_trans(CollationTransl_, reinterpret_cast<UReplaceable *>(&CollationString_), &CollationUCalls_, 0, &length, &code);
2578 if (!U_SUCCESS(code))
2580 _assert(CollationString_.size() == length);
2583 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$preflight)
2584 u_strToUTF8WithSub(NULL, 0, &length, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2585 if (code == U_BUFFER_OVERFLOW_ERROR)
2586 code = U_ZERO_ERROR;
2587 else if (!U_SUCCESS(code))
2592 _profile(Package$initWithVersion$Transliterate$apr_palloc)
2593 transform = pool_->malloc<char>(length);
2595 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$transform)
2596 u_strToUTF8WithSub(transform, length, NULL, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2597 if (!U_SUCCESS(code))
2601 transform_.set(NULL, transform, length);
2602 } while (false); _end
2604 _profile(Package$initWithVersion$Tags)
2605 pkgCache::TagIterator tag(iterator.TagList());
2607 tags_ = [NSMutableArray arrayWithCapacity:8];
2609 goto tag; for (; !tag.end(); ++tag) tag: {
2610 const char *name(tag.Name());
2611 NSString *string((NSString *) CYStringCreate(name));
2615 [tags_ addObject:[string autorelease]];
2617 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2618 if (strcmp(name + 6, "enduser") == 0)
2620 else if (strcmp(name + 6, "hacker") == 0)
2622 else if (strcmp(name + 6, "developer") == 0)
2624 else if (strcmp(name + 6, "cydia") == 0)
2630 if (strncmp(name, "cydia::", 7) == 0) {
2631 if (strcmp(name + 7, "essential") == 0)
2633 else if (strcmp(name + 7, "obsolete") == 0)
2640 _profile(Package$initWithVersion$Metadata)
2641 const char *mixed(iterator.Name());
2642 size_t size(strlen(mixed));
2643 static const size_t prefix(sizeof("/var/lib/dpkg/info/") - 1);
2644 char lower[prefix + size + 5 + 1];
2646 for (size_t i(0); i != size; ++i)
2647 lower[prefix + i] = mixed[i] | 0x20;
2649 if (!installed_.empty()) {
2650 memcpy(lower, "/var/lib/dpkg/info/", prefix);
2651 memcpy(lower + prefix + size, ".list", 6);
2653 if (stat(lower, &info) != -1)
2654 upgraded_ = info.st_birthtime;
2657 PackageValue *metadata(PackageFind(lower + prefix, size));
2658 metadata_ = metadata;
2660 id_.set(NULL, metadata->name_, size);
2662 const char *latest(version_.VerStr());
2663 size_t length(strlen(latest));
2665 uint16_t vhash(hashlittle(latest, length));
2667 size_t capped(std::min<size_t>(8, length));
2668 latest = latest + length - capped;
2670 if (metadata->first_ == 0)
2671 metadata->first_ = now_;
2673 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2674 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2675 metadata->vhash_ = vhash;
2676 metadata->last_ = now_;
2677 } else if (metadata->last_ == 0)
2678 metadata->last_ = metadata->first_;
2681 _profile(Package$initWithVersion$Section)
2682 section_ = version_.Section();
2685 _profile(Package$initWithVersion$Flags)
2686 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2687 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2692 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database {
2693 pkgCache::VerIterator version;
2695 _profile(Package$packageWithIterator$GetCandidateVer)
2696 version = [database policy]->GetCandidateVer(iterator);
2704 _profile(Package$packageWithIterator$Allocate)
2705 package = [Package allocWithZone:zone];
2708 _profile(Package$packageWithIterator$Initialize)
2710 initWithVersion:version
2717 _profile(Package$packageWithIterator$Autorelease)
2718 package = [package autorelease];
2724 - (pkgCache::PkgIterator) iterator {
2728 - (NSString *) section {
2729 if (section$_ == nil) {
2730 if (section_ == NULL)
2733 _profile(Package$section$mappedSectionForPointer)
2734 section$_ = [database_ mappedSectionForPointer:section_];
2739 - (NSString *) simpleSection {
2740 if (NSString *section = [self section])
2741 return Simplify(section);
2746 - (NSString *) longSection {
2747 return LocalizeSection([self section]);
2750 - (NSString *) shortSection {
2751 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2754 - (NSString *) uri {
2757 pkgIndexFile *index;
2758 pkgCache::PkgFileIterator file(file_.File());
2759 if (![database_ list].FindIndex(file, index))
2761 return [NSString stringWithUTF8String:iterator_->Path];
2762 //return [NSString stringWithUTF8String:file.Site()];
2763 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2767 - (MIMEAddress *) maintainer {
2768 @synchronized (database_) {
2769 if ([database_ era] != era_ || file_.end())
2772 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2773 const std::string &maintainer(parser->Maintainer());
2774 return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2777 - (NSString *) md5sum {
2778 return parsed_ == NULL ? nil : (id) parsed_->md5sum_;
2782 @synchronized (database_) {
2783 if ([database_ era] != era_ || version_.end())
2786 return version_->InstalledSize;
2789 - (NSString *) longDescription {
2790 @synchronized (database_) {
2791 if ([database_ era] != era_ || file_.end())
2794 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2795 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2797 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2798 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2799 if ([lines count] < 2)
2802 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2803 for (size_t i(1), e([lines count]); i != e; ++i) {
2804 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2805 [trimmed addObject:trim];
2808 return [trimmed componentsJoinedByString:@"\n"];
2811 - (NSString *) shortDescription {
2812 if (parsed_ != NULL)
2813 return static_cast<NSString *>(parsed_->tagline_);
2815 @synchronized (database_) {
2816 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2818 const char *start, *end;
2819 if (!parser.ShortDesc(start, end))
2822 if (end - start > 200)
2826 if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start)))
2829 while (end != start && end[-1] == '\r')
2833 return [(id) CYStringCreate(start, end - start) autorelease];
2837 _profile(Package$index)
2838 CFStringRef name((CFStringRef) [self name]);
2839 if (CFStringGetLength(name) == 0)
2841 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2842 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2844 return toupper(character);
2848 - (PackageValue *) metadata {
2853 PackageValue *metadata([self metadata]);
2854 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2857 - (bool) subscribed {
2858 return [self metadata]->subscribed_;
2861 - (bool) setSubscribed:(bool)subscribed {
2862 PackageValue *metadata([self metadata]);
2863 if (metadata->subscribed_ == subscribed)
2865 metadata->subscribed_ = subscribed;
2873 - (NSString *) latest {
2877 - (NSString *) installed {
2881 - (BOOL) uninstalled {
2882 return installed_.empty();
2886 return !version_.end();
2889 - (BOOL) upgradableAndEssential:(BOOL)essential {
2890 _profile(Package$upgradableAndEssential)
2891 pkgCache::VerIterator current(iterator_.CurrentVer());
2893 return essential && essential_;
2895 return !version_.end() && version_ != current;
2899 - (BOOL) essential {
2904 return [database_ cache][iterator_].InstBroken();
2907 - (BOOL) unfiltered {
2908 _profile(Package$unfiltered$obsolete)
2909 if (_unlikely(obsolete_))
2913 _profile(Package$unfiltered$role)
2914 if (_unlikely(role_ > 3))
2922 if (![self unfiltered])
2927 _profile(Package$visible$section)
2928 section = [self section];
2931 _profile(Package$visible$isSectionVisible)
2932 if (!isSectionVisible(section))
2940 unsigned char current(iterator_->CurrentState);
2941 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2944 - (BOOL) halfConfigured {
2945 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2948 - (BOOL) halfInstalled {
2949 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2953 @synchronized (database_) {
2954 if ([database_ era] != era_ || iterator_.end())
2957 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2958 return state.Mode != pkgDepCache::ModeKeep;
2961 - (NSString *) mode {
2962 @synchronized (database_) {
2963 if ([database_ era] != era_ || iterator_.end())
2966 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2968 switch (state.Mode) {
2969 case pkgDepCache::ModeDelete:
2970 if ((state.iFlags & pkgDepCache::Purge) != 0)
2974 case pkgDepCache::ModeKeep:
2975 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2976 return @"REINSTALL";
2977 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2981 case pkgDepCache::ModeInstall:
2982 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2983 return @"REINSTALL";
2984 else*/ switch (state.Status) {
2986 return @"DOWNGRADE";
2992 return @"NEW_INSTALL";
3003 - (NSString *) name {
3004 return name_.empty() ? id_ : name_;
3007 - (UIImage *) icon {
3008 NSString *section = [self simpleSection];
3011 if (parsed_ != NULL)
3012 if (NSString *href = parsed_->icon_)
3013 if ([href hasPrefix:@"file:///"])
3014 icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
3015 if (icon == nil) if (section != nil)
3016 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
3017 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
3018 if ([dicon hasPrefix:@"file:///"])
3019 icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
3021 icon = [UIImage imageNamed:@"unknown.png"];
3025 - (NSString *) homepage {
3026 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
3029 - (NSString *) depiction {
3030 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
3033 - (MIMEAddress *) author {
3034 return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_];
3037 - (NSString *) support {
3038 return parsed_ != NULL && !parsed_->support_.empty() ? parsed_->support_ : [[self source] supportForPackage:id_];
3041 - (NSArray *) files {
3042 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
3043 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
3046 fin.open([path UTF8String]);
3051 while (std::getline(fin, line))
3052 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
3057 - (NSString *) state {
3058 @synchronized (database_) {
3059 if ([database_ era] != era_ || file_.end())
3062 switch (iterator_->CurrentState) {
3063 case pkgCache::State::NotInstalled:
3064 return @"NotInstalled";
3065 case pkgCache::State::UnPacked:
3067 case pkgCache::State::HalfConfigured:
3068 return @"HalfConfigured";
3069 case pkgCache::State::HalfInstalled:
3070 return @"HalfInstalled";
3071 case pkgCache::State::ConfigFiles:
3072 return @"ConfigFiles";
3073 case pkgCache::State::Installed:
3074 return @"Installed";
3075 case pkgCache::State::TriggersAwaited:
3076 return @"TriggersAwaited";
3077 case pkgCache::State::TriggersPending:
3078 return @"TriggersPending";
3081 return (NSString *) [NSNull null];
3084 - (NSString *) selection {
3085 @synchronized (database_) {
3086 if ([database_ era] != era_ || file_.end())
3089 switch (iterator_->SelectedState) {
3090 case pkgCache::State::Unknown:
3092 case pkgCache::State::Install:
3094 case pkgCache::State::Hold:
3096 case pkgCache::State::DeInstall:
3097 return @"DeInstall";
3098 case pkgCache::State::Purge:
3102 return (NSString *) [NSNull null];
3105 - (NSArray *) warnings {
3106 @synchronized (database_) {
3107 if ([database_ era] != era_ || file_.end())
3110 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
3111 const char *name(iterator_.Name());
3113 size_t length(strlen(name));
3114 if (length < 2) invalid:
3115 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
3116 else for (size_t i(0); i != length; ++i)
3118 /* XXX: technically this is not allowed */
3119 (name[i] < 'A' || name[i] > 'Z') &&
3120 (name[i] < 'a' || name[i] > 'z') &&
3121 (name[i] < '0' || name[i] > '9') &&
3122 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
3125 if (strcmp(name, "cydia") != 0) {
3128 bool _private = false;
3130 bool dbstash = false;
3131 bool dsstore = false;
3133 bool repository = [[self section] isEqualToString:@"Repositories"];
3135 if (NSArray *files = [self files])
3136 for (NSString *file in files)
3137 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
3139 else if (!user && [file isEqualToString:@"/User"])
3141 else if (!_private && [file isEqualToString:@"/private"])
3143 else if (!stash && [file isEqualToString:@"/var/stash"])
3145 else if (!dbstash && [file isEqualToString:@"/var/db/stash"])
3147 else if (!dsstore && [file hasSuffix:@"/.DS_Store"])
3150 /* XXX: this is not sensitive enough. only some folders are valid. */
3151 if (cydia && !repository)
3152 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
3154 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
3156 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
3158 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
3160 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/db/stash"]];
3162 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @".DS_Store"]];
3165 return [warnings count] == 0 ? nil : warnings;
3168 - (NSArray *) applications {
3169 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
3171 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
3173 static RegEx application_r("/Applications/(.*)\\.app/Info.plist");
3174 if (NSArray *files = [self files])
3175 for (NSString *file in files)
3176 if (application_r(file)) {
3177 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
3178 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
3179 if ([id isEqualToString:me])
3182 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
3184 display = application_r[1];
3186 NSString *bundle([file stringByDeletingLastPathComponent]);
3187 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
3188 // XXX: maybe this should check if this is really a string, not just for length
3189 if (icon == nil || ![icon respondsToSelector:@selector(length)] || [icon length] == 0)
3191 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
3193 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
3194 [applications addObject:application];
3196 [application addObject:id];
3197 [application addObject:display];
3198 [application addObject:url];
3201 return [applications count] == 0 ? nil : applications;
3204 - (Source *) source {
3205 if (source_ == nil) {
3206 @synchronized (database_) {
3207 if ([database_ era] != era_ || file_.end())
3208 source_ = (Source *) [NSNull null];
3210 source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null];
3214 return source_ == (Source *) [NSNull null] ? nil : source_;
3217 - (time_t) upgraded {
3221 - (uint32_t) recent {
3222 return std::numeric_limits<uint32_t>::max() - upgraded_;
3229 - (BOOL) matches:(NSArray *)query {
3230 if (query == nil || [query count] == 0)
3239 string = [self name];
3240 length = [string length];
3243 for (NSString *term in query) {
3244 range = [string rangeOfString:term options:MatchCompareOptions_];
3245 if (range.location != NSNotFound)
3246 rank_ -= 6 * 1000000 / length;
3251 length = [string length];
3254 for (NSString *term in query) {
3255 range = [string rangeOfString:term options:MatchCompareOptions_];
3256 if (range.location != NSNotFound)
3257 rank_ -= 6 * 1000000 / length;
3261 string = [self shortDescription];
3262 length = [string length];
3263 NSUInteger stop(std::min<NSUInteger>(length, 200));
3266 for (NSString *term in query) {
3267 range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)];
3268 if (range.location != NSNotFound)
3269 rank_ -= 2 * 100000;
3275 - (NSArray *) tags {
3279 - (BOOL) hasTag:(NSString *)tag {
3280 return tags_ == nil ? NO : [tags_ containsObject:tag];
3283 - (NSString *) primaryPurpose {
3284 for (NSString *tag in (NSArray *) tags_)
3285 if ([tag hasPrefix:@"purpose::"])
3286 return [tag substringFromIndex:9];
3290 - (NSArray *) purposes {
3291 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
3292 for (NSString *tag in (NSArray *) tags_)
3293 if ([tag hasPrefix:@"purpose::"])
3294 [purposes addObject:[tag substringFromIndex:9]];
3295 return [purposes count] == 0 ? nil : purposes;
3298 - (bool) isCommercial {
3299 return [self hasTag:@"cydia::commercial"];
3302 - (void) setIndex:(size_t)index {
3303 if (metadata_->index_ != index)
3304 metadata_->index_ = index;
3307 - (CYString &) cyname {
3308 return !transform_.empty() ? transform_ : !name_.empty() ? name_ : id_;
3311 - (uint32_t) compareBySection:(NSArray *)sections {
3312 NSString *section([self section]);
3313 for (size_t i(0), e([sections count]); i != e; ++i) {
3314 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
3318 return _not(uint32_t);
3322 @synchronized (database_) {
3323 pkgProblemResolver *resolver = [database_ resolver];
3324 resolver->Clear(iterator_);
3326 pkgCacheFile &cache([database_ cache]);
3327 cache->SetReInstall(iterator_, false);
3328 cache->MarkKeep(iterator_, false);
3332 @synchronized (database_) {
3333 pkgProblemResolver *resolver = [database_ resolver];
3334 resolver->Clear(iterator_);
3335 resolver->Protect(iterator_);
3337 pkgCacheFile &cache([database_ cache]);
3338 cache->SetReInstall(iterator_, false);
3339 cache->MarkInstall(iterator_, false);
3341 pkgDepCache::StateCache &state((*cache)[iterator_]);
3342 if (!state.Install())
3343 cache->SetReInstall(iterator_, true);
3347 @synchronized (database_) {
3348 pkgProblemResolver *resolver = [database_ resolver];
3349 resolver->Clear(iterator_);
3350 resolver->Remove(iterator_);
3351 resolver->Protect(iterator_);
3353 pkgCacheFile &cache([database_ cache]);
3354 cache->SetReInstall(iterator_, false);
3355 cache->MarkDelete(iterator_, true);
3360 /* Section Class {{{ */
3361 @interface Section : NSObject {
3365 _H<NSString> localized_;
3368 - (NSComparisonResult) compareByLocalized:(Section *)section;
3369 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3370 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3371 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3373 - (NSString *) name;
3374 - (void) setName:(NSString *)name;
3380 - (void) addToCount;
3382 - (void) setCount:(size_t)count;
3383 - (NSString *) localized;
3387 @implementation Section
3389 - (NSComparisonResult) compareByLocalized:(Section *)section {
3390 NSString *lhs(localized_);
3391 NSString *rhs([section localized]);
3393 /*if ([lhs length] != 0 && [rhs length] != 0) {
3394 unichar lhc = [lhs characterAtIndex:0];
3395 unichar rhc = [rhs characterAtIndex:0];
3397 if (isalpha(lhc) && !isalpha(rhc))
3398 return NSOrderedAscending;
3399 else if (!isalpha(lhc) && isalpha(rhc))
3400 return NSOrderedDescending;
3403 return [lhs compare:rhs options:LaxCompareOptions_];
3406 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3407 if ((self = [self initWithName:name localize:NO]) != nil) {
3408 if (localized != nil)
3409 localized_ = localized;
3413 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3414 return [self initWithName:name row:0 localize:localize];
3417 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3418 if ((self = [super init]) != nil) {
3422 localized_ = LocalizeSection(name_);
3426 - (NSString *) name {
3430 - (void) setName:(NSString *)name {
3446 - (void) addToCount {
3450 - (void) setCount:(size_t)count {
3454 - (NSString *) localized {
3461 class CydiaLogCleaner :
3462 public pkgArchiveCleaner
3465 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3470 /* Database Implementation {{{ */
3471 @implementation Database
3473 + (Database *) sharedInstance {
3474 static _H<Database> instance;
3475 if (instance == nil)
3476 instance = [[[Database alloc] init] autorelease];
3484 - (void) releasePackages {
3485 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3486 CFArrayRemoveAllValues(packages_);
3490 // XXX: actually implement this thing
3492 [self releasePackages];
3493 NSRecycleZone(zone_);
3497 - (void) _readCydia:(NSNumber *)fd {
3498 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3499 std::istream is(&ib);
3502 static RegEx finish_r("finish:([^:]*)");
3504 while (std::getline(is, line)) {
3505 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3507 const char *data(line.c_str());
3508 size_t size = line.size();
3509 lprintf("C:%s\n", data);
3511 if (finish_r(data, size)) {
3512 NSString *finish = finish_r[1];
3513 int index = [Finishes_ indexOfObject:finish];
3514 if (index != INT_MAX && index > Finish_)
3524 - (void) _readStatus:(NSNumber *)fd {
3525 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3526 std::istream is(&ib);
3529 static RegEx conffile_r("status: [^ ]* : conffile-prompt : (.*?) *");
3530 static RegEx pmstatus_r("([^:]*):([^:]*):([^:]*):(.*)");
3532 while (std::getline(is, line)) {
3533 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3535 const char *data(line.c_str());
3536 size_t size(line.size());
3537 lprintf("S:%s\n", data);
3539 if (conffile_r(data, size)) {
3540 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3541 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3542 } else if (strncmp(data, "status: ", 8) == 0) {
3543 // status: <package>: {unpacked,half-configured,installed}
3544 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3545 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3546 } else if (strncmp(data, "processing: ", 12) == 0) {
3547 // processing: configure: config-test
3548 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3549 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3550 } else if (pmstatus_r(data, size)) {
3551 std::string type([pmstatus_r[1] UTF8String]);
3553 NSString *package = pmstatus_r[2];
3554 if ([package isEqualToString:@"dpkg-exec"])
3557 float percent([pmstatus_r[3] floatValue]);
3558 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3560 NSString *string = pmstatus_r[4];
3562 if (type == "pmerror") {
3563 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3564 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3565 } else if (type == "pmstatus") {
3566 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3567 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3568 } else if (type == "pmconffile")
3569 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3571 lprintf("E:unknown pmstatus\n");
3573 lprintf("E:unknown status\n");
3581 - (void) _readOutput:(NSNumber *)fd {
3582 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3583 std::istream is(&ib);
3586 while (std::getline(is, line)) {
3587 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3589 lprintf("O:%s\n", line.c_str());
3591 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3592 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3604 - (Package *) packageWithName:(NSString *)name {
3607 @synchronized (self) {
3608 if (static_cast<pkgDepCache *>(cache_) == NULL)
3610 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3611 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self];
3615 if ((self = [super init]) != nil) {
3622 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3624 size_t capacity(MetaFile_->active_);
3630 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3631 sourceList_ = [NSMutableArray arrayWithCapacity:16];
3635 _assert(pipe(fds) != -1);
3638 _config->Set("APT::Keep-Fds::", cydiafd_);
3639 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3642 detachNewThreadSelector:@selector(_readCydia:)
3644 withObject:[NSNumber numberWithInt:fds[0]]
3647 _assert(pipe(fds) != -1);
3651 detachNewThreadSelector:@selector(_readStatus:)
3653 withObject:[NSNumber numberWithInt:fds[0]]
3656 _assert(pipe(fds) != -1);
3657 _assert(dup2(fds[0], 0) != -1);
3658 _assert(close(fds[0]) != -1);
3660 input_ = fdopen(fds[1], "a");
3662 _assert(pipe(fds) != -1);
3663 _assert(dup2(fds[1], 1) != -1);
3664 _assert(close(fds[1]) != -1);
3667 detachNewThreadSelector:@selector(_readOutput:)
3669 withObject:[NSNumber numberWithInt:fds[0]]
3674 - (pkgCacheFile &) cache {
3678 - (pkgDepCache::Policy *) policy {
3682 - (pkgRecords *) records {
3686 - (pkgProblemResolver *) resolver {
3690 - (pkgAcquire &) fetcher {
3694 - (pkgSourceList &) list {
3698 - (NSArray *) packages {
3699 return (NSArray *) packages_;
3702 - (NSArray *) sources {
3706 - (Source *) sourceWithKey:(NSString *)key {
3707 for (Source *source in [self sources]) {
3708 if ([[source key] isEqualToString:key])
3713 - (bool) popErrorWithTitle:(NSString *)title {
3716 while (!_error->empty()) {
3718 bool warning(!_error->PopMessage(error));
3723 size_t size(error.size());
3724 if (size == 0 || error[size - 1] != '\n')
3726 error.resize(size - 1);
3729 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3731 static RegEx no_pubkey("GPG error:.* NO_PUBKEY .*");
3732 if (warning && no_pubkey(error.c_str()))
3735 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3741 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3742 return [self popErrorWithTitle:title] || !success;
3745 - (bool) _isEtceteraAptSourcesListDirectoryCydiaListSymbolicallyLinkedToMobileCachesCydiaSourceList {
3747 ssize_t length(readlink("/etc/apt/sources.list.d/cydia.list", target, sizeof(target) - 1));
3750 if (length >= sizeof(target))
3752 target[length] = '\0';
3753 return strcmp(target, "/var/mobile/Library/Caches/com.saurik.Cydia/sources.list") == 0;
3756 - (bool) popErrorWithTitle:(NSString *)title forReadList:(pkgSourceList &)list {
3757 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3759 if (![self _isEtceteraAptSourcesListDirectoryCydiaListSymbolicallyLinkedToMobileCachesCydiaSourceList])
3760 if ([self popErrorWithTitle:title forOperation:list.Read(SOURCES_LIST)])
3765 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
3766 @synchronized (self) {
3769 [self releasePackages];
3772 [sourceList_ removeAllObjects];
3793 new (&pool_) CYPool();
3795 NSRecycleZone(zone_);
3796 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3798 int chk(creat("/tmp/cydia.chk", 0644));
3802 if (invocation != nil)
3803 [invocation invoke];
3805 NSString *title(UCLocalize("DATABASE"));
3807 list_ = new pkgSourceList();
3808 _profile(reloadDataWithInvocation$ReadMainList)
3809 if ([self popErrorWithTitle:title forReadList:*list_])
3813 _profile(reloadDataWithInvocation$Source$initWithMetaIndex)
3814 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3815 Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:&pool_] autorelease]);
3816 [sourceList_ addObject:object];
3820 delock_ = GetStatusDate();
3823 OpProgress progress;
3826 _profile(reloadDataWithInvocation$pkgCacheFile)
3827 opened = cache_.Open(progress, false);
3830 // XXX: what if there are errors, but Open() == true? this should be merged with popError:
3831 while (!_error->empty()) {
3833 bool warning(!_error->PopMessage(error));
3835 lprintf("cache_.Open():[%s]\n", error.c_str());
3837 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3841 else if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3842 repair = @selector(configure);
3843 //else if (error == "The package lists or status file could not be parsed or opened.")
3844 // repair = @selector(update);
3845 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3846 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3847 // else if (error == "Malformed Status line")
3848 // else if (error == "The list of sources could not be read.")
3850 if (repair != NULL) {
3852 [delegate_ repairWithSelector:repair];
3861 unlink("/tmp/cydia.chk");
3863 now_ = [[NSDate date] timeIntervalSince1970];
3865 policy_ = new pkgDepCache::Policy();
3866 records_ = new pkgRecords(cache_);
3867 resolver_ = new pkgProblemResolver(cache_);
3868 fetcher_ = new pkgAcquire(&status_);
3871 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3872 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3876 _profile(reloadDataWithInvocation$pkgApplyStatus)
3877 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3881 if (cache_->BrokenCount() != 0) {
3882 _profile(pkgApplyStatus$pkgFixBroken)
3883 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3887 if (cache_->BrokenCount() != 0) {
3888 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3892 _profile(pkgApplyStatus$pkgMinimizeUpgrade)
3893 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3898 for (Source *object in (id) sourceList_) {
3899 metaIndex *source([object metaIndex]);
3900 std::vector<pkgIndexFile *> *indices = source->GetIndexFiles();
3901 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3902 // XXX: this could be more intelligent
3903 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3904 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3906 sourceMap_[cached->ID] = object;
3911 /*std::vector<Package *> packages;
3912 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3915 _profile(reloadDataWithInvocation$packageWithIterator)
3916 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3917 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:&pool_ database:self])
3918 //packages.push_back(package);
3919 CFArrayAppendValue(packages_, CFRetain(package));
3923 /*if (packages.empty())
3924 packages_ = [[NSArray alloc] init];
3926 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3929 _profile(reloadDataWithInvocation$radix$8)
3930 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(8)];
3933 _profile(reloadDataWithInvocation$radix$4)
3934 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3937 _profile(reloadDataWithInvocation$radix$0)
3938 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3941 _profile(reloadDataWithInvocation$insertion)
3942 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3945 /*_profile(reloadDataWithInvocation$CFQSortArray)
3946 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);
3949 /*_profile(reloadDataWithInvocation$stdsort)
3950 std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3953 /*_profile(reloadDataWithInvocation$CFArraySortValues)
3954 CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3957 /*_profile(reloadDataWithInvocation$sortUsingFunction)
3958 [packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3962 size_t count(CFArrayGetCount(packages_));
3963 MetaFile_->active_ = count;
3964 for (size_t index(0); index != count; ++index)
3965 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3970 @synchronized (self) {
3972 resolver_ = new pkgProblemResolver(cache_);
3974 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3975 if (!cache_[iterator].Keep())
3976 cache_->MarkKeep(iterator, false);
3977 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3978 cache_->SetReInstall(iterator, false);
3981 - (void) configure {
3982 NSString *dpkg = [NSString stringWithFormat:@"/usr/libexec/cydo --configure -a --status-fd %u", statusfd_];
3984 system([dpkg UTF8String]);
3989 @synchronized (self) {
3990 // XXX: I don't remember this condition
3995 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3997 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3999 if ([self popErrorWithTitle:title])
4003 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
4005 CydiaLogCleaner cleaner;
4006 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
4013 fetcher_->Shutdown();
4015 pkgRecords records(cache_);
4017 lock_ = new FileFd();
4018 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
4020 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
4022 if ([self popErrorWithTitle:title])
4026 if ([self popErrorWithTitle:title forReadList:list])
4029 manager_ = (_system->CreatePM(cache_));
4030 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
4037 bool substrate(RestartSubstrate_);
4038 RestartSubstrate_ = false;
4040 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
4042 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
4044 if ([self popErrorWithTitle:title forReadList:list])
4046 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
4047 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
4050 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4052 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
4054 [self popErrorWithTitle:title];
4058 bool failed = false;
4059 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
4060 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
4062 if ((*item)->Status == pkgAcquire::Item::StatIdle)
4065 std::string uri = (*item)->DescURI();
4066 std::string error = (*item)->ErrorText;
4068 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
4071 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError]);
4072 [delegate_ addProgressEventOnMainThread:event forTask:title];
4075 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4083 RestartSubstrate_ = true;
4085 if (![delock_ isEqual:GetStatusDate()]) {
4086 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("DPKG_LOCKED") ofType:kCydiaProgressEventTypeError] forTask:title];
4092 pkgPackageManager::OrderResult result(manager_->DoInstall(statusfd_));
4094 NSString *oextended(@"/var/lib/apt/extended_states");
4095 NSString *nextended(Cache("extended_states"));
4098 if (stat([nextended UTF8String], &info) != -1 && (info.st_mode & S_IFMT) == S_IFREG) {
4099 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/mv -f %@ %@", nextended, oextended] UTF8String]);
4100 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/chown 0:0 %@", oextended] UTF8String]);
4103 unlink([nextended UTF8String]);
4104 symlink([oextended UTF8String], [nextended UTF8String]);
4106 if ([self popErrorWithTitle:title])
4109 if (result == pkgPackageManager::Failed) {
4114 if (result != pkgPackageManager::Completed) {
4119 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
4121 if ([self popErrorWithTitle:title forReadList:list])
4123 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
4124 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
4127 if (![before isEqualToArray:after])
4132 return ![delock_ isEqual:GetStatusDate()];
4136 NSString *title(UCLocalize("UPGRADE"));
4137 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
4143 [self updateWithStatus:status_];
4146 - (void) updateWithStatus:(CancelStatus &)status {
4147 NSString *title(UCLocalize("REFRESHING_DATA"));
4150 if ([self popErrorWithTitle:title forReadList:list])
4154 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
4155 if ([self popErrorWithTitle:title])
4158 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4160 bool success(ListUpdate(status, list, PulseInterval_));
4161 if (status.WasCancelled())
4164 [self popErrorWithTitle:title forOperation:success];
4166 [[NSDictionary dictionaryWithObjectsAndKeys:
4167 [NSDate date], @"LastUpdate",
4168 nil] writeToFile:@ CacheState_ atomically:YES];
4171 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4174 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
4175 delegate_ = delegate;
4178 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
4179 progress_ = delegate;
4180 status_.setDelegate(delegate);
4183 - (NSObject<ProgressDelegate> *) progressDelegate {
4187 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
4188 SourceMap::const_iterator i(sourceMap_.find(file->ID));
4189 return i == sourceMap_.end() ? nil : i->second;
4192 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
4193 for (Source *source in (id) sourceList_)
4194 [source setFetch:fetch forURI:uri];
4197 - (void) resetFetch {
4198 for (Source *source in (id) sourceList_)
4199 [source resetFetch];
4202 - (NSString *) mappedSectionForPointer:(const char *)section {
4203 _H<NSString> *mapped;
4205 _profile(Database$mappedSectionForPointer$Cache)
4206 mapped = §ions_[section];
4209 if (*mapped == NULL) {
4210 size_t length(strlen(section));
4211 char spaced[length + 1];
4213 _profile(Database$mappedSectionForPointer$Replace)
4214 for (size_t index(0); index != length; ++index)
4215 spaced[index] = section[index] == '_' ? ' ' : section[index];
4216 spaced[length] = '\0';
4221 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
4222 string = [NSString stringWithUTF8String:spaced];
4225 _profile(Database$mappedSectionForPointer$Map)
4226 string = [SectionMap_ objectForKey:string] ?: string;
4236 static _H<NSMutableSet> Diversions_;
4238 @interface Diversion : NSObject {
4241 _H<NSString> format_;
4246 @implementation Diversion
4248 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
4249 if ((self = [super init]) != nil) {
4250 pattern_ = [from UTF8String];
4256 - (NSString *) divert:(NSString *)url {
4257 return !pattern_(url) ? nil : pattern_->*format_;
4260 + (NSURL *) divertURL:(NSURL *)url {
4262 NSString *href([url absoluteString]);
4264 for (Diversion *diversion in (id) Diversions_)
4265 if (NSString *diverted = [diversion divert:href]) {
4267 NSLog(@"div: %@", diverted);
4269 url = [NSURL URLWithString:diverted];
4276 - (NSString *) key {
4280 - (NSUInteger) hash {
4284 - (BOOL) isEqual:(Diversion *)object {
4285 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
4290 @interface CydiaObject : NSObject {
4291 _H<CyteWebViewController> indirect_;
4292 _transient id delegate_;
4295 - (id) initWithDelegate:(IndirectDelegate *)indirect;
4301 @interface CydiaWebViewController : CyteWebViewController {
4302 _H<CydiaObject> cydia_;
4305 + (void) addDiversion:(Diversion *)diversion;
4306 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request;
4307 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia;
4308 - (void) setDelegate:(id)delegate;
4312 /* Web Scripting {{{ */
4313 @implementation CydiaObject
4315 - (id) initWithDelegate:(IndirectDelegate *)indirect {
4316 if ((self = [super init]) != nil) {
4317 indirect_ = (CyteWebViewController *) indirect;
4321 - (void) setDelegate:(id)delegate {
4322 delegate_ = delegate;
4325 + (NSArray *) _attributeKeys {
4326 return [NSArray arrayWithObjects:
4329 @"coreFoundationVersionNumber",
4345 - (NSArray *) attributeKeys {
4346 return [[self class] _attributeKeys];
4349 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
4350 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
4353 - (NSString *) version {
4357 - (NSString *) build {
4361 - (NSString *) coreFoundationVersionNumber {
4362 return [NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber];
4365 - (NSString *) device {
4366 return UniqueIdentifier();
4369 - (NSString *) firmware {
4370 return [[UIDevice currentDevice] systemVersion];
4373 - (NSString *) hostname {
4374 return [[UIDevice currentDevice] name];
4377 - (NSString *) idiom {
4378 return (id) Idiom_ ?: [NSNull null];
4381 - (NSString *) mcc {
4382 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode")))
4383 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease];
4387 - (NSString *) mnc {
4388 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode")))
4389 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease];
4393 - (NSString *) operator {
4394 if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName")))
4395 return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease];
4399 - (NSString *) bbsnum {
4400 return (id) BBSNum_ ?: [NSNull null];
4403 - (NSString *) ecid {
4404 return (id) ChipID_ ?: [NSNull null];
4407 - (NSString *) serial {
4408 return SerialNumber_;
4411 - (NSString *) role {
4412 return (id) [NSNull null];
4415 - (NSString *) model {
4416 return [NSString stringWithUTF8String:Machine_];
4419 + (NSString *) webScriptNameForSelector:(SEL)selector {
4421 else if (selector == @selector(addBridgedHost:))
4422 return @"addBridgedHost";
4423 else if (selector == @selector(addInsecureHost:))
4424 return @"addInsecureHost";
4425 else if (selector == @selector(addInternalRedirect::))
4426 return @"addInternalRedirect";
4427 else if (selector == @selector(addPipelinedHost:scheme:))
4428 return @"addPipelinedHost";
4429 else if (selector == @selector(addSource:::))
4430 return @"addSource";
4431 else if (selector == @selector(addTrivialSource:))
4432 return @"addTrivialSource";
4433 else if (selector == @selector(close))
4435 else if (selector == @selector(du:))
4437 else if (selector == @selector(stringWithFormat:arguments:))
4439 else if (selector == @selector(getAllSources))
4440 return @"getAllSources";
4441 else if (selector == @selector(getApplicationInfo:value:))
4442 return @"getApplicationInfoValue";
4443 else if (selector == @selector(getKernelNumber:))
4444 return @"getKernelNumber";
4445 else if (selector == @selector(getKernelString:))
4446 return @"getKernelString";
4447 else if (selector == @selector(getInstalledPackages))
4448 return @"getInstalledPackages";
4449 else if (selector == @selector(getIORegistryEntry::))
4450 return @"getIORegistryEntry";
4451 else if (selector == @selector(getLocaleIdentifier))
4452 return @"getLocaleIdentifier";
4453 else if (selector == @selector(getPreferredLanguages))
4454 return @"getPreferredLanguages";
4455 else if (selector == @selector(getPackageById:))
4456 return @"getPackageById";
4457 else if (selector == @selector(getMetadataKeys))
4458 return @"getMetadataKeys";
4459 else if (selector == @selector(getMetadataValue:))
4460 return @"getMetadataValue";
4461 else if (selector == @selector(getSessionValue:))
4462 return @"getSessionValue";
4463 else if (selector == @selector(installPackages:))
4464 return @"installPackages";
4465 else if (selector == @selector(isReachable:))
4466 return @"isReachable";
4467 else if (selector == @selector(localizedStringForKey:value:table:))
4469 else if (selector == @selector(popViewController:))
4470 return @"popViewController";
4471 else if (selector == @selector(refreshSources))
4472 return @"refreshSources";
4473 else if (selector == @selector(registerFrame:))
4474 return @"registerFrame";
4475 else if (selector == @selector(removeButton))
4476 return @"removeButton";
4477 else if (selector == @selector(saveConfig))
4478 return @"saveConfig";
4479 else if (selector == @selector(setMetadataValue::))
4480 return @"setMetadataValue";
4481 else if (selector == @selector(setSessionValue::))
4482 return @"setSessionValue";
4483 else if (selector == @selector(substitutePackageNames:))
4484 return @"substitutePackageNames";
4485 else if (selector == @selector(scrollToBottom:))
4486 return @"scrollToBottom";
4487 else if (selector == @selector(setAllowsNavigationAction:))
4488 return @"setAllowsNavigationAction";
4489 else if (selector == @selector(setBadgeValue:))
4490 return @"setBadgeValue";
4491 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4492 return @"setButtonImage";
4493 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4494 return @"setButtonTitle";
4495 else if (selector == @selector(setHidesBackButton:))
4496 return @"setHidesBackButton";
4497 else if (selector == @selector(setHidesNavigationBar:))
4498 return @"setHidesNavigationBar";
4499 else if (selector == @selector(setNavigationBarStyle:))
4500 return @"setNavigationBarStyle";
4501 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4502 return @"setNavigationBarTintColor";
4503 else if (selector == @selector(setPasteboardString:))
4504 return @"setPasteboardString";
4505 else if (selector == @selector(setPasteboardURL:))
4506 return @"setPasteboardURL";
4507 else if (selector == @selector(setScrollAlwaysBounceVertical:))
4508 return @"setScrollAlwaysBounceVertical";
4509 else if (selector == @selector(setScrollIndicatorStyle:))
4510 return @"setScrollIndicatorStyle";
4511 else if (selector == @selector(setToken:))
4513 else if (selector == @selector(setViewportWidth:))
4514 return @"setViewportWidth";
4515 else if (selector == @selector(statfs:))
4517 else if (selector == @selector(supports:))
4519 else if (selector == @selector(unload))
4525 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4526 return [self webScriptNameForSelector:selector] == nil;
4529 - (BOOL) supports:(NSString *)feature {
4530 return [feature isEqualToString:@"window.open"];
4534 [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO];
4537 - (void) setScrollAlwaysBounceVertical:(NSNumber *)value {
4538 [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO];
4541 - (void) setScrollIndicatorStyle:(NSString *)style {
4542 [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO];
4545 - (void) addInternalRedirect:(NSString *)from :(NSString *)to {
4546 [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4549 - (NSDictionary *) getApplicationInfo:(NSString *)display value:(NSString *)key {
4551 if (SBBundlePathForDisplayIdentifier(SBSSpringBoardServerPort(), [display UTF8String], path) != 0)
4552 return (id) [NSNull null];
4553 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:[[NSString stringWithUTF8String:path] stringByAppendingString:@"/Info.plist"]]);
4555 return (id) [NSNull null];
4556 return [info objectForKey:key];
4559 - (NSNumber *) getKernelNumber:(NSString *)name {
4560 const char *string([name UTF8String]);
4563 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4564 return (id) [NSNull null];
4566 if (size != sizeof(int))
4567 return (id) [NSNull null];
4570 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4571 return (id) [NSNull null];
4573 return [NSNumber numberWithInt:value];
4576 - (NSString *) getKernelString:(NSString *)name {
4577 const char *string([name UTF8String]);
4580 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4581 return (id) [NSNull null];
4583 char value[size + 1];
4584 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4585 return (id) [NSNull null];
4587 // XXX: just in case you request something ludicrous
4590 return [NSString stringWithCString:value];
4593 - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry {
4594 NSObject *value(CYIOGetValue([path UTF8String], entry));
4597 if ([value isKindOfClass:[NSData class]])
4598 value = CYHex((NSData *) value);
4603 - (NSArray *) getMetadataKeys {
4604 @synchronized (Values_) {
4605 return [Values_ allKeys];
4608 - (void) registerFrame:(DOMHTMLIFrameElement *)iframe {
4609 WebFrame *frame([iframe contentFrame]);
4610 [indirect_ registerFrame:frame];
4613 - (id) getMetadataValue:(NSString *)key {
4614 @synchronized (Values_) {
4615 return [Values_ objectForKey:key];
4618 - (void) setMetadataValue:(NSString *)key :(NSString *)value {
4619 @synchronized (Values_) {
4620 if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null])
4621 [Values_ removeObjectForKey:key];
4623 [Values_ setObject:value forKey:key];
4626 - (id) getSessionValue:(NSString *)key {
4627 @synchronized (SessionData_) {
4628 return [SessionData_ objectForKey:key];
4631 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4632 @synchronized (SessionData_) {
4633 if (value == (id) [WebUndefined undefined])
4634 [SessionData_ removeObjectForKey:key];
4636 [SessionData_ setObject:value forKey:key];
4639 - (void) addBridgedHost:(NSString *)host {
4640 @synchronized (HostConfig_) {
4641 [BridgedHosts_ addObject:host];
4644 - (void) addInsecureHost:(NSString *)host {
4645 @synchronized (HostConfig_) {
4646 [InsecureHosts_ addObject:host];
4649 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4650 @synchronized (HostConfig_) {
4651 if (scheme != (id) [WebUndefined undefined])
4652 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4654 [PipelinedHosts_ addObject:host];
4657 - (void) popViewController:(NSNumber *)value {
4658 if (value == (id) [WebUndefined undefined])
4659 value = [NSNumber numberWithBool:YES];
4660 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4663 - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections {
4664 NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]);
4666 for (NSString *section in sections)
4667 [array addObject:section];
4669 [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys:
4672 distribution, @"Distribution",
4674 nil] waitUntilDone:NO];
4677 - (void) addTrivialSource:(NSString *)href {
4678 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4681 - (void) refreshSources {
4682 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4685 - (void) saveConfig {
4686 [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO];
4689 - (NSArray *) getAllSources {
4690 return [[Database sharedInstance] sources];
4693 - (NSArray *) getInstalledPackages {
4694 Database *database([Database sharedInstance]);
4695 @synchronized (database) {
4696 NSArray *packages([database packages]);
4697 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4698 for (Package *package in packages)
4699 if (![package uninstalled])
4700 [installed addObject:package];
4704 - (Package *) getPackageById:(NSString *)id {
4705 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4709 return (Package *) [NSNull null];
4712 - (NSString *) getLocaleIdentifier {
4713 return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_);
4716 - (NSArray *) getPreferredLanguages {
4720 - (NSArray *) statfs:(NSString *)path {
4723 if (path == nil || statfs([path UTF8String], &stat) == -1)
4726 return [NSArray arrayWithObjects:
4727 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4728 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4729 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4733 ssize_t DiskUsage(const char *path);
4735 - (NSNumber *) du:(NSString *)path {
4736 ssize_t usage(DiskUsage([path UTF8String]));
4739 return [NSNumber numberWithUnsignedLong:usage];
4743 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4746 - (NSNumber *) isReachable:(NSString *)name {
4747 return [NSNumber numberWithBool:IsReachable([name UTF8String])];
4750 - (void) installPackages:(NSArray *)packages {
4751 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4754 - (NSString *) substitutePackageNames:(NSString *)message {
4755 NSMutableArray *words([[[message componentsSeparatedByString:@" "] mutableCopy] autorelease]);
4756 for (size_t i(0), e([words count]); i != e; ++i) {
4757 NSString *word([words objectAtIndex:i]);
4758 if (Package *package = [[Database sharedInstance] packageWithName:word])
4759 [words replaceObjectAtIndex:i withObject:[package name]];
4762 return [words componentsJoinedByString:@" "];
4765 - (void) removeButton {
4766 [indirect_ removeButton];
4769 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4770 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4773 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4774 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4777 - (void) setBadgeValue:(id)value {
4778 [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO];
4781 - (void) setAllowsNavigationAction:(NSString *)value {
4782 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4785 - (void) setHidesBackButton:(NSString *)value {
4786 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4789 - (void) setHidesNavigationBar:(NSString *)value {
4790 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4793 - (void) setNavigationBarStyle:(NSString *)value {
4794 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4797 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4798 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4799 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4800 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4803 - (void) setPasteboardString:(NSString *)value {
4804 [[objc_getClass("UIPasteboard") generalPasteboard] setString:value];
4807 - (void) setPasteboardURL:(NSString *)value {
4808 [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]];
4811 - (void) setToken:(NSString *)token {
4812 // XXX: the website expects this :/
4815 - (void) scrollToBottom:(NSNumber *)animated {
4816 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4819 - (void) setViewportWidth:(float)width {
4820 [indirect_ setViewportWidthOnMainThread:width];
4823 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4824 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4825 unsigned count([arguments count]);
4827 for (unsigned i(0); i != count; ++i)
4828 values[i] = [arguments objectAtIndex:i];
4829 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4832 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4833 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4835 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4837 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4843 @interface NSURL (CydiaSecure)
4846 @implementation NSURL (CydiaSecure)
4848 - (bool) isCydiaSecure {
4849 if ([[[self scheme] lowercaseString] isEqualToString:@"https"])
4852 @synchronized (HostConfig_) {
4853 if ([InsecureHosts_ containsObject:[self host]])
4862 /* Cydia Browser Controller {{{ */
4863 @implementation CydiaWebViewController
4865 - (NSURL *) navigationURL {
4866 return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4869 + (void) _initialize {
4870 [super _initialize];
4872 Diversions_ = [NSMutableSet setWithCapacity:0];
4875 + (void) addDiversion:(Diversion *)diversion {
4876 [Diversions_ addObject:diversion];
4879 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4880 [super webView:view didClearWindowObject:window forFrame:frame];
4881 [CydiaWebViewController didClearWindowObject:window forFrame:frame withCydia:cydia_];
4884 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia {
4885 WebDataSource *source([frame dataSource]);
4886 NSURLResponse *response([source response]);
4887 NSURL *url([response URL]);
4888 NSString *scheme([[url scheme] lowercaseString]);
4890 bool bridged(false);
4892 @synchronized (HostConfig_) {
4893 if ([scheme isEqualToString:@"file"])
4895 else if ([scheme isEqualToString:@"https"])
4896 if ([BridgedHosts_ containsObject:[url host]])
4901 [window setValue:cydia forKey:@"cydia"];
4904 - (void) _setupMail:(MFMailComposeViewController *)controller {
4905 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"];
4907 system("/usr/bin/dpkg -l >/tmp/dpkgl.log");
4908 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"];
4911 - (NSURL *) URLWithURL:(NSURL *)url {
4912 return [Diversion divertURL:url];
4915 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4916 return [CydiaWebViewController requestWithHeaders:[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]];
4919 - (NSURLRequest *) webThreadWebView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4920 return [CydiaWebViewController requestWithHeaders:[super webThreadWebView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]];
4923 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request {
4924 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
4926 NSURL *url([copy URL]);
4927 NSString *href([url absoluteString]);
4928 NSString *host([url host]);
4930 if ([href hasPrefix:@"https://cydia.saurik.com/TSS/"]) {
4931 if (NSString *agent = [copy valueForHTTPHeaderField:@"X-User-Agent"]) {
4932 [copy setValue:agent forHTTPHeaderField:@"User-Agent"];
4933 [copy setValue:nil forHTTPHeaderField:@"X-User-Agent"];
4936 [copy setValue:nil forHTTPHeaderField:@"Referer"];
4937 [copy setValue:nil forHTTPHeaderField:@"Origin"];
4939 [copy setURL:[NSURL URLWithString:[@"http://gs.apple.com/TSS/" stringByAppendingString:[href substringFromIndex:29]]]];
4943 if ([copy valueForHTTPHeaderField:@"X-Cydia-Cf"] == nil)
4944 [copy setValue:[NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber] forHTTPHeaderField:@"X-Cydia-Cf"];
4945 if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil)
4946 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4948 bool bridged; @synchronized (HostConfig_) {
4949 bridged = [BridgedHosts_ containsObject:host];
4952 if ([url isCydiaSecure] && bridged && UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil)
4953 [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
4958 - (void) setDelegate:(id)delegate {
4959 [super setDelegate:delegate];
4960 [cydia_ setDelegate:delegate];
4963 - (NSString *) applicationNameForUserAgent {
4968 if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) {
4969 cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease];
4975 @interface AppCacheController : CydiaWebViewController {
4980 @implementation AppCacheController
4982 - (void) didReceiveMemoryWarning {
4983 // XXX: this doesn't work
4986 - (bool) retainsNetworkActivityIndicator {
4994 @interface NSObject (CydiaScript)
4995 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4998 @implementation NSObject (CydiaScript)
5000 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
5006 @implementation NSArray (CydiaScript)
5008 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
5009 WebScriptObject *object([context evaluateWebScript:@"[]"]);
5010 for (size_t i(0), e([self count]); i != e; ++i)
5011 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
5017 @implementation NSDictionary (CydiaScript)
5019 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
5020 WebScriptObject *object([context evaluateWebScript:@"({})"]);
5022 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
5029 /* Confirmation Controller {{{ */
5030 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
5031 if (!iterator.end())
5032 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
5033 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
5035 pkgCache::PkgIterator package(dep.TargetPkg());
5038 if (strcmp(package.Name(), "mobilesubstrate") == 0)
5045 @protocol ConfirmationControllerDelegate
5046 - (void) cancelAndClear:(bool)clear;
5047 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
5051 @interface ConfirmationController : CydiaWebViewController {
5052 _transient Database *database_;
5054 _H<UIAlertView> essential_;
5056 _H<NSDictionary> changes_;
5057 _H<NSMutableArray> issues_;
5058 _H<NSDictionary> sizes_;
5063 - (id) initWithDatabase:(Database *)database;
5067 @implementation ConfirmationController
5071 RestartSubstrate_ = true;
5072 [delegate_ confirmWithNavigationController:[self navigationController]];
5075 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
5076 NSString *context([alert context]);
5078 if ([context isEqualToString:@"remove"]) {
5079 if (button == [alert cancelButtonIndex])
5081 else if (button == [alert firstOtherButtonIndex]) {
5082 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
5085 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5086 } else if ([context isEqualToString:@"unable"]) {
5087 [self dismissModalViewControllerAnimated:YES];
5088 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5090 [super alertView:alert clickedButtonAtIndex:button];
5094 - (void) _doContinue {
5095 [delegate_ cancelAndClear:NO];
5096 [self dismissModalViewControllerAnimated:YES];
5099 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
5100 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
5104 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5105 [super webView:view didClearWindowObject:window forFrame:frame];
5107 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
5108 (id) changes_, @"changes",
5109 (id) issues_, @"issues",
5110 (id) sizes_, @"sizes",
5112 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
5115 - (id) initWithDatabase:(Database *)database {
5116 if ((self = [super init]) != nil) {
5117 database_ = database;
5119 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
5120 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
5121 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
5122 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
5123 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
5127 pkgCacheFile &cache([database_ cache]);
5128 NSArray *packages([database_ packages]);
5129 pkgDepCache::Policy *policy([database_ policy]);
5131 issues_ = [NSMutableArray arrayWithCapacity:4];
5133 for (Package *package in packages) {
5134 pkgCache::PkgIterator iterator([package iterator]);
5135 NSString *name([package id]);
5137 if ([package broken]) {
5138 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
5140 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5142 reasons, @"reasons",
5145 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
5149 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
5150 pkgCache::DepIterator start;
5151 pkgCache::DepIterator end;
5152 dep.GlobOr(start, end); // ++dep
5154 if (!cache->IsImportantDep(end))
5156 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
5159 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
5161 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5162 [NSString stringWithUTF8String:start.DepType()], @"relationship",
5163 clauses, @"clauses",
5167 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
5169 pkgCache::PkgIterator target(start.TargetPkg());
5170 if (target->ProvidesList != 0)
5171 reason = @"missing";
5173 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
5175 reason = @"installed";
5176 installed = [NSString stringWithUTF8String:ver.VerStr()];
5177 } else if (!cache[target].CandidateVerIter(cache).end())
5178 reason = @"uninstalled";
5179 else if (target->ProvidesList == 0)
5180 reason = @"uninstallable";
5182 reason = @"virtual";
5185 NSDictionary *version(start.TargetVer() == 0 ? (NSDictionary *) [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
5186 [NSString stringWithUTF8String:start.CompType()], @"operator",
5187 [NSString stringWithUTF8String:start.TargetVer()], @"value",
5190 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5191 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
5192 version, @"version",
5194 installed, @"installed",
5197 // yes, seriously. (wtf?)
5205 pkgDepCache::StateCache &state(cache[iterator]);
5207 static RegEx special_r("(firmware|gsc\\..*|cy\\+.*)");
5209 if (state.NewInstall())
5210 [installs addObject:name];
5211 // XXX: else if (state.Install())
5212 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
5213 [reinstalls addObject:name];
5214 // XXX: move before previous if
5215 else if (state.Upgrade())
5216 [upgrades addObject:name];
5217 else if (state.Downgrade())
5218 [downgrades addObject:name];
5219 else if (!state.Delete())
5220 // XXX: _assert(state.Keep());
5222 else if (special_r(name))
5223 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5224 [NSNull null], @"package",
5225 [NSArray arrayWithObjects:
5226 [NSDictionary dictionaryWithObjectsAndKeys:
5227 @"Conflicts", @"relationship",
5228 [NSArray arrayWithObjects:
5229 [NSDictionary dictionaryWithObjectsAndKeys:
5231 [NSNull null], @"version",
5232 @"installed", @"reason",
5239 if ([package essential])
5241 [removes addObject:name];
5244 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
5245 substrate_ |= DepSubstrate(iterator.CurrentVer());
5250 else if (Advanced_) {
5251 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
5253 essential_ = [[[UIAlertView alloc]
5254 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
5255 message:UCLocalize("REMOVING_ESSENTIALS_EX")
5257 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
5259 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
5263 [essential_ setContext:@"remove"];
5264 [essential_ setNumberOfRows:2];
5266 essential_ = [[[UIAlertView alloc]
5267 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
5268 message:UCLocalize("UNABLE_TO_COMPLY_EX")
5270 cancelButtonTitle:UCLocalize("OKAY")
5271 otherButtonTitles:nil
5274 [essential_ setContext:@"unable"];
5277 changes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5278 installs, @"installs",
5279 reinstalls, @"reinstalls",
5280 upgrades, @"upgrades",
5281 downgrades, @"downgrades",
5282 removes, @"removes",
5285 sizes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5286 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
5287 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
5290 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
5294 - (UIBarButtonItem *) leftButton {
5295 return [[[UIBarButtonItem alloc]
5296 initWithTitle:UCLocalize("CANCEL")
5297 style:UIBarButtonItemStylePlain
5299 action:@selector(cancelButtonClicked)
5304 - (void) applyRightButton {
5305 if ([issues_ count] == 0 && ![self isLoading])
5306 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
5307 initWithTitle:UCLocalize("CONFIRM")
5308 style:UIBarButtonItemStyleDone
5310 action:@selector(confirmButtonClicked)
5313 [[self navigationItem] setRightBarButtonItem:nil];
5317 - (void) cancelButtonClicked {
5318 [delegate_ cancelAndClear:YES];
5319 [self dismissModalViewControllerAnimated:YES];
5323 - (void) confirmButtonClicked {
5324 if (essential_ != nil)
5334 /* Progress Data {{{ */
5335 @interface CydiaProgressData : NSObject {
5336 _transient id delegate_;
5345 _H<NSMutableArray> events_;
5346 _H<NSString> title_;
5348 _H<NSString> status_;
5349 _H<NSString> finish_;
5354 @implementation CydiaProgressData
5356 + (NSArray *) _attributeKeys {
5357 return [NSArray arrayWithObjects:
5369 - (NSArray *) attributeKeys {
5370 return [[self class] _attributeKeys];
5373 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
5374 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
5378 if ((self = [super init]) != nil) {
5379 events_ = [NSMutableArray arrayWithCapacity:32];
5387 - (void) setDelegate:(id)delegate {
5388 delegate_ = delegate;
5391 - (void) setPercent:(float)value {
5395 - (NSNumber *) percent {
5396 return [NSNumber numberWithFloat:percent_];
5399 - (void) setCurrent:(float)value {
5403 - (NSNumber *) current {
5404 return [NSNumber numberWithFloat:current_];
5407 - (void) setTotal:(float)value {
5411 - (NSNumber *) total {
5412 return [NSNumber numberWithFloat:total_];
5415 - (void) setSpeed:(float)value {
5419 - (NSNumber *) speed {
5420 return [NSNumber numberWithFloat:speed_];
5423 - (NSArray *) events {
5427 - (void) removeAllEvents {
5428 [events_ removeAllObjects];
5431 - (void) addEvent:(CydiaProgressEvent *)event {
5432 [events_ addObject:event];
5435 - (void) setTitle:(NSString *)text {
5439 - (NSString *) title {
5443 - (void) setFinish:(NSString *)text {
5447 - (NSString *) finish {
5448 return (id) finish_ ?: [NSNull null];
5451 - (void) setRunning:(bool)running {
5455 - (NSNumber *) running {
5456 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5461 /* Progress Controller {{{ */
5462 @interface ProgressController : CydiaWebViewController <
5465 _transient Database *database_;
5466 _H<CydiaProgressData, 1> progress_;
5470 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5472 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5474 - (void) setTitle:(NSString *)title;
5475 - (void) setCancellable:(bool)cancellable;
5479 @implementation ProgressController
5482 [database_ setProgressDelegate:nil];
5486 - (UIBarButtonItem *) leftButton {
5487 return cancel_ == 1 ? [[[UIBarButtonItem alloc]
5488 initWithTitle:UCLocalize("CANCEL")
5489 style:UIBarButtonItemStylePlain
5491 action:@selector(cancel)
5492 ] autorelease] : nil;
5495 - (void) updateCancel {
5496 [super applyLeftButton];
5499 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5500 if ((self = [super init]) != nil) {
5501 database_ = database;
5502 delegate_ = delegate;
5504 [database_ setProgressDelegate:self];
5506 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5507 [progress_ setDelegate:self];
5509 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5511 [scroller_ setBackgroundColor:[UIColor blackColor]];
5513 [[self navigationItem] setHidesBackButton:YES];
5515 [self updateCancel];
5519 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5520 [super webView:view didClearWindowObject:window forFrame:frame];
5521 [window setValue:progress_ forKey:@"cydiaProgress"];
5524 - (void) updateProgress {
5525 [self dispatchEvent:@"CydiaProgressUpdate"];
5528 - (void) viewWillAppear:(BOOL)animated {
5529 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5530 [super viewWillAppear:animated];
5533 - (void) reloadSpringBoard {
5534 if (kCFCoreFoundationVersionNumber >= 700) // XXX: iOS 6.x
5535 system("/bin/launchctl stop com.apple.backboardd");
5537 system("/bin/launchctl stop com.apple.SpringBoard");
5539 system("/usr/bin/killall backboardd SpringBoard");
5543 UpdateExternalStatus(0);
5546 [delegate_ saveState];
5550 [delegate_ returnToCydia];
5554 [delegate_ terminateWithSuccess];
5555 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5556 [delegate_ suspendWithAnimation:YES];
5558 [delegate_ suspend];*/
5570 UIProgressHUD *hud([delegate_ addProgressHUD]);
5571 [hud setText:UCLocalize("LOADING")];
5572 [self performSelector:@selector(reloadSpringBoard) withObject:nil afterDelay:0.5];
5578 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5579 SBReboot(SBSSpringBoardServerPort());
5581 reboot2(RB_AUTOBOOT);
5588 - (void) setTitle:(NSString *)title {
5589 [progress_ setTitle:title];
5590 [self updateProgress];
5593 - (UIBarButtonItem *) rightButton {
5594 return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc]
5595 initWithTitle:UCLocalize("CLOSE")
5596 style:UIBarButtonItemStylePlain
5598 action:@selector(close)
5602 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5603 UpdateExternalStatus(1);
5605 [progress_ setRunning:true];
5606 [self setTitle:title];
5607 // implicit updateProgress
5609 SHA1SumValue notifyconf; {
5611 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5614 MMap mmap(file, MMap::ReadOnly);
5616 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5617 notifyconf = sha1.Result();
5621 SHA1SumValue springlist; {
5623 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5626 MMap mmap(file, MMap::ReadOnly);
5628 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5629 springlist = sha1.Result();
5633 if (invocation != nil) {
5634 [invocation yieldToSelector:@selector(invoke)];
5635 [self setTitle:@"COMPLETE"];
5640 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5643 MMap mmap(file, MMap::ReadOnly);
5645 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5646 if (!(notifyconf == sha1.Result()))
5653 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5656 MMap mmap(file, MMap::ReadOnly);
5658 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5659 if (!(springlist == sha1.Result()))
5665 if (RestartSubstrate_)
5669 RestartSubstrate_ = false;
5672 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5673 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5674 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5675 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5676 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5679 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5681 [progress_ setRunning:false];
5682 [self updateProgress];
5684 [self applyRightButton];
5687 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5688 [progress_ addEvent:event];
5689 [self updateProgress];
5692 - (bool) isProgressCancelled {
5693 return cancel_ == 2;
5698 [self updateCancel];
5701 - (void) setCancellable:(bool)cancellable {
5702 unsigned cancel(cancel_);
5706 else if (cancel_ == 0)
5709 if (cancel != cancel_)
5710 [self updateCancel];
5713 - (void) setProgressCancellable:(NSNumber *)cancellable {
5714 [self setCancellable:[cancellable boolValue]];
5717 - (void) setProgressPercent:(NSNumber *)percent {
5718 [progress_ setPercent:[percent floatValue]];
5719 [self updateProgress];
5722 - (void) setProgressStatus:(NSDictionary *)status {
5723 if (status == nil) {
5724 [progress_ setCurrent:0];
5725 [progress_ setTotal:0];
5726 [progress_ setSpeed:0];
5728 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5730 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5731 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5732 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5735 [self updateProgress];
5741 /* Package Cell {{{ */
5742 @interface PackageCell : CyteTableViewCell <
5743 CyteTableViewCellDelegate
5747 _H<NSString> description_;
5749 _H<NSString> source_;
5751 _H<UIImage> placard_;
5755 - (PackageCell *) init;
5756 - (void) setPackage:(Package *)package asSummary:(bool)summary;
5758 - (void) drawContentRect:(CGRect)rect;
5762 @implementation PackageCell
5764 - (PackageCell *) init {
5765 CGRect frame(CGRectMake(0, 0, 320, 74));
5766 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5767 UIView *content([self contentView]);
5768 CGRect bounds([content bounds]);
5770 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5771 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5772 [content addSubview:content_];
5774 [content_ setDelegate:self];
5775 [content_ setOpaque:YES];
5779 - (NSString *) accessibilityLabel {
5783 - (void) setPackage:(Package *)package asSummary:(bool)summary {
5784 summarized_ = summary;
5794 [content_ setBackgroundColor:[UIColor whiteColor]];
5798 Source *source = [package source];
5800 icon_ = [package icon];
5802 if (NSString *name = [package name])
5803 name_ = [NSString stringWithString:name];
5805 if (NSString *description = [package shortDescription])
5806 description_ = [NSString stringWithString:description];
5808 commercial_ = [package isCommercial];
5810 NSString *label = nil;
5811 bool trusted = false;
5813 if (source != nil) {
5814 label = [source label];
5815 trusted = [source trusted];
5816 } else if ([[package id] isEqualToString:@"firmware"])
5817 label = UCLocalize("APPLE");
5819 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5821 NSString *from(label);
5823 NSString *section = [package simpleSection];
5824 if (section != nil && ![section isEqualToString:label]) {
5825 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5826 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5829 source_ = [NSString stringWithFormat:UCLocalize("FROM"), from];
5831 if (NSString *purpose = [package primaryPurpose])
5832 badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]];
5837 if (NSString *mode = [package mode]) {
5838 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5839 color = RemovingColor_;
5840 placard = @"removing";
5842 color = InstallingColor_;
5843 placard = @"installing";
5846 color = [UIColor whiteColor];
5848 if ([package installed] != nil)
5849 placard = @"installed";
5854 [content_ setBackgroundColor:color];
5857 placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]];
5860 [self setNeedsDisplay];
5861 [content_ setNeedsDisplay];
5864 - (void) drawSummaryContentRect:(CGRect)rect {
5865 bool highlighted(highlighted_);
5866 float width([self bounds].size.width);
5870 rect.size = [(UIImage *) icon_ size];
5872 while (rect.size.width > 16 || rect.size.height > 16) {
5873 rect.size.width /= 2;
5874 rect.size.height /= 2;
5877 rect.origin.x = 19 - rect.size.width / 2;
5878 rect.origin.y = 19 - rect.size.height / 2;
5880 [icon_ drawInRect:Retina(rect)];
5883 if (badge_ != nil) {
5885 rect.size = [(UIImage *) badge_ size];
5887 rect.size.width /= 4;
5888 rect.size.height /= 4;
5890 rect.origin.x = 25 - rect.size.width / 2;
5891 rect.origin.y = 25 - rect.size.height / 2;
5893 [badge_ drawInRect:Retina(rect)];
5896 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5900 UISetColor(commercial_ ? Purple_ : Black_);
5901 [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5903 if (placard_ != nil)
5904 [placard_ drawAtPoint:CGPointMake(width - 52, 11)];
5907 - (void) drawNormalContentRect:(CGRect)rect {
5908 bool highlighted(highlighted_);
5909 float width([self bounds].size.width);
5913 rect.size = [(UIImage *) icon_ size];
5915 while (rect.size.width > 32 || rect.size.height > 32) {
5916 rect.size.width /= 2;
5917 rect.size.height /= 2;
5920 rect.origin.x = 25 - rect.size.width / 2;
5921 rect.origin.y = 25 - rect.size.height / 2;
5923 [icon_ drawInRect:Retina(rect)];
5926 if (badge_ != nil) {
5928 rect.size = [(UIImage *) badge_ size];
5930 rect.size.width /= 2;
5931 rect.size.height /= 2;
5933 rect.origin.x = 36 - rect.size.width / 2;
5934 rect.origin.y = 36 - rect.size.height / 2;
5936 [badge_ drawInRect:Retina(rect)];
5939 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5943 UISetColor(commercial_ ? Purple_ : Black_);
5944 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5945 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
5948 UISetColor(commercial_ ? Purplish_ : Gray_);
5949 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:NSLineBreakByTruncatingTail];
5951 if (placard_ != nil)
5952 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5955 - (void) drawContentRect:(CGRect)rect {
5957 [self drawSummaryContentRect:rect];
5959 [self drawNormalContentRect:rect];
5964 /* Section Cell {{{ */
5965 @interface SectionCell : CyteTableViewCell <
5966 CyteTableViewCellDelegate
5968 _H<NSString> basic_;
5969 _H<NSString> section_;
5971 _H<NSString> count_;
5973 _H<UISwitch> switch_;
5977 - (void) setSection:(Section *)section editing:(BOOL)editing;
5981 @implementation SectionCell
5983 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5984 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5985 icon_ = [UIImage imageNamed:@"folder.png"];
5986 // XXX: this initial frame is wrong, but is fixed later
5987 switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease];
5988 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5990 UIView *content([self contentView]);
5991 CGRect bounds([content bounds]);
5993 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5994 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5995 [content addSubview:content_];
5996 [content_ setBackgroundColor:[UIColor whiteColor]];
5998 [content_ setDelegate:self];
6002 - (void) onSwitch:(id)sender {
6003 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
6004 if (metadata == nil) {
6005 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
6006 [Sections_ setObject:metadata forKey:basic_];
6009 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
6012 - (void) setSection:(Section *)section editing:(BOOL)editing {
6013 if (editing != editing_) {
6015 [switch_ removeFromSuperview];
6017 [self addSubview:switch_];
6026 if (section == nil) {
6027 name_ = UCLocalize("ALL_PACKAGES");
6030 basic_ = [section name];
6031 section_ = [section localized];
6033 name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_;
6034 count_ = [NSString stringWithFormat:@"%zd", [section count]];
6037 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
6040 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
6041 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
6043 [content_ setNeedsDisplay];
6046 - (void) setFrame:(CGRect)frame {
6047 [super setFrame:frame];
6049 CGRect rect([switch_ frame]);
6050 [switch_ setFrame:CGRectMake(frame.size.width - rect.size.width - 9, 9, rect.size.width, rect.size.height)];
6053 - (NSString *) accessibilityLabel {
6057 - (void) drawContentRect:(CGRect)rect {
6058 bool highlighted(highlighted_ && !editing_);
6060 [icon_ drawInRect:CGRectMake(7, 7, 32, 32)];
6062 if (highlighted && kCFCoreFoundationVersionNumber < 800)
6065 float width(rect.size.width);
6067 width -= 9 + [switch_ frame].size.width;
6071 [name_ drawAtPoint:CGPointMake(48, 12) forWidth:(width - 58) withFont:Font18_ lineBreakMode:NSLineBreakByTruncatingTail];
6073 CGSize size = [count_ sizeWithFont:Font14_];
6075 UISetColor(Folder_);
6077 [count_ drawAtPoint:CGPointMake(Retina(10 + (30 - size.width) / 2), 18) withFont:Font12Bold_];
6083 /* File Table {{{ */
6084 @interface FileTable : CyteViewController <
6085 UITableViewDataSource,
6088 _transient Database *database_;
6089 _H<Package> package_;
6091 _H<NSMutableArray> files_;
6092 _H<UITableView, 2> list_;
6095 - (id) initWithDatabase:(Database *)database;
6096 - (void) setPackage:(Package *)package;
6100 @implementation FileTable
6102 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6103 return files_ == nil ? 0 : [files_ count];
6106 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6110 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6111 static NSString *reuseIdentifier = @"Cell";
6113 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6115 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6116 [cell setFont:[UIFont systemFontOfSize:16]];
6118 [cell setText:[files_ objectAtIndex:indexPath.row]];
6119 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
6124 - (NSURL *) navigationURL {
6125 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
6129 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
6130 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6131 [list_ setRowHeight:24.0f];
6132 [(UITableView *) list_ setDataSource:self];
6133 [list_ setDelegate:self];
6134 [self setView:list_];
6137 - (void) viewDidLoad {
6138 [super viewDidLoad];
6140 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
6143 - (void) releaseSubviews {
6149 [super releaseSubviews];
6152 - (id) initWithDatabase:(Database *)database {
6153 if ((self = [super init]) != nil) {
6154 database_ = database;
6158 - (void) setPackage:(Package *)package {
6162 files_ = [NSMutableArray arrayWithCapacity:32];
6164 if (package != nil) {
6166 name_ = [package id];
6168 if (NSArray *files = [package files])
6169 [files_ addObjectsFromArray:files];
6171 if ([files_ count] != 0) {
6172 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
6173 [files_ removeObjectAtIndex:0];
6174 [files_ sortUsingSelector:@selector(compareByPath:)];
6176 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
6177 [stack addObject:@"/"];
6179 for (int i(0), e([files_ count]); i != e; ++i) {
6180 NSString *file = [files_ objectAtIndex:i];
6181 while (![file hasPrefix:[stack lastObject]])
6182 [stack removeLastObject];
6183 NSString *directory = [stack lastObject];
6184 [stack addObject:[file stringByAppendingString:@"/"]];
6185 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
6186 ([stack count] - 2) * 3, "",
6187 [file substringFromIndex:[directory length]]
6196 - (void) reloadData {
6199 [self setPackage:[database_ packageWithName:name_]];
6204 /* Package Controller {{{ */
6205 @interface CYPackageController : CydiaWebViewController <
6206 UIActionSheetDelegate
6208 _transient Database *database_;
6209 _H<Package> package_;
6212 std::vector<std::pair<_H<NSString>, _H<NSString>>> buttons_;
6213 _H<UIBarButtonItem> button_;
6216 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer;
6220 @implementation CYPackageController
6222 - (NSURL *) navigationURL {
6223 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
6226 - (void) _clickButtonWithName:(NSString *)name {
6227 if ([name isEqualToString:@"CLEAR"])
6228 [delegate_ clearPackage:package_];
6229 else if ([name isEqualToString:@"INSTALL"])
6230 [delegate_ installPackage:package_];
6231 else if ([name isEqualToString:@"REINSTALL"])
6232 [delegate_ installPackage:package_];
6233 else if ([name isEqualToString:@"REMOVE"])
6234 [delegate_ removePackage:package_];
6235 else if ([name isEqualToString:@"UPGRADE"])
6236 [delegate_ installPackage:package_];
6237 else _assert(false);
6240 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
6241 NSString *context([sheet context]);
6243 if ([context isEqualToString:@"modify"]) {
6244 if (button != [sheet cancelButtonIndex]) {
6246 [self performSelector:@selector(_clickButtonWithName:) withObject:buttons_[button].first afterDelay:0];
6248 [self _clickButtonWithName:buttons_[button].first];
6251 [sheet dismissWithClickedButtonIndex:button animated:YES];
6255 - (bool) _allowJavaScriptPanel {
6260 - (void) _customButtonClicked {
6261 size_t count(buttons_.size());
6266 [self _clickButtonWithName:buttons_[0].first];
6268 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
6269 for (const auto &button : buttons_)
6270 [buttons addObject:button.second];
6272 UIActionSheet *sheet = [[[UIActionSheet alloc]
6275 cancelButtonTitle:nil
6276 destructiveButtonTitle:nil
6277 otherButtonTitles:nil
6280 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
6282 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
6283 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
6285 [sheet setContext:@"modify"];
6287 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
6291 - (void) reloadButtonClicked {
6292 if (commercial_ && function_ == nil && [package_ uninstalled])
6294 [self customButtonClicked];
6297 - (void) applyLoadingTitle {
6298 // Don't show "Loading" as the title. Ever.
6301 - (UIBarButtonItem *) rightButton {
6306 - (void) setPageColor:(UIColor *)color {
6307 return [super setPageColor:nil];
6310 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer {
6311 if ((self = [super init]) != nil) {
6312 database_ = database;
6313 name_ = name == nil ? @"" : [NSString stringWithString:name];
6314 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]] withReferrer:referrer];
6318 - (void) reloadData {
6321 package_ = [database_ packageWithName:name_];
6325 if (package_ != nil) {
6326 [(Package *) package_ parse];
6328 commercial_ = [package_ isCommercial];
6330 if ([package_ mode] != nil)
6331 buttons_.push_back(std::make_pair(@"CLEAR", UCLocalize("CLEAR")));
6332 if ([package_ source] == nil);
6333 else if ([package_ upgradableAndEssential:NO])
6334 buttons_.push_back(std::make_pair(@"UPGRADE", UCLocalize("UPGRADE")));
6335 else if ([package_ uninstalled])
6336 buttons_.push_back(std::make_pair(@"INSTALL", UCLocalize("INSTALL")));
6338 buttons_.push_back(std::make_pair(@"REINSTALL", UCLocalize("REINSTALL")));
6339 if (![package_ uninstalled])
6340 buttons_.push_back(std::make_pair(@"REMOVE", UCLocalize("REMOVE")));
6344 switch (buttons_.size()) {
6345 case 0: title = nil; break;
6346 case 1: title = buttons_[0].second; break;
6347 default: title = UCLocalize("MODIFY"); break;
6350 button_ = [[[UIBarButtonItem alloc]
6352 style:UIBarButtonItemStylePlain
6354 action:@selector(customButtonClicked)
6358 - (bool) isLoading {
6359 return commercial_ ? [super isLoading] : false;
6365 /* Package List Controller {{{ */
6366 @interface PackageListController : CyteViewController <
6367 UITableViewDataSource,
6370 _transient Database *database_;
6372 _H<NSArray> packages_;
6373 _H<NSArray> sections_;
6374 _H<UITableView, 2> list_;
6376 _H<NSArray> thumbs_;
6377 std::vector<NSInteger> offset_;
6379 _H<NSString> title_;
6380 unsigned reloading_;
6383 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6384 - (void) setDelegate:(id)delegate;
6385 - (void) resetCursor;
6388 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages;
6392 @implementation PackageListController
6394 - (NSURL *) referrerURL {
6395 return [self navigationURL];
6398 - (bool) isSummarized {
6402 - (bool) showsSections {
6406 - (void) deselectWithAnimation:(BOOL)animated {
6407 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6410 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6411 CGRect base = [[self view] bounds];
6412 base.size.height -= bounds.size.height;
6413 base.origin = [list_ frame].origin;
6415 [UIView beginAnimations:nil context:NULL];
6416 [UIView setAnimationBeginsFromCurrentState:YES];
6417 [UIView setAnimationCurve:curve];
6418 [UIView setAnimationDuration:duration];
6419 [list_ setFrame:base];
6420 [UIView commitAnimations];
6423 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6424 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6427 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6428 [self resizeForKeyboardBounds:bounds duration:0];
6431 - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification {
6432 if (&UIKeyboardAnimationCurveUserInfoKey == NULL)
6433 *curve = UIViewAnimationCurveEaseInOut;
6435 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve];
6437 if (&UIKeyboardAnimationDurationUserInfoKey == NULL)
6440 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration];
6443 - (void) keyboardWillShow:(NSNotification *)notification {
6446 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6447 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er];
6449 NSTimeInterval duration;
6450 UIViewAnimationCurve curve;
6451 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6453 CGRect kbframe = CGRectMake(Retina(center.x - bounds.size.width / 2), Retina(center.y - bounds.size.height / 2), bounds.size.width, bounds.size.height);
6454 UIViewController *base = self;
6455 while ([base parentOrPresentingViewController] != nil)
6456 base = [base parentOrPresentingViewController];
6457 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6458 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6460 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6461 intersection.size.height += CYStatusBarHeight();
6463 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6466 - (void) keyboardWillHide:(NSNotification *)notification {
6467 NSTimeInterval duration;
6468 UIViewAnimationCurve curve;
6469 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6471 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6474 - (void) viewWillAppear:(BOOL)animated {
6475 [super viewWillAppear:animated];
6477 [self resizeForKeyboardBounds:CGRectZero];
6478 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6479 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6482 - (void) viewWillDisappear:(BOOL)animated {
6483 [super viewWillDisappear:animated];
6485 [self resizeForKeyboardBounds:CGRectZero];
6486 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6487 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6490 - (void) viewDidAppear:(BOOL)animated {
6491 [super viewDidAppear:animated];
6492 [self deselectWithAnimation:animated];
6495 - (void) didSelectPackage:(Package *)package {
6496 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id] withReferrer:[[self referrerURL] absoluteString]] autorelease]);
6497 [view setDelegate:delegate_];
6498 [[self navigationController] pushViewController:view animated:YES];
6501 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6502 NSInteger count([sections_ count]);
6503 return count == 0 ? 1 : count;
6506 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6507 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6509 return [[sections_ objectAtIndex:section] name];
6512 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6513 if ([sections_ count] == 0)
6515 return [[sections_ objectAtIndex:section] count];
6518 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6519 @synchronized (database_) {
6520 if ([database_ era] != era_)
6523 Section *section([sections_ objectAtIndex:[path section]]);
6524 NSInteger row([path row]);
6525 Package *package([packages_ objectAtIndex:([section row] + row)]);
6526 return [[package retain] autorelease];
6529 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6530 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6532 cell = [[[PackageCell alloc] init] autorelease];
6534 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
6535 [cell setPackage:package asSummary:[self isSummarized]];
6539 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6540 Package *package([self packageAtIndexPath:path]);
6541 package = [database_ packageWithName:[package id]];
6542 [self didSelectPackage:package];
6545 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6549 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6550 return offset_[index];
6553 - (void) updateHeight {
6554 [list_ setRowHeight:([self isSummarized] ? 38 : 73)];
6557 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6558 if ((self = [super init]) != nil) {
6559 database_ = database;
6560 title_ = [title copy];
6561 [[self navigationItem] setTitle:title_];
6566 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
6567 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
6568 [self setView:view];
6570 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
6571 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6572 [view addSubview:list_];
6574 // XXX: is 20 the most optimal number here?
6575 [list_ setSectionIndexMinimumDisplayRowCount:20];
6577 [(UITableView *) list_ setDataSource:self];
6578 [list_ setDelegate:self];
6580 [self updateHeight];
6583 - (void) releaseSubviews {
6592 [super releaseSubviews];
6595 - (void) setDelegate:(id)delegate {
6596 delegate_ = delegate;
6599 - (bool) shouldYield {
6603 - (bool) shouldBlock {
6607 - (NSMutableArray *) _reloadPackages {
6608 @synchronized (database_) {
6609 era_ = [database_ era];
6610 NSArray *packages([database_ packages]);
6612 return [NSMutableArray arrayWithArray:packages];
6615 - (void) _reloadData {
6616 if (reloading_ != 0) {
6621 NSMutableArray *packages;
6624 if ([self shouldYield]) {
6628 if (![self shouldBlock])
6631 hud = [delegate_ addProgressHUD];
6632 [hud setText:UCLocalize("LOADING")];
6636 packages = [self yieldToSelector:@selector(_reloadPackages)];
6639 [delegate_ removeProgressHUD:hud];
6640 } while (reloading_ == 2);
6642 packages = [self _reloadPackages];
6645 @synchronized (database_) {
6646 if (era_ != [database_ era])
6653 packages_ = packages;
6655 if ([self showsSections])
6656 sections_ = [self sectionsForPackages:packages];
6658 Section *section([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6659 [section setCount:[packages_ count]];
6660 sections_ = [NSArray arrayWithObject:section];
6663 [self updateHeight];
6665 _profile(PackageTable$reloadData$List)
6666 [(UITableView *) list_ setDataSource:self];
6674 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
6675 Section *prefix([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6676 size_t end([packages count]);
6678 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
6679 Section *section(prefix);
6681 thumbs_ = CollationThumbs_;
6682 offset_ = CollationOffset_;
6685 size_t offsets([CollationStarts_ count]);
6687 NSString *start([CollationStarts_ objectAtIndex:offset]);
6688 size_t length([start length]);
6690 for (size_t index(0); index != end; ++index) {
6692 Package *package([packages objectAtIndex:index]);
6693 NSString *name(PackageName(package, @selector(cyname)));
6695 //while ([start compare:name options:NSNumericSearch range:NSMakeRange(0, length) locale:CollationLocale_] != NSOrderedDescending) {
6696 while (StringNameCompare(start, name, length) != kCFCompareGreaterThan) {
6697 NSString *title([CollationTitles_ objectAtIndex:offset]);
6698 section = [[[Section alloc] initWithName:title row:index localize:NO] autorelease];
6699 [sections addObject:section];
6701 start = ++offset == offsets ? nil : [CollationStarts_ objectAtIndex:offset];
6704 length = [start length];
6708 [section addToCount];
6711 for (; offset != offsets; ++offset) {
6712 NSString *title([CollationTitles_ objectAtIndex:offset]);
6713 Section *section([[[Section alloc] initWithName:title row:end localize:NO] autorelease]);
6714 [sections addObject:section];
6717 if ([prefix count] != 0) {
6718 Section *suffix([sections lastObject]);
6719 [prefix setName:[suffix name]];
6720 [suffix setName:nil];
6721 [sections insertObject:prefix atIndex:(offsets - 1)];
6727 - (void) reloadData {
6730 if ([self shouldYield])
6731 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
6736 - (void) resetCursor {
6737 [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
6740 - (void) clearData {
6741 [self updateHeight];
6743 [list_ setDataSource:nil];
6751 /* Filtered Package List Controller {{{ */
6752 typedef Function<bool, Package *> PackageFilter;
6753 typedef Function<void, NSMutableArray *> PackageSorter;
6754 @interface FilteredPackageListController : PackageListController {
6755 PackageFilter filter_;
6756 PackageSorter sorter_;
6759 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter;
6761 - (void) setFilter:(PackageFilter)filter;
6762 - (void) setSorter:(PackageSorter)sorter;
6766 @implementation FilteredPackageListController
6768 - (void) setFilter:(PackageFilter)filter {
6769 @synchronized (self) {
6773 - (void) setSorter:(PackageSorter)sorter {
6774 @synchronized (self) {
6778 - (NSMutableArray *) _reloadPackages {
6779 @synchronized (database_) {
6780 era_ = [database_ era];
6782 NSArray *packages([database_ packages]);
6783 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
6785 PackageFilter filter;
6786 PackageSorter sorter;
6788 @synchronized (self) {
6793 _profile(PackageTable$reloadData$Filter)
6794 for (Package *package in packages)
6795 if ([package valid] && filter(package))
6796 [filtered addObject:package];
6804 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter {
6805 if ((self = [super initWithDatabase:database title:title]) != nil) {
6806 [self setFilter:filter];
6813 /* Home Controller {{{ */
6814 @interface HomeController : CydiaWebViewController {
6815 CFRunLoopRef runloop_;
6816 SCNetworkReachabilityRef reachability_;
6821 @implementation HomeController
6823 static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachability, SCNetworkReachabilityFlags flags, void *info) {
6824 [(HomeController *) info dispatchEvent:@"CydiaReachabilityCallback"];
6828 if ((self = [super init]) != nil) {
6829 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6832 reachability_ = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "cydia.saurik.com");
6833 if (reachability_ != NULL) {
6834 SCNetworkReachabilityContext context = {0, self, NULL, NULL, NULL};
6835 SCNetworkReachabilitySetCallback(reachability_, HomeControllerReachabilityCallback, &context);
6837 CFRunLoopRef runloop(CFRunLoopGetCurrent());
6838 if (SCNetworkReachabilityScheduleWithRunLoop(reachability_, runloop, kCFRunLoopDefaultMode))
6845 if (reachability_ != NULL && runloop_ != NULL)
6846 SCNetworkReachabilityUnscheduleFromRunLoop(reachability_, runloop_, kCFRunLoopDefaultMode);
6850 - (NSURL *) navigationURL {
6851 return [NSURL URLWithString:@"cydia://home"];
6854 - (void) aboutButtonClicked {
6855 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6857 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6858 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6859 [alert setCancelButtonIndex:0];
6862 @"Copyright \u00a9 2008-2015\n"
6865 "Jay Freeman (saurik)\n"
6866 "saurik@saurik.com\n"
6867 "http://www.saurik.com/"
6873 - (UIBarButtonItem *) leftButton {
6874 return [[[UIBarButtonItem alloc]
6875 initWithTitle:UCLocalize("ABOUT")
6876 style:UIBarButtonItemStylePlain
6878 action:@selector(aboutButtonClicked)
6885 /* Cydia Navigation Controller Interface {{{ */
6886 @interface UINavigationController (Cydia)
6888 - (NSArray *) navigationURLCollection;
6889 - (void) unloadData;
6894 /* Cydia Tab Bar Controller {{{ */
6895 @interface CydiaTabBarController : CyteTabBarController <
6896 UITabBarControllerDelegate,
6899 _transient Database *database_;
6901 _H<UIActivityIndicatorView> indicator_;
6904 // XXX: ok, "updatedelegate_"?...
6905 _transient NSObject<CydiaDelegate> *updatedelegate_;
6908 - (NSArray *) navigationURLCollection;
6909 - (void) beginUpdate;
6914 @implementation CydiaTabBarController
6916 - (NSArray *) navigationURLCollection {
6917 NSMutableArray *items([NSMutableArray array]);
6919 // XXX: Should this deal with transient view controllers?
6920 for (id navigation in [self viewControllers]) {
6921 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6923 [items addObject:stack];
6929 - (id) initWithDatabase:(Database *)database {
6930 if ((self = [super init]) != nil) {
6931 database_ = database;
6932 [self setDelegate:self];
6934 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteTiny] autorelease];
6935 [indicator_ setOrigin:CGPointMake(kCFCoreFoundationVersionNumber >= 800 ? 2 : 4, 2)];
6937 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6941 - (void) beginUpdate {
6945 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6946 UITabBarItem *item([controller tabBarItem]);
6948 [item setBadgeValue:@""];
6949 UIView *badge(MSHookIvar<UIView *>([item view], "_badge"));
6951 [indicator_ startAnimating];
6952 [badge addSubview:indicator_];
6954 [updatedelegate_ retainNetworkActivityIndicator];
6958 detachNewThreadSelector:@selector(performUpdate)
6964 - (void) performUpdate {
6965 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
6967 SourceStatus status(self, database_);
6968 [database_ updateWithStatus:status];
6971 performSelectorOnMainThread:@selector(completeUpdate)
6979 - (void) stopUpdateWithSelector:(SEL)selector {
6981 [updatedelegate_ releaseNetworkActivityIndicator];
6983 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6984 [[controller tabBarItem] setBadgeValue:nil];
6986 [indicator_ removeFromSuperview];
6987 [indicator_ stopAnimating];
6989 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6992 - (void) completeUpdate {
6995 [self stopUpdateWithSelector:@selector(reloadData)];
6998 - (void) cancelUpdate {
6999 [self stopUpdateWithSelector:@selector(updateDataAndLoad)];
7002 - (void) cancelPressed {
7003 [self cancelUpdate];
7010 - (bool) isSourceCancelled {
7014 - (void) startSourceFetch:(NSString *)uri {
7017 - (void) stopSourceFetch:(NSString *)uri {
7020 - (void) setUpdateDelegate:(id)delegate {
7021 updatedelegate_ = delegate;
7027 /* Cydia Navigation Controller Implementation {{{ */
7028 @implementation UINavigationController (Cydia)
7030 - (NSArray *) navigationURLCollection {
7031 NSMutableArray *stack([NSMutableArray array]);
7033 for (CyteViewController *controller in [self viewControllers]) {
7034 NSString *url = [[controller navigationURL] absoluteString];
7036 [stack addObject:url];
7042 - (void) reloadData {
7045 UIViewController *visible([self visibleViewController]);
7047 [visible reloadData];
7049 // on the iPad, this view controller is ALSO visible. :(
7051 if (UIViewController *modal = [self modalViewController])
7052 if ([modal modalPresentationStyle] == UIModalPresentationFormSheet)
7053 if (UIViewController *top = [self topViewController])
7058 - (void) unloadData {
7059 for (CyteViewController *page in [self viewControllers])
7068 /* Cydia:// Protocol {{{ */
7069 @interface CydiaURLProtocol : NSURLProtocol {
7074 @implementation CydiaURLProtocol
7076 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7077 NSURL *url([request URL]);
7081 NSString *scheme([[url scheme] lowercaseString]);
7082 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7084 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7090 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7094 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7095 id<NSURLProtocolClient> client([self client]);
7097 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7099 NSData *data(UIImagePNGRepresentation(icon));
7101 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7102 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7103 [client URLProtocol:self didLoadData:data];
7104 [client URLProtocolDidFinishLoading:self];
7108 - (void) startLoading {
7109 id<NSURLProtocolClient> client([self client]);
7110 NSURLRequest *request([self request]);
7112 NSURL *url([request URL]);
7113 NSString *href([url absoluteString]);
7114 NSString *scheme([[url scheme] lowercaseString]);
7118 if ([scheme isEqualToString:@"cydia"])
7119 path = [href substringFromIndex:8];
7120 else if ([scheme isEqualToString:@"about"])
7121 path = [href substringFromIndex:12];
7122 else _assert(false);
7124 NSRange slash([path rangeOfString:@"/"]);
7127 if (slash.location == NSNotFound) {
7131 command = [path substringToIndex:slash.location];
7132 path = [path substringFromIndex:(slash.location + 1)];
7135 Database *database([Database sharedInstance]);
7137 if ([command isEqualToString:@"package-icon"]) {
7140 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7141 Package *package([database packageWithName:path]);
7145 UIImage *icon([package icon]);
7146 [self _returnPNGWithImage:icon forRequest:request];
7147 } else if ([command isEqualToString:@"uikit-image"]) {
7150 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7151 UIImage *icon(_UIImageWithName(path));
7152 [self _returnPNGWithImage:icon forRequest:request];
7153 } else if ([command isEqualToString:@"section-icon"]) {
7156 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7157 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]);
7159 icon = [UIImage imageNamed:@"unknown.png"];
7160 [self _returnPNGWithImage:icon forRequest:request];
7162 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7166 - (void) stopLoading {
7172 /* Section Controller {{{ */
7173 @interface SectionController : FilteredPackageListController {
7175 _H<NSString> section_;
7178 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section;
7182 @implementation SectionController
7184 - (NSURL *) referrerURL {
7185 NSString *name(section_);
7186 name = name ?: @"*";
7187 NSString *key(key_);
7189 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/sections/%@/%@", UI_, [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7192 - (NSURL *) navigationURL {
7193 NSString *name(section_);
7194 name = name ?: @"*";
7195 NSString *key(key_);
7197 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@/%@", [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7200 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section {
7203 title = UCLocalize("ALL_PACKAGES");
7204 else if (![section isEqual:@""])
7205 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(section) value:nil table:@"Sections"];
7207 title = UCLocalize("NO_SECTION");
7209 if ((self = [super initWithDatabase:database title:title]) != nil) {
7210 key_ = [source key];
7215 - (void) reloadData {
7216 Source *source([database_ sourceWithKey:key_]);
7217 _H<NSString> name(section_);
7219 [self setFilter:[=](Package *package) {
7220 NSString *section([package section]);
7224 section == nil && [name length] == 0 ||
7225 [name isEqualToString:section]
7228 [package source] == source
7229 ) && [package visible];
7237 /* Sections Controller {{{ */
7238 @interface SectionsController : CyteViewController <
7239 UITableViewDataSource,
7242 _transient Database *database_;
7244 _H<NSMutableArray> sections_;
7245 _H<NSMutableArray> filtered_;
7246 _H<UITableView, 2> list_;
7249 - (id) initWithDatabase:(Database *)database source:(Source *)source;
7250 - (void) editButtonClicked;
7254 @implementation SectionsController
7256 - (NSURL *) navigationURL {
7257 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]];
7260 - (Source *) source {
7263 return [database_ sourceWithKey:key_];
7266 - (void) updateNavigationItem {
7267 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7268 if ([sections_ count] == 0) {
7269 [[self navigationItem] setRightBarButtonItem:nil];
7271 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7272 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7274 action:@selector(editButtonClicked)
7275 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7279 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7280 [super setEditing:editing animated:animated];
7285 [delegate_ updateData];
7287 [self updateNavigationItem];
7290 - (void) viewDidAppear:(BOOL)animated {
7291 [super viewDidAppear:animated];
7292 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7295 - (void) viewWillDisappear:(BOOL)animated {
7296 [super viewWillDisappear:animated];
7297 [self setEditing:NO];
7300 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7301 Section *section = nil;
7302 int index = [indexPath row];
7303 if (![self isEditing]) {
7306 section = [filtered_ objectAtIndex:index];
7308 section = [sections_ objectAtIndex:index];
7313 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7314 if ([self isEditing])
7315 return [sections_ count];
7317 return [filtered_ count] + 1;
7320 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7324 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7325 static NSString *reuseIdentifier = @"SectionCell";
7327 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7329 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7331 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7336 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7337 if ([self isEditing])
7340 Section *section = [self sectionAtIndexPath:indexPath];
7342 SectionController *controller = [[[SectionController alloc]
7343 initWithDatabase:database_
7344 source:[self source]
7345 section:[section name]
7347 [controller setDelegate:delegate_];
7349 [[self navigationController] pushViewController:controller animated:YES];
7353 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
7354 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7355 [list_ setRowHeight:46];
7356 [(UITableView *) list_ setDataSource:self];
7357 [list_ setDelegate:self];
7358 [self setView:list_];
7361 - (void) viewDidLoad {
7362 [super viewDidLoad];
7364 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7367 - (void) releaseSubviews {
7373 [super releaseSubviews];
7376 - (id) initWithDatabase:(Database *)database source:(Source *)source {
7377 if ((self = [super init]) != nil) {
7378 database_ = database;
7379 key_ = [source key];
7383 - (void) reloadData {
7386 NSArray *packages = [database_ packages];
7388 sections_ = [NSMutableArray arrayWithCapacity:16];
7389 filtered_ = [NSMutableArray arrayWithCapacity:16];
7391 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7393 Source *source([self source]);
7396 for (Package *package in packages) {
7397 if (source != nil && [package source] != source)
7400 NSString *name([package section]);
7401 NSString *key(name == nil ? @"" : name);
7405 _profile(SectionsView$reloadData$Section)
7406 section = [sections objectForKey:key];
7407 if (section == nil) {
7408 _profile(SectionsView$reloadData$Section$Allocate)
7409 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7410 [sections setObject:section forKey:key];
7415 [section addToCount];
7417 _profile(SectionsView$reloadData$Filter)
7418 if (![package valid] || ![package visible])
7426 [sections_ addObjectsFromArray:[sections allValues]];
7428 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7430 for (Section *section in (id) sections_) {
7431 size_t count([section row]);
7435 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7436 [section setCount:count];
7437 [filtered_ addObject:section];
7440 [self updateNavigationItem];
7445 - (void) editButtonClicked {
7446 [self setEditing:![self isEditing] animated:YES];
7452 /* Changes Controller {{{ */
7453 @interface ChangesController : FilteredPackageListController {
7457 - (id) initWithDatabase:(Database *)database;
7461 @implementation ChangesController
7463 - (NSURL *) referrerURL {
7464 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/changes/", UI_]];
7467 - (NSURL *) navigationURL {
7468 return [NSURL URLWithString:@"cydia://changes"];
7471 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7472 @synchronized (database_) {
7473 if ([database_ era] != era_)
7476 NSUInteger sectionIndex([path section]);
7477 if (sectionIndex >= [sections_ count])
7479 Section *section([sections_ objectAtIndex:sectionIndex]);
7480 NSInteger row([path row]);
7481 return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease];
7484 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
7485 NSString *context([alert context]);
7487 if ([context isEqualToString:@"norefresh"])
7488 [alert dismissWithClickedButtonIndex:-1 animated:YES];
7491 - (void) setLeftBarButtonItem {
7492 if ([delegate_ updating])
7493 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7494 initWithTitle:UCLocalize("CANCEL")
7495 style:UIBarButtonItemStyleDone
7497 action:@selector(cancelButtonClicked)
7498 ] autorelease] animated:YES];
7500 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7501 initWithTitle:UCLocalize("REFRESH")
7502 style:UIBarButtonItemStylePlain
7504 action:@selector(refreshButtonClicked)
7505 ] autorelease] animated:YES];
7508 - (void) refreshButtonClicked {
7509 if ([delegate_ requestUpdate])
7510 [self setLeftBarButtonItem];
7513 - (void) cancelButtonClicked {
7514 [delegate_ cancelUpdate];
7517 - (void) upgradeButtonClicked {
7518 [delegate_ distUpgrade];
7519 [[self navigationItem] setRightBarButtonItem:nil animated:YES];
7522 - (bool) shouldYield {
7526 - (bool) shouldBlock {
7530 - (void) useFilter {
7531 @synchronized (self) {
7532 [self setFilter:[](Package *package) {
7533 return [package upgradableAndEssential:YES] || [package visible];
7536 [self setSorter:[](NSMutableArray *packages) {
7537 [packages radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL];
7541 - (id) initWithDatabase:(Database *)database {
7542 if ((self = [super initWithDatabase:database title:UCLocalize("CHANGES")]) != nil) {
7547 - (void) viewDidLoad {
7548 [super viewDidLoad];
7549 [self setLeftBarButtonItem];
7552 - (void) viewWillAppear:(BOOL)animated {
7553 [super viewWillAppear:animated];
7554 [self setLeftBarButtonItem];
7557 - (void) reloadData {
7558 [self setLeftBarButtonItem];
7562 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
7563 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
7565 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7566 Section *ignored = nil;
7567 Section *section = nil;
7571 bool unseens = false;
7573 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7575 for (size_t offset = 0, count = [packages count]; offset != count; ++offset) {
7576 Package *package = [packages objectAtIndex:offset];
7578 BOOL uae = [package upgradableAndEssential:YES];
7582 time_t seen([package seen]);
7584 if (section == nil || last != seen) {
7588 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7591 _profile(ChangesController$reloadData$Allocate)
7592 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7593 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7594 [sections addObject:section];
7598 [section addToCount];
7599 } else if ([package ignored]) {
7600 if (ignored == nil) {
7601 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7603 [ignored addToCount];
7606 [upgradable addToCount];
7611 CFRelease(formatter);
7614 Section *last = [sections lastObject];
7615 size_t count = [last count];
7616 [packages removeObjectsInRange:NSMakeRange([packages count] - count, count)];
7617 [sections removeLastObject];
7620 if ([ignored count] != 0)
7621 [sections insertObject:ignored atIndex:0];
7623 [sections insertObject:upgradable atIndex:0];
7627 [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc]
7628 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7629 style:UIBarButtonItemStylePlain
7631 action:@selector(upgradeButtonClicked)
7632 ] autorelease]) animated:YES];
7639 /* Search Controller {{{ */
7640 @interface SearchController : FilteredPackageListController <
7643 _H<UISearchBar, 1> search_;
7648 - (id) initWithDatabase:(Database *)database query:(NSString *)query;
7649 - (void) reloadData;
7653 @implementation SearchController
7655 - (NSURL *) referrerURL {
7656 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/search?q=%@", UI_, [([search_ text] ?: @"") stringByAddingPercentEscapesIncludingReserved]]];
7659 - (NSURL *) navigationURL {
7660 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7661 return [NSURL URLWithString:@"cydia://search"];
7663 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [[search_ text] stringByAddingPercentEscapesIncludingReserved]]];
7666 - (NSArray *) termsForQuery:(NSString *)query {
7667 NSMutableArray *terms([NSMutableArray arrayWithCapacity:2]);
7668 for (NSString *component in [query componentsSeparatedByString:@" "])
7669 if ([component length] != 0)
7670 [terms addObject:component];
7675 - (void) useSearch {
7676 _H<NSArray> query([self termsForQuery:[search_ text]]);
7679 @synchronized (self) {
7680 [self setFilter:[=](Package *package) {
7681 if (![package unfiltered])
7683 if (![package matches:query])
7688 [self setSorter:[](NSMutableArray *packages) {
7689 [packages radixSortUsingSelector:@selector(rank)];
7697 - (void) usePrefix:(NSString *)prefix {
7698 _H<NSString> query(prefix);
7701 @synchronized (self) {
7702 [self setFilter:[=](Package *package) {
7703 if ([query length] == 0)
7705 if (![package unfiltered])
7707 if ([[package name] compare:query options:MatchCompareOptions_ range:NSMakeRange(0, [query length])] != NSOrderedSame)
7712 [self setSorter:nullptr];
7718 - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
7720 [self usePrefix:[search_ text]];
7723 - (void) searchBarButtonClicked:(UISearchBar *)searchBar {
7724 [search_ resignFirstResponder];
7728 - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar {
7729 [search_ setText:@""];
7730 [self searchBarButtonClicked:searchBar];
7733 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7734 [self searchBarButtonClicked:searchBar];
7737 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7738 [self usePrefix:text];
7741 - (bool) shouldYield {
7745 - (bool) shouldBlock {
7749 - (bool) isSummarized {
7753 - (bool) showsSections {
7757 - (id) initWithDatabase:(Database *)database query:(NSString *)query {
7758 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH")])) {
7759 search_ = [[[UISearchBar alloc] init] autorelease];
7760 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7761 [search_ setDelegate:self];
7763 UITextField *textField;
7764 if ([search_ respondsToSelector:@selector(searchField)])
7765 textField = [search_ searchField];
7767 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7769 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7770 [textField setEnablesReturnKeyAutomatically:NO];
7771 [[self navigationItem] setTitleView:textField];
7774 [search_ setText:query];
7779 - (void) viewDidAppear:(BOOL)animated {
7780 [super viewDidAppear:animated];
7782 if (!searchloaded_) {
7783 searchloaded_ = YES;
7784 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7785 [search_ layoutSubviews];
7788 if ([self isSummarized])
7789 [search_ becomeFirstResponder];
7792 - (void) reloadData {
7797 - (void) didSelectPackage:(Package *)package {
7798 [search_ resignFirstResponder];
7799 [super didSelectPackage:package];
7804 /* Package Settings Controller {{{ */
7805 @interface PackageSettingsController : CyteViewController <
7806 UITableViewDataSource,
7809 _transient Database *database_;
7811 _H<Package> package_;
7812 _H<UITableView, 2> table_;
7813 _H<UISwitch> subscribedSwitch_;
7814 _H<UISwitch> ignoredSwitch_;
7815 _H<UITableViewCell> subscribedCell_;
7816 _H<UITableViewCell> ignoredCell_;
7819 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7823 @implementation PackageSettingsController
7825 - (NSURL *) navigationURL {
7826 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]];
7829 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7830 if (package_ == nil)
7833 if ([package_ installed] == nil)
7839 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7840 if (package_ == nil)
7843 // both sections contain just one item right now.
7847 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7851 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7853 return UCLocalize("SHOW_ALL_CHANGES_EX");
7855 return UCLocalize("IGNORE_UPGRADES_EX");
7858 - (void) onSubscribed:(id)control {
7859 bool value([control isOn]);
7860 if (package_ == nil)
7862 if ([package_ setSubscribed:value])
7863 [delegate_ updateData];
7866 - (void) _updateIgnored {
7867 const char *package([name_ UTF8String]);
7868 bool on([ignoredSwitch_ isOn]);
7870 pid_t pid(ExecFork());
7872 FILE *dpkg(popen("/usr/libexec/cydo --set-selections", "w"));
7873 fwrite(package, strlen(package), 1, dpkg);
7876 fwrite(" hold\n", 6, 1, dpkg);
7878 fwrite(" install\n", 9, 1, dpkg);
7886 - (void) onIgnored:(id)control {
7887 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7888 [invocation setTarget:self];
7889 [invocation setSelector:@selector(_updateIgnored)];
7891 [delegate_ reloadDataWithInvocation:invocation];
7894 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7895 if (package_ == nil)
7898 switch ([indexPath section]) {
7899 case 0: return subscribedCell_;
7900 case 1: return ignoredCell_;
7909 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
7910 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
7911 [self setView:view];
7913 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
7914 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7915 [(UITableView *) table_ setDataSource:self];
7916 [table_ setDelegate:self];
7917 [view addSubview:table_];
7919 subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7920 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7921 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7923 ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7924 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7925 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7927 subscribedCell_ = [[[UITableViewCell alloc] init] autorelease];
7928 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7929 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7930 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7932 ignoredCell_ = [[[UITableViewCell alloc] init] autorelease];
7933 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7934 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7935 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7938 - (void) viewDidLoad {
7939 [super viewDidLoad];
7941 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7944 - (void) releaseSubviews {
7946 subscribedCell_ = nil;
7948 ignoredSwitch_ = nil;
7949 subscribedSwitch_ = nil;
7951 [super releaseSubviews];
7954 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7955 if ((self = [super init]) != nil) {
7956 database_ = database;
7961 - (void) reloadData {
7964 package_ = [database_ packageWithName:name_];
7966 if (package_ != nil) {
7967 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7968 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7969 } // XXX: what now, G?
7971 [table_ reloadData];
7977 /* Installed Controller {{{ */
7978 @interface InstalledController : FilteredPackageListController {
7982 - (id) initWithDatabase:(Database *)database;
7983 - (void) queueStatusDidChange;
7987 @implementation InstalledController
7989 - (NSURL *) referrerURL {
7990 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/installed/", UI_]];
7993 - (NSURL *) navigationURL {
7994 return [NSURL URLWithString:@"cydia://installed"];
7997 - (void) useRecent {
8000 @synchronized (self) {
8001 [self setFilter:[](Package *package) {
8002 return ![package uninstalled] && package->role_ < 7;
8005 [self setSorter:[](NSMutableArray *packages) {
8006 [packages radixSortUsingSelector:@selector(recent)];
8010 - (void) useFilter:(UISegmentedControl *)segmented {
8011 NSInteger selected([segmented selectedSegmentIndex]);
8013 return [self useRecent];
8014 bool simple(selected == 0);
8017 @synchronized (self) {
8018 [self setFilter:[=](Package *package) {
8019 return ![package uninstalled] && package->role_ <= (simple ? 1 : 3);
8022 [self setSorter:nullptr];
8025 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
8027 return [super sectionsForPackages:packages];
8029 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterLongStyle, kCFDateFormatterNoStyle));
8031 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
8032 Section *section(nil);
8035 for (size_t offset(0), count([packages count]); offset != count; ++offset) {
8036 Package *package([packages objectAtIndex:offset]);
8038 time_t upgraded([package upgraded]);
8039 if (upgraded < 1168364520)
8042 upgraded -= upgraded % (60 * 60 * 24);
8044 if (section == nil || upgraded != last) {
8049 continue; // XXX: name = UCLocalize("...");
8051 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:upgraded]);
8055 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
8056 [sections addObject:section];
8059 [section addToCount];
8062 CFRelease(formatter);
8066 - (id) initWithDatabase:(Database *)database {
8067 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED")]) != nil) {
8068 UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("USER"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]);
8069 [segmented setSelectedSegmentIndex:0];
8070 [segmented setSegmentedControlStyle:UISegmentedControlStyleBar];
8071 [[self navigationItem] setTitleView:segmented];
8073 [segmented addTarget:self action:@selector(modeChanged:) forEvents:UIControlEventValueChanged];
8074 [self useFilter:segmented];
8076 [self queueStatusDidChange];
8081 - (void) queueButtonClicked {
8086 - (void) queueStatusDidChange {
8089 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8090 initWithTitle:UCLocalize("QUEUE")
8091 style:UIBarButtonItemStyleDone
8093 action:@selector(queueButtonClicked)
8096 [[self navigationItem] setRightBarButtonItem:nil];
8101 - (void) modeChanged:(UISegmentedControl *)segmented {
8102 [self useFilter:segmented];
8109 /* Source Cell {{{ */
8110 @interface SourceCell : CyteTableViewCell <
8111 CyteTableViewCellDelegate,
8114 _H<Source, 1> source_;
8117 _H<NSString> origin_;
8118 _H<NSString> label_;
8119 _H<UIActivityIndicatorView> indicator_;
8122 - (void) setSource:(Source *)source;
8123 - (void) setFetch:(NSNumber *)fetch;
8127 @implementation SourceCell
8129 - (void) _setImage:(NSArray *)data {
8130 if ([url_ isEqual:[data objectAtIndex:0]]) {
8131 icon_ = [data objectAtIndex:1];
8132 [content_ setNeedsDisplay];
8136 - (void) _setSource:(NSURL *) url {
8137 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
8139 if (NSData *data = [NSURLConnection
8140 sendSynchronousRequest:[NSURLRequest
8142 cachePolicy:NSURLRequestUseProtocolCachePolicy
8146 returningResponse:NULL
8149 if (UIImage *image = [UIImage imageWithData:data])
8150 [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO];
8155 - (void) setSource:(Source *)source {
8157 [source_ setDelegate:self];
8159 [self setFetch:[NSNumber numberWithBool:[source_ fetch]]];
8161 icon_ = [UIImage imageNamed:@"unknown.png"];
8163 origin_ = [source name];
8164 label_ = [source rooturi];
8166 [content_ setNeedsDisplay];
8168 url_ = [source iconURL];
8169 [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_];
8172 - (void) setAllSource {
8174 [indicator_ stopAnimating];
8176 icon_ = [UIImage imageNamed:@"folder.png"];
8177 origin_ = UCLocalize("ALL_SOURCES");
8178 label_ = UCLocalize("ALL_SOURCES_EX");
8179 [content_ setNeedsDisplay];
8182 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8183 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8184 UIView *content([self contentView]);
8185 CGRect bounds([content bounds]);
8187 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
8188 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8189 [content_ setBackgroundColor:[UIColor whiteColor]];
8190 [content addSubview:content_];
8192 [content_ setDelegate:self];
8193 [content_ setOpaque:YES];
8195 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGraySmall] autorelease];
8196 [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin];// | UIViewAutoresizingFlexibleBottomMargin];
8197 [content addSubview:indicator_];
8199 [[content_ layer] setContentsGravity:kCAGravityTopLeft];
8203 - (void) layoutSubviews {
8204 [super layoutSubviews];
8206 UIView *content([self contentView]);
8207 CGRect bounds([content bounds]);
8209 CGRect frame([indicator_ frame]);
8210 frame.origin.x = bounds.size.width - frame.size.width;
8211 frame.origin.y = Retina((bounds.size.height - frame.size.height) / 2);
8213 if (kCFCoreFoundationVersionNumber < 800)
8214 frame.origin.x -= 8;
8215 [indicator_ setFrame:frame];
8218 - (NSString *) accessibilityLabel {
8222 - (void) drawContentRect:(CGRect)rect {
8223 bool highlighted(highlighted_);
8224 float width(rect.size.width);
8228 rect.size = [(UIImage *) icon_ size];
8230 while (rect.size.width > 32 || rect.size.height > 32) {
8231 rect.size.width /= 2;
8232 rect.size.height /= 2;
8235 rect.origin.x = 26 - rect.size.width / 2;
8236 rect.origin.y = 26 - rect.size.height / 2;
8238 [icon_ drawInRect:Retina(rect)];
8241 if (highlighted && kCFCoreFoundationVersionNumber < 800)
8246 [origin_ drawAtPoint:CGPointMake(52, 8) forWidth:(width - 49) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
8250 [label_ drawAtPoint:CGPointMake(52, 29) forWidth:(width - 49) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
8253 - (void) setFetch:(NSNumber *)fetch {
8254 if ([fetch boolValue])
8255 [indicator_ startAnimating];
8257 [indicator_ stopAnimating];
8262 /* Sources Controller {{{ */
8263 @interface SourcesController : CyteViewController <
8264 UITableViewDataSource,
8267 _transient Database *database_;
8270 _H<UITableView, 2> list_;
8271 _H<NSMutableArray> sources_;
8275 _H<UIProgressHUD> hud_;
8278 NSURLConnection *trivial_bz2_;
8279 NSURLConnection *trivial_gz_;
8284 - (id) initWithDatabase:(Database *)database;
8285 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated;
8289 @implementation SourcesController
8291 - (void) _releaseConnection:(NSURLConnection *)connection {
8292 if (connection != nil) {
8293 [connection cancel];
8294 //[connection setDelegate:nil];
8295 [connection release];
8300 [self _releaseConnection:trivial_gz_];
8301 [self _releaseConnection:trivial_bz2_];
8306 - (NSURL *) navigationURL {
8307 return [NSURL URLWithString:@"cydia://sources"];
8310 - (void) viewDidAppear:(BOOL)animated {
8311 [super viewDidAppear:animated];
8312 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8315 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8319 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8321 return UCLocalize("INDIVIDUAL_SOURCES");
8325 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8328 case 1: return [sources_ count];
8333 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8334 @synchronized (database_) {
8335 if ([database_ era] != era_)
8337 if ([indexPath section] != 1)
8339 NSUInteger index([indexPath row]);
8340 if (index >= [sources_ count])
8342 return [sources_ objectAtIndex:index];
8345 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8346 static NSString *cellIdentifier = @"SourceCell";
8348 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8349 if (cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8350 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8352 Source *source([self sourceAtIndexPath:indexPath]);
8354 [cell setAllSource];
8356 [cell setSource:source];
8361 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8362 SectionsController *controller([[[SectionsController alloc]
8363 initWithDatabase:database_
8364 source:[self sourceAtIndexPath:indexPath]
8367 [controller setDelegate:delegate_];
8368 [[self navigationController] pushViewController:controller animated:YES];
8371 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8372 if ([indexPath section] != 1)
8374 Source *source = [self sourceAtIndexPath:indexPath];
8375 return [source record] != nil;
8378 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8379 _assert([indexPath section] == 1);
8380 if (editingStyle == UITableViewCellEditingStyleDelete) {
8381 Source *source = [self sourceAtIndexPath:indexPath];
8382 if (source == nil) return;
8384 [Sources_ removeObjectForKey:[source key]];
8386 [delegate_ _saveConfig];
8387 [delegate_ reloadDataWithInvocation:nil];
8391 - (void) tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
8392 [self updateButtonsForEditingStatusAnimated:YES];
8396 [delegate_ addTrivialSource:href_];
8399 [delegate_ syncData];
8402 - (NSString *) getWarning {
8403 NSString *href(href_);
8404 NSRange colon([href rangeOfString:@"://"]);
8405 if (colon.location != NSNotFound)
8406 href = [href substringFromIndex:(colon.location + 3)];
8407 href = [href stringByAddingPercentEscapes];
8408 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8410 NSURL *url([NSURL URLWithString:href]);
8412 NSStringEncoding encoding;
8413 NSError *error(nil);
8415 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8416 return [warning length] == 0 ? nil : warning;
8420 - (void) _endConnection:(NSURLConnection *)connection {
8421 // XXX: the memory management in this method is horribly awkward
8423 NSURLConnection **field = NULL;
8424 if (connection == trivial_bz2_)
8425 field = &trivial_bz2_;
8426 else if (connection == trivial_gz_)
8427 field = &trivial_gz_;
8428 _assert(field != NULL);
8429 [connection release];
8433 trivial_bz2_ == nil &&
8436 NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil);
8438 [delegate_ releaseNetworkActivityIndicator];
8440 [delegate_ removeProgressHUD:hud_];
8444 if (warning != nil) {
8445 UIAlertView *alert = [[[UIAlertView alloc]
8446 initWithTitle:UCLocalize("SOURCE_WARNING")
8449 cancelButtonTitle:UCLocalize("CANCEL")
8451 UCLocalize("ADD_ANYWAY"),
8455 [alert setContext:@"warning"];
8456 [alert setNumberOfRows:1];
8459 // XXX: there used to be this great mechanism called yieldToPopup... who deleted it?
8465 } else if (error_ != nil) {
8466 UIAlertView *alert = [[[UIAlertView alloc]
8467 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8468 message:[error_ localizedDescription]
8470 cancelButtonTitle:UCLocalize("OK")
8471 otherButtonTitles:nil
8474 [alert setContext:@"urlerror"];
8479 UIAlertView *alert = [[[UIAlertView alloc]
8480 initWithTitle:UCLocalize("NOT_REPOSITORY")
8481 message:UCLocalize("NOT_REPOSITORY_EX")
8483 cancelButtonTitle:UCLocalize("OK")
8484 otherButtonTitles:nil
8487 [alert setContext:@"trivial"];
8497 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8498 switch ([response statusCode]) {
8504 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8505 lprintf("connection:\"%s\" didFailWithError:\"%s\"\n", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8507 [self _endConnection:connection];
8510 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8511 [self _endConnection:connection];
8514 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8515 NSURL *url([NSURL URLWithString:href]);
8517 NSMutableURLRequest *request = [NSMutableURLRequest
8519 cachePolicy:NSURLRequestUseProtocolCachePolicy
8523 [request setHTTPMethod:method];
8525 if (Machine_ != NULL)
8526 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8528 if (UniqueID_ != nil)
8529 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8531 if ([url isCydiaSecure]) {
8532 if (UniqueID_ != nil)
8533 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
8536 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8539 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8540 NSString *context([alert context]);
8542 if ([context isEqualToString:@"source"]) {
8545 NSString *href = [[alert textField] text];
8547 static RegEx href_r("(http(s?)://|file:///)[^# ]*");
8548 if (!href_r(href)) {
8549 UIAlertView *alert = [[[UIAlertView alloc]
8550 initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("INVALID_URL")]
8551 message:UCLocalize("INVALID_URL_EX")
8553 cancelButtonTitle:UCLocalize("OK")
8554 otherButtonTitles:nil
8557 [alert setContext:@"badurl"];
8563 if (![href hasSuffix:@"/"])
8564 href_ = [href stringByAppendingString:@"/"];
8568 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8569 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8573 // XXX: this is stupid
8574 hud_ = [delegate_ addProgressHUD];
8575 [hud_ setText:UCLocalize("VERIFYING_URL")];
8576 [delegate_ retainNetworkActivityIndicator];
8585 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8586 } else if ([context isEqualToString:@"trivial"])
8587 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8588 else if ([context isEqualToString:@"urlerror"])
8589 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8590 else if ([context isEqualToString:@"warning"]) {
8593 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
8602 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8606 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated {
8607 BOOL editing([list_ isEditing]);
8610 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8611 initWithTitle:UCLocalize("ADD")
8612 style:UIBarButtonItemStylePlain
8614 action:@selector(addButtonClicked)
8615 ] autorelease] animated:animated];
8616 else if ([delegate_ updating])
8617 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8618 initWithTitle:UCLocalize("CANCEL")
8619 style:UIBarButtonItemStyleDone
8621 action:@selector(cancelButtonClicked)
8622 ] autorelease] animated:animated];
8624 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8625 initWithTitle:UCLocalize("REFRESH")
8626 style:UIBarButtonItemStylePlain
8628 action:@selector(refreshButtonClicked)
8629 ] autorelease] animated:animated];
8631 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8632 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8633 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8635 action:@selector(editButtonClicked)
8636 ] autorelease] animated:animated];
8640 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain] autorelease];
8641 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8642 [list_ setRowHeight:53];
8643 [(UITableView *) list_ setDataSource:self];
8644 [list_ setDelegate:self];
8645 [self setView:list_];
8648 - (void) viewDidLoad {
8649 [super viewDidLoad];
8651 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8652 [self updateButtonsForEditingStatusAnimated:NO];
8655 - (void) viewWillAppear:(BOOL)animated {
8656 [super viewWillAppear:animated];
8658 [list_ setEditing:NO];
8659 [self updateButtonsForEditingStatusAnimated:NO];
8662 - (void) releaseSubviews {
8667 [super releaseSubviews];
8670 - (id) initWithDatabase:(Database *)database {
8671 if ((self = [super init]) != nil) {
8672 database_ = database;
8676 - (void) reloadData {
8678 [self updateButtonsForEditingStatusAnimated:YES];
8680 @synchronized (database_) {
8681 era_ = [database_ era];
8683 sources_ = [NSMutableArray arrayWithCapacity:16];
8684 [sources_ addObjectsFromArray:[database_ sources]];
8686 [sources_ sortUsingSelector:@selector(compareByName:)];
8689 int count([sources_ count]);
8691 for (int i = 0; i != count; i++) {
8692 if ([[sources_ objectAtIndex:i] record] == nil)
8700 - (void) showAddSourcePrompt {
8701 UIAlertView *alert = [[[UIAlertView alloc]
8702 initWithTitle:UCLocalize("ENTER_APT_URL")
8705 cancelButtonTitle:UCLocalize("CANCEL")
8707 UCLocalize("ADD_SOURCE"),
8711 [alert setContext:@"source"];
8713 [alert setNumberOfRows:1];
8714 [alert addTextFieldWithValue:@"http://" label:@""];
8716 UITextInputTraits *traits = [[alert textField] textInputTraits];
8717 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8718 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8719 [traits setKeyboardType:UIKeyboardTypeURL];
8720 // XXX: UIReturnKeyDone
8721 [traits setReturnKeyType:UIReturnKeyNext];
8726 - (void) addButtonClicked {
8727 [self showAddSourcePrompt];
8730 - (void) refreshButtonClicked {
8731 if ([delegate_ requestUpdate])
8732 [self updateButtonsForEditingStatusAnimated:YES];
8735 - (void) cancelButtonClicked {
8736 [delegate_ cancelUpdate];
8739 - (void) editButtonClicked {
8740 [list_ setEditing:![list_ isEditing] animated:YES];
8741 [self updateButtonsForEditingStatusAnimated:YES];
8747 /* Stash Controller {{{ */
8748 @interface StashController : CyteViewController {
8749 _H<UIActivityIndicatorView> spinner_;
8750 _H<UILabel> status_;
8751 _H<UILabel> caption_;
8756 @implementation StashController
8759 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
8760 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
8761 [self setView:view];
8763 [view setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8765 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8766 CGRect spinrect = [spinner_ frame];
8767 spinrect.origin.x = Retina([[self view] frame].size.width / 2 - spinrect.size.width / 2);
8768 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8769 [spinner_ setFrame:spinrect];
8770 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8771 [view addSubview:spinner_];
8772 [spinner_ startAnimating];
8775 captrect.size.width = [[self view] frame].size.width;
8776 captrect.size.height = 40.0f;
8777 captrect.origin.x = 0;
8778 captrect.origin.y = Retina([[self view] frame].size.height / 2 - captrect.size.height * 2);
8779 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8780 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8781 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8782 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8783 [caption_ setTextColor:[UIColor whiteColor]];
8784 [caption_ setBackgroundColor:[UIColor clearColor]];
8785 [caption_ setShadowColor:[UIColor blackColor]];
8786 [caption_ setTextAlignment:NSTextAlignmentCenter];
8787 [view addSubview:caption_];
8790 statusrect.size.width = [[self view] frame].size.width;
8791 statusrect.size.height = 30.0f;
8792 statusrect.origin.x = 0;
8793 statusrect.origin.y = Retina([[self view] frame].size.height / 2 - statusrect.size.height);
8794 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8795 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8796 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8797 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8798 [status_ setTextColor:[UIColor whiteColor]];
8799 [status_ setBackgroundColor:[UIColor clearColor]];
8800 [status_ setShadowColor:[UIColor blackColor]];
8801 [status_ setTextAlignment:NSTextAlignmentCenter];
8802 [view addSubview:status_];
8805 - (void) releaseSubviews {
8810 [super releaseSubviews];
8816 @interface CYURLCache : SDURLCache {
8821 @implementation CYURLCache
8823 - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request {
8826 else if ([event isEqualToString:@"no-cache"])
8828 else if ([event isEqualToString:@"store"])
8830 else if ([event isEqualToString:@"invalid"])
8832 else if ([event isEqualToString:@"memory"])
8834 else if ([event isEqualToString:@"disk"])
8836 else if ([event isEqualToString:@"miss"])
8839 NSLog(@"%@: %@", event, [[request URL] absoluteString]);
8843 - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request {
8844 if (NSURLResponse *response = [cached response])
8845 if (NSString *mime = [response MIMEType])
8846 if ([mime isEqualToString:@"text/cache-manifest"]) {
8847 NSURL *url([response URL]);
8850 NSLog(@"###: %@", [url absoluteString]);
8853 @synchronized (HostConfig_) {
8854 [CachedURLs_ addObject:url];
8858 [super storeCachedResponse:cached forRequest:request];
8861 - (void) createDiskCachePath {
8862 [super createDiskCachePath];
8867 @interface Cydia : UIApplication <
8868 ConfirmationControllerDelegate,
8872 _H<UIWindow> window_;
8873 _H<CydiaTabBarController> tabbar_;
8874 _H<CyteTabBarController> emulated_;
8875 _H<AppCacheController> appcache_;
8877 _H<NSMutableArray> essential_;
8878 _H<NSMutableArray> broken_;
8880 Database *database_;
8882 _H<NSURL> starturl_;
8887 _H<StashController> stash_;
8896 @implementation Cydia
8898 - (void) lockSuspend {
8899 if (locked_++ == 0) {
8900 if ($SBSSetInterceptsMenuButtonForever != NULL)
8901 (*$SBSSetInterceptsMenuButtonForever)(true);
8903 [self setIdleTimerDisabled:YES];
8907 - (void) unlockSuspend {
8908 if (--locked_ == 0) {
8909 [self setIdleTimerDisabled:NO];
8911 if ($SBSSetInterceptsMenuButtonForever != NULL)
8912 (*$SBSSetInterceptsMenuButtonForever)(false);
8916 - (void) beginUpdate {
8917 [tabbar_ beginUpdate];
8920 - (void) cancelUpdate {
8921 [tabbar_ cancelUpdate];
8924 - (bool) requestUpdate {
8925 if (IsReachable("cydia.saurik.com")) {
8929 UIAlertView *alert = [[[UIAlertView alloc]
8930 initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("REFRESH")]
8931 message:@"Host Unreachable" // XXX: Localize
8933 cancelButtonTitle:UCLocalize("OK")
8934 otherButtonTitles:nil
8937 [alert setContext:@"norefresh"];
8945 return [tabbar_ updating];
8949 if ([broken_ count] != 0) {
8950 int count = [broken_ count];
8952 UIAlertView *alert = [[[UIAlertView alloc]
8953 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8954 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8956 cancelButtonTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("FORCIBLY_CLEAR"), UCLocalize("UNSAFE")]
8958 UCLocalize("TEMPORARY_IGNORE"),
8962 [alert setContext:@"fixhalf"];
8963 [alert setNumberOfRows:2];
8965 } else if (!Ignored_ && [essential_ count] != 0) {
8966 int count = [essential_ count];
8968 UIAlertView *alert = [[[UIAlertView alloc]
8969 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8970 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8972 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8974 UCLocalize("UPGRADE_ESSENTIAL"),
8975 UCLocalize("COMPLETE_UPGRADE"),
8979 [alert setContext:@"upgrade"];
8984 - (void) returnToCydia {
8988 - (void) _saveConfig {
8989 SaveConfig(database_);
8992 // Navigation controller for the queuing badge.
8993 - (UINavigationController *) queueNavigationController {
8994 NSArray *controllers = [tabbar_ viewControllers];
8995 return [controllers objectAtIndex:3];
8998 - (void) unloadData {
8999 [tabbar_ unloadData];
9002 - (void) _updateData {
9006 UINavigationController *navigation = [self queueNavigationController];
9008 id queuedelegate = nil;
9009 if ([[navigation viewControllers] count] > 0)
9010 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
9012 [queuedelegate queueStatusDidChange];
9013 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
9016 - (void) _refreshIfPossible {
9017 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9019 NSDate *update([[NSDictionary dictionaryWithContentsOfFile:@ CacheState_] objectForKey:@"LastUpdate"]);
9021 bool recently = false;
9022 if (update != nil) {
9023 NSTimeInterval interval([update timeIntervalSinceNow]);
9024 if (interval > -(15*60))
9028 // Don't automatic refresh if:
9029 // - We already refreshed recently.
9030 // - We already auto-refreshed this launch.
9031 // - Auto-refresh is disabled.
9032 // - Cydia's server is not reachable
9033 if (recently || loaded_ || ManualRefresh || !IsReachable("cydia.saurik.com")) {
9034 // If we are cancelling, we need to make sure it knows it's already loaded.
9037 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9039 // We are going to load, so remember that.
9042 [tabbar_ performSelectorOnMainThread:@selector(beginUpdate) withObject:nil waitUntilDone:NO];
9048 - (void) refreshIfPossible {
9049 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil];
9052 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9053 _profile(reloadDataWithInvocation)
9054 @synchronized (self) {
9055 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9057 [hud setText:UCLocalize("RELOADING_DATA")];
9059 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9063 [essential_ removeAllObjects];
9064 [broken_ removeAllObjects];
9066 _profile(reloadDataWithInvocation$Essential)
9067 NSArray *packages([database_ packages]);
9068 for (Package *package in packages) {
9070 [broken_ addObject:package];
9071 if ([package upgradableAndEssential:YES] && ![package ignored]) {
9072 if ([package essential] && [package installed] != nil)
9073 [essential_ addObject:package];
9079 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9082 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9083 [changesItem setBadgeValue:badge];
9084 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9085 [self setApplicationIconBadgeNumber:changes];
9088 [changesItem setBadgeValue:nil];
9089 [changesItem setAnimatedBadge:NO];
9090 [self setApplicationIconBadgeNumber:0];
9097 [self removeProgressHUD:hud];
9104 - (void) updateData {
9108 - (void) updateDataAndLoad {
9110 if ([database_ progressDelegate] == nil)
9116 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9119 - (void) disemulate {
9120 if (emulated_ == nil)
9123 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9124 [window_ setRootViewController:tabbar_];
9126 [window_ addSubview:[tabbar_ view]];
9127 [[emulated_ view] removeFromSuperview];
9131 [window_ setUserInteractionEnabled:YES];
9134 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9135 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9137 UIViewController *parent;
9138 if (emulated_ == nil)
9148 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9149 [parent presentModalViewController:navigation animated:YES];
9152 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9153 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9155 if (navigation != nil)
9156 [navigation pushViewController:progress animated:YES];
9158 [self presentModalViewController:progress force:YES];
9160 [progress invoke:invocation withTitle:title];
9164 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9165 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9168 - (void) repairWithInvocation:(NSInvocation *)invocation {
9170 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9174 - (void) repairWithSelector:(SEL)selector {
9175 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9178 - (void) reloadData {
9179 [self reloadDataWithInvocation:nil];
9180 if ([database_ progressDelegate] == nil)
9186 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9189 - (void) addSource:(NSDictionary *) source {
9190 CydiaAddSource(source);
9193 - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections {
9194 CydiaAddSource(href, distribution, sections);
9197 - (void) addTrivialSource:(NSString *)href {
9198 CydiaAddSource(href, @"./");
9202 pkgProblemResolver *resolver = [database_ resolver];
9204 resolver->InstallProtect();
9205 if (!resolver->Resolve(true))
9210 // XXX: this is a really crappy way of doing this.
9211 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9212 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9213 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9214 if ([tabbar_ updating])
9215 [tabbar_ cancelUpdate];
9217 if (![database_ prepare])
9220 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9221 [page setDelegate:self];
9222 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9225 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9226 [tabbar_ presentModalViewController:confirm_ animated:YES];
9232 @synchronized (self) {
9237 - (void) clearPackage:(Package *)package {
9238 @synchronized (self) {
9245 - (void) installPackages:(NSArray *)packages {
9246 @synchronized (self) {
9247 for (Package *package in packages)
9254 - (void) installPackage:(Package *)package {
9255 @synchronized (self) {
9262 - (void) removePackage:(Package *)package {
9263 @synchronized (self) {
9270 - (void) distUpgrade {
9271 @synchronized (self) {
9272 if (![database_ upgrade])
9280 system("/usr/bin/uicache");
9285 UIProgressHUD *hud([self addProgressHUD]);
9286 [hud setText:UCLocalize("LOADING")];
9287 [self yieldToSelector:@selector(_uicache)];
9288 [self removeProgressHUD:hud];
9292 [database_ perform];
9293 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9294 [self performSelectorOnMainThread:@selector(uicache) withObject:nil waitUntilDone:YES];
9297 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9300 [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"];
9301 [self unlockSuspend];
9304 - (void) retainNetworkActivityIndicator {
9305 if (activity_++ == 0)
9306 [self setNetworkActivityIndicatorVisible:YES];
9309 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9313 - (void) releaseNetworkActivityIndicator {
9314 if (--activity_ == 0)
9315 [self setNetworkActivityIndicatorVisible:NO];
9318 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9323 - (void) cancelAndClear:(bool)clear {
9324 @synchronized (self) {
9336 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9337 NSString *context([alert context]);
9339 if ([context isEqualToString:@"conffile"]) {
9340 FILE *input = [database_ input];
9341 if (button == [alert cancelButtonIndex])
9342 fprintf(input, "N\n");
9343 else if (button == [alert firstOtherButtonIndex])
9344 fprintf(input, "Y\n");
9347 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9348 } else if ([context isEqualToString:@"fixhalf"]) {
9349 if (button == [alert cancelButtonIndex]) {
9350 @synchronized (self) {
9351 for (Package *broken in (id) broken_) {
9353 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /usr/libexec/cydia/fixhalf.sh %@", [broken id]] UTF8String]);
9359 } else if (button == [alert firstOtherButtonIndex]) {
9360 [broken_ removeAllObjects];
9364 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9365 } else if ([context isEqualToString:@"upgrade"]) {
9366 if (button == [alert firstOtherButtonIndex]) {
9367 @synchronized (self) {
9368 for (Package *essential in (id) essential_)
9369 [essential install];
9374 } else if (button == [alert firstOtherButtonIndex] + 1) {
9376 } else if (button == [alert cancelButtonIndex]) {
9380 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9384 - (void) system:(NSString *)command {
9385 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9388 system([command UTF8String]);
9394 - (void) applicationWillSuspend {
9396 [super applicationWillSuspend];
9399 - (BOOL) isSafeToSuspend {
9402 NSLog(@"isSafeToSuspend: locked_ != 0");
9407 if ([tabbar_ modalViewController] != nil)
9410 // Use external process status API internally.
9411 // This is probably a really bad idea.
9412 // XXX: what is the point of this? does this solve anything at all?
9413 uint64_t status = 0;
9415 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
9416 notify_get_state(notify_token, &status);
9417 notify_cancel(notify_token);
9422 NSLog(@"isSafeToSuspend: status != 0");
9428 NSLog(@"isSafeToSuspend: -> true");
9433 - (void) suspendReturningToLastApp:(BOOL)returning {
9434 if ([self isSafeToSuspend])
9435 [super suspendReturningToLastApp:returning];
9439 if ([self isSafeToSuspend])
9443 - (void) applicationSuspend {
9444 if ([self isSafeToSuspend])
9445 [super applicationSuspend];
9448 - (void) applicationSuspend:(__GSEvent *)event {
9449 if ([self isSafeToSuspend])
9450 [super applicationSuspend:event];
9453 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9454 if ([self isSafeToSuspend])
9455 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9458 - (void) _setSuspended:(BOOL)value {
9459 if ([self isSafeToSuspend])
9460 [super _setSuspended:value];
9463 - (UIProgressHUD *) addProgressHUD {
9464 UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]);
9465 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9467 [window_ setUserInteractionEnabled:NO];
9469 UIViewController *target(tabbar_);
9470 if (UIViewController *modal = [target modalViewController])
9473 [hud showInView:[target view]];
9479 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9480 [self unlockSuspend];
9482 [hud removeFromSuperview];
9483 [window_ setUserInteractionEnabled:YES];
9486 - (CyteViewController *) pageForPackage:(NSString *)name withReferrer:(NSString *)referrer {
9487 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name withReferrer:referrer] autorelease];
9490 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external withReferrer:(NSString *)referrer {
9491 NSString *scheme([[url scheme] lowercaseString]);
9492 if ([[url absoluteString] length] <= [scheme length] + 3)
9494 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9495 NSArray *components([path componentsSeparatedByString:@"/"]);
9497 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"]) {
9498 CyteViewController *controller([self pageForPackage:[components objectAtIndex:1] withReferrer:referrer]);
9499 if (controller != nil)
9500 [controller setDelegate:self];
9504 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9507 NSString *base([components objectAtIndex:0]);
9509 CyteViewController *controller = nil;
9511 if ([base isEqualToString:@"url"]) {
9512 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9513 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9514 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9515 } else if (!external && [components count] == 1) {
9516 if ([base isEqualToString:@"sources"]) {
9517 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9520 if ([base isEqualToString:@"home"]) {
9521 controller = [[[HomeController alloc] init] autorelease];
9524 if ([base isEqualToString:@"sections"]) {
9525 controller = [[[SectionsController alloc] initWithDatabase:database_ source:nil] autorelease];
9528 if ([base isEqualToString:@"search"]) {
9529 controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease];
9532 if ([base isEqualToString:@"changes"]) {
9533 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9536 if ([base isEqualToString:@"installed"]) {
9537 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9539 } else if ([components count] == 2) {
9540 NSString *argument = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9542 if ([base isEqualToString:@"package"]) {
9543 controller = [self pageForPackage:argument withReferrer:referrer];
9546 if (!external && [base isEqualToString:@"search"]) {
9547 controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease];
9550 if (!external && [base isEqualToString:@"sections"]) {
9551 if ([argument isEqualToString:@"all"] || [argument isEqualToString:@"*"])
9553 controller = [[[SectionController alloc] initWithDatabase:database_ source:nil section:argument] autorelease];
9556 if (!external && [base isEqualToString:@"sources"]) {
9557 if ([argument isEqualToString:@"add"]) {
9558 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9559 [(SourcesController *)controller showAddSourcePrompt];
9561 Source *source([database_ sourceWithKey:argument]);
9562 controller = [[[SectionsController alloc] initWithDatabase:database_ source:source] autorelease];
9566 if (!external && [base isEqualToString:@"launch"]) {
9567 [self launchApplicationWithIdentifier:argument suspended:NO];
9570 } else if (!external && [components count] == 3) {
9571 NSString *arg1 = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9572 NSString *arg2 = [[components objectAtIndex:2] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9574 if ([base isEqualToString:@"package"]) {
9575 if ([arg2 isEqualToString:@"settings"]) {
9576 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9577 } else if ([arg2 isEqualToString:@"files"]) {
9578 if (Package *package = [database_ packageWithName:arg1]) {
9579 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9580 [(FileTable *)controller setPackage:package];
9585 if ([base isEqualToString:@"sections"]) {
9586 Source *source([arg1 isEqualToString:@"*"] ? nil : [database_ sourceWithKey:arg1]);
9587 NSString *section([arg2 isEqualToString:@"*"] ? nil : arg2);
9588 controller = [[[SectionController alloc] initWithDatabase:database_ source:source section:section] autorelease];
9592 [controller setDelegate:self];
9596 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9597 CyteViewController *page([self pageForURL:url forExternal:external withReferrer:nil]);
9600 [tabbar_ setUnselectedViewController:page];
9605 - (void) applicationOpenURL:(NSURL *)url {
9606 [super applicationOpenURL:url];
9611 [self openCydiaURL:url forExternal:YES];
9614 - (void) applicationWillResignActive:(UIApplication *)application {
9615 // Stop refreshing if you get a phone call or lock the device.
9616 if ([tabbar_ updating])
9617 [tabbar_ cancelUpdate];
9619 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9620 [super applicationWillResignActive:application];
9623 - (void) saveState {
9624 [[NSDictionary dictionaryWithObjectsAndKeys:
9625 @"InterfaceState", [tabbar_ navigationURLCollection],
9626 @"LastClosed", [NSDate date],
9627 @"InterfaceIndex", [NSNumber numberWithInt:[tabbar_ selectedIndex]],
9628 nil] writeToFile:@ SavedState_ atomically:YES];
9633 - (void) applicationWillTerminate:(UIApplication *)application {
9637 - (void) applicationDidEnterBackground:(UIApplication *)application {
9638 if (kCFCoreFoundationVersionNumber < 1000 && [self isSafeToSuspend])
9639 return [self terminateWithSuccess];
9640 Backgrounded_ = [NSDate date];
9644 - (void) applicationWillEnterForeground:(UIApplication *)application {
9645 if (Backgrounded_ == nil)
9648 NSTimeInterval interval([Backgrounded_ timeIntervalSinceNow]);
9650 if (interval <= -(30*60)) {
9651 [tabbar_ setSelectedIndex:0];
9652 [[[tabbar_ viewControllers] objectAtIndex:0] popToRootViewControllerAnimated:NO];
9655 if (interval <= -(15*60)) {
9656 if (IsReachable("cydia.saurik.com")) {
9657 [tabbar_ beginUpdate];
9658 [appcache_ reloadURLWithCache:YES];
9662 if ([database_ delocked])
9666 - (void) setConfigurationData:(NSString *)data {
9667 static RegEx conffile_r("'(.*)' '(.*)' ([01]) ([01])");
9669 if (!conffile_r(data)) {
9670 lprintf("E:invalid conffile\n");
9674 NSString *ofile = conffile_r[1];
9675 //NSString *nfile = conffile_r[2];
9677 UIAlertView *alert = [[[UIAlertView alloc]
9678 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9679 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9681 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9683 UCLocalize("ACCEPT_NEW_COPY"),
9684 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9688 [alert setContext:@"conffile"];
9689 [alert setNumberOfRows:2];
9693 - (void) addStashController {
9695 stash_ = [[[StashController alloc] init] autorelease];
9696 [window_ addSubview:[stash_ view]];
9699 - (void) removeStashController {
9700 [[stash_ view] removeFromSuperview];
9702 [self unlockSuspend];
9706 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9707 UpdateExternalStatus(1);
9708 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/cydo /usr/libexec/cydia/free.sh"];
9709 UpdateExternalStatus(0);
9711 [self removeStashController];
9713 pid_t pid(ExecFork());
9715 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9716 perror("launchctl stop");
9722 - (void) setupViewControllers {
9723 tabbar_ = [[[CydiaTabBarController alloc] initWithDatabase:database_] autorelease];
9725 NSMutableArray *items;
9726 if (kCFCoreFoundationVersionNumber < 800) {
9727 items = [NSMutableArray arrayWithObjects:
9728 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home.png"] tag:0] autorelease],
9729 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install.png"] tag:0] autorelease],
9730 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes.png"] tag:0] autorelease],
9731 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage.png"] tag:0] autorelease],
9732 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search.png"] tag:0] autorelease],
9735 items = [NSMutableArray arrayWithObjects:
9736 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home7.png"] selectedImage:[UIImage imageNamed:@"home7s.png"]] autorelease],
9737 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install7.png"] selectedImage:[UIImage imageNamed:@"install7s.png"]] autorelease],
9738 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes7.png"] selectedImage:[UIImage imageNamed:@"changes7s.png"]] autorelease],
9739 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage7.png"] selectedImage:[UIImage imageNamed:@"manage7s.png"]] autorelease],
9740 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search7.png"] selectedImage:[UIImage imageNamed:@"search7s.png"]] autorelease],
9744 NSMutableArray *controllers([NSMutableArray array]);
9745 for (UITabBarItem *item in items) {
9746 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9747 [controller setTabBarItem:item];
9748 [controllers addObject:controller];
9750 [tabbar_ setViewControllers:controllers];
9752 [tabbar_ setUpdateDelegate:self];
9755 - (void) _sendMemoryWarningNotification {
9756 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: maybe 4_0?
9757 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationMemoryWarningNotification" object:[UIApplication sharedApplication]];
9759 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]];
9762 - (void) _sendMemoryWarningNotifications {
9764 [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO];
9770 - (void) applicationDidReceiveMemoryWarning:(UIApplication *)application {
9772 [[NSURLCache sharedURLCache] removeAllCachedResponses];
9775 - (void) applicationDidFinishLaunching:(id)unused {
9776 //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil];
9779 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9780 [self setApplicationSupportsShakeToEdit:NO];
9782 @synchronized (HostConfig_) {
9783 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9786 [NSURLCache setSharedURLCache:[[[CYURLCache alloc]
9787 initWithMemoryCapacity:524288
9788 diskCapacity:10485760
9789 diskPath:Cache("SDURLCache")
9792 [CydiaWebViewController _initialize];
9794 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9796 // this would disallow http{,s} URLs from accessing this data
9797 //[WebView registerURLSchemeAsLocal:@"cydia"];
9799 Font12_ = [UIFont systemFontOfSize:12];
9800 Font12Bold_ = [UIFont boldSystemFontOfSize:12];
9801 Font14_ = [UIFont systemFontOfSize:14];
9802 Font18_ = [UIFont systemFontOfSize:18];
9803 Font18Bold_ = [UIFont boldSystemFontOfSize:18];
9804 Font22Bold_ = [UIFont boldSystemFontOfSize:22];
9806 essential_ = [NSMutableArray arrayWithCapacity:4];
9807 broken_ = [NSMutableArray arrayWithCapacity:4];
9809 // XXX: I really need this thing... like, seriously... I'm sorry
9810 appcache_ = [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] autorelease];
9811 [appcache_ reloadData];
9813 window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
9814 [window_ orderFront:self];
9815 [window_ makeKey:self];
9816 [window_ setHidden:NO];
9819 [self addStashController];
9820 // XXX: this would be much cleaner as a yieldToSelector:
9821 // that way the removeStashController could happen right here inline
9822 // we also could no longer require the useless stash_ field anymore
9823 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9828 int error(stat("/", &root));
9829 _assert(error != -1);
9831 #define Stash_(path) do { \
9832 struct stat folder; \
9833 int error(lstat((path), &folder)); \
9834 if (error != -1 && ( \
9835 folder.st_dev == root.st_dev && \
9836 S_ISDIR(folder.st_mode) \
9837 ) || error == -1 && ( \
9838 errno == ENOENT || \
9843 Stash_("/Applications");
9844 Stash_("/Library/Ringtones");
9845 Stash_("/Library/Wallpaper");
9846 //Stash_("/usr/bin");
9847 Stash_("/usr/include");
9848 Stash_("/usr/share");
9849 //Stash_("/var/lib");
9851 database_ = [Database sharedInstance];
9852 [database_ setDelegate:self];
9854 [window_ setUserInteractionEnabled:NO];
9855 [self setupViewControllers];
9857 CydiaLoadingViewController *loading([[[CydiaLoadingViewController alloc] init] autorelease]);
9858 UINavigationController *navigation([[[UINavigationController alloc] init] autorelease]);
9859 [navigation setViewControllers:[NSArray arrayWithObject:loading]];
9861 emulated_ = [[[CyteTabBarController alloc] init] autorelease];
9862 [emulated_ setViewControllers:[NSArray arrayWithObject:navigation]];
9863 [emulated_ setSelectedIndex:0];
9865 if ([emulated_ respondsToSelector:@selector(concealTabBarSelection)])
9866 [emulated_ concealTabBarSelection];
9868 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9869 [window_ setRootViewController:emulated_];
9871 [window_ addSubview:[emulated_ view]];
9873 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9877 - (NSArray *) defaultStartPages {
9878 NSMutableArray *standard = [NSMutableArray array];
9879 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9880 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9881 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9882 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9883 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9889 if ([emulated_ modalViewController] != nil)
9890 [emulated_ dismissModalViewControllerAnimated:YES];
9891 [window_ setUserInteractionEnabled:NO];
9893 [self reloadDataWithInvocation:nil];
9894 [self refreshIfPossible];
9897 NSDictionary *state([NSDictionary dictionaryWithContentsOfFile:@ SavedState_]);
9899 int savedIndex = [[state objectForKey:@"InterfaceIndex"] intValue];
9900 NSArray *saved = [[[state objectForKey:@"InterfaceState"] mutableCopy] autorelease];
9901 int standardIndex = 0;
9902 NSArray *standard = [self defaultStartPages];
9909 NSDate *closed = [state objectForKey:@"LastClosed"];
9910 if (valid && closed != nil) {
9911 NSTimeInterval interval([closed timeIntervalSinceNow]);
9912 if (interval <= -(30*60))
9916 if (valid && [saved count] != [standard count])
9920 for (unsigned int i = 0; i < [standard count]; i++) {
9921 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9922 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9923 // but it's good enough for now.
9924 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9931 NSArray *items = nil;
9933 [tabbar_ setSelectedIndex:savedIndex];
9936 [tabbar_ setSelectedIndex:standardIndex];
9940 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9941 NSArray *stack = [items objectAtIndex:tab];
9942 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9943 NSMutableArray *current = [NSMutableArray array];
9945 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9946 NSString *addr = [stack objectAtIndex:nav];
9947 NSURL *url = [NSURL URLWithString:addr];
9948 CyteViewController *page = [self pageForURL:url forExternal:NO withReferrer:nil];
9950 [current addObject:page];
9953 [navigation setViewControllers:current];
9956 // (Try to) show the startup URL.
9957 if (starturl_ != nil) {
9958 [self openCydiaURL:starturl_ forExternal:YES];
9963 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9964 if (item != nil && IsWildcat_) {
9965 [sheet showFromBarButtonItem:item animated:YES];
9967 [sheet showInView:window_];
9971 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9972 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9973 [progress setTitle:task];
9974 [progress addProgressEvent:event];
9977 - (void) addProgressEventForTask:(NSArray *)data {
9978 CydiaProgressEvent *event([data objectAtIndex:0]);
9979 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9980 [self addProgressEvent:event forTask:task];
9983 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9984 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9990 id Alloc_(id self, SEL selector) {
9991 id object = alloc_(self, selector);
9992 lprintf("[%s]A-%p\n", self->isa->name, object);
9997 id Dealloc_(id self, SEL selector) {
9998 id object = dealloc_(self, selector);
9999 lprintf("[%s]D-%p\n", self->isa->name, object);
10003 Class $NSURLConnection;
10005 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
10006 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
10008 NSURL *url([copy URL]);
10010 NSString *host([url host]);
10011 NSString *scheme([[url scheme] lowercaseString]);
10013 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
10015 @synchronized (HostConfig_) {
10016 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
10017 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
10018 [copy setHTTPShouldUsePipelining:YES];
10020 if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"])
10021 if ([control isEqualToString:@"max-age=0"])
10022 if ([CachedURLs_ containsObject:url]) {
10024 NSLog(@"~~~: %@", url);
10027 [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad];
10029 [copy setValue:nil forHTTPHeaderField:@"Cache-Control"];
10030 [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"];
10031 [copy setValue:nil forHTTPHeaderField:@"If-None-Match"];
10035 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
10041 static CGSize $WAKWindow$screenSize(WAKWindow *self, SEL _cmd) {
10042 CGSize size([[UIScreen mainScreen] bounds].size);
10043 /*if ([$WAKWindow respondsToSelector:@selector(hasLandscapeOrientation)])
10044 if ([$WAKWindow hasLandscapeOrientation])
10045 std::swap(size.width, size.height);*/
10049 Class $NSUserDefaults;
10051 MSHook(id, NSUserDefaults$objectForKey$, NSUserDefaults *self, SEL _cmd, NSString *key) {
10052 if ([key respondsToSelector:@selector(isEqualToString:)] && [key isEqualToString:@"WebKitLocalStorageDatabasePathPreferenceKey"])
10053 return Cache("LocalStorage");
10054 return _NSUserDefaults$objectForKey$(self, _cmd, key);
10057 int main(int argc, char *argv[]) {
10058 int fd(open("/tmp/cydia.log", O_WRONLY | O_APPEND | O_CREAT, 0644));
10062 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
10066 UpdateExternalStatus(0);
10068 UIScreen *screen([UIScreen mainScreen]);
10069 if ([screen respondsToSelector:@selector(scale)])
10070 ScreenScale_ = [screen scale];
10074 UIDevice *device([UIDevice currentDevice]);
10075 if ([device respondsToSelector:@selector(userInterfaceIdiom)]) {
10076 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10077 if (idiom == UIUserInterfaceIdiomPad)
10081 Idiom_ = IsWildcat_ ? @"ipad" : @"iphone";
10083 RegEx pattern("([0-9]+\\.[0-9]+).*");
10085 if (pattern([device systemVersion]))
10086 Firmware_ = pattern[1];
10087 if (pattern(Cydia_))
10088 Major_ = pattern[1];
10090 SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4];
10092 HostConfig_ = [[[NSObject alloc] init] autorelease];
10093 @synchronized (HostConfig_) {
10094 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10095 InsecureHosts_ = [NSMutableSet setWithCapacity:4];
10096 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10097 CachedURLs_ = [NSMutableSet setWithCapacity:32];
10100 NSString *ui(@"ui/ios");
10102 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]];
10103 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]];
10104 UI_ = CydiaURL(ui);
10106 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10108 /* Library Hacks {{{ */
10109 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10111 $WAKWindow = objc_getClass("WAKWindow");
10112 if ($WAKWindow != NULL)
10113 if (Method method = class_getInstanceMethod($WAKWindow, @selector(screenSize)))
10114 method_setImplementation(method, (IMP) &$WAKWindow$screenSize);
10116 $NSURLConnection = objc_getClass("NSURLConnection");
10117 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10118 if (NSURLConnection$init$ != NULL) {
10119 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10120 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10123 $NSUserDefaults = objc_getClass("NSUserDefaults");
10124 Method NSUserDefaults$objectForKey$(class_getInstanceMethod($NSUserDefaults, @selector(objectForKey:)));
10125 if (NSUserDefaults$objectForKey$ != NULL) {
10126 _NSUserDefaults$objectForKey$ = reinterpret_cast<id (*)(NSUserDefaults *, SEL, NSString *)>(method_getImplementation(NSUserDefaults$objectForKey$));
10127 method_setImplementation(NSUserDefaults$objectForKey$, reinterpret_cast<IMP>(&$NSUserDefaults$objectForKey$));
10130 /* Set Locale {{{ */
10131 Locale_ = CFLocaleCopyCurrent();
10132 Languages_ = [NSLocale preferredLanguages];
10134 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10135 //NSLog(@"%@", [Languages_ description]);
10138 if (Locale_ != NULL)
10139 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10140 else if (Languages_ != nil && [Languages_ count] != 0)
10141 lang = [[Languages_ objectAtIndex:0] UTF8String];
10143 // XXX: consider just setting to C and then falling through?
10146 if (lang != NULL) {
10147 RegEx pattern("([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?");
10148 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10151 NSLog(@"Setting Language: %s", lang);
10153 if (lang != NULL) {
10154 setenv("LANG", lang, true);
10155 std::setlocale(LC_ALL, lang);
10158 /* Index Collation {{{ */
10159 if (Class $UILocalizedIndexedCollation = objc_getClass("UILocalizedIndexedCollation")) { @try {
10160 NSBundle *bundle([NSBundle bundleForClass:$UILocalizedIndexedCollation]);
10161 NSString *path([bundle pathForResource:@"UITableViewLocalizedSectionIndex" ofType:@"plist"]);
10162 //path = @"/System/Library/Frameworks/UIKit.framework/.lproj/UITableViewLocalizedSectionIndex.plist";
10163 NSDictionary *dictionary([NSDictionary dictionaryWithContentsOfFile:path]);
10164 _H<UILocalizedIndexedCollation> collation([[[$UILocalizedIndexedCollation alloc] initWithDictionary:dictionary] autorelease]);
10166 CollationLocale_ = MSHookIvar<NSLocale *>(collation, "_locale");
10168 if (kCFCoreFoundationVersionNumber >= 800 && [[CollationLocale_ localeIdentifier] isEqualToString:@"zh@collation=stroke"]) {
10169 CollationThumbs_ = [NSArray arrayWithObjects:@"1",@"•",@"4",@"•",@"7",@"•",@"10",@"•",@"13",@"•",@"16",@"•",@"19",@"A",@"•",@"E",@"•",@"I",@"•",@"M",@"•",@"R",@"•",@"V",@"•",@"Z",@"#",nil];
10170 for (NSInteger offset : (NSInteger[]) {0,1,3,4,6,7,9,10,12,13,15,16,18,25,26,29,30,33,34,37,38,42,43,46,47,50,51})
10171 CollationOffset_.push_back(offset);
10172 CollationTitles_ = [NSArray arrayWithObjects:@"1 畫",@"2 畫",@"3 畫",@"4 畫",@"5 畫",@"6 畫",@"7 畫",@"8 畫",@"9 畫",@"10 畫",@"11 畫",@"12 畫",@"13 畫",@"14 畫",@"15 畫",@"16 畫",@"17 畫",@"18 畫",@"19 畫",@"20 畫",@"21 畫",@"22 畫",@"23 畫",@"24 畫",@"25 畫以上",@"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];
10173 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];
10176 CollationThumbs_ = [collation sectionIndexTitles];
10177 for (size_t index(0), end([CollationThumbs_ count]); index != end; ++index)
10178 CollationOffset_.push_back([collation sectionForSectionIndexTitleAtIndex:index]);
10180 CollationTitles_ = [collation sectionTitles];
10181 CollationStarts_ = MSHookIvar<NSArray *>(collation, "_sectionStartStrings");
10183 NSString *&transform(MSHookIvar<NSString *>(collation, "_transform"));
10184 if (&transform != NULL && transform != nil) {
10185 /*if ([collation respondsToSelector:@selector(transformedCollationStringForString:)])
10186 CollationModify_ = [=](NSString *value) { return [collation transformedCollationStringForString:value]; };*/
10187 const UChar *uid(reinterpret_cast<const UChar *>([transform cStringUsingEncoding:NSUnicodeStringEncoding]));
10188 UErrorCode code(U_ZERO_ERROR);
10189 CollationTransl_ = utrans_openU(uid, -1, UTRANS_FORWARD, NULL, 0, NULL, &code);
10190 if (!U_SUCCESS(code))
10191 NSLog(@"%s", u_errorName(code));
10195 } @catch (NSException *e) {
10199 CollationLocale_ = [[[NSLocale alloc] initWithLocaleIdentifier:@"en@collation=dictionary"] autorelease];
10201 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];
10202 for (NSInteger offset(0); offset != 28; ++offset)
10203 CollationOffset_.push_back(offset);
10205 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];
10206 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];
10209 /* Parse Arguments {{{ */
10210 bool substrate(false);
10216 for (int argi(1); argi != argc; ++argi)
10217 if (strcmp(argv[argi], "--") == 0) {
10219 argv[argi] = argv[0];
10225 for (int argi(1); argi != arge; ++argi)
10226 if (strcmp(args[argi], "--substrate") == 0)
10229 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10233 App_ = [[NSBundle mainBundle] bundlePath];
10236 Cache_ = [[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia", @"/var/mobile"] retain];
10238 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10239 alloc_ = alloc->method_imp;
10240 alloc->method_imp = (IMP) &Alloc_;*/
10242 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10243 dealloc_ = dealloc->method_imp;
10244 dealloc->method_imp = (IMP) &Dealloc_;*/
10246 void *gestalt(dlopen("/usr/lib/libMobileGestalt.dylib", RTLD_GLOBAL | RTLD_LAZY));
10247 $MGCopyAnswer = reinterpret_cast<CFStringRef (*)(CFStringRef)>(dlsym(gestalt, "MGCopyAnswer"));
10249 /* System Information {{{ */
10253 size = sizeof(maxproc);
10254 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10255 perror("sysctlbyname(\"kern.maxproc\", ?)");
10256 else if (maxproc < 64) {
10258 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10259 perror("sysctlbyname(\"kern.maxproc\", #)");
10262 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10263 char *osversion = new char[size];
10264 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10265 perror("sysctlbyname(\"kern.osversion\", ?)");
10267 System_ = [NSString stringWithUTF8String:osversion];
10269 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10270 char *machine = new char[size];
10271 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10272 perror("sysctlbyname(\"hw.machine\", ?)");
10274 Machine_ = machine;
10276 int64_t usermem(0);
10277 size = sizeof(usermem);
10278 if (sysctlbyname("hw.usermem", &usermem, &size, NULL, 0) == -1)
10281 SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber");
10282 ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString];
10283 BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false);
10285 UniqueID_ = UniqueIdentifier(device);
10287 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10288 Product_ = [info objectForKey:@"SafariProductVersion"];
10289 Safari_ = [info objectForKey:@"CFBundleVersion"];
10292 NSString *agent([NSString stringWithFormat:@"Cydia/%@ CyF/%.2f", Cydia_, kCFCoreFoundationVersionNumber]);
10294 if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Safari_))
10295 agent = [NSString stringWithFormat:@"Safari/%@ %@", match[1], agent];
10296 if (RegEx match = RegEx("([0-9]+[A-Z][0-9]+[a-z]?).*", System_))
10297 agent = [NSString stringWithFormat:@"Mobile/%@ %@", match[1], agent];
10298 if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Product_))
10299 agent = [NSString stringWithFormat:@"Version/%@ %@", match[1], agent];
10301 UserAgent_ = agent;
10303 /* Load Database {{{ */
10304 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10307 mkdir("/var/mobile/Library/Cydia", 0755);
10308 MetaFile_.Open("/var/mobile/Library/Cydia/metadata.cb0");
10311 // XXX: port this to NSUserDefaults when you aren't in such a rush
10312 Values_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaValues"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10313 Sections_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaSections"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10314 Sources_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaSources"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10315 Version_ = [(NSNumber *) CFPreferencesCopyAppValue(CFSTR("CydiaVersion"), CFSTR("com.saurik.Cydia")) autorelease];
10318 NSDictionary *metadata([[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease]);
10320 if (Values_ == nil)
10321 Values_ = [metadata objectForKey:@"Values"];
10322 if (Values_ == nil)
10323 Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease];
10325 if (Sections_ == nil)
10326 Sections_ = [metadata objectForKey:@"Sections"];
10327 if (Sections_ == nil)
10328 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10330 if (Sources_ == nil)
10331 Sources_ = [metadata objectForKey:@"Sources"];
10332 if (Sources_ == nil)
10333 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10335 // XXX: this wrong, but in a way that doesn't matter :/
10336 if (Version_ == nil)
10337 Version_ = [metadata objectForKey:@"Version"];
10338 if (Version_ == nil)
10339 Version_ = [NSNumber numberWithUnsignedInt:0];
10341 if (NSDictionary *packages = [metadata objectForKey:@"Packages"]) {
10343 CFDictionaryApplyFunction((CFDictionaryRef) packages, &PackageImport, &fail);
10346 NSLog(@"unable to import package preferences... from 2010? oh well :/");
10349 if ([Version_ unsignedIntValue] == 0) {
10350 CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10351 CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10352 CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10353 CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
10355 Version_ = [NSNumber numberWithUnsignedInt:1];
10357 if (NSMutableDictionary *cache = [NSMutableDictionary dictionaryWithContentsOfFile:@ CacheState_]) {
10358 [cache removeObjectForKey:@"LastUpdate"];
10359 [cache writeToFile:@ CacheState_ atomically:YES];
10363 _H<NSMutableArray> broken([NSMutableArray array]);
10364 for (NSString *key in (id) Sources_)
10365 if ([key rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"# "]].location != NSNotFound)
10366 [broken addObject:key];
10367 if ([broken count] != 0)
10368 for (NSString *key in (id) broken)
10369 [Sources_ removeObjectForKey:key];
10373 system("/usr/libexec/cydia/cydo /bin/rm -f /var/lib/cydia/metadata.plist");
10376 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10378 if (kCFCoreFoundationVersionNumber > 1000)
10379 system("/usr/libexec/cydia/cydo /usr/libexec/cydia/setnsfpn /var/lib");
10381 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10383 if (access("/User", F_OK) != 0 || version != 6) {
10385 system("/usr/libexec/cydia/cydo /usr/libexec/cydia/firmware.sh");
10389 if (access("/tmp/cydia.chk", F_OK) == 0) {
10390 if (unlink([Cache("pkgcache.bin") UTF8String]) == -1)
10391 _assert(errno == ENOENT);
10392 if (unlink([Cache("srcpkgcache.bin") UTF8String]) == -1)
10393 _assert(errno == ENOENT);
10396 /* APT Initialization {{{ */
10397 _assert(pkgInitConfig(*_config));
10398 _assert(pkgInitSystem(*_config, _system));
10401 _config->Set("APT::Acquire::Translation", lang);
10403 // XXX: this timeout might be important :(
10404 //_config->Set("Acquire::http::Timeout", 15);
10406 _config->Set("Acquire::http::MaxParallel", usermem >= 384 * 1024 * 1024 ? 16 : 3);
10408 mkdir([Cache_ UTF8String], 0755);
10409 mkdir([Cache("archives") UTF8String], 0755);
10410 mkdir([Cache("archives/partial") UTF8String], 0755);
10411 _config->Set("Dir::Cache", [Cache_ UTF8String]);
10413 symlink("/var/lib/apt/extended_states", [Cache("extended_states") UTF8String]);
10414 _config->Set("Dir::State", [Cache_ UTF8String]);
10416 mkdir([Cache("lists") UTF8String], 0755);
10417 mkdir([Cache("lists/partial") UTF8String], 0755);
10418 mkdir([Cache("periodic") UTF8String], 0755);
10419 _config->Set("Dir::State::Lists", [Cache("lists") UTF8String]);
10421 std::string logs("/var/mobile/Library/Logs/Cydia");
10422 mkdir(logs.c_str(), 0755);
10423 _config->Set("Dir::Log::Terminal", logs + "/apt.log");
10425 _config->Set("Dir::Bin::dpkg", "/usr/libexec/cydia/cydo");
10427 /* Color Choices {{{ */
10428 space_ = CGColorSpaceCreateDeviceRGB();
10430 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10431 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10432 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10433 Folder_.Set(space_, 0x8e/255.f, 0x8e/255.f, 0x93/255.f, 1.0);
10434 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10435 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10436 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10437 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10438 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10439 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10441 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10442 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10444 /* UIKit Configuration {{{ */
10445 // XXX: I have a feeling this was important
10446 //UIKeyboardDisableAutomaticAppearance();
10449 $SBSSetInterceptsMenuButtonForever = reinterpret_cast<void (*)(bool)>(dlsym(RTLD_DEFAULT, "SBSSetInterceptsMenuButtonForever"));
10451 const char *symbol(kCFCoreFoundationVersionNumber >= 800 ? "MGGetBoolAnswer" : "GSSystemHasCapability");
10452 BOOL (*GSSystemHasCapability)(CFStringRef) = reinterpret_cast<BOOL (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, symbol));
10453 bool fast = GSSystemHasCapability != NULL && GSSystemHasCapability(CFSTR("armv7"));
10455 PulseInterval_ = fast ? 50000 : 500000;
10457 Colon_ = UCLocalize("COLON_DELIMITED");
10458 Elision_ = UCLocalize("ELISION");
10459 Error_ = UCLocalize("ERROR");
10460 Warning_ = UCLocalize("WARNING");
10463 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10465 CGColorSpaceRelease(space_);
10466 CFRelease(Locale_);