1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2011 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 // XXX: wtf/FastMalloc.h... wtf?
41 #define USE_SYSTEM_MALLOC 1
43 /* #include Directives {{{ */
44 #include "CyteKit/UCPlatform.h"
45 #include "CyteKit/Localize.h"
47 #include <objc/objc.h>
48 #include <objc/runtime.h>
50 #include <CoreGraphics/CoreGraphics.h>
51 #include <Foundation/Foundation.h>
54 #define DEPLOYMENT_TARGET_MACOSX 1
55 #define CF_BUILDING_CF 1
56 #include <CoreFoundation/CFInternal.h>
59 #include <CoreFoundation/CFPriv.h>
60 #include <CoreFoundation/CFUniChar.h>
62 #include <SystemConfiguration/SystemConfiguration.h>
64 #include <UIKit/UIKit.h>
65 #include "iPhonePrivate.h"
67 #include <IOKit/IOKitLib.h>
69 #include <QuartzCore/CALayer.h>
71 #include <WebCore/WebCoreThread.h>
78 #include <ext/stdio_filebuf.h>
82 #include <apt-pkg/acquire.h>
83 #include <apt-pkg/acquire-item.h>
84 #include <apt-pkg/algorithms.h>
85 #include <apt-pkg/cachefile.h>
86 #include <apt-pkg/clean.h>
87 #include <apt-pkg/configuration.h>
88 #include <apt-pkg/debindexfile.h>
89 #include <apt-pkg/debmetaindex.h>
90 #include <apt-pkg/error.h>
91 #include <apt-pkg/init.h>
92 #include <apt-pkg/mmap.h>
93 #include <apt-pkg/pkgrecords.h>
94 #include <apt-pkg/sha1.h>
95 #include <apt-pkg/sourcelist.h>
96 #include <apt-pkg/sptr.h>
97 #include <apt-pkg/strutl.h>
98 #include <apt-pkg/tagfile.h>
100 #include <apr-1/apr_pools.h>
102 #include <sys/types.h>
103 #include <sys/stat.h>
104 #include <sys/sysctl.h>
105 #include <sys/param.h>
106 #include <sys/mount.h>
107 #include <sys/reboot.h>
114 #include <mach-o/nlist.h>
123 #include <Cytore.hpp>
126 #include <CydiaSubstrate/CydiaSubstrate.h>
127 #include "Menes/Menes.h"
129 #include "CyteKit/PerlCompatibleRegEx.hpp"
130 #include "CyteKit/TableViewCell.h"
131 #include "CyteKit/WebScriptObject-Cyte.h"
132 #include "CyteKit/WebViewController.h"
133 #include "CyteKit/stringWithUTF8Bytes.h"
135 #include "Cydia/MIMEAddress.h"
136 #include "Cydia/LoadingViewController.h"
137 #include "Cydia/ProgressEvent.h"
139 #include "SDURLCache/SDURLCache.h"
146 #define _timestamp ({ \
148 gettimeofday(&tv, NULL); \
149 tv.tv_sec * 1000000 + tv.tv_usec; \
152 typedef std::vector<class ProfileTime *> TimeList;
162 ProfileTime(const char *name) :
166 times_.push_back(this);
169 void AddTime(uint64_t time) {
176 std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
188 ProfileTimer(ProfileTime &time) :
195 time_.AddTime(_timestamp - start_);
200 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
202 std::cerr << "========" << std::endl;
205 #define _profile(name) { \
206 static ProfileTime name(#name); \
207 ProfileTimer _ ## name(name);
212 extern NSString *Cydia_;
214 #define lprintf(args...) fprintf(stderr, args)
217 #define TraceLogging (1 && !ForRelease)
218 #define HistogramInsertionSort (!ForRelease ? 0 : 0)
219 #define ProfileTimes (0 && !ForRelease)
220 #define ForSaurik (0 && !ForRelease)
221 #define LogBrowser (0 && !ForRelease)
222 #define TrackResize (0 && !ForRelease)
223 #define ManualRefresh (1 && !ForRelease)
224 #define ShowInternals (0 && !ForRelease)
225 #define AlwaysReload (0 && !ForRelease)
226 #define TryIndexedCollation (0 && !ForRelease)
230 #define _trace(args...)
235 #define _profile(name) {
238 #define PrintTimes() do {} while (false)
241 // Hash Functions/Structures {{{
242 extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0);
250 static NSString *Colon_;
252 static NSString *Error_;
253 static NSString *Warning_;
255 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
257 static _finline NSString *CydiaURL(NSString *path) {
259 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's';
260 page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y';
261 page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's';
262 page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k';
263 page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/';
265 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
268 static _finline void UpdateExternalStatus(uint64_t newStatus) {
270 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
271 notify_set_state(notify_token, newStatus);
272 notify_cancel(notify_token);
274 notify_post("com.saurik.Cydia.status");
277 static CGFloat CYStatusBarHeight() {
278 CGSize size([[UIApplication sharedApplication] statusBarFrame].size);
279 return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width;
282 /* NSForcedOrderingSearch doesn't work on the iPhone */
283 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
284 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
285 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
287 /* Insertion Sort {{{ */
289 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
290 const char *ptr = (const char *)list;
292 CFIndex half = count / 2;
293 const char *probe = ptr + elementSize * half;
294 CFComparisonResult cr = comparator(element, probe, context);
295 if (0 == cr) return (probe - (const char *)list) / elementSize;
296 ptr = (cr < 0) ? ptr : probe + elementSize;
297 count = (cr < 0) ? half : (half + (count & 1) - 1);
299 return (ptr - (const char *)list) / elementSize;
302 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
303 const char *ptr = (const char *)list;
305 CFIndex half = count / 2;
306 const char *probe = ptr + elementSize * half;
307 CFComparisonResult cr = comparator(element, probe, context);
308 if (0 == cr) return (probe - (const char *)list) / elementSize;
309 ptr = (cr < 0) ? ptr : probe + elementSize;
310 count = (cr < 0) ? half : (half + (count & 1) - 1);
312 return (ptr - (const char *)list) / elementSize;
315 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
316 if (range.length == 0)
318 const void **values(new const void *[range.length]);
319 CFArrayGetValues(array, range, values);
321 #if HistogramInsertionSort > 0
322 uint32_t total(0), *offsets(new uint32_t[range.length]);
325 for (CFIndex index(1); index != range.length; ++index) {
326 const void *value(values[index]);
327 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
328 CFIndex correct(index);
329 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
330 #if HistogramInsertionSort > 1
331 NSLog(@"%@ < %@", value, values[correct - 1]);
336 if (correct != index) {
337 size_t offset(index - correct);
338 #if HistogramInsertionSort
342 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
344 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
345 values[correct] = value;
349 CFArrayReplaceValues(array, range, values, range.length);
352 #if HistogramInsertionSort > 0
353 for (CFIndex index(0); index != range.length; ++index)
354 if (offsets[index] != 0)
355 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
356 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
363 /* Apple Bug Fixes {{{ */
364 @implementation UIWebDocumentView (Cydia)
366 - (void) _setScrollerOffset:(CGPoint)offset {
367 UIScroller *scroller([self _scroller]);
369 CGSize size([scroller contentSize]);
370 CGSize bounds([scroller bounds].size);
373 max.x = size.width - bounds.width;
374 max.y = size.height - bounds.height;
382 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
383 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
385 [scroller setOffset:offset];
391 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
392 size_t length([self length] - state->state);
395 else if (length > count)
397 for (size_t i(0); i != length; ++i)
398 objects[i] = [self item:state->state++];
399 state->itemsPtr = objects;
400 state->mutationsPtr = (unsigned long *) self;
404 /* Cydia NSString Additions {{{ */
405 @interface NSString (Cydia)
406 - (NSComparisonResult) compareByPath:(NSString *)other;
407 - (NSString *) stringByCachingURLWithCurrentCDN;
408 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
411 @implementation NSString (Cydia)
413 - (NSComparisonResult) compareByPath:(NSString *)other {
414 NSString *prefix = [self commonPrefixWithString:other options:0];
415 size_t length = [prefix length];
417 NSRange lrange = NSMakeRange(length, [self length] - length);
418 NSRange rrange = NSMakeRange(length, [other length] - length);
420 lrange = [self rangeOfString:@"/" options:0 range:lrange];
421 rrange = [other rangeOfString:@"/" options:0 range:rrange];
423 NSComparisonResult value;
425 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
426 value = NSOrderedSame;
427 else if (lrange.location == NSNotFound)
428 value = NSOrderedAscending;
429 else if (rrange.location == NSNotFound)
430 value = NSOrderedDescending;
432 value = NSOrderedSame;
434 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
435 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
436 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
437 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
439 NSComparisonResult result = [lpath compare:rpath];
440 return result == NSOrderedSame ? value : result;
443 - (NSString *) stringByCachingURLWithCurrentCDN {
445 stringByReplacingOccurrencesOfString:@"://cydia.saurik.com/"
446 withString:@"://cache.cydia.saurik.com/"
450 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
451 return [(id)CFURLCreateStringByAddingPercentEscapes(
456 kCFStringEncodingUTF8
463 /* C++ NSString Wrapper Cache {{{ */
464 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
465 return size == 0 ? NULL :
466 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
467 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
470 static _finline CFStringRef CYStringCreate(const char *data) {
471 return CYStringCreate(data, strlen(data));
480 _finline void clear_() {
481 if (cache_ != NULL) {
488 _finline bool empty() const {
492 _finline size_t size() const {
496 _finline char *data() const {
500 _finline void clear() {
505 _finline CYString() :
512 _finline ~CYString() {
516 void operator =(const CYString &rhs) {
520 if (rhs.cache_ == nil)
523 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
526 void copy(apr_pool_t *pool) {
527 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size_ + 1)));
528 memcpy(temp, data_, size_);
533 void set(apr_pool_t *pool, const char *data, size_t size) {
539 data_ = const_cast<char *>(data);
547 _finline void set(apr_pool_t *pool, const char *data) {
548 set(pool, data, data == NULL ? 0 : strlen(data));
551 _finline void set(apr_pool_t *pool, const std::string &rhs) {
552 set(pool, rhs.data(), rhs.size());
555 bool operator ==(const CYString &rhs) const {
556 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
559 _finline operator CFStringRef() {
561 cache_ = CYStringCreate(data_, size_);
565 _finline operator id() {
566 return (NSString *) static_cast<CFStringRef>(*this);
569 _finline operator const char *() {
570 return reinterpret_cast<const char *>(data_);
574 /* C++ NSString Algorithm Adapters {{{ */
576 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
579 struct NSStringMapHash :
580 std::unary_function<NSString *, size_t>
582 _finline size_t operator ()(NSString *value) const {
583 return CFStringHashNSString((CFStringRef) value);
587 struct NSStringMapLess :
588 std::binary_function<NSString *, NSString *, bool>
590 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
591 return [lhs compare:rhs] == NSOrderedAscending;
595 struct NSStringMapEqual :
596 std::binary_function<NSString *, NSString *, bool>
598 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
599 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
600 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
601 //[lhs isEqualToString:rhs];
606 /* CoreGraphics Primitives {{{ */
611 static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
612 CGFloat color[] = {red, green, blue, alpha};
613 return CGColorCreate(space, color);
622 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
623 color_(Create_(space, red, green, blue, alpha))
625 Set(space, red, green, blue, alpha);
630 CGColorRelease(color_);
637 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
639 color_ = Create_(space, red, green, blue, alpha);
642 operator CGColorRef() {
648 /* Random Global Variables {{{ */
649 static const int PulseInterval_ = 50000;
651 static const NSString *UI_;
654 static bool RestartSubstrate_;
655 static NSArray *Finishes_;
657 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
658 #define NotifyConfig_ "/etc/notify.conf"
660 static bool Queuing_;
662 static CYColor Blue_;
663 static CYColor Blueish_;
664 static CYColor Black_;
666 static CYColor White_;
667 static CYColor Gray_;
668 static CYColor Green_;
669 static CYColor Purple_;
670 static CYColor Purplish_;
672 static UIColor *InstallingColor_;
673 static UIColor *RemovingColor_;
675 static NSString *App_;
677 static BOOL Advanced_;
678 static BOOL Ignored_;
680 static _H<UIFont> Font12_;
681 static _H<UIFont> Font12Bold_;
682 static _H<UIFont> Font14_;
683 static _H<UIFont> Font18Bold_;
684 static _H<UIFont> Font22Bold_;
686 static const char *Machine_ = NULL;
687 static NSString *System_ = nil;
688 static NSString *SerialNumber_ = nil;
689 static NSString *ChipID_ = nil;
690 static NSString *BBSNum_ = nil;
691 static _H<NSString> Token_;
692 static NSString *UniqueID_ = nil;
693 static NSString *PLMN_ = nil;
694 static NSString *Build_ = nil;
695 static NSString *Product_ = nil;
696 static NSString *Safari_ = nil;
698 static CFLocaleRef Locale_;
699 static NSArray *Languages_;
700 static CGColorSpaceRef space_;
702 static NSDictionary *SectionMap_;
703 static NSMutableDictionary *Metadata_;
704 static _transient NSMutableDictionary *Settings_;
705 static _transient NSString *Role_;
706 static _transient NSMutableDictionary *Packages_;
707 static _transient NSMutableDictionary *Values_;
708 static _transient NSMutableDictionary *Sections_;
709 _H<NSMutableDictionary> Sources_;
710 static _transient NSNumber *Version_;
711 _H<NSString> CydiaSource_;
716 static CGFloat ScreenScale_;
717 static NSString *Idiom_;
718 _H<NSString> Firmware_;
719 static NSString *Major_;
721 static _H<NSMutableDictionary> SessionData_;
722 static _H<NSObject> HostConfig_;
723 static _H<NSMutableSet> BridgedHosts_;
724 static _H<NSMutableSet> TokenHosts_;
725 static _H<NSMutableSet> InsecureHosts_;
726 static _H<NSMutableSet> PipelinedHosts_;
727 static _H<NSMutableSet> CachedURLs_;
729 static NSString *kCydiaProgressEventTypeError = @"Error";
730 static NSString *kCydiaProgressEventTypeInformation = @"Information";
731 static NSString *kCydiaProgressEventTypeStatus = @"Status";
732 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
735 /* Display Helpers {{{ */
736 inline float Interpolate(float begin, float end, float fraction) {
737 return (end - begin) * fraction + begin;
740 static _finline const char *StripVersion_(const char *version) {
741 const char *colon(strchr(version, ':'));
742 return colon == NULL ? version : colon + 1;
745 NSString *LocalizeSection(NSString *section) {
746 static Pcre title_r("^(.*?) \\((.*)\\)$");
747 if (title_r(section)) {
748 NSString *parent(title_r[1]);
749 NSString *child(title_r[2]);
751 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
752 LocalizeSection(parent),
753 LocalizeSection(child)
757 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
760 NSString *Simplify(NSString *title) {
761 const char *data = [title UTF8String];
762 size_t size = [title length];
764 static Pcre square_r("^\\[(.*)\\]$");
765 if (square_r(data, size))
766 return Simplify(square_r[1]);
768 static Pcre paren_r("^\\((.*)\\)$");
769 if (paren_r(data, size))
770 return Simplify(paren_r[1]);
772 static Pcre title_r("^(.*?) \\((.*)\\)$");
773 if (title_r(data, size))
774 return Simplify(title_r[1]);
780 NSString *GetLastUpdate() {
781 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
784 return UCLocalize("NEVER_OR_UNKNOWN");
786 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
787 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
789 CFRelease(formatter);
791 return [(NSString *) formatted autorelease];
794 bool isSectionVisible(NSString *section) {
795 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
796 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
797 return hidden == nil || ![hidden boolValue];
800 static NSObject *CYIOGetValue(const char *path, NSString *property) {
801 io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path));
802 if (entry == MACH_PORT_NULL)
805 CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0));
806 IOObjectRelease(entry);
810 return [(id) value autorelease];
813 static NSString *CYHex(NSData *data, bool reverse = false) {
817 size_t length([data length]);
818 uint8_t bytes[length];
819 [data getBytes:bytes];
821 char string[length * 2 + 1];
822 for (size_t i(0); i != length; ++i)
823 sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]);
825 return [NSString stringWithUTF8String:string];
830 /* Delegate Prototypes {{{ */
833 @class CydiaProgressEvent;
835 @protocol DatabaseDelegate
836 - (void) repairWithSelector:(SEL)selector;
837 - (void) setConfigurationData:(NSString *)data;
838 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
841 @class CYPackageController;
843 @protocol CydiaDelegate
844 - (void) returnToCydia;
846 - (void) retainNetworkActivityIndicator;
847 - (void) releaseNetworkActivityIndicator;
848 - (void) clearPackage:(Package *)package;
849 - (void) installPackage:(Package *)package;
850 - (void) installPackages:(NSArray *)packages;
851 - (void) removePackage:(Package *)package;
852 - (void) beginUpdate;
854 - (void) distUpgrade;
858 - (void) addSource:(NSDictionary *)source;
859 - (void) addTrivialSource:(NSString *)href;
860 - (void) showSettings;
861 - (UIProgressHUD *) addProgressHUD;
862 - (void) removeProgressHUD:(UIProgressHUD *)hud;
863 - (CyteViewController *) pageForPackage:(NSString *)name;
864 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
865 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
869 /* Status Delegation {{{ */
871 public pkgAcquireStatus
874 _transient NSObject<ProgressDelegate> *delegate_;
884 void setDelegate(NSObject<ProgressDelegate> *delegate) {
885 delegate_ = delegate;
888 NSObject<ProgressDelegate> *getDelegate() const {
892 virtual bool MediaChange(std::string media, std::string drive) {
896 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
900 virtual void Fetch(pkgAcquire::ItemDesc &item) {
901 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
902 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
903 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
906 virtual void Done(pkgAcquire::ItemDesc &item) {
907 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
908 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
909 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
912 virtual void Fail(pkgAcquire::ItemDesc &item) {
914 item.Owner->Status == pkgAcquire::Item::StatIdle ||
915 item.Owner->Status == pkgAcquire::Item::StatDone
919 std::string &error(item.Owner->ErrorText);
923 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItem:item]);
924 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
927 virtual bool Pulse(pkgAcquire *Owner) {
928 bool value = pkgAcquireStatus::Pulse(Owner);
931 double(CurrentBytes + CurrentItems) /
932 double(TotalBytes + TotalItems)
935 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
936 [NSNumber numberWithDouble:percent], @"Percent",
938 [NSNumber numberWithDouble:CurrentBytes], @"Current",
939 [NSNumber numberWithDouble:TotalBytes], @"Total",
940 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
941 nil] waitUntilDone:YES];
943 if (value && ![delegate_ isProgressCancelled])
951 _finline bool WasCancelled() const {
955 virtual void Start() {
956 pkgAcquireStatus::Start();
957 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
960 virtual void Stop() {
961 pkgAcquireStatus::Stop();
962 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
963 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
967 /* Database Interface {{{ */
968 typedef std::map< unsigned long, _H<Source> > SourceMap;
970 @interface Database : NSObject {
977 pkgDepCache::Policy *policy_;
978 pkgRecords *records_;
979 pkgProblemResolver *resolver_;
980 pkgAcquire *fetcher_;
982 SPtr<pkgPackageManager> manager_;
983 pkgSourceList *list_;
985 SourceMap sourceMap_;
986 _H<NSMutableArray> sourceList_;
988 CFMutableArrayRef packages_;
990 _transient NSObject<DatabaseDelegate> *delegate_;
991 _transient NSObject<ProgressDelegate> *progress_;
999 std::map<const char *, _H<NSString> > sections_;
1002 + (Database *) sharedInstance;
1005 - (void) _readCydia:(NSNumber *)fd;
1006 - (void) _readStatus:(NSNumber *)fd;
1007 - (void) _readOutput:(NSNumber *)fd;
1011 - (Package *) packageWithName:(NSString *)name;
1013 - (pkgCacheFile &) cache;
1014 - (pkgDepCache::Policy *) policy;
1015 - (pkgRecords *) records;
1016 - (pkgProblemResolver *) resolver;
1017 - (pkgAcquire &) fetcher;
1018 - (pkgSourceList &) list;
1019 - (NSArray *) packages;
1020 - (NSArray *) sources;
1021 - (Source *) sourceWithKey:(NSString *)key;
1022 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1030 - (void) updateWithStatus:(Status &)status;
1032 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1034 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1035 - (NSObject<ProgressDelegate> *) progressDelegate;
1037 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1039 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1043 /* ProgressEvent Implementation {{{ */
1044 @implementation CydiaProgressEvent
1046 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1047 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1050 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1051 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1052 [event setPackage:package];
1056 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item {
1057 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1059 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1060 NSArray *fields([description componentsSeparatedByString:@" "]);
1061 [event setItem:fields];
1063 if ([fields count] > 3) {
1064 [event setPackage:[fields objectAtIndex:2]];
1065 [event setVersion:[fields objectAtIndex:3]];
1068 [event setURL:[NSString stringWithUTF8String:item.URI.c_str()]];
1073 + (NSArray *) _attributeKeys {
1074 return [NSArray arrayWithObjects:
1084 - (NSArray *) attributeKeys {
1085 return [[self class] _attributeKeys];
1088 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1089 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1092 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1093 if ((self = [super init]) != nil) {
1099 - (NSString *) message {
1103 - (NSString *) type {
1107 - (NSArray *) item {
1108 return (id) item_ ?: [NSNull null];
1111 - (void) setItem:(NSArray *)item {
1115 - (NSString *) package {
1116 return (id) package_ ?: [NSNull null];
1119 - (void) setPackage:(NSString *)package {
1123 - (NSString *) url {
1124 return (id) url_ ?: [NSNull null];
1127 - (void) setURL:(NSString *)url {
1131 - (void) setVersion:(NSString *)version {
1135 - (NSString *) version {
1136 return (id) version_ ?: [NSNull null];
1139 - (NSString *) compound:(NSString *)value {
1141 NSString *mode(nil); {
1142 NSString *type([self type]);
1143 if ([type isEqualToString:kCydiaProgressEventTypeError])
1144 mode = UCLocalize("ERROR");
1145 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1146 mode = UCLocalize("WARNING");
1150 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1156 - (NSString *) compoundMessage {
1157 return [self compound:[self message]];
1160 - (NSString *) compoundTitle {
1163 if (package_ == nil)
1165 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1166 title = [package name];
1170 return [self compound:title];
1176 // Cytore Definitions {{{
1177 struct PackageValue :
1180 Cytore::Offset<PackageValue> next_;
1182 uint32_t index_ : 23;
1183 uint32_t subscribed_ : 1;
1200 Cytore::Offset<PackageValue> packages_[1 << 16];
1203 static Cytore::File<MetaValue> MetaFile_;
1205 // Cytore Helper Functions {{{
1206 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1207 SplitHash nhash = { hashlittle(name, length) };
1209 PackageValue *metadata;
1211 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1212 offset: if (offset->IsNull()) {
1213 *offset = MetaFile_.New<PackageValue>(length + 1);
1214 metadata = &MetaFile_.Get(*offset);
1216 if (metadata == NULL) {
1220 metadata = new PackageValue();
1221 memset(metadata, 0, sizeof(*metadata));
1224 memcpy(metadata->name_, name, length + 1);
1225 metadata->nhash_ = nhash.u16[1];
1227 metadata = &MetaFile_.Get(*offset);
1229 if (metadata->nhash_ != nhash.u16[1] || strncmp(metadata->name_, name, length + 1) != 0) {
1230 offset = &metadata->next_;
1238 static void PackageImport(const void *key, const void *value, void *context) {
1239 bool &fail(*reinterpret_cast<bool *>(context));
1242 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1243 NSLog(@"failed to import package %@", key);
1247 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1248 NSDictionary *package((NSDictionary *) value);
1250 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1251 if ([subscribed boolValue] && !metadata->subscribed_)
1252 metadata->subscribed_ = true;
1254 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1255 time_t time([date timeIntervalSince1970]);
1256 if (metadata->first_ > time || metadata->first_ == 0)
1257 metadata->first_ = time;
1260 NSDate *date([package objectForKey:@"LastSeen"]);
1261 NSString *version([package objectForKey:@"LastVersion"]);
1263 if (date != nil && version != nil) {
1264 time_t time([date timeIntervalSince1970]);
1265 if (metadata->last_ < time || metadata->last_ == 0)
1266 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1267 size_t length(strlen(buffer));
1268 uint16_t vhash(hashlittle(buffer, length));
1270 size_t capped(std::min<size_t>(8, length));
1271 char *latest(buffer + length - capped);
1273 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1274 metadata->vhash_ = vhash;
1276 metadata->last_ = time;
1282 /* Source Class {{{ */
1283 @interface Source : NSObject {
1285 Database *database_;
1288 CYString depiction_;
1289 CYString description_;
1295 CYString distribution_;
1301 _H<NSString> authority_;
1303 CYString defaultIcon_;
1305 _H<NSDictionary> record_;
1309 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool;
1311 - (NSComparisonResult) compareByName:(Source *)source;
1313 - (NSString *) depictionForPackage:(NSString *)package;
1314 - (NSString *) supportForPackage:(NSString *)package;
1316 - (NSDictionary *) record;
1319 - (NSString *) rooturi;
1320 - (NSString *) distribution;
1321 - (NSString *) type;
1324 - (NSString *) host;
1326 - (NSString *) name;
1327 - (NSString *) shortDescription;
1328 - (NSString *) label;
1329 - (NSString *) origin;
1330 - (NSString *) version;
1332 - (NSString *) defaultIcon;
1333 - (NSURL *) iconURL;
1337 @implementation Source
1341 distribution_.clear();
1346 description_.clear();
1352 defaultIcon_.clear();
1359 + (NSString *) webScriptNameForSelector:(SEL)selector {
1361 else if (selector == @selector(addSection:))
1362 return @"addSection";
1363 else if (selector == @selector(getField:))
1365 else if (selector == @selector(removeSection:))
1366 return @"removeSection";
1367 else if (selector == @selector(remove))
1373 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
1374 return [self webScriptNameForSelector:selector] == nil;
1377 + (NSArray *) _attributeKeys {
1378 return [NSArray arrayWithObjects:
1389 @"shortDescription",
1396 - (NSArray *) attributeKeys {
1397 return [[self class] _attributeKeys];
1400 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1401 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1404 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1407 trusted_ = index->IsTrusted();
1409 uri_.set(pool, index->GetURI());
1410 distribution_.set(pool, index->GetDist());
1411 type_.set(pool, index->GetType());
1413 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1414 if (dindex != NULL) {
1415 base_.set(pool, dindex->MetaIndexURI(""));
1418 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1421 pkgTagFile tags(&fd);
1423 pkgTagSection section;
1430 {"default-icon", &defaultIcon_},
1431 {"depiction", &depiction_},
1432 {"description", &description_},
1434 {"origin", &origin_},
1435 {"support", &support_},
1436 {"version", &version_},
1439 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1440 const char *start, *end;
1442 if (section.Find(names[i].name_, start, end)) {
1443 CYString &value(*names[i].value_);
1444 value.set(pool, start, end - start);
1450 record_ = [Sources_ objectForKey:[self key]];
1452 NSURL *url([NSURL URLWithString:uri_]);
1456 host_ = [host_ lowercaseString];
1461 authority_ = [url path];
1464 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool {
1465 if ((self = [super init]) != nil) {
1466 era_ = [database era];
1467 database_ = database;
1470 [self setMetaIndex:index inPool:pool];
1474 - (NSString *) getField:(NSString *)name {
1475 @synchronized (database_) {
1476 if ([database_ era] != era_ || index_ == NULL)
1479 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_));
1484 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) {
1489 pkgTagFile tags(&fd);
1491 pkgTagSection section;
1494 const char *start, *end;
1495 if (!section.Find([name UTF8String], start, end))
1496 return (NSString *) [NSNull null];
1498 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
1501 - (NSComparisonResult) compareByName:(Source *)source {
1502 NSString *lhs = [self name];
1503 NSString *rhs = [source name];
1505 if ([lhs length] != 0 && [rhs length] != 0) {
1506 unichar lhc = [lhs characterAtIndex:0];
1507 unichar rhc = [rhs characterAtIndex:0];
1509 if (isalpha(lhc) && !isalpha(rhc))
1510 return NSOrderedAscending;
1511 else if (!isalpha(lhc) && isalpha(rhc))
1512 return NSOrderedDescending;
1515 return [lhs compare:rhs options:LaxCompareOptions_];
1518 - (NSString *) depictionForPackage:(NSString *)package {
1519 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1522 - (NSString *) supportForPackage:(NSString *)package {
1523 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1526 - (NSArray *) sections {
1527 return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array];
1530 - (void) _addSection:(NSString *)section {
1533 else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) {
1534 if (![sections containsObject:section]) {
1535 [sections addObject:section];
1539 [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"];
1544 - (bool) addSection:(NSString *)section {
1548 [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO];
1552 - (void) _removeSection:(NSString *)section {
1556 if (NSMutableArray *sections = [record_ objectForKey:@"Sections"])
1557 if ([sections containsObject:section]) {
1558 [sections removeObject:section];
1563 - (bool) removeSection:(NSString *)section {
1567 [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO];
1572 [Sources_ removeObjectForKey:[self key]];
1577 bool value(record_ != nil);
1578 [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO];
1582 - (NSDictionary *) record {
1590 - (NSString *) rooturi {
1594 - (NSString *) distribution {
1595 return distribution_;
1598 - (NSString *) type {
1602 - (NSString *) baseuri {
1603 return base_.empty() ? nil : (id) base_;
1606 - (NSString *) iconuri {
1607 if (NSString *base = [self baseuri])
1608 return [base stringByAppendingString:@"CydiaIcon.png"];
1613 - (NSURL *) iconURL {
1614 if (NSString *uri = [self iconuri])
1615 return [NSURL URLWithString:uri];
1619 - (NSString *) key {
1620 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1623 - (NSString *) host {
1627 - (NSString *) name {
1628 return origin_.empty() ? (id) authority_ : origin_;
1631 - (NSString *) shortDescription {
1632 return description_;
1635 - (NSString *) label {
1636 return label_.empty() ? (id) authority_ : label_;
1639 - (NSString *) origin {
1643 - (NSString *) version {
1647 - (NSString *) defaultIcon {
1648 return defaultIcon_;
1653 /* CydiaOperation Class {{{ */
1654 @interface CydiaOperation : NSObject {
1655 _H<NSString> operator_;
1656 _H<NSString> value_;
1659 - (NSString *) operator;
1660 - (NSString *) value;
1664 @implementation CydiaOperation
1666 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1667 if ((self = [super init]) != nil) {
1668 operator_ = [NSString stringWithUTF8String:_operator];
1669 value_ = [NSString stringWithUTF8String:value];
1673 + (NSArray *) _attributeKeys {
1674 return [NSArray arrayWithObjects:
1680 - (NSArray *) attributeKeys {
1681 return [[self class] _attributeKeys];
1684 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1685 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1688 - (NSString *) operator {
1692 - (NSString *) value {
1698 /* CydiaClause Class {{{ */
1699 @interface CydiaClause : NSObject {
1700 _H<NSString> package_;
1701 _H<CydiaOperation> version_;
1704 - (NSString *) package;
1705 - (CydiaOperation *) version;
1709 @implementation CydiaClause
1711 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1712 if ((self = [super init]) != nil) {
1713 package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()];
1715 if (const char *version = dep.TargetVer())
1716 version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease];
1718 version_ = (id) [NSNull null];
1722 + (NSArray *) _attributeKeys {
1723 return [NSArray arrayWithObjects:
1729 - (NSArray *) attributeKeys {
1730 return [[self class] _attributeKeys];
1733 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1734 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1737 - (NSString *) package {
1741 - (CydiaOperation *) version {
1747 /* CydiaRelation Class {{{ */
1748 @interface CydiaRelation : NSObject {
1749 _H<NSString> relationship_;
1750 _H<NSMutableArray> clauses_;
1753 - (NSString *) relationship;
1754 - (NSArray *) clauses;
1758 @implementation CydiaRelation
1760 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1761 if ((self = [super init]) != nil) {
1762 relationship_ = [NSString stringWithUTF8String:dep.DepType()];
1763 clauses_ = [NSMutableArray arrayWithCapacity:8];
1765 pkgCache::DepIterator start;
1766 pkgCache::DepIterator end;
1767 dep.GlobOr(start, end); // ++dep
1770 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
1772 // yes, seriously. (wtf?)
1780 + (NSArray *) _attributeKeys {
1781 return [NSArray arrayWithObjects:
1787 - (NSArray *) attributeKeys {
1788 return [[self class] _attributeKeys];
1791 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1792 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1795 - (NSString *) relationship {
1796 return relationship_;
1799 - (NSArray *) clauses {
1803 - (void) addClause:(CydiaClause *)clause {
1804 [clauses_ addObject:clause];
1809 /* Package Class {{{ */
1810 struct ParsedPackage {
1814 CYString architecture_;
1817 CYString depiction_;
1827 @interface Package : NSObject {
1830 uint32_t essential_ : 1;
1831 uint32_t obsolete_ : 1;
1832 uint32_t ignored_ : 1;
1833 uint32_t pooled_ : 1;
1839 _transient Database *database_;
1841 pkgCache::VerIterator version_;
1842 pkgCache::PkgIterator iterator_;
1843 pkgCache::VerFileIterator file_;
1849 CYString installed_;
1851 const char *section_;
1852 _transient NSString *section$_;
1856 PackageValue *metadata_;
1857 ParsedPackage *parsed_;
1859 _H<NSMutableArray> tags_;
1862 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1863 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1865 - (pkgCache::PkgIterator) iterator;
1868 - (NSString *) section;
1869 - (NSString *) simpleSection;
1871 - (NSString *) longSection;
1872 - (NSString *) shortSection;
1876 - (MIMEAddress *) maintainer;
1878 - (NSString *) longDescription;
1879 - (NSString *) shortDescription;
1882 - (PackageValue *) metadata;
1885 - (bool) subscribed;
1886 - (bool) setSubscribed:(bool)subscribed;
1890 - (NSString *) latest;
1891 - (NSString *) installed;
1892 - (BOOL) uninstalled;
1895 - (BOOL) upgradableAndEssential:(BOOL)essential;
1898 - (BOOL) unfiltered;
1902 - (BOOL) halfConfigured;
1903 - (BOOL) halfInstalled;
1905 - (NSString *) mode;
1908 - (NSString *) name;
1910 - (NSString *) homepage;
1911 - (NSString *) depiction;
1912 - (MIMEAddress *) author;
1914 - (NSString *) support;
1916 - (NSArray *) files;
1917 - (NSArray *) warnings;
1918 - (NSArray *) applications;
1920 - (Source *) source;
1923 - (BOOL) matches:(NSArray *)query;
1925 - (bool) hasSupportingRole;
1926 - (BOOL) hasTag:(NSString *)tag;
1927 - (NSString *) primaryPurpose;
1928 - (NSArray *) purposes;
1929 - (bool) isCommercial;
1931 - (void) setIndex:(size_t)index;
1933 - (CYString &) cyname;
1935 - (uint32_t) compareBySection:(NSArray *)sections;
1940 - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query;
1941 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1942 - (bool) isInstalledAndUnfiltered:(NSNumber *)number;
1943 - (bool) isVisibleInSection:(NSString *)section;
1944 - (bool) isVisibleInSource:(Source *)source;
1948 uint32_t PackageChangesRadix(Package *self, void *) {
1953 uint32_t timestamp : 30;
1954 uint32_t ignored : 1;
1955 uint32_t upgradable : 1;
1959 bool upgradable([self upgradableAndEssential:YES]);
1960 value.bits.upgradable = upgradable ? 1 : 0;
1963 value.bits.timestamp = 0;
1964 value.bits.ignored = [self ignored] ? 0 : 1;
1965 value.bits.upgradable = 1;
1967 value.bits.timestamp = [self seen] >> 2;
1968 value.bits.ignored = 0;
1969 value.bits.upgradable = 0;
1972 return _not(uint32_t) - value.key;
1975 uint32_t PackagePrefixRadix(Package *self, void *context) {
1976 size_t offset(reinterpret_cast<size_t>(context));
1977 CYString &name([self cyname]);
1979 size_t size(name.size());
1982 char *text(name.data());
1985 if (!isdigit(text[0]))
1989 while (size != digits && isdigit(text[digits]))
1997 if (offset == 0 && zeros != 0) {
1998 memset(data, '0', zeros);
1999 memcpy(data + zeros, text, 4 - zeros);
2001 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2002 if (size <= offset - zeros)
2005 text += offset - zeros;
2006 size -= offset - zeros;
2009 memcpy(data, text, 4);
2011 memcpy(data, text, size);
2012 memset(data + size, 0, 4 - size);
2015 for (size_t i(0); i != 4; ++i)
2016 if (isalpha(data[i]))
2024 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2026 /* XXX: ntohl may be more honest */
2027 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2030 CYString &(*PackageName)(Package *self, SEL sel);
2032 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2033 _profile(PackageNameCompare)
2034 CYString &lhi(PackageName(lhs, @selector(cyname)));
2035 CYString &rhi(PackageName(rhs, @selector(cyname)));
2036 CFStringRef lhn(lhi), rhn(rhi);
2039 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
2040 else if (rhn == NULL)
2041 return NSOrderedDescending;
2043 _profile(PackageNameCompare$NumbersLast)
2044 if (!lhi.empty() && !rhi.empty()) {
2045 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2046 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2047 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2048 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2049 return lha ? NSOrderedAscending : NSOrderedDescending;
2053 CFIndex length = CFStringGetLength(lhn);
2055 _profile(PackageNameCompare$Compare)
2056 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
2061 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
2062 return PackageNameCompare(*lhs, *rhs, context);
2065 struct PackageNameOrdering :
2066 std::binary_function<Package *, Package *, bool>
2068 _finline bool operator ()(Package *lhs, Package *rhs) const {
2069 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
2073 @implementation Package
2075 - (NSString *) description {
2076 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2081 apr_pool_destroy(pool_);
2082 if (parsed_ != NULL)
2087 + (NSString *) webScriptNameForSelector:(SEL)selector {
2089 else if (selector == @selector(clear))
2091 else if (selector == @selector(getField:))
2093 else if (selector == @selector(hasTag:))
2095 else if (selector == @selector(install))
2097 else if (selector == @selector(remove))
2103 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2104 return [self webScriptNameForSelector:selector] == nil;
2107 + (NSArray *) _attributeKeys {
2108 return [NSArray arrayWithObjects:
2129 @"shortDescription",
2142 - (NSArray *) attributeKeys {
2143 return [[self class] _attributeKeys];
2146 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2147 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2150 - (NSArray *) relations {
2151 @synchronized (database_) {
2152 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2153 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2154 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2158 - (NSString *) architecture {
2160 @synchronized (database_) {
2161 return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_;
2164 - (NSString *) getField:(NSString *)name {
2165 @synchronized (database_) {
2166 if ([database_ era] != era_ || file_.end())
2169 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2171 const char *start, *end;
2172 if (!parser.Find([name UTF8String], start, end))
2173 return (NSString *) [NSNull null];
2175 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2179 if (parsed_ != NULL)
2181 @synchronized (database_) {
2182 if ([database_ era] != era_ || file_.end())
2185 ParsedPackage *parsed(new ParsedPackage);
2188 _profile(Package$parse)
2189 pkgRecords::Parser *parser;
2191 _profile(Package$parse$Lookup)
2192 parser = &[database_ records]->Lookup(file_);
2197 _profile(Package$parse$Find)
2202 {"architecture", &parsed->architecture_},
2203 {"icon", &parsed->icon_},
2204 {"depiction", &parsed->depiction_},
2205 {"homepage", &parsed->homepage_},
2206 {"website", &website},
2207 {"bugs", &parsed->bugs_},
2208 {"support", &parsed->support_},
2209 {"sponsor", &parsed->sponsor_},
2210 {"author", &parsed->author_},
2211 {"md5sum", &parsed->md5sum_},
2214 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2215 const char *start, *end;
2217 if (parser->Find(names[i].name_, start, end)) {
2218 CYString &value(*names[i].value_);
2219 _profile(Package$parse$Value)
2220 value.set(pool_, start, end - start);
2226 _profile(Package$parse$Tagline)
2227 const char *start, *end;
2228 if (parser->ShortDesc(start, end)) {
2229 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2232 while (stop != start && stop[-1] == '\r')
2234 parsed->tagline_.set(pool_, start, stop - start);
2238 _profile(Package$parse$Retain)
2239 if (parsed->homepage_.empty())
2240 parsed->homepage_ = website;
2241 if (parsed->homepage_ == parsed->depiction_)
2242 parsed->homepage_.clear();
2247 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2248 if ((self = [super init]) != nil) {
2249 _profile(Package$initWithVersion)
2251 apr_pool_create(&pool_, NULL);
2257 database_ = database;
2258 era_ = [database era];
2262 pkgCache::PkgIterator iterator(version.ParentPkg());
2263 iterator_ = iterator;
2265 _profile(Package$initWithVersion$Version)
2266 if (!version_.end())
2267 file_ = version_.FileList();
2269 pkgCache &cache([database_ cache]);
2270 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2274 _profile(Package$initWithVersion$Cache)
2275 name_.set(NULL, iterator.Display());
2277 latest_.set(NULL, StripVersion_(version_.VerStr()));
2279 pkgCache::VerIterator current(iterator.CurrentVer());
2281 installed_.set(NULL, StripVersion_(current.VerStr()));
2284 _profile(Package$initWithVersion$Tags)
2285 pkgCache::TagIterator tag(iterator.TagList());
2287 tags_ = [NSMutableArray arrayWithCapacity:8];
2289 const char *name(tag.Name());
2290 [tags_ addObject:[(NSString *)CYStringCreate(name) autorelease]];
2292 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2293 if (strcmp(name + 6, "enduser") == 0)
2295 else if (strcmp(name + 6, "hacker") == 0)
2297 else if (strcmp(name + 6, "developer") == 0)
2299 else if (strcmp(name + 6, "cydia") == 0)
2305 if (strncmp(name, "cydia::", 7) == 0) {
2306 if (strcmp(name + 7, "essential") == 0)
2308 else if (strcmp(name + 7, "obsolete") == 0)
2313 } while (!tag.end());
2317 _profile(Package$initWithVersion$Metadata)
2318 const char *mixed(iterator.Name());
2319 size_t size(strlen(mixed));
2320 char lower[size + 1];
2322 for (size_t i(0); i != size; ++i)
2323 lower[i] = mixed[i] | 0x20;
2326 PackageValue *metadata(PackageFind(lower, size));
2327 metadata_ = metadata;
2329 id_.set(NULL, metadata->name_, size);
2331 const char *latest(version_.VerStr());
2332 size_t length(strlen(latest));
2334 uint16_t vhash(hashlittle(latest, length));
2336 size_t capped(std::min<size_t>(8, length));
2337 latest = latest + length - capped;
2339 if (metadata->first_ == 0)
2340 metadata->first_ = now_;
2342 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2343 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2344 metadata->vhash_ = vhash;
2345 metadata->last_ = now_;
2346 } else if (metadata->last_ == 0)
2347 metadata->last_ = metadata->first_;
2350 _profile(Package$initWithVersion$Section)
2351 section_ = iterator.Section();
2354 _profile(Package$initWithVersion$Flags)
2355 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2356 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2361 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2362 pkgCache::VerIterator version;
2364 _profile(Package$packageWithIterator$GetCandidateVer)
2365 version = [database policy]->GetCandidateVer(iterator);
2373 _profile(Package$packageWithIterator$Allocate)
2374 package = [Package allocWithZone:zone];
2377 _profile(Package$packageWithIterator$Initialize)
2379 initWithVersion:version
2386 _profile(Package$packageWithIterator$Autorelease)
2387 package = [package autorelease];
2393 - (pkgCache::PkgIterator) iterator {
2397 - (NSString *) section {
2398 if (section$_ == nil) {
2399 if (section_ == NULL)
2402 _profile(Package$section$mappedSectionForPointer)
2403 section$_ = [database_ mappedSectionForPointer:section_];
2408 - (NSString *) simpleSection {
2409 if (NSString *section = [self section])
2410 return Simplify(section);
2415 - (NSString *) longSection {
2416 return LocalizeSection([self section]);
2419 - (NSString *) shortSection {
2420 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2423 - (NSString *) uri {
2426 pkgIndexFile *index;
2427 pkgCache::PkgFileIterator file(file_.File());
2428 if (![database_ list].FindIndex(file, index))
2430 return [NSString stringWithUTF8String:iterator_->Path];
2431 //return [NSString stringWithUTF8String:file.Site()];
2432 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2436 - (MIMEAddress *) maintainer {
2437 @synchronized (database_) {
2438 if ([database_ era] != era_ || file_.end())
2441 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2442 const std::string &maintainer(parser->Maintainer());
2443 return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2446 - (NSString *) md5sum {
2447 return parsed_ == NULL ? nil : (id) parsed_->md5sum_;
2451 @synchronized (database_) {
2452 if ([database_ era] != era_ || version_.end())
2455 return version_->InstalledSize;
2458 - (NSString *) longDescription {
2459 @synchronized (database_) {
2460 if ([database_ era] != era_ || file_.end())
2463 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2464 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2466 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2467 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2468 if ([lines count] < 2)
2471 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2472 for (size_t i(1), e([lines count]); i != e; ++i) {
2473 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2474 [trimmed addObject:trim];
2477 return [trimmed componentsJoinedByString:@"\n"];
2480 - (NSString *) shortDescription {
2481 if (parsed_ != NULL)
2482 return static_cast<NSString *>(parsed_->tagline_);
2484 @synchronized (database_) {
2485 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2487 const char *start, *end;
2488 if (!parser.ShortDesc(start, end))
2491 if (end - start > 200)
2495 if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start)))
2498 while (end != start && end[-1] == '\r')
2502 return [(id) CYStringCreate(start, end - start) autorelease];
2506 _profile(Package$index)
2507 CFStringRef name((CFStringRef) [self name]);
2508 if (CFStringGetLength(name) == 0)
2510 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2511 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2513 return toupper(character);
2517 - (PackageValue *) metadata {
2522 PackageValue *metadata([self metadata]);
2523 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2526 - (bool) subscribed {
2527 return [self metadata]->subscribed_;
2530 - (bool) setSubscribed:(bool)subscribed {
2531 PackageValue *metadata([self metadata]);
2532 if (metadata->subscribed_ == subscribed)
2534 metadata->subscribed_ = subscribed;
2542 - (NSString *) latest {
2546 - (NSString *) installed {
2550 - (BOOL) uninstalled {
2551 return installed_.empty();
2555 return !version_.end();
2558 - (BOOL) upgradableAndEssential:(BOOL)essential {
2559 _profile(Package$upgradableAndEssential)
2560 pkgCache::VerIterator current(iterator_.CurrentVer());
2562 return essential && essential_;
2564 return !version_.end() && version_ != current;
2568 - (BOOL) essential {
2573 return [database_ cache][iterator_].InstBroken();
2576 - (BOOL) unfiltered {
2577 _profile(Package$unfiltered$obsolete)
2578 if (_unlikely(obsolete_))
2582 _profile(Package$unfiltered$hasSupportingRole)
2583 if (_unlikely(![self hasSupportingRole]))
2591 if (![self unfiltered])
2596 _profile(Package$visible$section)
2597 section = [self section];
2600 _profile(Package$visible$isSectionVisible)
2601 if (!isSectionVisible(section))
2609 unsigned char current(iterator_->CurrentState);
2610 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2613 - (BOOL) halfConfigured {
2614 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2617 - (BOOL) halfInstalled {
2618 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2622 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2623 return state.Mode != pkgDepCache::ModeKeep;
2626 - (NSString *) mode {
2627 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2629 switch (state.Mode) {
2630 case pkgDepCache::ModeDelete:
2631 if ((state.iFlags & pkgDepCache::Purge) != 0)
2635 case pkgDepCache::ModeKeep:
2636 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2637 return @"REINSTALL";
2638 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2642 case pkgDepCache::ModeInstall:
2643 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2644 return @"REINSTALL";
2645 else*/ switch (state.Status) {
2647 return @"DOWNGRADE";
2653 return @"NEW_INSTALL";
2664 - (NSString *) name {
2665 return name_.empty() ? id_ : name_;
2668 - (UIImage *) icon {
2669 NSString *section = [self simpleSection];
2672 if (parsed_ != NULL)
2673 if (NSString *href = parsed_->icon_)
2674 if ([href hasPrefix:@"file:///"])
2675 icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2676 if (icon == nil) if (section != nil)
2677 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
2678 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
2679 if ([dicon hasPrefix:@"file:///"])
2680 icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2682 icon = [UIImage applicationImageNamed:@"unknown.png"];
2686 - (NSString *) homepage {
2687 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
2690 - (NSString *) depiction {
2691 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
2694 - (MIMEAddress *) sponsor {
2695 return parsed_ == NULL || parsed_->sponsor_.empty() ? nil : [MIMEAddress addressWithString:parsed_->sponsor_];
2698 - (MIMEAddress *) author {
2699 return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_];
2702 - (NSString *) support {
2703 return parsed_ != NULL && !parsed_->bugs_.empty() ? parsed_->bugs_ : [[self source] supportForPackage:id_];
2706 - (NSArray *) files {
2707 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2708 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2711 fin.open([path UTF8String]);
2716 while (std::getline(fin, line))
2717 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2722 - (NSString *) state {
2723 @synchronized (database_) {
2724 if ([database_ era] != era_ || file_.end())
2727 switch (iterator_->CurrentState) {
2728 case pkgCache::State::NotInstalled:
2729 return @"NotInstalled";
2730 case pkgCache::State::UnPacked:
2732 case pkgCache::State::HalfConfigured:
2733 return @"HalfConfigured";
2734 case pkgCache::State::HalfInstalled:
2735 return @"HalfInstalled";
2736 case pkgCache::State::ConfigFiles:
2737 return @"ConfigFiles";
2738 case pkgCache::State::Installed:
2739 return @"Installed";
2740 case pkgCache::State::TriggersAwaited:
2741 return @"TriggersAwaited";
2742 case pkgCache::State::TriggersPending:
2743 return @"TriggersPending";
2746 return (NSString *) [NSNull null];
2749 - (NSString *) selection {
2750 @synchronized (database_) {
2751 if ([database_ era] != era_ || file_.end())
2754 switch (iterator_->SelectedState) {
2755 case pkgCache::State::Unknown:
2757 case pkgCache::State::Install:
2759 case pkgCache::State::Hold:
2761 case pkgCache::State::DeInstall:
2762 return @"DeInstall";
2763 case pkgCache::State::Purge:
2767 return (NSString *) [NSNull null];
2770 - (NSArray *) warnings {
2771 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2772 const char *name(iterator_.Name());
2774 size_t length(strlen(name));
2775 if (length < 2) invalid:
2776 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2777 else for (size_t i(0); i != length; ++i)
2779 /* XXX: technically this is not allowed */
2780 (name[i] < 'A' || name[i] > 'Z') &&
2781 (name[i] < 'a' || name[i] > 'z') &&
2782 (name[i] < '0' || name[i] > '9') &&
2783 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2786 if (strcmp(name, "cydia") != 0) {
2789 bool _private = false;
2792 bool repository = [[self section] isEqualToString:@"Repositories"];
2794 if (NSArray *files = [self files])
2795 for (NSString *file in files)
2796 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2798 else if (!user && [file isEqualToString:@"/User"])
2800 else if (!_private && [file isEqualToString:@"/private"])
2802 else if (!stash && [file isEqualToString:@"/var/stash"])
2805 /* XXX: this is not sensitive enough. only some folders are valid. */
2806 if (cydia && !repository)
2807 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2809 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2811 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2813 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2816 return [warnings count] == 0 ? nil : warnings;
2819 - (NSArray *) applications {
2820 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2822 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2824 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2825 if (NSArray *files = [self files])
2826 for (NSString *file in files)
2827 if (application_r(file)) {
2828 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2829 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2830 if ([id isEqualToString:me])
2833 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2835 display = application_r[1];
2837 NSString *bundle([file stringByDeletingLastPathComponent]);
2838 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2839 if (icon == nil || [icon length] == 0)
2841 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2843 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2844 [applications addObject:application];
2846 [application addObject:id];
2847 [application addObject:display];
2848 [application addObject:url];
2851 return [applications count] == 0 ? nil : applications;
2854 - (Source *) source {
2855 if (source_ == nil) {
2856 @synchronized (database_) {
2857 if ([database_ era] != era_ || file_.end())
2858 source_ = (Source *) [NSNull null];
2860 source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null];
2864 return source_ == (Source *) [NSNull null] ? nil : source_;
2871 - (BOOL) matches:(NSArray *)query {
2872 if (query == nil || [query count] == 0)
2881 string = [self name];
2882 length = [string length];
2884 for (NSString *term in query) {
2885 range = [string rangeOfString:term options:MatchCompareOptions_];
2886 if (range.location != NSNotFound)
2887 rank_ -= 6 * 1000000 / length;
2892 length = [string length];
2894 for (NSString *term in query) {
2895 range = [string rangeOfString:term options:MatchCompareOptions_];
2896 if (range.location != NSNotFound)
2897 rank_ -= 6 * 1000000 / length;
2901 string = [self shortDescription];
2902 length = [string length];
2903 NSUInteger stop(std::min<NSUInteger>(length, 200));
2905 for (NSString *term in query) {
2906 range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)];
2907 if (range.location != NSNotFound)
2908 rank_ -= 2 * 100000;
2914 - (bool) hasSupportingRole {
2919 if ([Role_ isEqualToString:@"User"])
2923 if ([Role_ isEqualToString:@"Hacker"])
2927 if ([Role_ isEqualToString:@"Developer"])
2932 - (NSArray *) tags {
2936 - (BOOL) hasTag:(NSString *)tag {
2937 return tags_ == nil ? NO : [tags_ containsObject:tag];
2940 - (NSString *) primaryPurpose {
2941 for (NSString *tag in (NSArray *) tags_)
2942 if ([tag hasPrefix:@"purpose::"])
2943 return [tag substringFromIndex:9];
2947 - (NSArray *) purposes {
2948 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2949 for (NSString *tag in (NSArray *) tags_)
2950 if ([tag hasPrefix:@"purpose::"])
2951 [purposes addObject:[tag substringFromIndex:9]];
2952 return [purposes count] == 0 ? nil : purposes;
2955 - (bool) isCommercial {
2956 return [self hasTag:@"cydia::commercial"];
2959 - (void) setIndex:(size_t)index {
2960 if (metadata_->index_ != index)
2961 metadata_->index_ = index;
2964 - (CYString &) cyname {
2965 return name_.empty() ? id_ : name_;
2968 - (uint32_t) compareBySection:(NSArray *)sections {
2969 NSString *section([self section]);
2970 for (size_t i(0), e([sections count]); i != e; ++i) {
2971 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2975 return _not(uint32_t);
2979 @synchronized (database_) {
2980 pkgProblemResolver *resolver = [database_ resolver];
2981 resolver->Clear(iterator_);
2983 pkgCacheFile &cache([database_ cache]);
2984 cache->SetReInstall(iterator_, false);
2985 cache->MarkKeep(iterator_, false);
2989 @synchronized (database_) {
2990 pkgProblemResolver *resolver = [database_ resolver];
2991 resolver->Clear(iterator_);
2992 resolver->Protect(iterator_);
2994 pkgCacheFile &cache([database_ cache]);
2995 cache->SetReInstall(iterator_, false);
2996 cache->MarkInstall(iterator_, false);
2998 pkgDepCache::StateCache &state((*cache)[iterator_]);
2999 if (!state.Install())
3000 cache->SetReInstall(iterator_, true);
3004 @synchronized (database_) {
3005 pkgProblemResolver *resolver = [database_ resolver];
3006 resolver->Clear(iterator_);
3007 resolver->Remove(iterator_);
3008 resolver->Protect(iterator_);
3010 pkgCacheFile &cache([database_ cache]);
3011 cache->SetReInstall(iterator_, false);
3012 cache->MarkDelete(iterator_, true);
3015 - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query {
3016 _profile(Package$isUnfilteredAndSearchedForBy)
3019 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
3020 value &= [self unfiltered];
3023 _profile(Package$isUnfilteredAndSearchedForBy$Match)
3024 value &= [self matches:query];
3031 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
3032 if ([search length] == 0)
3035 _profile(Package$isUnfilteredAndSelectedForBy)
3038 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
3039 value &= [self unfiltered];
3042 _profile(Package$isUnfilteredAndSelectedForBy$Match)
3043 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
3050 - (bool) isInstalledAndUnfiltered:(NSNumber *)number {
3051 return ![self uninstalled] && (![number boolValue] && role_ != 7 || [self unfiltered]);
3054 - (bool) isVisibleInSection:(NSString *)name {
3055 NSString *section([self section]);
3059 section == nil && [name length] == 0 ||
3060 [name isEqualToString:section]
3061 ) && [self visible];
3064 - (bool) isVisibleInSource:(Source *)source {
3065 return [self source] == source && [self visible];
3070 /* Section Class {{{ */
3071 @interface Section : NSObject {
3076 _H<NSString> localized_;
3079 - (NSComparisonResult) compareByLocalized:(Section *)section;
3080 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3081 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3082 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3083 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
3084 - (NSString *) name;
3091 - (void) addToCount;
3093 - (void) setCount:(size_t)count;
3094 - (NSString *) localized;
3098 @implementation Section
3100 - (NSComparisonResult) compareByLocalized:(Section *)section {
3101 NSString *lhs(localized_);
3102 NSString *rhs([section localized]);
3104 /*if ([lhs length] != 0 && [rhs length] != 0) {
3105 unichar lhc = [lhs characterAtIndex:0];
3106 unichar rhc = [rhs characterAtIndex:0];
3108 if (isalpha(lhc) && !isalpha(rhc))
3109 return NSOrderedAscending;
3110 else if (!isalpha(lhc) && isalpha(rhc))
3111 return NSOrderedDescending;
3114 return [lhs compare:rhs options:LaxCompareOptions_];
3117 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3118 if ((self = [self initWithName:name localize:NO]) != nil) {
3119 if (localized != nil)
3120 localized_ = localized;
3124 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3125 return [self initWithName:name row:0 localize:localize];
3128 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3129 if ((self = [super init]) != nil) {
3134 localized_ = LocalizeSection(name_);
3138 /* XXX: localize the index thingees */
3139 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
3140 if ((self = [super init]) != nil) {
3141 name_ = [NSString stringWithCharacters:&index length:1];
3147 - (NSString *) name {
3167 - (void) addToCount {
3171 - (void) setCount:(size_t)count {
3175 - (NSString *) localized {
3182 class CydiaLogCleaner :
3183 public pkgArchiveCleaner
3186 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3191 /* Database Implementation {{{ */
3192 @implementation Database
3194 + (Database *) sharedInstance {
3195 static _H<Database> instance;
3196 if (instance == nil)
3197 instance = [[[Database alloc] init] autorelease];
3205 - (void) releasePackages {
3206 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3207 CFArrayRemoveAllValues(packages_);
3211 // XXX: actually implement this thing
3213 [self releasePackages];
3214 apr_pool_destroy(pool_);
3215 NSRecycleZone(zone_);
3219 - (void) _readCydia:(NSNumber *)fd {
3220 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3221 std::istream is(&ib);
3224 static Pcre finish_r("^finish:([^:]*)$");
3226 while (std::getline(is, line)) {
3227 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3229 const char *data(line.c_str());
3230 size_t size = line.size();
3231 lprintf("C:%s\n", data);
3233 if (finish_r(data, size)) {
3234 NSString *finish = finish_r[1];
3235 int index = [Finishes_ indexOfObject:finish];
3236 if (index != INT_MAX && index > Finish_)
3246 - (void) _readStatus:(NSNumber *)fd {
3247 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3248 std::istream is(&ib);
3251 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3252 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3254 while (std::getline(is, line)) {
3255 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3257 const char *data(line.c_str());
3258 size_t size(line.size());
3259 lprintf("S:%s\n", data);
3261 if (conffile_r(data, size)) {
3262 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3263 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3264 } else if (strncmp(data, "status: ", 8) == 0) {
3265 // status: <package>: {unpacked,half-configured,installed}
3266 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3267 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3268 } else if (strncmp(data, "processing: ", 12) == 0) {
3269 // processing: configure: config-test
3270 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3271 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3272 } else if (pmstatus_r(data, size)) {
3273 std::string type([pmstatus_r[1] UTF8String]);
3275 NSString *package = pmstatus_r[2];
3276 if ([package isEqualToString:@"dpkg-exec"])
3279 float percent([pmstatus_r[3] floatValue]);
3280 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3282 NSString *string = pmstatus_r[4];
3284 if (type == "pmerror") {
3285 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3286 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3287 } else if (type == "pmstatus") {
3288 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3289 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3290 } else if (type == "pmconffile")
3291 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3293 lprintf("E:unknown pmstatus\n");
3295 lprintf("E:unknown status\n");
3303 - (void) _readOutput:(NSNumber *)fd {
3304 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3305 std::istream is(&ib);
3308 while (std::getline(is, line)) {
3309 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3311 lprintf("O:%s\n", line.c_str());
3313 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3314 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3326 - (Package *) packageWithName:(NSString *)name {
3329 @synchronized (self) {
3330 if (static_cast<pkgDepCache *>(cache_) == NULL)
3332 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3333 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self];
3337 if ((self = [super init]) != nil) {
3344 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3345 apr_pool_create(&pool_, NULL);
3347 size_t capacity(MetaFile_->active_);
3353 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3354 sourceList_ = [NSMutableArray arrayWithCapacity:16];
3358 _assert(pipe(fds) != -1);
3361 _config->Set("APT::Keep-Fds::", cydiafd_);
3362 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3365 detachNewThreadSelector:@selector(_readCydia:)
3367 withObject:[NSNumber numberWithInt:fds[0]]
3370 _assert(pipe(fds) != -1);
3374 detachNewThreadSelector:@selector(_readStatus:)
3376 withObject:[NSNumber numberWithInt:fds[0]]
3379 _assert(pipe(fds) != -1);
3380 _assert(dup2(fds[0], 0) != -1);
3381 _assert(close(fds[0]) != -1);
3383 input_ = fdopen(fds[1], "a");
3385 _assert(pipe(fds) != -1);
3386 _assert(dup2(fds[1], 1) != -1);
3387 _assert(close(fds[1]) != -1);
3390 detachNewThreadSelector:@selector(_readOutput:)
3392 withObject:[NSNumber numberWithInt:fds[0]]
3397 - (pkgCacheFile &) cache {
3401 - (pkgDepCache::Policy *) policy {
3405 - (pkgRecords *) records {
3409 - (pkgProblemResolver *) resolver {
3413 - (pkgAcquire &) fetcher {
3417 - (pkgSourceList &) list {
3421 - (NSArray *) packages {
3422 return (NSArray *) packages_;
3425 - (NSArray *) sources {
3429 - (Source *) sourceWithKey:(NSString *)key {
3430 for (Source *source in [self sources]) {
3431 if ([[source key] isEqualToString:key])
3436 - (bool) popErrorWithTitle:(NSString *)title {
3439 while (!_error->empty()) {
3441 bool warning(!_error->PopMessage(error));
3446 size_t size(error.size());
3447 if (size == 0 || error[size - 1] != '\n')
3449 error.resize(size - 1);
3452 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3454 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3460 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3461 return [self popErrorWithTitle:title] || !success;
3464 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
3465 @synchronized (self) {
3468 [self releasePackages];
3471 [sourceList_ removeAllObjects];
3491 apr_pool_clear(pool_);
3493 NSRecycleZone(zone_);
3494 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3496 int chk(creat("/tmp/cydia.chk", 0644));
3500 if (invocation != nil)
3501 [invocation invoke];
3503 NSString *title(UCLocalize("DATABASE"));
3506 OpProgress progress;
3507 while (!cache_.Open(progress, true)) { pop:
3509 bool warning(!_error->PopMessage(error));
3510 lprintf("cache_.Open():[%s]\n", error.c_str());
3512 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3513 [delegate_ repairWithSelector:@selector(configure)];
3514 else if (error == "The package lists or status file could not be parsed or opened.")
3515 [delegate_ repairWithSelector:@selector(update)];
3516 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3517 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3518 // else if (error == "Malformed Status line")
3519 // else if (error == "The list of sources could not be read.")
3521 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3531 unlink("/tmp/cydia.chk");
3533 now_ = [[NSDate date] timeIntervalSince1970];
3535 policy_ = new pkgDepCache::Policy();
3536 records_ = new pkgRecords(cache_);
3537 resolver_ = new pkgProblemResolver(cache_);
3538 fetcher_ = new pkgAcquire(&status_);
3541 list_ = new pkgSourceList();
3542 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3545 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3546 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3550 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3553 if (cache_->BrokenCount() != 0) {
3554 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3557 if (cache_->BrokenCount() != 0) {
3558 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3562 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3566 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3567 Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:pool_] autorelease]);
3568 [sourceList_ addObject:object];
3570 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3571 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3572 // XXX: this could be more intelligent
3573 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3574 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3576 sourceMap_[cached->ID] = object;
3581 /*std::vector<Package *> packages;
3582 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3587 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3588 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3589 //packages.push_back(package);
3590 CFArrayAppendValue(packages_, CFRetain(package));
3594 /*if (packages.empty())
3595 packages_ = [[NSArray alloc] init];
3597 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3600 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3601 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3602 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3610 /*if (!packages.empty())
3611 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3612 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3614 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3616 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3618 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3622 size_t count(CFArrayGetCount(packages_));
3623 MetaFile_->active_ = count;
3625 for (size_t index(0); index != count; ++index)
3626 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3633 @synchronized (self) {
3635 resolver_ = new pkgProblemResolver(cache_);
3637 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3638 if (!cache_[iterator].Keep())
3639 cache_->MarkKeep(iterator, false);
3640 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3641 cache_->SetReInstall(iterator, false);
3644 - (void) configure {
3645 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3647 system([dpkg UTF8String]);
3652 // XXX: I don't remember this condition
3657 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3659 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3661 if ([self popErrorWithTitle:title])
3665 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3667 CydiaLogCleaner cleaner;
3668 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3675 fetcher_->Shutdown();
3677 pkgRecords records(cache_);
3679 lock_ = new FileFd();
3680 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3682 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3684 if ([self popErrorWithTitle:title])
3688 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3691 manager_ = (_system->CreatePM(cache_));
3692 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3699 bool substrate(RestartSubstrate_);
3700 RestartSubstrate_ = false;
3702 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3704 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3706 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3708 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3709 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3712 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3714 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3716 [self popErrorWithTitle:title];
3720 bool failed = false;
3721 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3722 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3724 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3730 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3738 RestartSubstrate_ = true;
3741 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3743 if (_error->PendingError()) {
3748 if (result == pkgPackageManager::Failed) {
3753 if (result != pkgPackageManager::Completed) {
3758 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3760 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3762 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3763 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3766 if (![before isEqualToArray:after])
3771 NSString *title(UCLocalize("UPGRADE"));
3772 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3778 [self updateWithStatus:status_];
3781 - (void) updateWithStatus:(Status &)status {
3782 NSString *title(UCLocalize("REFRESHING_DATA"));
3785 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3789 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3790 if ([self popErrorWithTitle:title])
3793 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3795 bool success(ListUpdate(status, list, PulseInterval_));
3796 if (status.WasCancelled())
3799 [self popErrorWithTitle:title forOperation:success];
3800 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3804 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3807 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
3808 delegate_ = delegate;
3811 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
3812 progress_ = delegate;
3813 status_.setDelegate(delegate);
3816 - (NSObject<ProgressDelegate> *) progressDelegate {
3820 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3821 SourceMap::const_iterator i(sourceMap_.find(file->ID));
3822 return i == sourceMap_.end() ? nil : i->second;
3825 - (NSString *) mappedSectionForPointer:(const char *)section {
3826 _H<NSString> *mapped;
3828 _profile(Database$mappedSectionForPointer$Cache)
3829 mapped = §ions_[section];
3832 if (*mapped == NULL) {
3833 size_t length(strlen(section));
3834 char spaced[length + 1];
3836 _profile(Database$mappedSectionForPointer$Replace)
3837 for (size_t index(0); index != length; ++index)
3838 spaced[index] = section[index] == '_' ? ' ' : section[index];
3839 spaced[length] = '\0';
3844 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
3845 string = [NSString stringWithUTF8String:spaced];
3848 _profile(Database$mappedSectionForPointer$Map)
3849 string = [SectionMap_ objectForKey:string] ?: string;
3859 static _H<NSMutableSet> Diversions_;
3861 @interface Diversion : NSObject {
3864 _H<NSString> format_;
3869 @implementation Diversion
3871 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
3872 if ((self = [super init]) != nil) {
3873 pattern_ = [from UTF8String];
3879 - (NSString *) divert:(NSString *)url {
3880 return !pattern_(url) ? nil : pattern_->*format_;
3883 + (NSURL *) divertURL:(NSURL *)url {
3885 NSString *href([url absoluteString]);
3887 for (Diversion *diversion in (id) Diversions_)
3888 if (NSString *diverted = [diversion divert:href]) {
3890 NSLog(@"div: %@", diverted);
3892 url = [NSURL URLWithString:diverted];
3899 - (NSString *) key {
3903 - (NSUInteger) hash {
3907 - (BOOL) isEqual:(Diversion *)object {
3908 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
3913 @interface CydiaObject : NSObject {
3914 _H<IndirectDelegate> indirect_;
3915 _transient id delegate_;
3918 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3922 @interface CydiaWebViewController : CyteWebViewController {
3923 _H<CydiaObject> cydia_;
3926 + (void) addDiversion:(Diversion *)diversion;
3930 /* Web Scripting {{{ */
3931 @implementation CydiaObject
3933 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3934 if ((self = [super init]) != nil) {
3935 indirect_ = indirect;
3939 - (void) setDelegate:(id)delegate {
3940 delegate_ = delegate;
3943 + (NSArray *) _attributeKeys {
3944 return [NSArray arrayWithObjects:
3961 - (NSArray *) attributeKeys {
3962 return [[self class] _attributeKeys];
3965 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3966 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3969 - (NSString *) version {
3973 - (NSString *) device {
3974 return [[UIDevice currentDevice] uniqueIdentifier];
3977 - (NSString *) firmware {
3978 return [[UIDevice currentDevice] systemVersion];
3981 - (NSString *) hostname {
3982 return [[UIDevice currentDevice] name];
3985 - (NSString *) idiom {
3986 return (id) Idiom_ ?: [NSNull null];
3989 - (NSString *) plmn {
3990 return (id) PLMN_ ?: [NSNull null];
3993 - (NSString *) bbsnum {
3994 return (id) BBSNum_ ?: [NSNull null];
3997 - (NSString *) ecid {
3998 return (id) ChipID_ ?: [NSNull null];
4001 - (NSString *) serial {
4002 return SerialNumber_;
4005 - (NSString *) role {
4006 return (id) Role_ ?: [NSNull null];
4009 - (NSString *) model {
4010 return [NSString stringWithUTF8String:Machine_];
4013 - (NSString *) token {
4014 return (id) Token_ ?: [NSNull null];
4017 + (NSString *) webScriptNameForSelector:(SEL)selector {
4019 else if (selector == @selector(addBridgedHost:))
4020 return @"addBridgedHost";
4021 else if (selector == @selector(addInsecureHost:))
4022 return @"addInsecureHost";
4023 else if (selector == @selector(addInternalRedirect::))
4024 return @"addInternalRedirect";
4025 else if (selector == @selector(addPipelinedHost:scheme:))
4026 return @"addPipelinedHost";
4027 else if (selector == @selector(addSource:::))
4028 return @"addSource";
4029 else if (selector == @selector(addTokenHost:))
4030 return @"addTokenHost";
4031 else if (selector == @selector(addTrivialSource:))
4032 return @"addTrivialSource";
4033 else if (selector == @selector(close))
4035 else if (selector == @selector(du:))
4037 else if (selector == @selector(stringWithFormat:arguments:))
4039 else if (selector == @selector(getAllSources))
4040 return @"getAllSourcs";
4041 else if (selector == @selector(getKernelNumber:))
4042 return @"getKernelNumber";
4043 else if (selector == @selector(getKernelString:))
4044 return @"getKernelString";
4045 else if (selector == @selector(getInstalledPackages))
4046 return @"getInstalledPackages";
4047 else if (selector == @selector(getIORegistryEntry::))
4048 return @"getIORegistryEntry";
4049 else if (selector == @selector(getLocaleIdentifier))
4050 return @"getLocaleIdentifier";
4051 else if (selector == @selector(getPreferredLanguages))
4052 return @"getPreferredLanguages";
4053 else if (selector == @selector(getPackageById:))
4054 return @"getPackageById";
4055 else if (selector == @selector(getMetadataKeys))
4056 return @"getMetadataKeys";
4057 else if (selector == @selector(getMetadataValue:))
4058 return @"getMetadataValue";
4059 else if (selector == @selector(getSessionValue:))
4060 return @"getSessionValue";
4061 else if (selector == @selector(installPackages:))
4062 return @"installPackages";
4063 else if (selector == @selector(localizedStringForKey:value:table:))
4065 else if (selector == @selector(popViewController:))
4066 return @"popViewController";
4067 else if (selector == @selector(refreshSources))
4068 return @"refreshSources";
4069 else if (selector == @selector(removeButton))
4070 return @"removeButton";
4071 else if (selector == @selector(saveConfig))
4072 return @"saveConfig";
4073 else if (selector == @selector(setCydiaSource:))
4074 return @"setCydiaSource";
4075 else if (selector == @selector(setMetadataValue::))
4076 return @"setMetadataValue";
4077 else if (selector == @selector(setSessionValue::))
4078 return @"setSessionValue";
4079 else if (selector == @selector(substitutePackageNames:))
4080 return @"substitutePackageNames";
4081 else if (selector == @selector(scrollToBottom:))
4082 return @"scrollToBottom";
4083 else if (selector == @selector(setAllowsNavigationAction:))
4084 return @"setAllowsNavigationAction";
4085 else if (selector == @selector(setBadgeValue:))
4086 return @"setBadgeValue";
4087 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4088 return @"setButtonImage";
4089 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4090 return @"setButtonTitle";
4091 else if (selector == @selector(setHidesBackButton:))
4092 return @"setHidesBackButton";
4093 else if (selector == @selector(setHidesNavigationBar:))
4094 return @"setHidesNavigationBar";
4095 else if (selector == @selector(setNavigationBarStyle:))
4096 return @"setNavigationBarStyle";
4097 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4098 return @"setNavigationBarTintColor";
4099 else if (selector == @selector(setPasteboardString:))
4100 return @"setPasteboardString";
4101 else if (selector == @selector(setPasteboardURL:))
4102 return @"setPasteboardURL";
4103 else if (selector == @selector(setToken:))
4105 else if (selector == @selector(setViewportWidth:))
4106 return @"setViewportWidth";
4107 else if (selector == @selector(statfs:))
4109 else if (selector == @selector(supports:))
4111 else if (selector == @selector(unload))
4117 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4118 return [self webScriptNameForSelector:selector] == nil;
4121 - (BOOL) supports:(NSString *)feature {
4122 return [feature isEqualToString:@"window.open"];
4126 [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO];
4129 - (void) addInternalRedirect:(NSString *)from :(NSString *)to {
4130 [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4133 - (NSNumber *) getKernelNumber:(NSString *)name {
4134 const char *string([name UTF8String]);
4137 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4138 return (id) [NSNull null];
4140 if (size != sizeof(int))
4141 return (id) [NSNull null];
4144 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4145 return (id) [NSNull null];
4147 return [NSNumber numberWithInt:value];
4150 - (NSString *) getKernelString:(NSString *)name {
4151 const char *string([name UTF8String]);
4154 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4155 return (id) [NSNull null];
4157 char value[size + 1];
4158 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4159 return (id) [NSNull null];
4161 // XXX: just in case you request something ludicrous
4164 return [NSString stringWithCString:value];
4167 - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry {
4168 NSObject *value(CYIOGetValue([path UTF8String], entry));
4171 if ([value isKindOfClass:[NSData class]])
4172 value = CYHex((NSData *) value);
4177 - (void) _setCydiaSource:(NSString *)source {
4178 @synchronized (HostConfig_) {
4179 CydiaSource_ = source;
4180 [Metadata_ setObject:source forKey:@"CydiaSource"];
4186 - (void) setCydiaSource:(NSString *)source {
4187 [self performSelectorOnMainThread:@selector(_setCydiaSource:) withObject:source waitUntilDone:NO];
4190 - (NSString *) cydiaSource {
4191 @synchronized (HostConfig_) {
4192 return (id) CydiaSource_ ?: [NSNull null];
4196 - (NSArray *) getMetadataKeys {
4197 @synchronized (Values_) {
4198 return [Values_ allKeys];
4201 - (id) getMetadataValue:(NSString *)key {
4202 @synchronized (Values_) {
4203 return [Values_ objectForKey:key];
4206 - (void) setMetadataValue:(NSString *)key :(NSString *)value {
4207 @synchronized (Values_) {
4208 if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null])
4209 [Values_ removeObjectForKey:key];
4211 [Values_ setObject:value forKey:key];
4213 [delegate_ performSelectorOnMainThread:@selector(updateValues) withObject:nil waitUntilDone:YES];
4216 - (id) getSessionValue:(NSString *)key {
4217 @synchronized (SessionData_) {
4218 return [SessionData_ objectForKey:key];
4221 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4222 @synchronized (SessionData_) {
4223 if (value == (id) [WebUndefined undefined])
4224 [SessionData_ removeObjectForKey:key];
4226 [SessionData_ setObject:value forKey:key];
4229 - (void) addBridgedHost:(NSString *)host {
4230 @synchronized (HostConfig_) {
4231 [BridgedHosts_ addObject:host];
4234 - (void) addInsecureHost:(NSString *)host {
4235 @synchronized (HostConfig_) {
4236 [InsecureHosts_ addObject:host];
4239 - (void) addTokenHost:(NSString *)host {
4240 @synchronized (HostConfig_) {
4241 [TokenHosts_ addObject:host];
4244 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4245 @synchronized (HostConfig_) {
4246 if (scheme != (id) [WebUndefined undefined])
4247 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4249 [PipelinedHosts_ addObject:host];
4252 - (void) popViewController:(NSNumber *)value {
4253 if (value == (id) [WebUndefined undefined])
4254 value = [NSNumber numberWithBool:YES];
4255 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4258 - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections {
4259 NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]);
4261 for (NSString *section in sections)
4262 [array addObject:section];
4264 [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys:
4267 distribution, @"Distribution",
4269 nil] waitUntilDone:NO];
4272 - (void) addTrivialSource:(NSString *)href {
4273 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4276 - (void) refreshSources {
4277 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4280 - (void) saveConfig {
4281 [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO];
4284 - (NSArray *) getAllSources {
4285 return [[Database sharedInstance] sources];
4288 - (NSArray *) getInstalledPackages {
4289 Database *database([Database sharedInstance]);
4290 @synchronized (database) {
4291 NSArray *packages([database packages]);
4292 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4293 for (Package *package in packages)
4294 if (![package uninstalled])
4295 [installed addObject:package];
4299 - (Package *) getPackageById:(NSString *)id {
4300 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4304 return (Package *) [NSNull null];
4307 - (NSString *) getLocaleIdentifier {
4308 return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_);
4311 - (NSArray *) getPreferredLanguages {
4315 - (NSArray *) statfs:(NSString *)path {
4318 if (path == nil || statfs([path UTF8String], &stat) == -1)
4321 return [NSArray arrayWithObjects:
4322 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4323 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4324 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4328 - (NSNumber *) du:(NSString *)path {
4329 NSNumber *value(nil);
4332 _assert(pipe(fds) != -1);
4334 pid_t pid(ExecFork());
4336 _assert(dup2(fds[1], 1) != -1);
4337 _assert(close(fds[0]) != -1);
4338 _assert(close(fds[1]) != -1);
4339 /* XXX: this should probably not use du */
4340 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
4345 _assert(close(fds[1]) != -1);
4347 if (FILE *du = fdopen(fds[0], "r")) {
4349 while (fgets(line, sizeof(line), du) != NULL) {
4350 size_t length(strlen(line));
4351 while (length != 0 && line[length - 1] == '\n')
4352 line[--length] = '\0';
4353 if (char *tab = strchr(line, '\t')) {
4355 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
4360 } else _assert(close(fds[0]));
4364 if (waitpid(pid, &status, 0) == -1)
4367 else _assert(false);
4373 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4376 - (void) installPackages:(NSArray *)packages {
4377 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4380 - (NSString *) substitutePackageNames:(NSString *)message {
4381 NSMutableArray *words([[message componentsSeparatedByString:@" "] mutableCopy]);
4382 for (size_t i(0), e([words count]); i != e; ++i) {
4383 NSString *word([words objectAtIndex:i]);
4384 if (Package *package = [[Database sharedInstance] packageWithName:word])
4385 [words replaceObjectAtIndex:i withObject:[package name]];
4388 return [words componentsJoinedByString:@" "];
4391 - (void) removeButton {
4392 [indirect_ removeButton];
4395 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4396 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4399 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4400 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4403 - (void) setBadgeValue:(id)value {
4404 [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO];
4407 - (void) setAllowsNavigationAction:(NSString *)value {
4408 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4411 - (void) setHidesBackButton:(NSString *)value {
4412 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4415 - (void) setHidesNavigationBar:(NSString *)value {
4416 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4419 - (void) setNavigationBarStyle:(NSString *)value {
4420 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4423 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4424 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4425 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4426 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4429 - (void) setPasteboardString:(NSString *)value {
4430 [[objc_getClass("UIPasteboard") generalPasteboard] setString:value];
4433 - (void) setPasteboardURL:(NSString *)value {
4434 [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]];
4437 - (void) _setToken:(NSString *)token {
4441 [Metadata_ removeObjectForKey:@"Token"];
4443 [Metadata_ setObject:Token_ forKey:@"Token"];
4448 - (void) setToken:(NSString *)token {
4449 [self performSelectorOnMainThread:@selector(_setToken:) withObject:token waitUntilDone:NO];
4452 - (void) scrollToBottom:(NSNumber *)animated {
4453 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4456 - (void) setViewportWidth:(float)width {
4457 [indirect_ setViewportWidthOnMainThread:width];
4460 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4461 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4462 unsigned count([arguments count]);
4464 for (unsigned i(0); i != count; ++i)
4465 values[i] = [arguments objectAtIndex:i];
4466 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4469 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4470 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4472 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4474 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4480 @interface NSURL (CydiaSecure)
4483 @implementation NSURL (CydiaSecure)
4485 - (bool) isCydiaSecure {
4486 if ([[[self scheme] lowercaseString] isEqualToString:@"https"])
4489 @synchronized (HostConfig_) {
4490 if ([InsecureHosts_ containsObject:[self host]])
4499 /* Cydia Browser Controller {{{ */
4500 @implementation CydiaWebViewController
4502 - (NSURL *) navigationURL {
4503 return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4506 + (void) _initialize {
4507 [super _initialize];
4509 Diversions_ = [NSMutableSet setWithCapacity:0];
4512 + (void) addDiversion:(Diversion *)diversion {
4513 [Diversions_ addObject:diversion];
4516 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4517 [super webView:view didClearWindowObject:window forFrame:frame];
4519 WebDataSource *source([frame dataSource]);
4520 NSURLResponse *response([source response]);
4521 NSURL *url([response URL]);
4522 NSString *scheme([[url scheme] lowercaseString]);
4524 bool bridged(false);
4526 @synchronized (HostConfig_) {
4527 if ([scheme isEqualToString:@"file"])
4529 else if ([scheme isEqualToString:@"https"])
4530 if ([BridgedHosts_ containsObject:[url host]])
4535 [window setValue:cydia_ forKey:@"cydia"];
4538 - (void) _setupMail:(MFMailComposeViewController *)controller {
4539 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"];
4541 system("/usr/bin/dpkg -l >/tmp/dpkgl.log");
4542 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"];
4545 - (NSURL *) URLWithURL:(NSURL *)url {
4546 return [Diversion divertURL:url];
4549 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4550 NSURL *url([request URL]);
4551 NSString *host([url host]);
4553 NSMutableURLRequest *copy([[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source] mutableCopy]);
4555 if (System_ != NULL && [copy valueForHTTPHeaderField:@"X-System"] == nil)
4556 [copy setValue:System_ forHTTPHeaderField:@"X-System"];
4557 if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil)
4558 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4561 @synchronized (HostConfig_) {
4562 token = [TokenHosts_ containsObject:host] || [BridgedHosts_ containsObject:host];
4565 if ([url isCydiaSecure] && token) {
4566 if (Token_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Token"] == nil)
4567 [copy setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
4568 if (UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil)
4569 [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
4575 - (void) setDelegate:(id)delegate {
4576 [super setDelegate:delegate];
4577 [cydia_ setDelegate:delegate];
4580 - (NSString *) applicationNameForUserAgent {
4581 NSString *application([NSString stringWithFormat:@"Cydia/%@", Cydia_]);
4584 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
4586 application = [NSString stringWithFormat:@"Mobile/%@ %@", Build_, application];
4587 if (Product_ != nil)
4588 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
4594 if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) {
4595 cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease];
4601 @interface AppCacheController : CydiaWebViewController {
4606 @implementation AppCacheController
4608 - (void) didReceiveMemoryWarning {
4615 @interface NSObject (CydiaScript)
4616 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4619 @implementation NSObject (CydiaScript)
4621 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4627 @implementation NSArray (CydiaScript)
4629 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4630 WebScriptObject *object([context evaluateWebScript:@"[]"]);
4631 for (size_t i(0), e([self count]); i != e; ++i)
4632 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
4638 @implementation NSDictionary (CydiaScript)
4640 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4641 WebScriptObject *object([context evaluateWebScript:@"({})"]);
4643 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
4650 /* Confirmation Controller {{{ */
4651 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
4652 if (!iterator.end())
4653 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
4654 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
4656 pkgCache::PkgIterator package(dep.TargetPkg());
4659 if (strcmp(package.Name(), "mobilesubstrate") == 0)
4666 @protocol ConfirmationControllerDelegate
4667 - (void) cancelAndClear:(bool)clear;
4668 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
4672 @interface ConfirmationController : CydiaWebViewController {
4673 _transient Database *database_;
4675 _H<UIAlertView> essential_;
4677 _H<NSDictionary> changes_;
4678 _H<NSMutableArray> issues_;
4679 _H<NSDictionary> sizes_;
4684 - (id) initWithDatabase:(Database *)database;
4688 @implementation ConfirmationController
4692 RestartSubstrate_ = true;
4693 [delegate_ confirmWithNavigationController:[self navigationController]];
4696 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4697 NSString *context([alert context]);
4699 if ([context isEqualToString:@"remove"]) {
4700 if (button == [alert cancelButtonIndex])
4701 [self dismissModalViewControllerAnimated:YES];
4702 else if (button == [alert firstOtherButtonIndex]) {
4706 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4707 } else if ([context isEqualToString:@"unable"]) {
4708 [self dismissModalViewControllerAnimated:YES];
4709 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4711 [super alertView:alert clickedButtonAtIndex:button];
4715 - (void) _doContinue {
4716 [delegate_ cancelAndClear:NO];
4717 [self dismissModalViewControllerAnimated:YES];
4720 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4721 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
4725 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4726 [super webView:view didClearWindowObject:window forFrame:frame];
4728 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
4729 (id) changes_, @"changes",
4730 (id) issues_, @"issues",
4731 (id) sizes_, @"sizes",
4733 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
4736 - (id) initWithDatabase:(Database *)database {
4737 if ((self = [super init]) != nil) {
4738 database_ = database;
4740 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
4741 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
4742 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
4743 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
4744 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
4748 pkgCacheFile &cache([database_ cache]);
4749 NSArray *packages([database_ packages]);
4750 pkgDepCache::Policy *policy([database_ policy]);
4752 issues_ = [NSMutableArray arrayWithCapacity:4];
4754 for (Package *package in packages) {
4755 pkgCache::PkgIterator iterator([package iterator]);
4756 NSString *name([package id]);
4758 if ([package broken]) {
4759 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
4761 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4763 reasons, @"reasons",
4766 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
4770 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
4771 pkgCache::DepIterator start;
4772 pkgCache::DepIterator end;
4773 dep.GlobOr(start, end); // ++dep
4775 if (!cache->IsImportantDep(end))
4777 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
4780 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
4782 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4783 [NSString stringWithUTF8String:start.DepType()], @"relationship",
4784 clauses, @"clauses",
4788 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
4790 pkgCache::PkgIterator target(start.TargetPkg());
4791 if (target->ProvidesList != 0)
4792 reason = @"missing";
4794 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
4796 reason = @"installed";
4797 installed = [NSString stringWithUTF8String:ver.VerStr()];
4798 } else if (!cache[target].CandidateVerIter(cache).end())
4799 reason = @"uninstalled";
4800 else if (target->ProvidesList == 0)
4801 reason = @"uninstallable";
4803 reason = @"virtual";
4806 NSDictionary *version(start.TargetVer() == 0 ? [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
4807 [NSString stringWithUTF8String:start.CompType()], @"operator",
4808 [NSString stringWithUTF8String:start.TargetVer()], @"value",
4811 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4812 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
4813 version, @"version",
4815 installed, @"installed",
4818 // yes, seriously. (wtf?)
4826 pkgDepCache::StateCache &state(cache[iterator]);
4828 static Pcre special_r("^(firmware$|gsc\\.|cy\\+)");
4830 if (state.NewInstall())
4831 [installs addObject:name];
4832 // XXX: else if (state.Install())
4833 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4834 [reinstalls addObject:name];
4835 // XXX: move before previous if
4836 else if (state.Upgrade())
4837 [upgrades addObject:name];
4838 else if (state.Downgrade())
4839 [downgrades addObject:name];
4840 else if (!state.Delete())
4841 // XXX: _assert(state.Keep());
4843 else if (special_r(name))
4844 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4845 [NSNull null], @"package",
4846 [NSArray arrayWithObjects:
4847 [NSDictionary dictionaryWithObjectsAndKeys:
4848 @"Conflicts", @"relationship",
4849 [NSArray arrayWithObjects:
4850 [NSDictionary dictionaryWithObjectsAndKeys:
4852 [NSNull null], @"version",
4853 @"installed", @"reason",
4860 if ([package essential])
4862 [removes addObject:name];
4865 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4866 substrate_ |= DepSubstrate(iterator.CurrentVer());
4871 else if (Advanced_) {
4872 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4874 essential_ = [[[UIAlertView alloc]
4875 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4876 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4878 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4880 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
4884 [essential_ setContext:@"remove"];
4886 essential_ = [[[UIAlertView alloc]
4887 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4888 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4890 cancelButtonTitle:UCLocalize("OKAY")
4891 otherButtonTitles:nil
4894 [essential_ setContext:@"unable"];
4897 changes_ = [NSDictionary dictionaryWithObjectsAndKeys:
4898 installs, @"installs",
4899 reinstalls, @"reinstalls",
4900 upgrades, @"upgrades",
4901 downgrades, @"downgrades",
4902 removes, @"removes",
4905 sizes_ = [NSDictionary dictionaryWithObjectsAndKeys:
4906 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
4907 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
4910 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
4914 - (UIBarButtonItem *) leftButton {
4915 return [[[UIBarButtonItem alloc]
4916 initWithTitle:UCLocalize("CANCEL")
4917 style:UIBarButtonItemStylePlain
4919 action:@selector(cancelButtonClicked)
4924 - (void) applyRightButton {
4925 if ([issues_ count] == 0 && ![self isLoading])
4926 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
4927 initWithTitle:UCLocalize("CONFIRM")
4928 style:UIBarButtonItemStyleDone
4930 action:@selector(confirmButtonClicked)
4933 [[self navigationItem] setRightBarButtonItem:nil];
4937 - (void) cancelButtonClicked {
4938 [self dismissModalViewControllerAnimated:YES];
4939 [delegate_ cancelAndClear:YES];
4943 - (void) confirmButtonClicked {
4944 if (essential_ != nil)
4954 /* Progress Data {{{ */
4955 @interface CydiaProgressData : NSObject {
4956 _transient id delegate_;
4965 _H<NSMutableArray> events_;
4966 _H<NSString> title_;
4968 _H<NSString> status_;
4969 _H<NSString> finish_;
4974 @implementation CydiaProgressData
4976 + (NSArray *) _attributeKeys {
4977 return [NSArray arrayWithObjects:
4989 - (NSArray *) attributeKeys {
4990 return [[self class] _attributeKeys];
4993 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
4994 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
4998 if ((self = [super init]) != nil) {
4999 events_ = [NSMutableArray arrayWithCapacity:32];
5003 - (void) setDelegate:(id)delegate {
5004 delegate_ = delegate;
5007 - (void) setPercent:(float)value {
5011 - (NSNumber *) percent {
5012 return [NSNumber numberWithFloat:percent_];
5015 - (void) setCurrent:(float)value {
5019 - (NSNumber *) current {
5020 return [NSNumber numberWithFloat:current_];
5023 - (void) setTotal:(float)value {
5027 - (NSNumber *) total {
5028 return [NSNumber numberWithFloat:total_];
5031 - (void) setSpeed:(float)value {
5035 - (NSNumber *) speed {
5036 return [NSNumber numberWithFloat:speed_];
5039 - (NSArray *) events {
5043 - (void) removeAllEvents {
5044 [events_ removeAllObjects];
5047 - (void) addEvent:(CydiaProgressEvent *)event {
5048 [events_ addObject:event];
5051 - (void) setTitle:(NSString *)text {
5055 - (NSString *) title {
5059 - (void) setFinish:(NSString *)text {
5063 - (NSString *) finish {
5064 return (id) finish_ ?: [NSNull null];
5067 - (void) setRunning:(bool)running {
5071 - (NSNumber *) running {
5072 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5077 /* Progress Controller {{{ */
5078 @interface ProgressController : CydiaWebViewController <
5081 _transient Database *database_;
5082 _H<CydiaProgressData, 1> progress_;
5086 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5088 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5090 - (void) setTitle:(NSString *)title;
5091 - (void) setCancellable:(bool)cancellable;
5095 @implementation ProgressController
5098 [database_ setProgressDelegate:nil];
5102 - (UIBarButtonItem *) leftButton {
5103 return cancel_ == 1 ? [[[UIBarButtonItem alloc]
5104 initWithTitle:UCLocalize("CANCEL")
5105 style:UIBarButtonItemStylePlain
5107 action:@selector(cancel)
5108 ] autorelease] : nil;
5111 - (void) updateCancel {
5112 [super applyLeftButton];
5115 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5116 if ((self = [super init]) != nil) {
5117 database_ = database;
5118 delegate_ = delegate;
5120 [database_ setProgressDelegate:self];
5122 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5123 [progress_ setDelegate:self];
5125 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5127 [scroller_ setBackgroundColor:[UIColor blackColor]];
5129 [[self navigationItem] setHidesBackButton:YES];
5131 [self updateCancel];
5135 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5136 [super webView:view didClearWindowObject:window forFrame:frame];
5137 [window setValue:progress_ forKey:@"cydiaProgress"];
5140 - (void) updateProgress {
5141 [self dispatchEvent:@"CydiaProgressUpdate"];
5144 - (void) viewWillAppear:(BOOL)animated {
5145 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5146 [super viewWillAppear:animated];
5150 UpdateExternalStatus(0);
5153 [delegate_ saveState];
5157 [delegate_ returnToCydia];
5161 [delegate_ terminateWithSuccess];
5162 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5163 [delegate_ suspendWithAnimation:YES];
5165 [delegate_ suspend];*/
5177 system("/usr/bin/sbreload");
5183 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5184 SBReboot(SBSSpringBoardServerPort());
5186 reboot2(RB_AUTOBOOT);
5193 - (void) setTitle:(NSString *)title {
5194 [progress_ setTitle:title];
5195 [self updateProgress];
5198 - (UIBarButtonItem *) rightButton {
5199 return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc]
5200 initWithTitle:UCLocalize("CLOSE")
5201 style:UIBarButtonItemStylePlain
5203 action:@selector(close)
5209 system("su -c /usr/bin/uicache mobile");
5213 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5214 UpdateExternalStatus(1);
5216 [progress_ setRunning:true];
5217 [self setTitle:title];
5218 // implicit updateProgress
5220 SHA1SumValue notifyconf; {
5222 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5225 MMap mmap(file, MMap::ReadOnly);
5227 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5228 notifyconf = sha1.Result();
5232 SHA1SumValue springlist; {
5234 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5237 MMap mmap(file, MMap::ReadOnly);
5239 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5240 springlist = sha1.Result();
5244 if (invocation != nil) {
5245 [invocation yieldToSelector:@selector(invoke)];
5246 [self setTitle:@"COMPLETE"];
5251 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5254 MMap mmap(file, MMap::ReadOnly);
5256 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5257 if (!(notifyconf == sha1.Result()))
5264 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5267 MMap mmap(file, MMap::ReadOnly);
5269 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5270 if (!(springlist == sha1.Result()))
5276 if (RestartSubstrate_)
5280 RestartSubstrate_ = false;
5283 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5284 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5285 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5286 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5287 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5290 UIProgressHUD *hud([delegate_ addProgressHUD]);
5291 [hud setText:UCLocalize("LOADING")];
5292 [self yieldToSelector:@selector(uicache)];
5293 [delegate_ removeProgressHUD:hud];
5295 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5297 [progress_ setRunning:false];
5298 [self updateProgress];
5300 [self applyRightButton];
5303 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5304 [progress_ addEvent:event];
5305 [self updateProgress];
5308 - (bool) isProgressCancelled {
5309 return cancel_ == 2;
5314 [self updateCancel];
5317 - (void) setCancellable:(bool)cancellable {
5318 unsigned cancel(cancel_);
5322 else if (cancel_ == 0)
5325 if (cancel != cancel_)
5326 [self updateCancel];
5329 - (void) setProgressCancellable:(NSNumber *)cancellable {
5330 [self setCancellable:[cancellable boolValue]];
5333 - (void) setProgressPercent:(NSNumber *)percent {
5334 [progress_ setPercent:[percent floatValue]];
5335 [self updateProgress];
5338 - (void) setProgressStatus:(NSDictionary *)status {
5339 if (status == nil) {
5340 [progress_ setCurrent:0];
5341 [progress_ setTotal:0];
5342 [progress_ setSpeed:0];
5344 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5346 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5347 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5348 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5351 [self updateProgress];
5357 /* Package Cell {{{ */
5358 @interface PackageCell : CyteTableViewCell <
5359 CyteTableViewCellDelegate
5363 _H<NSString> description_;
5365 _H<NSString> source_;
5367 _H<UIImage> placard_;
5371 - (PackageCell *) init;
5372 - (void) setPackage:(Package *)package asSummary:(bool)summary;
5374 - (void) drawContentRect:(CGRect)rect;
5378 @implementation PackageCell
5380 - (PackageCell *) init {
5381 CGRect frame(CGRectMake(0, 0, 320, 74));
5382 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5383 UIView *content([self contentView]);
5384 CGRect bounds([content bounds]);
5386 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5387 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5388 [content addSubview:content_];
5390 [content_ setDelegate:self];
5391 [content_ setOpaque:YES];
5395 - (NSString *) accessibilityLabel {
5396 return [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), (id) name_, (id) description_];
5399 - (void) setPackage:(Package *)package asSummary:(bool)summary {
5400 summarized_ = summary;
5410 [content_ setBackgroundColor:[UIColor whiteColor]];
5414 Source *source = [package source];
5416 icon_ = [package icon];
5418 if (NSString *name = [package name])
5419 name_ = [NSString stringWithString:name];
5421 NSString *description(nil);
5423 if (description == nil && IsWildcat_)
5424 description = [package longDescription];
5425 if (description == nil)
5426 description = [package shortDescription];
5428 if (description != nil)
5429 description_ = [NSString stringWithString:description];
5431 commercial_ = [package isCommercial];
5433 NSString *label = nil;
5434 bool trusted = false;
5436 if (source != nil) {
5437 label = [source label];
5438 trusted = [source trusted];
5439 } else if ([[package id] isEqualToString:@"firmware"])
5440 label = UCLocalize("APPLE");
5442 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5444 NSString *from(label);
5446 NSString *section = [package simpleSection];
5447 if (section != nil && ![section isEqualToString:label]) {
5448 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5449 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5452 source_ = [NSString stringWithFormat:UCLocalize("FROM"), from];
5454 if (NSString *purpose = [package primaryPurpose])
5455 badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]];
5460 if (NSString *mode = [package mode]) {
5461 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5462 color = RemovingColor_;
5463 //placard = @"removing";
5465 color = InstallingColor_;
5466 //placard = @"installing";
5469 // XXX: the removing/installing placards are not @2x
5472 color = [UIColor whiteColor];
5474 if ([package installed] != nil)
5475 placard = @"installed";
5480 [content_ setBackgroundColor:color];
5483 placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]];
5486 [self setNeedsDisplay];
5487 [content_ setNeedsDisplay];
5490 - (void) drawSummaryContentRect:(CGRect)rect {
5491 bool highlighted(highlighted_);
5492 float width([self bounds].size.width);
5496 rect.size = [(UIImage *) icon_ size];
5498 while (rect.size.width > 16 || rect.size.height > 16) {
5499 rect.size.width /= 2;
5500 rect.size.height /= 2;
5503 rect.origin.x = 18 - rect.size.width / 2;
5504 rect.origin.y = 18 - rect.size.height / 2;
5506 [icon_ drawInRect:rect];
5509 if (badge_ != nil) {
5511 rect.size = [(UIImage *) badge_ size];
5513 rect.size.width /= 4;
5514 rect.size.height /= 4;
5516 rect.origin.x = 23 - rect.size.width / 2;
5517 rect.origin.y = 23 - rect.size.height / 2;
5519 [badge_ drawInRect:rect];
5526 UISetColor(commercial_ ? Purple_ : Black_);
5527 [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5529 if (placard_ != nil)
5530 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5533 - (void) drawNormalContentRect:(CGRect)rect {
5534 bool highlighted(highlighted_);
5535 float width([self bounds].size.width);
5539 rect.size = [(UIImage *) icon_ size];
5541 while (rect.size.width > 32 || rect.size.height > 32) {
5542 rect.size.width /= 2;
5543 rect.size.height /= 2;
5546 rect.origin.x = 25 - rect.size.width / 2;
5547 rect.origin.y = 25 - rect.size.height / 2;
5549 [icon_ drawInRect:rect];
5552 if (badge_ != nil) {
5554 rect.size = [(UIImage *) badge_ size];
5556 rect.size.width /= 2;
5557 rect.size.height /= 2;
5559 rect.origin.x = 36 - rect.size.width / 2;
5560 rect.origin.y = 36 - rect.size.height / 2;
5562 [badge_ drawInRect:rect];
5569 UISetColor(commercial_ ? Purple_ : Black_);
5570 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5571 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5574 UISetColor(commercial_ ? Purplish_ : Gray_);
5575 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5577 if (placard_ != nil)
5578 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5581 - (void) drawContentRect:(CGRect)rect {
5583 [self drawSummaryContentRect:rect];
5585 [self drawNormalContentRect:rect];
5590 /* Section Cell {{{ */
5591 @interface SectionCell : CyteTableViewCell <
5592 CyteTableViewCellDelegate
5594 _H<NSString> basic_;
5595 _H<NSString> section_;
5597 _H<NSString> count_;
5599 _H<UISwitch> switch_;
5603 - (void) setSection:(Section *)section editing:(BOOL)editing;
5607 @implementation SectionCell
5609 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5610 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5611 icon_ = [UIImage applicationImageNamed:@"folder.png"];
5612 switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease];
5613 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5615 UIView *content([self contentView]);
5616 CGRect bounds([content bounds]);
5618 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5619 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5620 [content addSubview:content_];
5621 [content_ setBackgroundColor:[UIColor whiteColor]];
5623 [content_ setDelegate:self];
5627 - (void) onSwitch:(id)sender {
5628 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
5629 if (metadata == nil) {
5630 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
5631 [Sections_ setObject:metadata forKey:basic_];
5634 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
5638 - (void) setSection:(Section *)section editing:(BOOL)editing {
5639 if (editing != editing_) {
5641 [switch_ removeFromSuperview];
5643 [self addSubview:switch_];
5652 if (section == nil) {
5653 name_ = UCLocalize("ALL_PACKAGES");
5656 basic_ = [section name];
5657 section_ = [section localized];
5659 name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_;
5660 count_ = [NSString stringWithFormat:@"%d", [section count]];
5663 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
5666 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
5667 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
5669 [content_ setNeedsDisplay];
5672 - (void) setFrame:(CGRect)frame {
5673 [super setFrame:frame];
5675 CGRect rect([switch_ frame]);
5676 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
5679 - (NSString *) accessibilityLabel {
5683 - (void) drawContentRect:(CGRect)rect {
5684 bool highlighted(highlighted_ && !editing_);
5686 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
5691 float width(rect.size.width);
5697 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5699 CGSize size = [count_ sizeWithFont:Font14_];
5703 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
5709 /* File Table {{{ */
5710 @interface FileTable : CyteViewController <
5711 UITableViewDataSource,
5714 _transient Database *database_;
5715 _H<Package> package_;
5717 _H<NSMutableArray> files_;
5718 _H<UITableView, 2> list_;
5721 - (id) initWithDatabase:(Database *)database;
5722 - (void) setPackage:(Package *)package;
5726 @implementation FileTable
5728 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5729 return files_ == nil ? 0 : [files_ count];
5732 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5736 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5737 static NSString *reuseIdentifier = @"Cell";
5739 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
5741 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
5742 [cell setFont:[UIFont systemFontOfSize:16]];
5744 [cell setText:[files_ objectAtIndex:indexPath.row]];
5745 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
5750 - (NSURL *) navigationURL {
5751 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
5755 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
5757 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease];
5758 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5759 [list_ setRowHeight:24.0f];
5760 [(UITableView *) list_ setDataSource:self];
5761 [list_ setDelegate:self];
5762 [[self view] addSubview:list_];
5765 - (void) viewDidLoad {
5766 [super viewDidLoad];
5768 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
5771 - (void) releaseSubviews {
5777 [super releaseSubviews];
5780 - (id) initWithDatabase:(Database *)database {
5781 if ((self = [super init]) != nil) {
5782 database_ = database;
5786 - (void) setPackage:(Package *)package {
5790 files_ = [NSMutableArray arrayWithCapacity:32];
5792 if (package != nil) {
5794 name_ = [package id];
5796 if (NSArray *files = [package files])
5797 [files_ addObjectsFromArray:files];
5799 if ([files_ count] != 0) {
5800 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5801 [files_ removeObjectAtIndex:0];
5802 [files_ sortUsingSelector:@selector(compareByPath:)];
5804 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5805 [stack addObject:@"/"];
5807 for (int i(0), e([files_ count]); i != e; ++i) {
5808 NSString *file = [files_ objectAtIndex:i];
5809 while (![file hasPrefix:[stack lastObject]])
5810 [stack removeLastObject];
5811 NSString *directory = [stack lastObject];
5812 [stack addObject:[file stringByAppendingString:@"/"]];
5813 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
5814 ([stack count] - 2) * 3, "",
5815 [file substringFromIndex:[directory length]]
5824 - (void) reloadData {
5827 [self setPackage:[database_ packageWithName:name_]];
5832 /* Package Controller {{{ */
5833 @interface CYPackageController : CydiaWebViewController <
5834 UIActionSheetDelegate
5836 _transient Database *database_;
5837 _H<Package> package_;
5840 _H<NSMutableArray> buttons_;
5841 _H<UIBarButtonItem> button_;
5844 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name;
5848 @implementation CYPackageController
5850 - (NSURL *) navigationURL {
5851 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
5854 /* XXX: this is not safe at all... localization of /fail/ */
5855 - (void) _clickButtonWithName:(NSString *)name {
5856 if ([name isEqualToString:UCLocalize("CLEAR")])
5857 [delegate_ clearPackage:package_];
5858 else if ([name isEqualToString:UCLocalize("INSTALL")])
5859 [delegate_ installPackage:package_];
5860 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5861 [delegate_ installPackage:package_];
5862 else if ([name isEqualToString:UCLocalize("REMOVE")])
5863 [delegate_ removePackage:package_];
5864 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5865 [delegate_ installPackage:package_];
5866 else _assert(false);
5869 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
5870 NSString *context([sheet context]);
5872 if ([context isEqualToString:@"modify"]) {
5873 if (button != [sheet cancelButtonIndex]) {
5874 NSString *buttonName = [buttons_ objectAtIndex:button];
5875 [self _clickButtonWithName:buttonName];
5878 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
5882 - (bool) _allowJavaScriptPanel {
5887 - (void) _customButtonClicked {
5888 int count([buttons_ count]);
5893 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5895 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
5896 [buttons addObjectsFromArray:buttons_];
5898 UIActionSheet *sheet = [[[UIActionSheet alloc]
5901 cancelButtonTitle:nil
5902 destructiveButtonTitle:nil
5903 otherButtonTitles:nil
5906 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
5908 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
5909 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
5911 [sheet setContext:@"modify"];
5913 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
5917 // We don't want to allow non-commercial packages to do custom things to the install button,
5918 // so it must call customButtonClicked with a custom commercial_ == 1 fallthrough.
5919 - (void) customButtonClicked {
5921 [super customButtonClicked];
5923 [self _customButtonClicked];
5926 - (void) reloadButtonClicked {
5927 // Don't reload a commerical package by tapping the loading button,
5928 // but if it's not an Install button, we should forward it on.
5929 if (![package_ uninstalled])
5930 [self _customButtonClicked];
5933 - (void) applyLoadingTitle {
5934 // Don't show "Loading" as the title. Ever.
5937 - (UIBarButtonItem *) rightButton {
5942 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name {
5943 if ((self = [super init]) != nil) {
5944 database_ = database;
5945 buttons_ = [NSMutableArray arrayWithCapacity:4];
5946 name_ = name == nil ? @"" : [NSString stringWithString:name];
5947 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]]];
5951 - (void) reloadData {
5954 package_ = [database_ packageWithName:name_];
5956 [buttons_ removeAllObjects];
5958 if (package_ != nil) {
5959 [(Package *) package_ parse];
5961 commercial_ = [package_ isCommercial];
5963 if ([package_ mode] != nil)
5964 [buttons_ addObject:UCLocalize("CLEAR")];
5965 if ([package_ source] == nil);
5966 else if ([package_ upgradableAndEssential:NO])
5967 [buttons_ addObject:UCLocalize("UPGRADE")];
5968 else if ([package_ uninstalled])
5969 [buttons_ addObject:UCLocalize("INSTALL")];
5971 [buttons_ addObject:UCLocalize("REINSTALL")];
5972 if (![package_ uninstalled])
5973 [buttons_ addObject:UCLocalize("REMOVE")];
5977 switch ([buttons_ count]) {
5978 case 0: title = nil; break;
5979 case 1: title = [buttons_ objectAtIndex:0]; break;
5980 default: title = UCLocalize("MODIFY"); break;
5983 button_ = [[[UIBarButtonItem alloc]
5985 style:UIBarButtonItemStylePlain
5987 action:@selector(customButtonClicked)
5991 - (bool) isLoading {
5992 return commercial_ ? [super isLoading] : false;
5998 /* Package List Controller {{{ */
5999 @interface PackageListController : CyteViewController <
6000 UITableViewDataSource,
6003 _transient Database *database_;
6005 _H<NSArray> packages_;
6006 _H<NSMutableArray> sections_;
6007 _H<UITableView, 2> list_;
6008 _H<NSMutableArray> index_;
6009 _H<NSMutableDictionary> indices_;
6010 _H<NSString> title_;
6011 unsigned reloading_;
6014 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6015 - (void) setDelegate:(id)delegate;
6016 - (void) resetCursor;
6021 @implementation PackageListController
6023 - (bool) isSummarized {
6027 - (bool) showsSections {
6031 - (void) deselectWithAnimation:(BOOL)animated {
6032 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6035 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6036 CGRect base = [[self view] bounds];
6037 base.size.height -= bounds.size.height;
6038 base.origin = [list_ frame].origin;
6040 [UIView beginAnimations:nil context:NULL];
6041 [UIView setAnimationBeginsFromCurrentState:YES];
6042 [UIView setAnimationCurve:curve];
6043 [UIView setAnimationDuration:duration];
6044 [list_ setFrame:base];
6045 [UIView commitAnimations];
6048 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6049 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6052 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6053 [self resizeForKeyboardBounds:bounds duration:0];
6056 - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification {
6057 if (&UIKeyboardAnimationCurveUserInfoKey == NULL)
6058 *curve = UIViewAnimationCurveEaseInOut;
6060 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve];
6062 if (&UIKeyboardAnimationDurationUserInfoKey == NULL)
6065 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration];
6068 - (void) keyboardWillShow:(NSNotification *)notification {
6071 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6072 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er];
6074 NSTimeInterval duration;
6075 UIViewAnimationCurve curve;
6076 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6078 CGRect kbframe = CGRectMake(round(center.x - bounds.size.width / 2.0), round(center.y - bounds.size.height / 2.0), bounds.size.width, bounds.size.height);
6079 UIViewController *base = self;
6080 while ([base parentViewController] != nil)
6081 base = [base parentViewController];
6082 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6083 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6085 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6086 intersection.size.height += CYStatusBarHeight();
6088 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6091 - (void) keyboardWillHide:(NSNotification *)notification {
6092 NSTimeInterval duration;
6093 UIViewAnimationCurve curve;
6094 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6096 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6099 - (void) viewWillAppear:(BOOL)animated {
6100 [super viewWillAppear:animated];
6102 [self resizeForKeyboardBounds:CGRectZero];
6103 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6104 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6107 - (void) viewWillDisappear:(BOOL)animated {
6108 [super viewWillDisappear:animated];
6110 [self resizeForKeyboardBounds:CGRectZero];
6111 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6112 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6115 - (void) viewDidAppear:(BOOL)animated {
6116 [super viewDidAppear:animated];
6117 [self deselectWithAnimation:animated];
6120 - (void) didSelectPackage:(Package *)package {
6121 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
6122 [view setDelegate:delegate_];
6123 [[self navigationController] pushViewController:view animated:YES];
6126 #if TryIndexedCollation
6127 + (BOOL) hasIndexedCollation {
6128 return NO; // XXX: objc_getClass("UILocalizedIndexedCollation") != nil;
6132 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6133 NSInteger count([sections_ count]);
6134 return count == 0 ? 1 : count;
6137 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6138 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6140 return [[sections_ objectAtIndex:section] name];
6143 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6144 if ([sections_ count] == 0)
6146 return [[sections_ objectAtIndex:section] count];
6149 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6150 @synchronized (database_) {
6151 if ([database_ era] != era_)
6154 Section *section([sections_ objectAtIndex:[path section]]);
6155 NSInteger row([path row]);
6156 Package *package([packages_ objectAtIndex:([section row] + row)]);
6157 return [[package retain] autorelease];
6160 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6161 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6163 cell = [[[PackageCell alloc] init] autorelease];
6165 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
6166 [cell setPackage:package asSummary:[self isSummarized]];
6170 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6171 Package *package([self packageAtIndexPath:path]);
6172 package = [database_ packageWithName:[package id]];
6173 [self didSelectPackage:package];
6176 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6177 if (![self showsSections])
6183 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6184 #if TryIndexedCollation
6185 if ([[self class] hasIndexedCollation]) {
6186 return [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionForSectionIndexTitleAtIndex:index];
6193 - (void) updateHeight {
6194 [list_ setRowHeight:([self isSummarized] ? 38 : 73)];
6197 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6198 if ((self = [super init]) != nil) {
6199 database_ = database;
6200 title_ = [title copy];
6201 [[self navigationItem] setTitle:title_];
6206 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
6208 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
6209 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6210 [[self view] addSubview:list_];
6212 // XXX: is 20 the most optimal number here?
6213 [list_ setSectionIndexMinimumDisplayRowCount:20];
6215 [(UITableView *) list_ setDataSource:self];
6216 [list_ setDelegate:self];
6218 [self updateHeight];
6221 - (void) releaseSubviews {
6229 [super releaseSubviews];
6232 - (void) setDelegate:(id)delegate {
6233 delegate_ = delegate;
6236 - (bool) shouldYield {
6240 - (bool) shouldBlock {
6244 - (NSMutableArray *) _reloadPackages {
6245 @synchronized (database_) {
6246 era_ = [database_ era];
6247 NSArray *packages([database_ packages]);
6249 return [NSMutableArray arrayWithArray:packages];
6252 - (void) _reloadData {
6253 if (reloading_ != 0) {
6260 if ([self shouldYield]) {
6264 if (![self shouldBlock])
6267 hud = [delegate_ addProgressHUD];
6268 [hud setText:UCLocalize("LOADING")];
6272 packages = [self yieldToSelector:@selector(_reloadPackages)];
6275 [delegate_ removeProgressHUD:hud];
6276 } while (reloading_ == 2);
6280 packages = [self _reloadPackages];
6283 packages_ = packages;
6285 indices_ = [NSMutableDictionary dictionaryWithCapacity:32];
6286 sections_ = [NSMutableArray arrayWithCapacity:16];
6288 Section *section = nil;
6290 #if TryIndexedCollation
6291 if ([[self class] hasIndexedCollation]) {
6292 index_ = [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionIndexTitles];
6294 id collation = [objc_getClass("UILocalizedIndexedCollation") currentCollation];
6295 NSArray *titles = [collation sectionIndexTitles];
6298 _profile(PackageTable$reloadData$Section)
6299 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6303 _profile(PackageTable$reloadData$Section$Package)
6304 package = [packages_ objectAtIndex:offset];
6305 index = [collation sectionForObject:package collationStringSelector:@selector(name)];
6308 while (secidx < index) {
6311 _profile(PackageTable$reloadData$Section$Allocate)
6312 section = [[[Section alloc] initWithName:[titles objectAtIndex:secidx] row:offset localize:NO] autorelease];
6315 _profile(PackageTable$reloadData$Section$Add)
6316 [sections_ addObject:section];
6320 [section addToCount];
6326 index_ = [NSMutableArray arrayWithCapacity:32];
6328 bool sectioned([self showsSections]);
6330 section = [[[Section alloc] initWithName:nil localize:false] autorelease];
6331 [sections_ addObject:section];
6334 _profile(PackageTable$reloadData$Section)
6335 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6339 _profile(PackageTable$reloadData$Section$Package)
6340 package = [packages_ objectAtIndex:offset];
6341 index = [package index];
6344 if (sectioned && (section == nil || [section index] != index)) {
6345 _profile(PackageTable$reloadData$Section$Allocate)
6346 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
6349 [index_ addObject:[section name]];
6350 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
6352 _profile(PackageTable$reloadData$Section$Add)
6353 [sections_ addObject:section];
6357 [section addToCount];
6362 [self updateHeight];
6364 _profile(PackageTable$reloadData$List)
6365 [(UITableView *) list_ setDataSource:self];
6370 - (void) reloadData {
6373 if ([self shouldYield])
6374 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
6379 - (void) resetCursor {
6380 [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
6383 - (void) clearData {
6384 [self updateHeight];
6386 [list_ setDataSource:nil];
6394 /* Filtered Package List Controller {{{ */
6395 @interface FilteredPackageListController : PackageListController {
6398 _H<NSObject> object_;
6401 - (void) setObject:(id)object;
6402 - (void) setObject:(id)object forFilter:(SEL)filter;
6405 - (void) setFilter:(SEL)filter;
6407 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
6411 @implementation FilteredPackageListController
6417 - (void) setFilter:(SEL)filter {
6418 @synchronized (self) {
6421 /* XXX: this is an unsafe optimization of doomy hell */
6422 Method method(class_getInstanceMethod([Package class], filter));
6423 _assert(method != NULL);
6424 imp_ = method_getImplementation(method);
6425 _assert(imp_ != NULL);
6428 - (void) setObject:(id)object {
6429 @synchronized (self) {
6433 - (void) setObject:(id)object forFilter:(SEL)filter {
6434 @synchronized (self) {
6435 [self setFilter:filter];
6436 [self setObject:object];
6439 - (NSMutableArray *) _reloadPackages {
6440 @synchronized (database_) {
6441 era_ = [database_ era];
6442 NSArray *packages([database_ packages]);
6444 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
6448 _H<NSObject> object;
6450 @synchronized (self) {
6456 _profile(PackageTable$reloadData$Filter)
6457 for (Package *package in packages)
6458 if ([package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp))(package, filter, object))
6459 [filtered addObject:package];
6465 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
6466 if ((self = [super initWithDatabase:database title:title]) != nil) {
6467 [self setFilter:filter];
6468 [self setObject:object];
6475 /* Home Controller {{{ */
6476 @interface HomeController : CydiaWebViewController {
6481 @implementation HomeController
6484 if ((self = [super init]) != nil) {
6485 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6490 - (NSURL *) navigationURL {
6491 return [NSURL URLWithString:@"cydia://home"];
6494 - (void) didReceiveMemoryWarning {
6497 - (void) aboutButtonClicked {
6498 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6500 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6501 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6502 [alert setCancelButtonIndex:0];
6505 @"Copyright \u00a9 2008-2011\n"
6508 "Jay Freeman (saurik)\n"
6509 "saurik@saurik.com\n"
6510 "http://www.saurik.com/"
6516 - (UIBarButtonItem *) leftButton {
6517 return [[[UIBarButtonItem alloc]
6518 initWithTitle:UCLocalize("ABOUT")
6519 style:UIBarButtonItemStylePlain
6521 action:@selector(aboutButtonClicked)
6527 /* Manage Controller {{{ */
6528 @interface ManageController : CydiaWebViewController {
6531 - (void) queueStatusDidChange;
6535 @implementation ManageController
6538 if ((self = [super init]) != nil) {
6539 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/manage/", UI_]]];
6543 - (NSURL *) navigationURL {
6544 return [NSURL URLWithString:@"cydia://manage"];
6547 - (UIBarButtonItem *) leftButton {
6548 return [[[UIBarButtonItem alloc]
6549 initWithTitle:UCLocalize("SETTINGS")
6550 style:UIBarButtonItemStylePlain
6552 action:@selector(settingsButtonClicked)
6556 - (void) settingsButtonClicked {
6557 [delegate_ showSettings];
6560 - (void) queueButtonClicked {
6564 - (UIBarButtonItem *) customButton {
6565 return Queuing_ ? [[[UIBarButtonItem alloc]
6566 initWithTitle:UCLocalize("QUEUE")
6567 style:UIBarButtonItemStyleDone
6569 action:@selector(queueButtonClicked)
6570 ] autorelease] : [super customButton];
6573 - (void) queueStatusDidChange {
6574 [self applyRightButton];
6577 - (bool) isLoading {
6578 return !Queuing_ && [super isLoading];
6584 /* Refresh Bar {{{ */
6585 @interface RefreshBar : UINavigationBar {
6586 _H<UIProgressIndicator> indicator_;
6587 _H<UITextLabel> prompt_;
6588 _H<UIProgressBar> progress_;
6589 _H<UINavigationButton> cancel_;
6594 @implementation RefreshBar
6596 - (void) positionViews {
6597 CGRect frame = [cancel_ frame];
6598 frame.size = [cancel_ sizeThatFits:frame.size];
6599 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6600 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6601 [cancel_ setFrame:frame];
6603 CGSize prgsize = {75, 100};
6605 [self frame].size.width - prgsize.width - 10,
6606 ([self frame].size.height - prgsize.height) / 2
6608 [progress_ setFrame:prgrect];
6610 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6611 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6612 CGRect indrect = {{indoffset, indoffset}, indsize};
6613 [indicator_ setFrame:indrect];
6615 CGSize prmsize = {215, indsize.height + 4};
6617 indoffset * 2 + indsize.width,
6618 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6620 [prompt_ setFrame:prmrect];
6623 - (void) setFrame:(CGRect)frame {
6624 [super setFrame:frame];
6625 [self positionViews];
6628 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6629 if ((self = [super initWithFrame:frame]) != nil) {
6630 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6632 [self setBarStyle:UIBarStyleBlack];
6634 UIBarStyle barstyle([self _barStyle:NO]);
6635 bool ugly(barstyle == UIBarStyleDefault);
6637 UIProgressIndicatorStyle style = ugly ?
6638 UIProgressIndicatorStyleMediumBrown :
6639 UIProgressIndicatorStyleMediumWhite;
6641 indicator_ = [[[UIProgressIndicator alloc] initWithFrame:CGRectZero] autorelease];
6642 [(UIProgressIndicator *) indicator_ setStyle:style];
6643 [indicator_ startAnimation];
6644 [self addSubview:indicator_];
6646 prompt_ = [[[UITextLabel alloc] initWithFrame:CGRectZero] autorelease];
6647 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6648 [prompt_ setBackgroundColor:[UIColor clearColor]];
6649 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6650 [self addSubview:prompt_];
6652 progress_ = [[[UIProgressBar alloc] initWithFrame:CGRectZero] autorelease];
6653 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6654 [(UIProgressBar *) progress_ setStyle:0];
6655 [self addSubview:progress_];
6657 cancel_ = [[[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted] autorelease];
6658 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6659 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6660 [cancel_ setBarStyle:barstyle];
6662 [self positionViews];
6666 - (void) setCancellable:(bool)cancellable {
6668 [self addSubview:cancel_];
6670 [cancel_ removeFromSuperview];
6674 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6675 [progress_ setProgress:0];
6679 [self setCancellable:NO];
6682 - (void) setPrompt:(NSString *)prompt {
6683 [prompt_ setText:prompt];
6686 - (void) setProgress:(float)progress {
6687 [progress_ setProgress:progress];
6693 /* Cydia Navigation Controller Interface {{{ */
6694 @interface UINavigationController (Cydia)
6696 - (NSArray *) navigationURLCollection;
6697 - (void) unloadData;
6702 /* Cydia Tab Bar Controller {{{ */
6703 @interface CYTabBarController : UITabBarController <
6704 UITabBarControllerDelegate,
6707 _transient Database *database_;
6708 _H<RefreshBar, 1> refreshbar_;
6712 // XXX: ok, "updatedelegate_"?...
6713 _transient NSObject<CydiaDelegate> *updatedelegate_;
6715 _H<UIViewController> remembered_;
6716 _transient UIViewController *transient_;
6719 - (NSArray *) navigationURLCollection;
6720 - (void) dropBar:(BOOL)animated;
6721 - (void) beginUpdate;
6722 - (void) raiseBar:(BOOL)animated;
6724 - (void) unloadData;
6728 @implementation CYTabBarController
6730 - (void) setUnselectedViewController:(UIViewController *)transient {
6731 NSMutableArray *controllers = [[self viewControllers] mutableCopy];
6732 if (transient != nil) {
6733 if (transient_ == nil)
6734 remembered_ = [controllers objectAtIndex:0];
6735 transient_ = transient;
6736 [transient_ setTabBarItem:[remembered_ tabBarItem]];
6737 [controllers replaceObjectAtIndex:0 withObject:transient_];
6738 [self setSelectedIndex:0];
6739 [self setViewControllers:controllers];
6740 [self concealTabBarSelection];
6741 } else if (remembered_ != nil) {
6742 [remembered_ setTabBarItem:[transient_ tabBarItem]];
6743 transient_ = transient;
6744 [controllers replaceObjectAtIndex:0 withObject:remembered_];
6746 [self setViewControllers:controllers];
6747 [self revealTabBarSelection];
6751 - (UIViewController *) unselectedViewController {
6755 - (void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
6756 if ([self unselectedViewController])
6757 [self setUnselectedViewController:nil];
6760 - (NSArray *) navigationURLCollection {
6761 NSMutableArray *items([NSMutableArray array]);
6763 // XXX: Should this deal with transient view controllers?
6764 for (id navigation in [self viewControllers]) {
6765 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6767 [items addObject:stack];
6773 - (void) dismissModalViewControllerAnimated:(BOOL)animated {
6774 if ([self modalViewController] == nil && [self unselectedViewController] != nil)
6775 [self setUnselectedViewController:nil];
6777 [super dismissModalViewControllerAnimated:YES];
6780 - (void) unloadData {
6783 for (UINavigationController *controller in [self viewControllers])
6784 [controller unloadData];
6786 if (UIViewController *selected = [self selectedViewController])
6787 [selected reloadData];
6789 if (UIViewController *unselected = [self unselectedViewController]) {
6790 [unselected unloadData];
6791 [unselected reloadData];
6796 [[NSNotificationCenter defaultCenter] removeObserver:self];
6801 - (id) initWithDatabase:(Database *)database {
6802 if ((self = [super init]) != nil) {
6803 database_ = database;
6804 [self setDelegate:self];
6806 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6807 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
6809 refreshbar_ = [[[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self] autorelease];
6813 - (void) setUpdate:(NSDate *)date {
6817 - (void) beginUpdate {
6818 [(RefreshBar *) refreshbar_ start];
6821 [updatedelegate_ retainNetworkActivityIndicator];
6825 detachNewThreadSelector:@selector(performUpdate)
6831 - (void) performUpdate {
6832 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
6835 status.setDelegate(self);
6836 [database_ updateWithStatus:status];
6839 performSelectorOnMainThread:@selector(completeUpdate)
6847 - (void) stopUpdateWithSelector:(SEL)selector {
6849 [updatedelegate_ releaseNetworkActivityIndicator];
6851 [self raiseBar:YES];
6854 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6857 - (void) completeUpdate {
6860 [self stopUpdateWithSelector:@selector(reloadData)];
6863 - (void) cancelUpdate {
6864 [self stopUpdateWithSelector:@selector(updateData)];
6867 - (void) cancelPressed {
6868 [self cancelUpdate];
6875 - (void) addProgressEvent:(CydiaProgressEvent *)event {
6876 [refreshbar_ setPrompt:[event compoundMessage]];
6879 - (bool) isProgressCancelled {
6883 - (void) setProgressCancellable:(NSNumber *)cancellable {
6884 [refreshbar_ setCancellable:(updating_ && [cancellable boolValue])];
6887 - (void) setProgressPercent:(NSNumber *)percent {
6888 [refreshbar_ setProgress:[percent floatValue]];
6891 - (void) setProgressStatus:(NSDictionary *)status {
6893 [self setProgressPercent:[status objectForKey:@"Percent"]];
6896 - (void) setUpdateDelegate:(id)delegate {
6897 updatedelegate_ = delegate;
6900 - (UIView *) transitionView {
6901 if ([self respondsToSelector:@selector(_transitionView)])
6902 return [self _transitionView];
6904 return MSHookIvar<id>(self, "_viewControllerTransitionView");
6907 - (void) dropBar:(BOOL)animated {
6912 UIView *transition([self transitionView]);
6913 [[self view] addSubview:refreshbar_];
6915 CGRect barframe([refreshbar_ frame]);
6917 if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6918 barframe.origin.y = CYStatusBarHeight();
6920 barframe.origin.y = 0;
6922 [refreshbar_ setFrame:barframe];
6925 [UIView beginAnimations:nil context:NULL];
6927 CGRect viewframe = [transition frame];
6928 viewframe.origin.y += barframe.size.height;
6929 viewframe.size.height -= barframe.size.height;
6930 [transition setFrame:viewframe];
6933 [UIView commitAnimations];
6935 // Ensure bar has the proper width for our view, it might have changed
6936 barframe.size.width = viewframe.size.width;
6937 [refreshbar_ setFrame:barframe];
6940 - (void) raiseBar:(BOOL)animated {
6945 UIView *transition([self transitionView]);
6946 [refreshbar_ removeFromSuperview];
6948 CGRect barframe([refreshbar_ frame]);
6951 [UIView beginAnimations:nil context:NULL];
6953 CGRect viewframe = [transition frame];
6954 viewframe.origin.y -= barframe.size.height;
6955 viewframe.size.height += barframe.size.height;
6956 [transition setFrame:viewframe];
6959 [UIView commitAnimations];
6962 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
6963 bool dropped(dropped_);
6968 [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
6974 - (void) statusBarFrameChanged:(NSNotification *)notification {
6984 /* Cydia Navigation Controller Implementation {{{ */
6985 @implementation UINavigationController (Cydia)
6987 - (NSArray *) navigationURLCollection {
6988 NSMutableArray *stack([NSMutableArray array]);
6990 for (CyteViewController *controller in [self viewControllers]) {
6991 NSString *url = [[controller navigationURL] absoluteString];
6993 [stack addObject:url];
6999 - (void) reloadData {
7002 UIViewController *visible([self visibleViewController]);
7004 [visible reloadData];
7006 // on the iPad, this view controller is ALSO visible. :(
7008 if (UIViewController *top = [self topViewController])
7013 - (void) unloadData {
7014 for (CyteViewController *page in [self viewControllers])
7023 /* Cydia:// Protocol {{{ */
7024 @interface CydiaURLProtocol : NSURLProtocol {
7029 @implementation CydiaURLProtocol
7031 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7032 NSURL *url([request URL]);
7036 NSString *scheme([[url scheme] lowercaseString]);
7037 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7039 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7045 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7049 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7050 id<NSURLProtocolClient> client([self client]);
7052 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7054 NSData *data(UIImagePNGRepresentation(icon));
7056 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7057 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7058 [client URLProtocol:self didLoadData:data];
7059 [client URLProtocolDidFinishLoading:self];
7063 - (void) startLoading {
7064 id<NSURLProtocolClient> client([self client]);
7065 NSURLRequest *request([self request]);
7067 NSURL *url([request URL]);
7068 NSString *href([url absoluteString]);
7069 NSString *scheme([[url scheme] lowercaseString]);
7073 if ([scheme isEqualToString:@"cydia"])
7074 path = [href substringFromIndex:8];
7075 else if ([scheme isEqualToString:@"about"])
7076 path = [href substringFromIndex:12];
7077 else _assert(false);
7079 NSRange slash([path rangeOfString:@"/"]);
7082 if (slash.location == NSNotFound) {
7086 command = [path substringToIndex:slash.location];
7087 path = [path substringFromIndex:(slash.location + 1)];
7090 Database *database([Database sharedInstance]);
7092 if ([command isEqualToString:@"package-icon"]) {
7095 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7096 Package *package([database packageWithName:path]);
7100 UIImage *icon([package icon]);
7101 [self _returnPNGWithImage:icon forRequest:request];
7102 } else if ([command isEqualToString:@"uikit-image"]) {
7105 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7106 UIImage *icon(_UIImageWithName(path));
7107 [self _returnPNGWithImage:icon forRequest:request];
7108 } else if ([command isEqualToString:@"section-icon"]) {
7111 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7112 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]);
7114 icon = [UIImage applicationImageNamed:@"unknown.png"];
7115 [self _returnPNGWithImage:icon forRequest:request];
7117 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7121 - (void) stopLoading {
7127 /* Section Controller {{{ */
7128 @interface SectionController : FilteredPackageListController {
7129 _H<NSString> section_;
7132 - (id) initWithDatabase:(Database *)database section:(NSString *)section;
7136 @implementation SectionController
7138 - (NSURL *) navigationURL {
7139 NSString *name = section_;
7143 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@", name]];
7146 - (id) initWithDatabase:(Database *)database section:(NSString *)name {
7149 title = UCLocalize("ALL_PACKAGES");
7150 else if (![name isEqual:@""])
7151 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
7153 title = UCLocalize("NO_SECTION");
7155 if ((self = [super initWithDatabase:database title:title filter:@selector(isVisibleInSection:) with:name]) != nil) {
7162 /* Sections Controller {{{ */
7163 @interface SectionsController : CyteViewController <
7164 UITableViewDataSource,
7167 _transient Database *database_;
7168 _H<NSMutableArray> sections_;
7169 _H<NSMutableArray> filtered_;
7170 _H<UITableView, 2> list_;
7173 - (id) initWithDatabase:(Database *)database;
7174 - (void) editButtonClicked;
7178 @implementation SectionsController
7180 - (NSURL *) navigationURL {
7181 return [NSURL URLWithString:@"cydia://sections"];
7184 - (void) updateNavigationItem {
7185 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7186 if ([sections_ count] == 0) {
7187 [[self navigationItem] setRightBarButtonItem:nil];
7189 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7190 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7192 action:@selector(editButtonClicked)
7193 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7197 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7198 [super setEditing:editing animated:animated];
7203 [delegate_ updateData];
7205 [self updateNavigationItem];
7208 - (void) viewDidAppear:(BOOL)animated {
7209 [super viewDidAppear:animated];
7210 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7213 - (void) viewWillDisappear:(BOOL)animated {
7214 [super viewWillDisappear:animated];
7215 if ([self isEditing]) [self setEditing:NO];
7218 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7219 Section *section = nil;
7220 int index = [indexPath row];
7221 if (![self isEditing]) {
7224 section = [filtered_ objectAtIndex:index];
7226 section = [sections_ objectAtIndex:index];
7231 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7232 if ([self isEditing])
7233 return [sections_ count];
7235 return [filtered_ count] + 1;
7238 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7242 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7243 static NSString *reuseIdentifier = @"SectionCell";
7245 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7247 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7249 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7254 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7255 if ([self isEditing])
7258 Section *section = [self sectionAtIndexPath:indexPath];
7260 SectionController *controller = [[[SectionController alloc]
7261 initWithDatabase:database_
7262 section:[section name]
7264 [controller setDelegate:delegate_];
7266 [[self navigationController] pushViewController:controller animated:YES];
7270 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7272 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease];
7273 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7274 [list_ setRowHeight:45.0f];
7275 [(UITableView *) list_ setDataSource:self];
7276 [list_ setDelegate:self];
7277 [[self view] addSubview:list_];
7280 - (void) viewDidLoad {
7281 [super viewDidLoad];
7283 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7286 - (void) releaseSubviews {
7292 [super releaseSubviews];
7295 - (id) initWithDatabase:(Database *)database {
7296 if ((self = [super init]) != nil) {
7297 database_ = database;
7301 - (void) reloadData {
7304 NSArray *packages = [database_ packages];
7306 sections_ = [NSMutableArray arrayWithCapacity:16];
7307 filtered_ = [NSMutableArray arrayWithCapacity:16];
7309 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7312 for (Package *package in packages) {
7313 NSString *name([package section]);
7314 NSString *key(name == nil ? @"" : name);
7318 _profile(SectionsView$reloadData$Section)
7319 section = [sections objectForKey:key];
7320 if (section == nil) {
7321 _profile(SectionsView$reloadData$Section$Allocate)
7322 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7323 [sections setObject:section forKey:key];
7328 [section addToCount];
7330 _profile(SectionsView$reloadData$Filter)
7331 if (![package valid] || ![package visible])
7339 [sections_ addObjectsFromArray:[sections allValues]];
7341 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7343 for (Section *section in (id) sections_) {
7344 size_t count([section row]);
7348 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7349 [section setCount:count];
7350 [filtered_ addObject:section];
7353 [self updateNavigationItem];
7358 - (void) editButtonClicked {
7359 [self setEditing:![self isEditing] animated:YES];
7365 /* Changes Controller {{{ */
7366 @interface ChangesController : CyteViewController <
7367 UITableViewDataSource,
7370 _transient Database *database_;
7372 _H<NSArray> packages_;
7373 _H<NSMutableArray> sections_;
7374 _H<UITableView, 2> list_;
7378 - (id) initWithDatabase:(Database *)database;
7382 @implementation ChangesController
7384 - (NSURL *) navigationURL {
7385 return [NSURL URLWithString:@"cydia://changes"];
7388 - (void) viewDidAppear:(BOOL)animated {
7389 [super viewDidAppear:animated];
7390 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7393 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
7394 NSInteger count([sections_ count]);
7395 return count == 0 ? 1 : count;
7398 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
7399 if ([sections_ count] == 0)
7401 return [[sections_ objectAtIndex:section] name];
7404 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7405 if ([sections_ count] == 0)
7407 return [[sections_ objectAtIndex:section] count];
7410 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7411 @synchronized (database_) {
7412 if ([database_ era] != era_)
7415 NSUInteger sectionIndex([path section]);
7416 if (sectionIndex >= [sections_ count])
7418 Section *section([sections_ objectAtIndex:sectionIndex]);
7419 NSInteger row([path row]);
7420 return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease];
7423 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
7424 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
7426 cell = [[[PackageCell alloc] init] autorelease];
7428 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
7429 [cell setPackage:package asSummary:false];
7433 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
7434 Package *package([self packageAtIndexPath:path]);
7435 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
7436 [view setDelegate:delegate_];
7437 [[self navigationController] pushViewController:view animated:YES];
7441 - (void) refreshButtonClicked {
7442 [delegate_ beginUpdate];
7443 [[self navigationItem] setLeftBarButtonItem:nil animated:YES];
7446 - (void) upgradeButtonClicked {
7447 [delegate_ distUpgrade];
7448 [[self navigationItem] setRightBarButtonItem:nil animated:YES];
7452 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7454 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
7455 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7456 [list_ setRowHeight:73];
7457 [(UITableView *) list_ setDataSource:self];
7458 [list_ setDelegate:self];
7459 [[self view] addSubview:list_];
7462 - (void) viewDidLoad {
7463 [super viewDidLoad];
7465 [[self navigationItem] setTitle:UCLocalize("CHANGES")];
7468 - (void) releaseSubviews {
7474 [super releaseSubviews];
7477 - (id) initWithDatabase:(Database *)database {
7478 if ((self = [super init]) != nil) {
7479 database_ = database;
7483 - (NSMutableArray *) _reloadPackages {
7484 @synchronized (database_) {
7485 era_ = [database_ era];
7486 NSArray *packages([database_ packages]);
7488 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
7491 _profile(ChangesController$_reloadPackages$Filter)
7492 for (Package *package in packages)
7493 if ([package upgradableAndEssential:YES] || [package visible])
7494 CFArrayAppendValue((CFMutableArrayRef) filtered, package);
7497 _profile(ChangesController$_reloadPackages$radixSort)
7498 [filtered radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL];
7505 - (void) _reloadData {
7510 UIProgressHUD *hud([delegate_ addProgressHUD]);
7511 [hud setText:UCLocalize("LOADING")];
7512 //NSLog(@"HUD:%@::%@", delegate_, hud);
7513 packages = [self yieldToSelector:@selector(_reloadPackages)];
7514 [delegate_ removeProgressHUD:hud];
7516 packages = [self _reloadPackages];
7519 @synchronized (database_) {
7520 if (era_ != [database_ era])
7523 packages_ = packages;
7524 sections_ = [NSMutableArray arrayWithCapacity:16];
7526 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7527 Section *ignored = nil;
7528 Section *section = nil;
7532 bool unseens = false;
7534 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7536 for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) {
7537 Package *package = [packages_ objectAtIndex:offset];
7539 BOOL uae = [package upgradableAndEssential:YES];
7543 time_t seen([package seen]);
7545 if (section == nil || last != seen) {
7549 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7552 _profile(ChangesController$reloadData$Allocate)
7553 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7554 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7555 [sections_ addObject:section];
7559 [section addToCount];
7560 } else if ([package ignored]) {
7561 if (ignored == nil) {
7562 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7564 [ignored addToCount];
7567 [upgradable addToCount];
7572 CFRelease(formatter);
7575 Section *last = [sections_ lastObject];
7576 size_t count = [last count];
7577 [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)];
7578 [sections_ removeLastObject];
7581 if ([ignored count] != 0)
7582 [sections_ insertObject:ignored atIndex:0];
7584 [sections_ insertObject:upgradable atIndex:0];
7588 [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc]
7589 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7590 style:UIBarButtonItemStylePlain
7592 action:@selector(upgradeButtonClicked)
7593 ] autorelease]) animated:YES];
7595 [[self navigationItem] setLeftBarButtonItem:([delegate_ updating] ? nil : [[[UIBarButtonItem alloc]
7596 initWithTitle:UCLocalize("REFRESH")
7597 style:UIBarButtonItemStylePlain
7599 action:@selector(refreshButtonClicked)
7600 ] autorelease]) animated:YES];
7605 - (void) reloadData {
7607 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
7612 /* Search Controller {{{ */
7613 @interface SearchController : FilteredPackageListController <
7616 _H<UISearchBar, 1> search_;
7620 - (id) initWithDatabase:(Database *)database query:(NSString *)query;
7621 - (void) reloadData;
7625 @implementation SearchController
7627 - (NSURL *) navigationURL {
7628 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7629 return [NSURL URLWithString:@"cydia://search"];
7631 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [search_ text]]];
7634 - (void) useSearch {
7635 [self setObject:[[search_ text] componentsSeparatedByString:@" "] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7640 - (void) viewWillAppear:(BOOL)animated {
7641 [super viewWillAppear:animated];
7643 if ([self filter] == @selector(isUnfilteredAndSelectedForBy:))
7647 - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
7648 [self setObject:[search_ text] forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7653 - (void) searchBarButtonClicked:(UISearchBar *)searchBar {
7654 [search_ resignFirstResponder];
7658 - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar {
7659 [search_ setText:@""];
7660 [self searchBarButtonClicked:searchBar];
7663 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7664 [self searchBarButtonClicked:searchBar];
7667 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7668 [self setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7672 - (bool) shouldYield {
7676 - (bool) shouldBlock {
7677 return [self filter] == @selector(isUnfilteredAndSearchedForBy:);
7680 - (bool) isSummarized {
7681 return [self filter] == @selector(isUnfilteredAndSelectedForBy:);
7684 - (bool) showsSections {
7688 - (NSMutableArray *) _reloadPackages {
7689 NSMutableArray *packages([super _reloadPackages]);
7690 if ([self filter] == @selector(isUnfilteredAndSearchedForBy:))
7691 [packages radixSortUsingSelector:@selector(rank)];
7695 - (id) initWithDatabase:(Database *)database query:(NSString *)query {
7696 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:[query componentsSeparatedByString:@" "]])) {
7697 search_ = [[[UISearchBar alloc] init] autorelease];
7698 [search_ setDelegate:self];
7701 [search_ setText:query];
7705 - (void) viewDidAppear:(BOOL)animated {
7706 [super viewDidAppear:animated];
7708 if (!searchloaded_) {
7709 searchloaded_ = YES;
7710 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7711 [search_ layoutSubviews];
7712 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7714 UITextField *textField;
7715 if ([search_ respondsToSelector:@selector(searchField)])
7716 textField = [search_ searchField];
7718 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7720 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7721 [textField setEnablesReturnKeyAutomatically:NO];
7722 [[self navigationItem] setTitleView:textField];
7726 - (void) reloadData {
7727 id object([search_ text]);
7728 if ([self filter] == @selector(isUnfilteredAndSearchedForBy:))
7729 object = [object componentsSeparatedByString:@" "];
7731 [self setObject:object];
7737 - (void) didSelectPackage:(Package *)package {
7738 [search_ resignFirstResponder];
7739 [super didSelectPackage:package];
7744 /* Package Settings Controller {{{ */
7745 @interface PackageSettingsController : CyteViewController <
7746 UITableViewDataSource,
7749 _transient Database *database_;
7751 _H<Package> package_;
7752 _H<UITableView, 2> table_;
7753 _H<UISwitch> subscribedSwitch_;
7754 _H<UISwitch> ignoredSwitch_;
7755 _H<UITableViewCell> subscribedCell_;
7756 _H<UITableViewCell> ignoredCell_;
7759 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7763 @implementation PackageSettingsController
7765 - (NSURL *) navigationURL {
7766 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]];
7769 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7770 if (package_ == nil)
7773 if ([package_ installed] == nil)
7779 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7780 if (package_ == nil)
7783 // both sections contain just one item right now.
7787 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7791 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7793 return UCLocalize("SHOW_ALL_CHANGES_EX");
7795 return UCLocalize("IGNORE_UPGRADES_EX");
7798 - (void) onSubscribed:(id)control {
7799 bool value([control isOn]);
7800 if (package_ == nil)
7802 if ([package_ setSubscribed:value])
7803 [delegate_ updateData];
7806 - (void) _updateIgnored {
7807 const char *package([name_ UTF8String]);
7808 bool on([ignoredSwitch_ isOn]);
7810 pid_t pid(ExecFork());
7812 FILE *dpkg(popen("dpkg --set-selections", "w"));
7813 fwrite(package, strlen(package), 1, dpkg);
7816 fwrite(" hold\n", 6, 1, dpkg);
7818 fwrite(" install\n", 9, 1, dpkg);
7828 int result(waitpid(pid, &status, 0));
7831 _assert(result == pid);
7837 - (void) onIgnored:(id)control {
7838 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7839 [invocation setTarget:self];
7840 [invocation setSelector:@selector(_updateIgnored)];
7842 [delegate_ reloadDataWithInvocation:invocation];
7845 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7846 if (package_ == nil)
7849 switch ([indexPath section]) {
7850 case 0: return subscribedCell_;
7851 case 1: return ignoredCell_;
7860 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7862 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
7863 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7864 [(UITableView *) table_ setDataSource:self];
7865 [table_ setDelegate:self];
7866 [[self view] addSubview:table_];
7868 subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7869 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7870 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7872 ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7873 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7874 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7876 subscribedCell_ = [[[UITableViewCell alloc] init] autorelease];
7877 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7878 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7879 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7881 ignoredCell_ = [[[UITableViewCell alloc] init] autorelease];
7882 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7883 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7884 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7887 - (void) viewDidLoad {
7888 [super viewDidLoad];
7890 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7893 - (void) releaseSubviews {
7895 subscribedCell_ = nil;
7897 ignoredSwitch_ = nil;
7898 subscribedSwitch_ = nil;
7900 [super releaseSubviews];
7903 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7904 if ((self = [super init]) != nil) {
7905 database_ = database;
7910 - (void) reloadData {
7913 package_ = [database_ packageWithName:name_];
7915 if (package_ != nil) {
7916 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7917 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7918 } // XXX: what now, G?
7920 [table_ reloadData];
7926 /* Installed Controller {{{ */
7927 @interface InstalledController : FilteredPackageListController {
7931 - (id) initWithDatabase:(Database *)database;
7933 - (void) updateRoleButton;
7934 - (void) queueStatusDidChange;
7938 @implementation InstalledController
7940 - (NSURL *) navigationURL {
7941 return [NSURL URLWithString:@"cydia://installed"];
7944 - (id) initWithDatabase:(Database *)database {
7945 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndUnfiltered:) with:[NSNumber numberWithBool:YES]]) != nil) {
7946 [self updateRoleButton];
7947 [self queueStatusDidChange];
7952 - (void) queueButtonClicked {
7957 - (void) queueStatusDidChange {
7961 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7962 initWithTitle:UCLocalize("QUEUE")
7963 style:UIBarButtonItemStyleDone
7965 action:@selector(queueButtonClicked)
7968 [[self navigationItem] setLeftBarButtonItem:nil];
7974 - (void) updateRoleButton {
7975 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"])
7976 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
7977 initWithTitle:(expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE"))
7978 style:(expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
7980 action:@selector(roleButtonClicked)
7984 - (void) roleButtonClicked {
7985 [self setObject:[NSNumber numberWithBool:expert_]];
7989 [self updateRoleButton];
7995 /* Source Cell {{{ */
7996 @interface SourceCell : CyteTableViewCell <
7997 CyteTableViewCellDelegate
8000 _H<NSString> origin_;
8001 _H<NSString> label_;
8004 - (void) setSource:(Source *)source;
8008 @implementation SourceCell
8010 - (void) _setImage:(UIImage *)image {
8012 [content_ setNeedsDisplay];
8015 - (void) _setSource:(NSURL *) url {
8016 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
8018 if (NSData *data = [NSURLConnection
8019 sendSynchronousRequest:[NSURLRequest
8021 //cachePolicy:NSURLRequestUseProtocolCachePolicy
8025 returningResponse:NULL
8028 if (UIImage *image = [UIImage imageWithData:data])
8029 [self performSelectorOnMainThread:@selector(_setImage:) withObject:image waitUntilDone:NO];
8034 - (void) setSource:(Source *)source {
8035 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
8037 origin_ = [source name];
8038 label_ = [source rooturi];
8040 [content_ setNeedsDisplay];
8042 if (NSURL *url = [source iconURL])
8043 [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url];
8046 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8047 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8048 UIView *content([self contentView]);
8049 CGRect bounds([content bounds]);
8051 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
8052 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8053 [content_ setBackgroundColor:[UIColor whiteColor]];
8054 [content addSubview:content_];
8056 [content_ setDelegate:self];
8057 [content_ setOpaque:YES];
8059 [[content_ layer] setContentsGravity:kCAGravityTopLeft];
8063 - (NSString *) accessibilityLabel {
8067 - (void) drawContentRect:(CGRect)rect {
8068 bool highlighted(highlighted_);
8069 float width(rect.size.width);
8073 rect.size = [(UIImage *) icon_ size];
8075 while (rect.size.width > 32 || rect.size.height > 32) {
8076 rect.size.width /= 2;
8077 rect.size.height /= 2;
8080 rect.origin.x = 25 - rect.size.width / 2;
8081 rect.origin.y = 25 - rect.size.height / 2;
8083 [icon_ drawInRect:rect];
8091 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 60) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
8095 [label_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 75) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
8100 /* Source Controller {{{ */
8101 @interface SourceController : FilteredPackageListController {
8102 _transient Source *source_;
8106 - (id) initWithDatabase:(Database *)database source:(Source *)source;
8110 @implementation SourceController
8112 - (NSURL *) navigationURL {
8113 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]];
8116 - (id) initWithDatabase:(Database *)database source:(Source *)source {
8117 if ((self = [super initWithDatabase:database title:[source label] filter:@selector(isVisibleInSource:) with:source]) != nil) {
8119 key_ = [source key];
8123 - (void) reloadData {
8124 source_ = [database_ sourceWithKey:key_];
8125 key_ = [source_ key];
8126 [self setObject:source_];
8128 [[self navigationItem] setTitle:[source_ label]];
8135 /* Sources Controller {{{ */
8136 @interface SourcesController : CyteViewController <
8137 UITableViewDataSource,
8140 _transient Database *database_;
8143 _H<UITableView, 2> list_;
8144 _H<NSMutableArray> sources_;
8148 _H<UIProgressHUD> hud_;
8151 //NSURLConnection *installer_;
8152 NSURLConnection *trivial_;
8153 NSURLConnection *trivial_bz2_;
8154 NSURLConnection *trivial_gz_;
8155 //NSURLConnection *automatic_;
8160 - (id) initWithDatabase:(Database *)database;
8161 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
8165 @implementation SourcesController
8167 - (void) _releaseConnection:(NSURLConnection *)connection {
8168 if (connection != nil) {
8169 [connection cancel];
8170 //[connection setDelegate:nil];
8171 [connection release];
8176 //[self _releaseConnection:installer_];
8177 [self _releaseConnection:trivial_];
8178 [self _releaseConnection:trivial_gz_];
8179 [self _releaseConnection:trivial_bz2_];
8180 //[self _releaseConnection:automatic_];
8185 - (NSURL *) navigationURL {
8186 return [NSURL URLWithString:@"cydia://sources"];
8189 - (void) viewDidAppear:(BOOL)animated {
8190 [super viewDidAppear:animated];
8191 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8194 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8198 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8202 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8203 return [sources_ count];
8206 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8207 @synchronized (database_) {
8208 if ([database_ era] != era_)
8211 return [sources_ objectAtIndex:[indexPath row]];
8214 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8215 static NSString *cellIdentifier = @"SourceCell";
8217 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8218 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8219 [cell setSource:[self sourceAtIndexPath:indexPath]];
8220 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8225 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8226 Source *source = [self sourceAtIndexPath:indexPath];
8228 SourceController *controller = [[[SourceController alloc]
8229 initWithDatabase:database_
8233 [controller setDelegate:delegate_];
8235 [[self navigationController] pushViewController:controller animated:YES];
8238 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8239 Source *source = [self sourceAtIndexPath:indexPath];
8240 return [source record] != nil;
8243 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8244 if (editingStyle == UITableViewCellEditingStyleDelete) {
8245 Source *source = [self sourceAtIndexPath:indexPath];
8246 [Sources_ removeObjectForKey:[source key]];
8247 [delegate_ syncData];
8252 [delegate_ addTrivialSource:href_];
8253 [delegate_ syncData];
8256 - (NSString *) getWarning {
8257 NSString *href(href_);
8258 NSRange colon([href rangeOfString:@"://"]);
8259 if (colon.location != NSNotFound)
8260 href = [href substringFromIndex:(colon.location + 3)];
8261 href = [href stringByAddingPercentEscapes];
8262 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8263 href = [href stringByCachingURLWithCurrentCDN];
8265 NSURL *url([NSURL URLWithString:href]);
8267 NSStringEncoding encoding;
8268 NSError *error(nil);
8270 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8271 return [warning length] == 0 ? nil : warning;
8275 - (void) _endConnection:(NSURLConnection *)connection {
8276 // XXX: the memory management in this method is horribly awkward
8278 NSURLConnection **field = NULL;
8279 if (connection == trivial_)
8281 else if (connection == trivial_bz2_)
8282 field = &trivial_bz2_;
8283 else if (connection == trivial_gz_)
8284 field = &trivial_gz_;
8285 _assert(field != NULL);
8286 [connection release];
8291 trivial_bz2_ == nil &&
8294 [delegate_ releaseNetworkActivityIndicator];
8296 [delegate_ removeProgressHUD:hud_];
8300 if (NSString *warning = [self yieldToSelector:@selector(getWarning)]) {
8301 UIAlertView *alert = [[[UIAlertView alloc]
8302 initWithTitle:UCLocalize("SOURCE_WARNING")
8305 cancelButtonTitle:UCLocalize("CANCEL")
8307 UCLocalize("ADD_ANYWAY"),
8311 [alert setContext:@"warning"];
8312 [alert setNumberOfRows:1];
8315 // XXX: there used to be this great mechanism called yieldToPopup... who deleted it?
8321 } else if (error_ != nil) {
8322 UIAlertView *alert = [[[UIAlertView alloc]
8323 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8324 message:[error_ localizedDescription]
8326 cancelButtonTitle:UCLocalize("OK")
8327 otherButtonTitles:nil
8330 [alert setContext:@"urlerror"];
8333 UIAlertView *alert = [[[UIAlertView alloc]
8334 initWithTitle:UCLocalize("NOT_REPOSITORY")
8335 message:UCLocalize("NOT_REPOSITORY_EX")
8337 cancelButtonTitle:UCLocalize("OK")
8338 otherButtonTitles:nil
8341 [alert setContext:@"trivial"];
8350 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8351 switch ([response statusCode]) {
8357 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8358 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8360 [self _endConnection:connection];
8363 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8364 [self _endConnection:connection];
8367 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8368 NSURL *url([NSURL URLWithString:href]);
8370 NSMutableURLRequest *request = [NSMutableURLRequest
8372 cachePolicy:NSURLRequestUseProtocolCachePolicy
8373 timeoutInterval:120.0
8376 [request setHTTPMethod:method];
8378 if (Machine_ != NULL)
8379 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8381 if ([url isCydiaSecure]) {
8382 if (UniqueID_ != nil) {
8383 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8384 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
8388 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8391 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8392 NSString *context([alert context]);
8394 if ([context isEqualToString:@"source"]) {
8397 NSString *href = [[alert textField] text];
8399 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
8401 if (![href hasSuffix:@"/"])
8402 href_ = [href stringByAppendingString:@"/"];
8406 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
8407 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8408 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8409 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
8413 // XXX: this is stupid
8414 hud_ = [delegate_ addProgressHUD];
8415 [hud_ setText:UCLocalize("VERIFYING_URL")];
8416 [delegate_ retainNetworkActivityIndicator];
8425 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8426 } else if ([context isEqualToString:@"trivial"])
8427 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8428 else if ([context isEqualToString:@"urlerror"])
8429 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8430 else if ([context isEqualToString:@"warning"]) {
8444 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8449 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8451 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
8452 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8453 [list_ setRowHeight:53];
8454 [(UITableView *) list_ setDataSource:self];
8455 [list_ setDelegate:self];
8456 [[self view] addSubview:list_];
8459 - (void) viewDidLoad {
8460 [super viewDidLoad];
8462 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8463 [self updateButtonsForEditingStatus:NO animated:NO];
8466 - (void) releaseSubviews {
8471 [super releaseSubviews];
8474 - (id) initWithDatabase:(Database *)database {
8475 if ((self = [super init]) != nil) {
8476 database_ = database;
8480 - (void) reloadData {
8483 @synchronized (database_) {
8484 era_ = [database_ era];
8487 if ([database_ popErrorWithTitle:UCLocalize("SOURCES") forOperation:list.ReadMainList()])
8490 sources_ = [NSMutableArray arrayWithCapacity:16];
8491 [sources_ addObjectsFromArray:[database_ sources]];
8493 [sources_ sortUsingSelector:@selector(compareByName:)];
8496 int count([sources_ count]);
8498 for (int i = 0; i != count; i++) {
8499 if ([[sources_ objectAtIndex:i] record] == nil)
8504 [list_ setEditing:NO];
8505 [self updateButtonsForEditingStatus:NO animated:NO];
8509 - (void) showAddSourcePrompt {
8510 UIAlertView *alert = [[[UIAlertView alloc]
8511 initWithTitle:UCLocalize("ENTER_APT_URL")
8514 cancelButtonTitle:UCLocalize("CANCEL")
8516 UCLocalize("ADD_SOURCE"),
8520 [alert setContext:@"source"];
8522 [alert setNumberOfRows:1];
8523 [alert addTextFieldWithValue:@"http://" label:@""];
8525 UITextInputTraits *traits = [[alert textField] textInputTraits];
8526 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8527 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8528 [traits setKeyboardType:UIKeyboardTypeURL];
8529 // XXX: UIReturnKeyDone
8530 [traits setReturnKeyType:UIReturnKeyNext];
8535 - (void) addButtonClicked {
8536 [self showAddSourcePrompt];
8539 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
8540 [[self navigationItem] setLeftBarButtonItem:(editing ? [[[UIBarButtonItem alloc]
8541 initWithTitle:UCLocalize("ADD")
8542 style:UIBarButtonItemStylePlain
8544 action:@selector(addButtonClicked)
8545 ] autorelease] : [[self navigationItem] backBarButtonItem]) animated:animated];
8547 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8548 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8549 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8551 action:@selector(editButtonClicked)
8552 ] autorelease] animated:animated];
8554 if (IsWildcat_ && !editing)
8555 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8556 initWithTitle:UCLocalize("SETTINGS")
8557 style:UIBarButtonItemStylePlain
8559 action:@selector(settingsButtonClicked)
8563 - (void) settingsButtonClicked {
8564 [delegate_ showSettings];
8567 - (void) editButtonClicked {
8568 [list_ setEditing:![list_ isEditing] animated:YES];
8570 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
8576 /* Settings Controller {{{ */
8577 @interface SettingsController : CyteViewController <
8578 UITableViewDataSource,
8581 _transient Database *database_;
8582 // XXX: ok, "roledelegate_"?...
8583 _transient id roledelegate_;
8584 _H<UITableView, 2> table_;
8585 _H<UISegmentedControl> segment_;
8586 _H<UIView> container_;
8589 - (void) showDoneButton;
8590 - (void) resizeSegmentedControl;
8594 @implementation SettingsController
8597 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8599 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
8600 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8601 [table_ setDelegate:self];
8602 [(UITableView *) table_ setDataSource:self];
8603 [[self view] addSubview:table_];
8605 NSArray *items = [NSArray arrayWithObjects:
8607 UCLocalize("HACKER"),
8608 UCLocalize("DEVELOPER"),
8610 segment_ = [[[UISegmentedControl alloc] initWithItems:items] autorelease];
8611 [segment_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin)];
8612 container_ = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)] autorelease];
8613 [container_ addSubview:segment_];
8616 - (void) viewDidLoad {
8617 [super viewDidLoad];
8619 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
8622 if ([Role_ isEqualToString:@"User"]) index = 0;
8623 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
8624 if ([Role_ isEqualToString:@"Developer"]) index = 2;
8626 [segment_ setSelectedSegmentIndex:index];
8627 [self showDoneButton];
8630 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
8631 [self resizeSegmentedControl];
8634 - (void) releaseSubviews {
8639 [super releaseSubviews];
8642 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
8643 if ((self = [super init]) != nil) {
8644 database_ = database;
8645 roledelegate_ = delegate;
8649 - (void) resizeSegmentedControl {
8650 CGFloat width = [[self view] frame].size.width;
8651 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
8654 - (void) viewWillAppear:(BOOL)animated {
8655 [super viewWillAppear:animated];
8657 [self resizeSegmentedControl];
8660 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
8661 [self resizeSegmentedControl];
8664 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
8665 [self resizeSegmentedControl];
8669 NSString *role(nil);
8671 switch ([segment_ selectedSegmentIndex]) {
8672 case 0: role = @"User"; break;
8673 case 1: role = @"Hacker"; break;
8674 case 2: role = @"Developer"; break;
8679 if (![role isEqualToString:Role_]) {
8680 bool rolling(Role_ == nil);
8683 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
8687 [Metadata_ setObject:Settings_ forKey:@"Settings"];
8691 [roledelegate_ loadData];
8693 [roledelegate_ updateData];
8697 - (void) segmentChanged:(UISegmentedControl *)control {
8698 [self showDoneButton];
8701 - (void) saveAndClose {
8704 [[self navigationItem] setRightBarButtonItem:nil];
8705 [[self navigationController] dismissModalViewControllerAnimated:YES];
8708 - (void) doneButtonClicked {
8709 UIActivityIndicatorView *spinner = [[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20.0f, 20.0f)] autorelease];
8710 [spinner startAnimating];
8711 UIBarButtonItem *spinItem = [[[UIBarButtonItem alloc] initWithCustomView:spinner] autorelease];
8712 [[self navigationItem] setRightBarButtonItem:spinItem];
8714 [self performSelector:@selector(saveAndClose) withObject:nil afterDelay:0];
8717 - (void) showDoneButton {
8718 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8719 initWithTitle:UCLocalize("DONE")
8720 style:UIBarButtonItemStyleDone
8722 action:@selector(doneButtonClicked)
8723 ] autorelease] animated:([[self navigationItem] rightBarButtonItem] == nil)];
8726 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8727 // XXX: For not having a single cell in the table, this sure is a lot of sections.
8731 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8735 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8736 return nil; // This method is required by the protocol.
8739 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
8741 return UCLocalize("ROLE_EX");
8743 return [NSString stringWithFormat:
8744 @"%@: %@\n%@: %@\n%@: %@",
8745 UCLocalize("USER"), UCLocalize("USER_EX"),
8746 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
8747 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
8752 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
8753 return section == 3 ? 44.0f : 0;
8756 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
8757 return section == 3 ? container_ : nil;
8760 - (void) reloadData {
8763 [table_ reloadData];
8768 /* Stash Controller {{{ */
8769 @interface StashController : CyteViewController {
8770 _H<UIActivityIndicatorView> spinner_;
8771 _H<UILabel> status_;
8772 _H<UILabel> caption_;
8777 @implementation StashController
8780 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8781 [[self view] setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8783 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8784 CGRect spinrect = [spinner_ frame];
8785 spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2);
8786 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8787 [spinner_ setFrame:spinrect];
8788 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8789 [[self view] addSubview:spinner_];
8790 [spinner_ startAnimating];
8793 captrect.size.width = [[self view] frame].size.width;
8794 captrect.size.height = 40.0f;
8795 captrect.origin.x = 0;
8796 captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2);
8797 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8798 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8799 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8800 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8801 [caption_ setTextColor:[UIColor whiteColor]];
8802 [caption_ setBackgroundColor:[UIColor clearColor]];
8803 [caption_ setShadowColor:[UIColor blackColor]];
8804 [caption_ setTextAlignment:UITextAlignmentCenter];
8805 [[self view] addSubview:caption_];
8808 statusrect.size.width = [[self view] frame].size.width;
8809 statusrect.size.height = 30.0f;
8810 statusrect.origin.x = 0;
8811 statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height;
8812 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8813 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8814 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8815 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8816 [status_ setTextColor:[UIColor whiteColor]];
8817 [status_ setBackgroundColor:[UIColor clearColor]];
8818 [status_ setShadowColor:[UIColor blackColor]];
8819 [status_ setTextAlignment:UITextAlignmentCenter];
8820 [[self view] addSubview:status_];
8823 - (void) releaseSubviews {
8828 [super releaseSubviews];
8834 @interface CYURLCache : SDURLCache {
8839 @implementation CYURLCache
8841 - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request {
8844 else if ([event isEqualToString:@"no-cache"])
8846 else if ([event isEqualToString:@"store"])
8848 else if ([event isEqualToString:@"invalid"])
8850 else if ([event isEqualToString:@"memory"])
8852 else if ([event isEqualToString:@"disk"])
8854 else if ([event isEqualToString:@"miss"])
8857 NSLog(@"%@: %@", event, [[request URL] absoluteString]);
8861 - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request {
8862 if (NSURLResponse *response = [cached response])
8863 if (NSString *mime = [response MIMEType])
8864 if ([mime isEqualToString:@"text/cache-manifest"]) {
8865 NSURL *url([response URL]);
8868 NSLog(@"###: %@", [url absoluteString]);
8871 @synchronized (HostConfig_) {
8872 [CachedURLs_ addObject:url];
8876 [super storeCachedResponse:cached forRequest:request];
8881 @interface Cydia : UIApplication <
8882 ConfirmationControllerDelegate,
8885 UINavigationControllerDelegate,
8886 UITabBarControllerDelegate
8888 _H<UIWindow> window_;
8889 _H<CYTabBarController> tabbar_;
8890 _H<CydiaLoadingViewController> emulated_;
8892 _H<NSMutableArray> essential_;
8893 _H<NSMutableArray> broken_;
8895 Database *database_;
8897 _H<NSURL> starturl_;
8902 _H<StashController> stash_;
8911 @implementation Cydia
8913 - (void) beginUpdate {
8914 [tabbar_ beginUpdate];
8918 return [tabbar_ updating];
8922 if ([broken_ count] != 0) {
8923 int count = [broken_ count];
8925 UIAlertView *alert = [[[UIAlertView alloc]
8926 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8927 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8929 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
8931 UCLocalize("TEMPORARY_IGNORE"),
8935 [alert setContext:@"fixhalf"];
8936 [alert setNumberOfRows:2];
8938 } else if (!Ignored_ && [essential_ count] != 0) {
8939 int count = [essential_ count];
8941 UIAlertView *alert = [[[UIAlertView alloc]
8942 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8943 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8945 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8947 UCLocalize("UPGRADE_ESSENTIAL"),
8948 UCLocalize("COMPLETE_UPGRADE"),
8952 [alert setContext:@"upgrade"];
8957 - (void) returnToCydia {
8961 - (void) _saveConfig {
8967 NSString *error(nil);
8969 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
8971 NSError *error(nil);
8972 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
8973 NSLog(@"failure to save metadata data: %@", error);
8978 NSLog(@"failure to serialize metadata: %@", error);
8982 CydiaWriteSources();
8985 // Navigation controller for the queuing badge.
8986 - (UINavigationController *) queueNavigationController {
8987 NSArray *controllers = [tabbar_ viewControllers];
8988 return [controllers objectAtIndex:3];
8991 - (void) unloadData {
8992 [tabbar_ unloadData];
8995 - (void) _updateData {
8999 UINavigationController *navigation = [self queueNavigationController];
9001 id queuedelegate = nil;
9002 if ([[navigation viewControllers] count] > 0)
9003 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
9005 [queuedelegate queueStatusDidChange];
9006 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
9009 - (void) _refreshIfPossible:(NSDate *)update {
9010 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9012 bool recently = false;
9013 if (update != nil) {
9014 NSTimeInterval interval([update timeIntervalSinceNow]);
9015 if (interval <= 0 && interval > -(15*60))
9019 // Don't automatic refresh if:
9020 // - We already refreshed recently.
9021 // - We already auto-refreshed this launch.
9022 // - Auto-refresh is disabled.
9023 if (recently || loaded_ || ManualRefresh) {
9024 // If we are cancelling, we need to make sure it knows it's already loaded.
9027 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9029 // We are going to load, so remember that.
9032 SCNetworkReachabilityFlags flags; {
9033 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(NULL, "cydia.saurik.com"));
9034 SCNetworkReachabilityGetFlags(reachability, &flags);
9035 CFRelease(reachability);
9038 // XXX: this elaborate mess is what Apple is using to determine this? :(
9039 // XXX: do we care if the user has to intervene? maybe that's ok?
9041 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
9042 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
9043 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
9044 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
9045 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
9046 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
9050 // If we can reach the server, auto-refresh!
9052 [tabbar_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
9058 - (void) refreshIfPossible {
9059 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible:) toTarget:self withObject:[Metadata_ objectForKey:@"LastUpdate"]];
9062 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9063 @synchronized (self) {
9064 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9065 [hud setText:UCLocalize("RELOADING_DATA")];
9067 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9071 [essential_ removeAllObjects];
9072 [broken_ removeAllObjects];
9074 NSArray *packages([database_ packages]);
9075 for (Package *package in packages) {
9077 [broken_ addObject:package];
9078 if ([package upgradableAndEssential:NO]) {
9079 if ([package essential])
9080 [essential_ addObject:package];
9085 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9088 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9089 [changesItem setBadgeValue:badge];
9090 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9091 [self setApplicationIconBadgeNumber:changes];
9094 [changesItem setBadgeValue:nil];
9095 [changesItem setAnimatedBadge:NO];
9096 [self setApplicationIconBadgeNumber:0];
9102 [self removeProgressHUD:hud];
9105 - (void) updateData {
9111 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9114 - (void) disemulate {
9115 if (emulated_ == nil)
9118 [window_ addSubview:[tabbar_ view]];
9119 [[emulated_ view] removeFromSuperview];
9121 [window_ setUserInteractionEnabled:YES];
9124 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9125 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9127 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9129 UIViewController *parent;
9130 if (emulated_ == nil)
9139 [parent presentModalViewController:navigation animated:YES];
9142 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9143 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9145 if (navigation != nil)
9146 [navigation pushViewController:progress animated:YES];
9148 [self presentModalViewController:progress force:YES];
9150 [progress invoke:invocation withTitle:title];
9154 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9155 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9158 - (void) repairWithInvocation:(NSInvocation *)invocation {
9160 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9164 - (void) repairWithSelector:(SEL)selector {
9165 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9168 - (void) reloadData {
9169 [self reloadDataWithInvocation:nil];
9170 if ([database_ progressDelegate] == nil)
9176 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9179 - (void) addSource:(NSDictionary *) source {
9180 CydiaAddSource(source);
9183 - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections {
9184 CydiaAddSource(href, distribution, sections);
9187 - (void) addTrivialSource:(NSString *)href {
9188 CydiaAddSource(href, @"./");
9191 - (void) updateValues {
9196 pkgProblemResolver *resolver = [database_ resolver];
9198 resolver->InstallProtect();
9199 if (!resolver->Resolve(true))
9204 // XXX: this is a really crappy way of doing this.
9205 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9206 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9207 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9208 if ([tabbar_ updating])
9209 [tabbar_ cancelUpdate];
9211 if (![database_ prepare])
9214 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9215 [page setDelegate:self];
9216 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9219 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9220 [tabbar_ presentModalViewController:confirm_ animated:YES];
9226 @synchronized (self) {
9231 - (void) clearPackage:(Package *)package {
9232 @synchronized (self) {
9239 - (void) installPackages:(NSArray *)packages {
9240 @synchronized (self) {
9241 for (Package *package in packages)
9248 - (void) installPackage:(Package *)package {
9249 @synchronized (self) {
9256 - (void) removePackage:(Package *)package {
9257 @synchronized (self) {
9264 - (void) distUpgrade {
9265 @synchronized (self) {
9266 if (![database_ upgrade])
9273 [database_ perform];
9274 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9277 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9280 [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"];
9282 [self refreshIfPossible];
9285 - (void) showSettings {
9286 [self presentModalViewController:[[[SettingsController alloc] initWithDatabase:database_ delegate:self] autorelease] force:NO];
9289 - (void) retainNetworkActivityIndicator {
9290 if (activity_++ == 0)
9291 [self setNetworkActivityIndicatorVisible:YES];
9294 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9298 - (void) releaseNetworkActivityIndicator {
9299 if (--activity_ == 0)
9300 [self setNetworkActivityIndicatorVisible:NO];
9303 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9308 - (void) cancelAndClear:(bool)clear {
9309 @synchronized (self) {
9321 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9322 NSString *context([alert context]);
9324 if ([context isEqualToString:@"conffile"]) {
9325 FILE *input = [database_ input];
9326 if (button == [alert cancelButtonIndex])
9327 fprintf(input, "N\n");
9328 else if (button == [alert firstOtherButtonIndex])
9329 fprintf(input, "Y\n");
9332 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9333 } else if ([context isEqualToString:@"fixhalf"]) {
9334 if (button == [alert cancelButtonIndex]) {
9335 @synchronized (self) {
9336 for (Package *broken in (id) broken_) {
9339 NSString *id = [broken id];
9340 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
9341 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
9342 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
9343 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
9349 } else if (button == [alert firstOtherButtonIndex]) {
9350 [broken_ removeAllObjects];
9354 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9355 } else if ([context isEqualToString:@"upgrade"]) {
9356 if (button == [alert firstOtherButtonIndex]) {
9357 @synchronized (self) {
9358 for (Package *essential in (id) essential_)
9359 [essential install];
9364 } else if (button == [alert firstOtherButtonIndex] + 1) {
9366 } else if (button == [alert cancelButtonIndex]) {
9370 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9374 - (void) system:(NSString *)command {
9375 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9378 system([command UTF8String]);
9384 - (void) applicationWillSuspend {
9386 [super applicationWillSuspend];
9389 - (BOOL) isSafeToSuspend {
9392 NSLog(@"isSafeToSuspend: locked_ != 0");
9397 // Use external process status API internally.
9398 // This is probably a really bad idea.
9399 // XXX: what is the point of this? does this solve anything at all?
9400 uint64_t status = 0;
9402 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
9403 notify_get_state(notify_token, &status);
9404 notify_cancel(notify_token);
9409 NSLog(@"isSafeToSuspend: status != 0");
9415 NSLog(@"isSafeToSuspend: -> true");
9420 - (void) applicationSuspend:(__GSEvent *)event {
9421 if ([self isSafeToSuspend])
9422 [super applicationSuspend:event];
9425 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9426 if ([self isSafeToSuspend])
9427 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9430 - (void) _setSuspended:(BOOL)value {
9431 if ([self isSafeToSuspend])
9432 [super _setSuspended:value];
9435 - (UIProgressHUD *) addProgressHUD {
9436 UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]);
9437 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9439 [window_ setUserInteractionEnabled:NO];
9441 UIViewController *target(tabbar_);
9442 if (UIViewController *modal = [target modalViewController])
9445 [hud showInView:[target view]];
9451 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9454 [hud removeFromSuperview];
9455 [window_ setUserInteractionEnabled:YES];
9458 - (CyteViewController *) pageForPackage:(NSString *)name {
9459 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name] autorelease];
9462 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external {
9463 NSString *scheme([[url scheme] lowercaseString]);
9464 if ([[url absoluteString] length] <= [scheme length] + 3)
9466 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9467 NSArray *components([path pathComponents]);
9469 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"])
9470 return [self pageForPackage:[components objectAtIndex:1]];
9472 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9475 NSString *base([components objectAtIndex:0]);
9477 CyteViewController *controller = nil;
9479 if ([base isEqualToString:@"url"]) {
9480 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9481 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9482 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9483 } else if (!external && [components count] == 1) {
9484 if ([base isEqualToString:@"manage"]) {
9485 controller = [[[ManageController alloc] init] autorelease];
9488 if ([base isEqualToString:@"sources"]) {
9489 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9492 if ([base isEqualToString:@"home"]) {
9493 controller = [[[HomeController alloc] init] autorelease];
9496 if ([base isEqualToString:@"sections"]) {
9497 controller = [[[SectionsController alloc] initWithDatabase:database_] autorelease];
9500 if ([base isEqualToString:@"search"]) {
9501 controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease];
9504 if ([base isEqualToString:@"changes"]) {
9505 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9508 if ([base isEqualToString:@"installed"]) {
9509 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9511 } else if ([components count] == 2) {
9512 NSString *argument = [components objectAtIndex:1];
9514 if ([base isEqualToString:@"package"]) {
9515 controller = [self pageForPackage:argument];
9518 if (!external && [base isEqualToString:@"search"]) {
9519 controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease];
9522 if (!external && [base isEqualToString:@"sections"]) {
9523 if ([argument isEqualToString:@"all"])
9525 controller = [[[SectionController alloc] initWithDatabase:database_ section:argument] autorelease];
9528 if (!external && [base isEqualToString:@"sources"]) {
9529 if ([argument isEqualToString:@"add"]) {
9530 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9531 [(SourcesController *)controller showAddSourcePrompt];
9533 Source *source = [database_ sourceWithKey:[argument stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
9534 controller = [[[SourceController alloc] initWithDatabase:database_ source:source] autorelease];
9538 if (!external && [base isEqualToString:@"launch"]) {
9539 [self launchApplicationWithIdentifier:argument suspended:NO];
9542 } else if (!external && [components count] == 3) {
9543 NSString *arg1 = [components objectAtIndex:1];
9544 NSString *arg2 = [components objectAtIndex:2];
9546 if ([base isEqualToString:@"package"]) {
9547 if ([arg2 isEqualToString:@"settings"]) {
9548 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9549 } else if ([arg2 isEqualToString:@"files"]) {
9550 if (Package *package = [database_ packageWithName:arg1]) {
9551 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9552 [(FileTable *)controller setPackage:package];
9558 [controller setDelegate:self];
9562 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9563 CyteViewController *page([self pageForURL:url forExternal:external]);
9566 UINavigationController *nav = [[[UINavigationController alloc] init] autorelease];
9567 [nav setViewControllers:[NSArray arrayWithObject:page]];
9568 [tabbar_ setUnselectedViewController:nav];
9574 - (void) applicationOpenURL:(NSURL *)url {
9575 [super applicationOpenURL:url];
9580 [self openCydiaURL:url forExternal:YES];
9583 - (void) applicationWillResignActive:(UIApplication *)application {
9584 // Stop refreshing if you get a phone call or lock the device.
9585 if ([tabbar_ updating])
9586 [tabbar_ cancelUpdate];
9588 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9589 [super applicationWillResignActive:application];
9592 - (void) saveState {
9593 [Metadata_ setObject:[tabbar_ navigationURLCollection] forKey:@"InterfaceState"];
9594 [Metadata_ setObject:[NSDate date] forKey:@"LastClosed"];
9595 [Metadata_ setObject:[NSNumber numberWithInt:[tabbar_ selectedIndex]] forKey:@"InterfaceIndex"];
9601 - (void) applicationWillTerminate:(UIApplication *)application {
9605 - (void) setConfigurationData:(NSString *)data {
9606 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
9608 if (!conffile_r(data)) {
9609 lprintf("E:invalid conffile\n");
9613 NSString *ofile = conffile_r[1];
9614 //NSString *nfile = conffile_r[2];
9616 UIAlertView *alert = [[[UIAlertView alloc]
9617 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9618 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9620 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9622 UCLocalize("ACCEPT_NEW_COPY"),
9623 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9627 [alert setContext:@"conffile"];
9628 [alert setNumberOfRows:2];
9632 - (void) addStashController {
9634 stash_ = [[[StashController alloc] init] autorelease];
9635 [window_ addSubview:[stash_ view]];
9638 - (void) removeStashController {
9639 [[stash_ view] removeFromSuperview];
9645 [self setIdleTimerDisabled:YES];
9647 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9648 UpdateExternalStatus(1);
9649 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
9650 UpdateExternalStatus(0);
9652 [self removeStashController];
9654 if (ExecFork() == 0) {
9655 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9656 perror("launchctl stop");
9660 - (void) setupViewControllers {
9661 tabbar_ = [[[CYTabBarController alloc] initWithDatabase:database_] autorelease];
9663 NSMutableArray *items([NSMutableArray arrayWithObjects:
9664 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease],
9665 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:0] autorelease],
9666 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:0] autorelease],
9667 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:0] autorelease],
9671 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:0] autorelease] atIndex:3];
9672 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9674 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9677 NSMutableArray *controllers([NSMutableArray array]);
9678 for (UITabBarItem *item in items) {
9679 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9680 [controller setTabBarItem:item];
9681 [controllers addObject:controller];
9683 [tabbar_ setViewControllers:controllers];
9685 [tabbar_ setUpdateDelegate:self];
9688 - (void) _sendMemoryWarningNotification {
9689 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]];
9692 - (void) _sendMemoryWarningNotifications {
9694 [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO];
9699 - (void) applicationDidFinishLaunching:(id)unused {
9700 //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil];
9703 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9704 [self setApplicationSupportsShakeToEdit:NO];
9706 @synchronized (HostConfig_) {
9707 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9710 [NSURLCache setSharedURLCache:[[[CYURLCache alloc]
9711 initWithMemoryCapacity:524288
9712 diskCapacity:10485760
9713 diskPath:[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia/SDURLCache", @"/var/root"]
9716 [CydiaWebViewController _initialize];
9718 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9720 // this would disallow http{,s} URLs from accessing this data
9721 //[WebView registerURLSchemeAsLocal:@"cydia"];
9723 Font12_ = [UIFont systemFontOfSize:12];
9724 Font12Bold_ = [UIFont boldSystemFontOfSize:12];
9725 Font14_ = [UIFont systemFontOfSize:14];
9726 Font18Bold_ = [UIFont boldSystemFontOfSize:18];
9727 Font22Bold_ = [UIFont boldSystemFontOfSize:22];
9729 essential_ = [NSMutableArray arrayWithCapacity:4];
9730 broken_ = [NSMutableArray arrayWithCapacity:4];
9732 // XXX: I really need this thing... like, seriously... I'm sorry
9733 [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] reloadData];
9735 window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
9736 [window_ orderFront:self];
9737 [window_ makeKey:self];
9738 [window_ setHidden:NO];
9741 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
9742 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
9743 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
9744 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
9745 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
9746 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
9747 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
9748 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
9749 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
9752 [self addStashController];
9753 // XXX: this would be much cleaner as a yieldToSelector:
9754 // that way the removeStashController could happen right here inline
9755 // we also could no longer require the useless stash_ field anymore
9756 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9760 database_ = [Database sharedInstance];
9761 [database_ setDelegate:self];
9763 [window_ setUserInteractionEnabled:NO];
9764 [self setupViewControllers];
9766 emulated_ = [[[CydiaLoadingViewController alloc] init] autorelease];
9767 [window_ addSubview:[emulated_ view]];
9769 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9773 - (NSArray *) defaultStartPages {
9774 NSMutableArray *standard = [NSMutableArray array];
9775 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9776 [standard addObject:[NSArray arrayWithObject:@"cydia://sections"]];
9777 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9779 [standard addObject:[NSArray arrayWithObject:@"cydia://manage"]];
9781 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9782 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9784 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9791 [window_ setUserInteractionEnabled:YES];
9792 [self showSettings];
9795 if ([emulated_ modalViewController] != nil)
9796 [emulated_ dismissModalViewControllerAnimated:YES];
9797 [window_ setUserInteractionEnabled:NO];
9800 [self reloadDataWithInvocation:nil];
9801 [self refreshIfPossible];
9806 int savedIndex = [[Metadata_ objectForKey:@"InterfaceIndex"] intValue];
9807 NSArray *saved = [[Metadata_ objectForKey:@"InterfaceState"] mutableCopy];
9808 int standardIndex = 0;
9809 NSArray *standard = [self defaultStartPages];
9816 NSDate *closed = [Metadata_ objectForKey:@"LastClosed"];
9817 if (valid && closed != nil) {
9818 NSTimeInterval interval([closed timeIntervalSinceNow]);
9819 // XXX: Is 15 minutes the optimal time here?
9820 if (interval > 0 && interval <= -(15*60))
9824 if (valid && [saved count] != [standard count])
9828 for (unsigned int i = 0; i < [standard count]; i++) {
9829 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9830 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9831 // but it's good enough for now.
9832 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9839 NSArray *items = nil;
9841 [tabbar_ setSelectedIndex:savedIndex];
9844 [tabbar_ setSelectedIndex:standardIndex];
9848 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9849 NSArray *stack = [items objectAtIndex:tab];
9850 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9851 NSMutableArray *current = [NSMutableArray array];
9853 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9854 NSString *addr = [stack objectAtIndex:nav];
9855 NSURL *url = [NSURL URLWithString:addr];
9856 CyteViewController *page = [self pageForURL:url forExternal:NO];
9858 [current addObject:page];
9861 [navigation setViewControllers:current];
9864 // (Try to) show the startup URL.
9865 if (starturl_ != nil) {
9866 [self openCydiaURL:starturl_ forExternal:NO];
9871 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9872 if (item != nil && IsWildcat_) {
9873 [sheet showFromBarButtonItem:item animated:YES];
9875 [sheet showInView:window_];
9879 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9880 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9881 [progress setTitle:task];
9882 [progress addProgressEvent:event];
9885 - (void) addProgressEventForTask:(NSArray *)data {
9886 CydiaProgressEvent *event([data objectAtIndex:0]);
9887 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9888 [self addProgressEvent:event forTask:task];
9891 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9892 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9898 id Alloc_(id self, SEL selector) {
9899 id object = alloc_(self, selector);
9900 lprintf("[%s]A-%p\n", self->isa->name, object);
9905 id Dealloc_(id self, SEL selector) {
9906 id object = dealloc_(self, selector);
9907 lprintf("[%s]D-%p\n", self->isa->name, object);
9911 Class $WebDefaultUIKitDelegate;
9913 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
9914 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
9915 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
9916 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
9919 static NSSet *MobilizedFiles_;
9921 static NSURL *MobilizeURL(NSURL *url) {
9922 NSString *path([url path]);
9923 if ([path hasPrefix:@"/var/root/"]) {
9924 NSString *file([path substringFromIndex:10]);
9925 if ([MobilizedFiles_ containsObject:file])
9926 url = [NSURL fileURLWithPath:[@"/var/mobile/" stringByAppendingString:file] isDirectory:NO];
9932 Class $CFXPreferencesPropertyListSource;
9933 @class CFXPreferencesPropertyListSource;
9935 MSHook(BOOL, CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9936 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9937 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9938 url = MobilizeURL(url);
9939 BOOL value(_CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(self, _cmd));
9940 //NSLog(@"%@ %s", [url absoluteString], value ? "YES" : "NO");
9946 MSHook(void *, CFXPreferencesPropertyListSource$createPlistFromDisk, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9947 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9948 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9949 url = MobilizeURL(url);
9950 void *value(_CFXPreferencesPropertyListSource$createPlistFromDisk(self, _cmd));
9951 //NSLog(@"%@ %@", [url absoluteString], value);
9957 Class $NSURLConnection;
9959 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
9960 NSMutableURLRequest *copy([request mutableCopy]);
9962 NSURL *url([copy URL]);
9964 NSString *href([url absoluteString]);
9965 NSString *host([url host]);
9966 NSString *scheme([[url scheme] lowercaseString]);
9968 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
9970 @synchronized (HostConfig_) {
9971 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
9972 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
9973 [copy setHTTPShouldUsePipelining:YES];
9975 if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"])
9976 if ([control isEqualToString:@"max-age=0"])
9977 if ([CachedURLs_ containsObject:href]) {
9979 NSLog(@"~~~: %@", href);
9982 [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad];
9984 [copy setValue:nil forHTTPHeaderField:@"Cache-Control"];
9985 [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"];
9986 [copy setValue:nil forHTTPHeaderField:@"If-None-Match"];
9990 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
9994 int main(int argc, char *argv[]) {
9995 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9999 UpdateExternalStatus(0);
10001 if (Class $UIDevice = objc_getClass("UIDevice")) {
10002 UIDevice *device([$UIDevice currentDevice]);
10003 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
10005 IsWildcat_ = false;
10007 UIScreen *screen([UIScreen mainScreen]);
10008 if ([screen respondsToSelector:@selector(scale)])
10009 ScreenScale_ = [screen scale];
10013 UIDevice *device([UIDevice currentDevice]);
10014 if (![device respondsToSelector:@selector(userInterfaceIdiom)])
10015 Idiom_ = @"iphone";
10017 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10018 if (idiom == UIUserInterfaceIdiomPhone)
10019 Idiom_ = @"iphone";
10020 else if (idiom == UIUserInterfaceIdiomPad)
10023 NSLog(@"unknown UIUserInterfaceIdiom!");
10026 Pcre pattern("^([0-9]+\\.[0-9]+)");
10028 if (pattern([device systemVersion]))
10029 Firmware_ = pattern[1];
10030 if (pattern(Cydia_))
10031 Major_ = pattern[1];
10033 SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4];
10035 HostConfig_ = [[[NSObject alloc] init] autorelease];
10036 @synchronized (HostConfig_) {
10037 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10038 TokenHosts_ = [NSMutableSet setWithCapacity:4];
10039 InsecureHosts_ = [NSMutableSet setWithCapacity:4];
10040 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10041 CachedURLs_ = [NSMutableSet setWithCapacity:32];
10044 NSString *ui(@"ui/ios");
10046 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]];
10047 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]];
10048 UI_ = CydiaURL(ui);
10050 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10052 MobilizedFiles_ = [NSMutableSet setWithObjects:
10053 @"Library/Preferences/com.apple.Accessibility.plist",
10054 @"Library/Preferences/com.apple.preferences.sounds.plist",
10057 /* Library Hacks {{{ */
10058 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10060 $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSource");
10062 Method CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(_backingPlistChangedSinceLastSync)));
10063 if (CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync != NULL) {
10064 _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync = reinterpret_cast<BOOL (*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10065 method_setImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10068 Method CFXPreferencesPropertyListSource$createPlistFromDisk(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(createPlistFromDisk)));
10069 if (CFXPreferencesPropertyListSource$createPlistFromDisk != NULL) {
10070 _CFXPreferencesPropertyListSource$createPlistFromDisk = reinterpret_cast<void *(*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk));
10071 method_setImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$createPlistFromDisk));
10074 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
10075 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
10076 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
10077 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
10078 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
10081 $NSURLConnection = objc_getClass("NSURLConnection");
10082 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10083 if (NSURLConnection$init$ != NULL) {
10084 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10085 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10088 /* Set Locale {{{ */
10089 Locale_ = CFLocaleCopyCurrent();
10090 Languages_ = [NSLocale preferredLanguages];
10092 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10093 //NSLog(@"%@", [Languages_ description]);
10096 if (Locale_ != NULL)
10097 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10098 else if (Languages_ != nil && [Languages_ count] != 0)
10099 lang = [[Languages_ objectAtIndex:0] UTF8String];
10101 // XXX: consider just setting to C and then falling through?
10104 if (lang != NULL) {
10105 Pcre pattern("^([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?$");
10106 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10109 NSLog(@"Setting Language: %s", lang);
10111 if (lang != NULL) {
10112 setenv("LANG", lang, true);
10113 std::setlocale(LC_ALL, lang);
10117 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
10119 /* Parse Arguments {{{ */
10120 bool substrate(false);
10126 for (int argi(1); argi != argc; ++argi)
10127 if (strcmp(argv[argi], "--") == 0) {
10129 argv[argi] = argv[0];
10135 for (int argi(1); argi != arge; ++argi)
10136 if (strcmp(args[argi], "--substrate") == 0)
10139 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10143 App_ = [[NSBundle mainBundle] bundlePath];
10149 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10150 alloc_ = alloc->method_imp;
10151 alloc->method_imp = (IMP) &Alloc_;*/
10153 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10154 dealloc_ = dealloc->method_imp;
10155 dealloc->method_imp = (IMP) &Dealloc_;*/
10157 /* System Information {{{ */
10161 size = sizeof(maxproc);
10162 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10163 perror("sysctlbyname(\"kern.maxproc\", ?)");
10164 else if (maxproc < 64) {
10166 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10167 perror("sysctlbyname(\"kern.maxproc\", #)");
10170 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10171 char *osversion = new char[size];
10172 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10173 perror("sysctlbyname(\"kern.osversion\", ?)");
10175 System_ = [NSString stringWithUTF8String:osversion];
10177 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10178 char *machine = new char[size];
10179 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10180 perror("sysctlbyname(\"hw.machine\", ?)");
10182 Machine_ = machine;
10184 SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber");
10185 ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString];
10186 BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false);
10188 UniqueID_ = [device uniqueIdentifier];
10190 CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef);
10191 $CTSIMSupportCopyMobileSubscriberCountryCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
10192 CFStringRef mcc($CTSIMSupportCopyMobileSubscriberCountryCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault));
10194 CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef);
10195 $CTSIMSupportCopyMobileSubscriberNetworkCode = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"));
10196 CFStringRef mnc($CTSIMSupportCopyMobileSubscriberNetworkCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault));
10198 if (mcc != NULL && mnc != NULL)
10199 PLMN_ = [NSString stringWithFormat:@"%@%@", mcc, mnc];
10206 if (NSDictionary *system = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"])
10207 Build_ = [system objectForKey:@"ProductBuildVersion"];
10208 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10209 Product_ = [info objectForKey:@"SafariProductVersion"];
10210 Safari_ = [info objectForKey:@"CFBundleVersion"];
10213 /* Load Database {{{ */
10215 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
10217 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10219 if (Metadata_ == NULL)
10220 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
10222 Settings_ = [Metadata_ objectForKey:@"Settings"];
10224 Packages_ = [Metadata_ objectForKey:@"Packages"];
10226 Values_ = [Metadata_ objectForKey:@"Values"];
10227 Sections_ = [Metadata_ objectForKey:@"Sections"];
10228 Sources_ = [Metadata_ objectForKey:@"Sources"];
10230 Token_ = [Metadata_ objectForKey:@"Token"];
10232 Version_ = [Metadata_ objectForKey:@"Version"];
10234 @synchronized (HostConfig_) {
10235 CydiaSource_ = [Metadata_ objectForKey:@"CydiaSource"];
10239 if (Settings_ != nil)
10240 Role_ = [Settings_ objectForKey:@"Role"];
10242 if (Values_ == nil) {
10243 Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease];
10244 [Metadata_ setObject:Values_ forKey:@"Values"];
10247 if (Sections_ == nil) {
10248 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10249 [Metadata_ setObject:Sections_ forKey:@"Sections"];
10252 if (Sources_ == nil) {
10253 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10254 [Metadata_ setObject:Sources_ forKey:@"Sources"];
10257 if (Version_ == nil) {
10258 Version_ = [NSNumber numberWithUnsignedInt:0];
10259 [Metadata_ setObject:Version_ forKey:@"Version"];
10262 @synchronized (HostConfig_) {
10263 if (CydiaSource_ == nil) {
10264 CydiaSource_ = @"apt.saurik.com";
10265 [Metadata_ setObject:CydiaSource_ forKey:@"CydiaSource"];
10269 if ([Version_ unsignedIntValue] == 0) {
10270 CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10271 CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10272 CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10273 CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
10275 Version_ = [NSNumber numberWithUnsignedInt:1];
10276 [Metadata_ setObject:Version_ forKey:@"Version"];
10278 [Metadata_ removeObjectForKey:@"LastUpdate"];
10284 CydiaWriteSources();
10287 MetaFile_.Open("/var/lib/cydia/metadata.cb0");
10290 if (Packages_ != nil) {
10292 CFDictionaryApplyFunction((CFDictionaryRef) Packages_, &PackageImport, &fail);
10296 [Metadata_ removeObjectForKey:@"Packages"];
10302 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10304 #define MobileSubstrate_(name) \
10305 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", F_OK) == 0) { \
10306 void *handle(dlopen("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", RTLD_LAZY | RTLD_GLOBAL)); \
10307 if (handle == NULL) \
10308 NSLog(@"%s", dlerror()); \
10311 MobileSubstrate_(Activator)
10312 MobileSubstrate_(libstatusbar)
10313 MobileSubstrate_(SimulatedKeyEvents)
10314 MobileSubstrate_(WinterBoard)
10316 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
10317 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
10319 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10321 if (access("/tmp/.cydia.fw", F_OK) == 0) {
10322 unlink("/tmp/.cydia.fw");
10324 } else if (access("/User", F_OK) != 0 || version < 4) {
10327 system("/usr/libexec/cydia/firmware.sh");
10331 _assert([[NSFileManager defaultManager]
10332 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
10333 withIntermediateDirectories:YES
10338 if (access("/tmp/cydia.chk", F_OK) == 0) {
10339 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
10340 _assert(errno == ENOENT);
10341 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
10342 _assert(errno == ENOENT);
10345 /* APT Initialization {{{ */
10346 _assert(pkgInitConfig(*_config));
10347 _assert(pkgInitSystem(*_config, _system));
10350 _config->Set("APT::Acquire::Translation", lang);
10352 // XXX: this timeout might be important :(
10353 //_config->Set("Acquire::http::Timeout", 15);
10355 _config->Set("Acquire::http::MaxParallel", 3);
10357 /* Color Choices {{{ */
10358 space_ = CGColorSpaceCreateDeviceRGB();
10360 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10361 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10362 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10363 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10364 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10365 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10366 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10367 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10368 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10370 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10371 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10373 /* UIKit Configuration {{{ */
10374 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
10375 if ($GSFontSetUseLegacyFontMetrics != NULL)
10376 $GSFontSetUseLegacyFontMetrics(YES);
10378 // XXX: I have a feeling this was important
10379 //UIKeyboardDisableAutomaticAppearance();
10382 Colon_ = UCLocalize("COLON_DELIMITED");
10383 Elision_ = UCLocalize("ELISION");
10384 Error_ = UCLocalize("ERROR");
10385 Warning_ = UCLocalize("WARNING");
10388 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10390 CGColorSpaceRelease(space_);
10391 CFRelease(Locale_);