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 void ReapZombie(pid_t pid) {
271 if (waitpid(pid, &status, 0) == -1)
277 static _finline void UpdateExternalStatus(uint64_t newStatus) {
279 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
280 notify_set_state(notify_token, newStatus);
281 notify_cancel(notify_token);
283 notify_post("com.saurik.Cydia.status");
286 static CGFloat CYStatusBarHeight() {
287 CGSize size([[UIApplication sharedApplication] statusBarFrame].size);
288 return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width;
291 /* NSForcedOrderingSearch doesn't work on the iPhone */
292 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
293 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
294 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
296 /* Insertion Sort {{{ */
298 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
299 const char *ptr = (const char *)list;
301 CFIndex half = count / 2;
302 const char *probe = ptr + elementSize * half;
303 CFComparisonResult cr = comparator(element, probe, context);
304 if (0 == cr) return (probe - (const char *)list) / elementSize;
305 ptr = (cr < 0) ? ptr : probe + elementSize;
306 count = (cr < 0) ? half : (half + (count & 1) - 1);
308 return (ptr - (const char *)list) / elementSize;
311 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
312 const char *ptr = (const char *)list;
314 CFIndex half = count / 2;
315 const char *probe = ptr + elementSize * half;
316 CFComparisonResult cr = comparator(element, probe, context);
317 if (0 == cr) return (probe - (const char *)list) / elementSize;
318 ptr = (cr < 0) ? ptr : probe + elementSize;
319 count = (cr < 0) ? half : (half + (count & 1) - 1);
321 return (ptr - (const char *)list) / elementSize;
324 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
325 if (range.length == 0)
327 const void **values(new const void *[range.length]);
328 CFArrayGetValues(array, range, values);
330 #if HistogramInsertionSort > 0
331 uint32_t total(0), *offsets(new uint32_t[range.length]);
334 for (CFIndex index(1); index != range.length; ++index) {
335 const void *value(values[index]);
336 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
337 CFIndex correct(index);
338 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
339 #if HistogramInsertionSort > 1
340 NSLog(@"%@ < %@", value, values[correct - 1]);
345 if (correct != index) {
346 size_t offset(index - correct);
347 #if HistogramInsertionSort
351 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
353 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
354 values[correct] = value;
358 CFArrayReplaceValues(array, range, values, range.length);
361 #if HistogramInsertionSort > 0
362 for (CFIndex index(0); index != range.length; ++index)
363 if (offsets[index] != 0)
364 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
365 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
372 /* Apple Bug Fixes {{{ */
373 @implementation UIWebDocumentView (Cydia)
375 - (void) _setScrollerOffset:(CGPoint)offset {
376 UIScroller *scroller([self _scroller]);
378 CGSize size([scroller contentSize]);
379 CGSize bounds([scroller bounds].size);
382 max.x = size.width - bounds.width;
383 max.y = size.height - bounds.height;
391 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
392 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
394 [scroller setOffset:offset];
400 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
401 size_t length([self length] - state->state);
404 else if (length > count)
406 for (size_t i(0); i != length; ++i)
407 objects[i] = [self item:state->state++];
408 state->itemsPtr = objects;
409 state->mutationsPtr = (unsigned long *) self;
413 /* Cydia NSString Additions {{{ */
414 @interface NSString (Cydia)
415 - (NSComparisonResult) compareByPath:(NSString *)other;
416 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
419 @implementation NSString (Cydia)
421 - (NSComparisonResult) compareByPath:(NSString *)other {
422 NSString *prefix = [self commonPrefixWithString:other options:0];
423 size_t length = [prefix length];
425 NSRange lrange = NSMakeRange(length, [self length] - length);
426 NSRange rrange = NSMakeRange(length, [other length] - length);
428 lrange = [self rangeOfString:@"/" options:0 range:lrange];
429 rrange = [other rangeOfString:@"/" options:0 range:rrange];
431 NSComparisonResult value;
433 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
434 value = NSOrderedSame;
435 else if (lrange.location == NSNotFound)
436 value = NSOrderedAscending;
437 else if (rrange.location == NSNotFound)
438 value = NSOrderedDescending;
440 value = NSOrderedSame;
442 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
443 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
444 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
445 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
447 NSComparisonResult result = [lpath compare:rpath];
448 return result == NSOrderedSame ? value : result;
451 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
452 return [(id)CFURLCreateStringByAddingPercentEscapes(
457 kCFStringEncodingUTF8
464 /* C++ NSString Wrapper Cache {{{ */
465 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
466 return size == 0 ? NULL :
467 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
468 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
471 static _finline CFStringRef CYStringCreate(const char *data) {
472 return CYStringCreate(data, strlen(data));
481 _finline void clear_() {
482 if (cache_ != NULL) {
489 _finline bool empty() const {
493 _finline size_t size() const {
497 _finline char *data() const {
501 _finline void clear() {
506 _finline CYString() :
513 _finline ~CYString() {
517 void operator =(const CYString &rhs) {
521 if (rhs.cache_ == nil)
524 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
527 void copy(apr_pool_t *pool) {
528 char *temp(reinterpret_cast<char *>(apr_palloc(pool, size_ + 1)));
529 memcpy(temp, data_, size_);
534 void set(apr_pool_t *pool, const char *data, size_t size) {
540 data_ = const_cast<char *>(data);
548 _finline void set(apr_pool_t *pool, const char *data) {
549 set(pool, data, data == NULL ? 0 : strlen(data));
552 _finline void set(apr_pool_t *pool, const std::string &rhs) {
553 set(pool, rhs.data(), rhs.size());
556 bool operator ==(const CYString &rhs) const {
557 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
560 _finline operator CFStringRef() {
562 cache_ = CYStringCreate(data_, size_);
566 _finline operator id() {
567 return (NSString *) static_cast<CFStringRef>(*this);
570 _finline operator const char *() {
571 return reinterpret_cast<const char *>(data_);
575 /* C++ NSString Algorithm Adapters {{{ */
577 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
580 struct NSStringMapHash :
581 std::unary_function<NSString *, size_t>
583 _finline size_t operator ()(NSString *value) const {
584 return CFStringHashNSString((CFStringRef) value);
588 struct NSStringMapLess :
589 std::binary_function<NSString *, NSString *, bool>
591 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
592 return [lhs compare:rhs] == NSOrderedAscending;
596 struct NSStringMapEqual :
597 std::binary_function<NSString *, NSString *, bool>
599 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
600 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
601 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
602 //[lhs isEqualToString:rhs];
607 /* CoreGraphics Primitives {{{ */
612 static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
613 CGFloat color[] = {red, green, blue, alpha};
614 return CGColorCreate(space, color);
623 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
624 color_(Create_(space, red, green, blue, alpha))
626 Set(space, red, green, blue, alpha);
631 CGColorRelease(color_);
638 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
640 color_ = Create_(space, red, green, blue, alpha);
643 operator CGColorRef() {
649 /* Random Global Variables {{{ */
650 static const int PulseInterval_ = 50000;
652 static const NSString *UI_;
655 static bool RestartSubstrate_;
656 static NSArray *Finishes_;
658 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
659 #define NotifyConfig_ "/etc/notify.conf"
661 static bool Queuing_;
663 static CYColor Blue_;
664 static CYColor Blueish_;
665 static CYColor Black_;
667 static CYColor White_;
668 static CYColor Gray_;
669 static CYColor Green_;
670 static CYColor Purple_;
671 static CYColor Purplish_;
673 static UIColor *InstallingColor_;
674 static UIColor *RemovingColor_;
676 static NSString *App_;
678 static BOOL Advanced_;
679 static BOOL Ignored_;
681 static _H<UIFont> Font12_;
682 static _H<UIFont> Font12Bold_;
683 static _H<UIFont> Font14_;
684 static _H<UIFont> Font18Bold_;
685 static _H<UIFont> Font22Bold_;
687 static const char *Machine_ = NULL;
688 static NSString *System_ = nil;
689 static NSString *SerialNumber_ = nil;
690 static NSString *ChipID_ = nil;
691 static NSString *BBSNum_ = nil;
692 static _H<NSString> Token_;
693 static NSString *UniqueID_ = nil;
694 static NSString *Product_ = nil;
695 static NSString *Safari_ = nil;
697 static CFLocaleRef Locale_;
698 static NSArray *Languages_;
699 static CGColorSpaceRef space_;
701 static NSDictionary *SectionMap_;
702 static NSMutableDictionary *Metadata_;
703 static _transient NSMutableDictionary *Settings_;
704 static _transient NSString *Role_;
705 static _transient NSMutableDictionary *Packages_;
706 static _transient NSMutableDictionary *Values_;
707 static _transient NSMutableDictionary *Sections_;
708 _H<NSMutableDictionary> Sources_;
709 static _transient NSNumber *Version_;
710 _H<NSString> CydiaSource_;
715 static CGFloat ScreenScale_;
716 static NSString *Idiom_;
717 _H<NSString> Firmware_;
718 static NSString *Major_;
720 static _H<NSMutableDictionary> SessionData_;
721 static _H<NSObject> HostConfig_;
722 static _H<NSMutableSet> BridgedHosts_;
723 static _H<NSMutableSet> TokenHosts_;
724 static _H<NSMutableSet> InsecureHosts_;
725 static _H<NSMutableSet> PipelinedHosts_;
726 static _H<NSMutableSet> CachedURLs_;
728 static NSString *kCydiaProgressEventTypeError = @"Error";
729 static NSString *kCydiaProgressEventTypeInformation = @"Information";
730 static NSString *kCydiaProgressEventTypeStatus = @"Status";
731 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
734 /* Display Helpers {{{ */
735 inline float Interpolate(float begin, float end, float fraction) {
736 return (end - begin) * fraction + begin;
739 static _finline const char *StripVersion_(const char *version) {
740 const char *colon(strchr(version, ':'));
741 return colon == NULL ? version : colon + 1;
744 NSString *LocalizeSection(NSString *section) {
745 static Pcre title_r("^(.*?) \\((.*)\\)$");
746 if (title_r(section)) {
747 NSString *parent(title_r[1]);
748 NSString *child(title_r[2]);
750 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
751 LocalizeSection(parent),
752 LocalizeSection(child)
756 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
759 NSString *Simplify(NSString *title) {
760 const char *data = [title UTF8String];
761 size_t size = [title length];
763 static Pcre square_r("^\\[(.*)\\]$");
764 if (square_r(data, size))
765 return Simplify(square_r[1]);
767 static Pcre paren_r("^\\((.*)\\)$");
768 if (paren_r(data, size))
769 return Simplify(paren_r[1]);
771 static Pcre title_r("^(.*?) \\((.*)\\)$");
772 if (title_r(data, size))
773 return Simplify(title_r[1]);
779 NSString *GetLastUpdate() {
780 NSDate *update = [Metadata_ objectForKey:@"LastUpdate"];
783 return UCLocalize("NEVER_OR_UNKNOWN");
785 CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle);
786 CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update);
788 CFRelease(formatter);
790 return [(NSString *) formatted autorelease];
793 bool isSectionVisible(NSString *section) {
794 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
795 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
796 return hidden == nil || ![hidden boolValue];
799 static NSObject *CYIOGetValue(const char *path, NSString *property) {
800 io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path));
801 if (entry == MACH_PORT_NULL)
804 CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0));
805 IOObjectRelease(entry);
809 return [(id) value autorelease];
812 static NSString *CYHex(NSData *data, bool reverse = false) {
816 size_t length([data length]);
817 uint8_t bytes[length];
818 [data getBytes:bytes];
820 char string[length * 2 + 1];
821 for (size_t i(0); i != length; ++i)
822 sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]);
824 return [NSString stringWithUTF8String:string];
829 /* Delegate Prototypes {{{ */
832 @class CydiaProgressEvent;
834 @protocol DatabaseDelegate
835 - (void) repairWithSelector:(SEL)selector;
836 - (void) setConfigurationData:(NSString *)data;
837 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
840 @class CYPackageController;
842 @protocol CydiaDelegate
843 - (void) returnToCydia;
845 - (void) retainNetworkActivityIndicator;
846 - (void) releaseNetworkActivityIndicator;
847 - (void) clearPackage:(Package *)package;
848 - (void) installPackage:(Package *)package;
849 - (void) installPackages:(NSArray *)packages;
850 - (void) removePackage:(Package *)package;
851 - (void) beginUpdate;
853 - (void) distUpgrade;
857 - (void) addSource:(NSDictionary *)source;
858 - (void) addTrivialSource:(NSString *)href;
859 - (void) showSettings;
860 - (UIProgressHUD *) addProgressHUD;
861 - (void) removeProgressHUD:(UIProgressHUD *)hud;
862 - (CyteViewController *) pageForPackage:(NSString *)name;
863 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
864 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
868 /* Status Delegation {{{ */
870 public pkgAcquireStatus
873 _transient NSObject<ProgressDelegate> *delegate_;
883 void setDelegate(NSObject<ProgressDelegate> *delegate) {
884 delegate_ = delegate;
887 NSObject<ProgressDelegate> *getDelegate() const {
891 virtual bool MediaChange(std::string media, std::string drive) {
895 virtual void IMSHit(pkgAcquire::ItemDesc &item) {
899 virtual void Fetch(pkgAcquire::ItemDesc &item) {
900 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
901 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
902 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
905 virtual void Done(pkgAcquire::ItemDesc &item) {
906 NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]);
907 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]);
908 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
911 virtual void Fail(pkgAcquire::ItemDesc &item) {
913 item.Owner->Status == pkgAcquire::Item::StatIdle ||
914 item.Owner->Status == pkgAcquire::Item::StatDone
918 std::string &error(item.Owner->ErrorText);
922 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItem:item]);
923 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
926 virtual bool Pulse(pkgAcquire *Owner) {
927 bool value = pkgAcquireStatus::Pulse(Owner);
930 double(CurrentBytes + CurrentItems) /
931 double(TotalBytes + TotalItems)
934 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
935 [NSNumber numberWithDouble:percent], @"Percent",
937 [NSNumber numberWithDouble:CurrentBytes], @"Current",
938 [NSNumber numberWithDouble:TotalBytes], @"Total",
939 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
940 nil] waitUntilDone:YES];
942 if (value && ![delegate_ isProgressCancelled])
950 _finline bool WasCancelled() const {
954 virtual void Start() {
955 pkgAcquireStatus::Start();
956 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
959 virtual void Stop() {
960 pkgAcquireStatus::Stop();
961 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
962 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
966 /* Database Interface {{{ */
967 typedef std::map< unsigned long, _H<Source> > SourceMap;
969 @interface Database : NSObject {
976 pkgDepCache::Policy *policy_;
977 pkgRecords *records_;
978 pkgProblemResolver *resolver_;
979 pkgAcquire *fetcher_;
981 SPtr<pkgPackageManager> manager_;
982 pkgSourceList *list_;
984 SourceMap sourceMap_;
985 _H<NSMutableArray> sourceList_;
987 CFMutableArrayRef packages_;
989 _transient NSObject<DatabaseDelegate> *delegate_;
990 _transient NSObject<ProgressDelegate> *progress_;
998 std::map<const char *, _H<NSString> > sections_;
1001 + (Database *) sharedInstance;
1004 - (void) _readCydia:(NSNumber *)fd;
1005 - (void) _readStatus:(NSNumber *)fd;
1006 - (void) _readOutput:(NSNumber *)fd;
1010 - (Package *) packageWithName:(NSString *)name;
1012 - (pkgCacheFile &) cache;
1013 - (pkgDepCache::Policy *) policy;
1014 - (pkgRecords *) records;
1015 - (pkgProblemResolver *) resolver;
1016 - (pkgAcquire &) fetcher;
1017 - (pkgSourceList &) list;
1018 - (NSArray *) packages;
1019 - (NSArray *) sources;
1020 - (Source *) sourceWithKey:(NSString *)key;
1021 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1029 - (void) updateWithStatus:(Status &)status;
1031 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1033 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1034 - (NSObject<ProgressDelegate> *) progressDelegate;
1036 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1038 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1042 /* ProgressEvent Implementation {{{ */
1043 @implementation CydiaProgressEvent
1045 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1046 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1049 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1050 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1051 [event setPackage:package];
1055 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item {
1056 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1058 NSString *description([NSString stringWithUTF8String:item.Description.c_str()]);
1059 NSArray *fields([description componentsSeparatedByString:@" "]);
1060 [event setItem:fields];
1062 if ([fields count] > 3) {
1063 [event setPackage:[fields objectAtIndex:2]];
1064 [event setVersion:[fields objectAtIndex:3]];
1067 [event setURL:[NSString stringWithUTF8String:item.URI.c_str()]];
1072 + (NSArray *) _attributeKeys {
1073 return [NSArray arrayWithObjects:
1083 - (NSArray *) attributeKeys {
1084 return [[self class] _attributeKeys];
1087 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1088 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1091 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1092 if ((self = [super init]) != nil) {
1098 - (NSString *) message {
1102 - (NSString *) type {
1106 - (NSArray *) item {
1107 return (id) item_ ?: [NSNull null];
1110 - (void) setItem:(NSArray *)item {
1114 - (NSString *) package {
1115 return (id) package_ ?: [NSNull null];
1118 - (void) setPackage:(NSString *)package {
1122 - (NSString *) url {
1123 return (id) url_ ?: [NSNull null];
1126 - (void) setURL:(NSString *)url {
1130 - (void) setVersion:(NSString *)version {
1134 - (NSString *) version {
1135 return (id) version_ ?: [NSNull null];
1138 - (NSString *) compound:(NSString *)value {
1140 NSString *mode(nil); {
1141 NSString *type([self type]);
1142 if ([type isEqualToString:kCydiaProgressEventTypeError])
1143 mode = UCLocalize("ERROR");
1144 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1145 mode = UCLocalize("WARNING");
1149 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1155 - (NSString *) compoundMessage {
1156 return [self compound:[self message]];
1159 - (NSString *) compoundTitle {
1162 if (package_ == nil)
1164 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1165 title = [package name];
1169 return [self compound:title];
1175 // Cytore Definitions {{{
1176 struct PackageValue :
1179 Cytore::Offset<PackageValue> next_;
1181 uint32_t index_ : 23;
1182 uint32_t subscribed_ : 1;
1199 Cytore::Offset<PackageValue> packages_[1 << 16];
1202 static Cytore::File<MetaValue> MetaFile_;
1204 // Cytore Helper Functions {{{
1205 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1206 SplitHash nhash = { hashlittle(name, length) };
1208 PackageValue *metadata;
1210 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1211 offset: if (offset->IsNull()) {
1212 *offset = MetaFile_.New<PackageValue>(length + 1);
1213 metadata = &MetaFile_.Get(*offset);
1215 if (metadata == NULL) {
1219 metadata = new PackageValue();
1220 memset(metadata, 0, sizeof(*metadata));
1223 memcpy(metadata->name_, name, length + 1);
1224 metadata->nhash_ = nhash.u16[1];
1226 metadata = &MetaFile_.Get(*offset);
1228 if (metadata->nhash_ != nhash.u16[1] || strncmp(metadata->name_, name, length + 1) != 0) {
1229 offset = &metadata->next_;
1237 static void PackageImport(const void *key, const void *value, void *context) {
1238 bool &fail(*reinterpret_cast<bool *>(context));
1241 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1242 NSLog(@"failed to import package %@", key);
1246 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1247 NSDictionary *package((NSDictionary *) value);
1249 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1250 if ([subscribed boolValue] && !metadata->subscribed_)
1251 metadata->subscribed_ = true;
1253 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1254 time_t time([date timeIntervalSince1970]);
1255 if (metadata->first_ > time || metadata->first_ == 0)
1256 metadata->first_ = time;
1259 NSDate *date([package objectForKey:@"LastSeen"]);
1260 NSString *version([package objectForKey:@"LastVersion"]);
1262 if (date != nil && version != nil) {
1263 time_t time([date timeIntervalSince1970]);
1264 if (metadata->last_ < time || metadata->last_ == 0)
1265 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1266 size_t length(strlen(buffer));
1267 uint16_t vhash(hashlittle(buffer, length));
1269 size_t capped(std::min<size_t>(8, length));
1270 char *latest(buffer + length - capped);
1272 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1273 metadata->vhash_ = vhash;
1275 metadata->last_ = time;
1281 /* Source Class {{{ */
1282 @interface Source : NSObject {
1284 Database *database_;
1287 CYString depiction_;
1288 CYString description_;
1294 CYString distribution_;
1300 _H<NSString> authority_;
1302 CYString defaultIcon_;
1304 _H<NSDictionary> record_;
1308 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool;
1310 - (NSComparisonResult) compareByName:(Source *)source;
1312 - (NSString *) depictionForPackage:(NSString *)package;
1313 - (NSString *) supportForPackage:(NSString *)package;
1315 - (NSDictionary *) record;
1318 - (NSString *) rooturi;
1319 - (NSString *) distribution;
1320 - (NSString *) type;
1323 - (NSString *) host;
1325 - (NSString *) name;
1326 - (NSString *) shortDescription;
1327 - (NSString *) label;
1328 - (NSString *) origin;
1329 - (NSString *) version;
1331 - (NSString *) defaultIcon;
1332 - (NSURL *) iconURL;
1336 @implementation Source
1340 distribution_.clear();
1345 description_.clear();
1351 defaultIcon_.clear();
1358 + (NSString *) webScriptNameForSelector:(SEL)selector {
1360 else if (selector == @selector(addSection:))
1361 return @"addSection";
1362 else if (selector == @selector(getField:))
1364 else if (selector == @selector(removeSection:))
1365 return @"removeSection";
1366 else if (selector == @selector(remove))
1372 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
1373 return [self webScriptNameForSelector:selector] == nil;
1376 + (NSArray *) _attributeKeys {
1377 return [NSArray arrayWithObjects:
1388 @"shortDescription",
1395 - (NSArray *) attributeKeys {
1396 return [[self class] _attributeKeys];
1399 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1400 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1403 - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool {
1406 trusted_ = index->IsTrusted();
1408 uri_.set(pool, index->GetURI());
1409 distribution_.set(pool, index->GetDist());
1410 type_.set(pool, index->GetType());
1412 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1413 if (dindex != NULL) {
1414 base_.set(pool, dindex->MetaIndexURI(""));
1417 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1420 pkgTagFile tags(&fd);
1422 pkgTagSection section;
1429 {"default-icon", &defaultIcon_},
1430 {"depiction", &depiction_},
1431 {"description", &description_},
1433 {"origin", &origin_},
1434 {"support", &support_},
1435 {"version", &version_},
1438 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1439 const char *start, *end;
1441 if (section.Find(names[i].name_, start, end)) {
1442 CYString &value(*names[i].value_);
1443 value.set(pool, start, end - start);
1449 record_ = [Sources_ objectForKey:[self key]];
1451 NSURL *url([NSURL URLWithString:uri_]);
1455 host_ = [host_ lowercaseString];
1460 authority_ = [url path];
1463 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool {
1464 if ((self = [super init]) != nil) {
1465 era_ = [database era];
1466 database_ = database;
1469 [self setMetaIndex:index inPool:pool];
1473 - (NSString *) getField:(NSString *)name {
1474 @synchronized (database_) {
1475 if ([database_ era] != era_ || index_ == NULL)
1478 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_));
1483 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) {
1488 pkgTagFile tags(&fd);
1490 pkgTagSection section;
1493 const char *start, *end;
1494 if (!section.Find([name UTF8String], start, end))
1495 return (NSString *) [NSNull null];
1497 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
1500 - (NSComparisonResult) compareByName:(Source *)source {
1501 NSString *lhs = [self name];
1502 NSString *rhs = [source name];
1504 if ([lhs length] != 0 && [rhs length] != 0) {
1505 unichar lhc = [lhs characterAtIndex:0];
1506 unichar rhc = [rhs characterAtIndex:0];
1508 if (isalpha(lhc) && !isalpha(rhc))
1509 return NSOrderedAscending;
1510 else if (!isalpha(lhc) && isalpha(rhc))
1511 return NSOrderedDescending;
1514 return [lhs compare:rhs options:LaxCompareOptions_];
1517 - (NSString *) depictionForPackage:(NSString *)package {
1518 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1521 - (NSString *) supportForPackage:(NSString *)package {
1522 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1525 - (NSArray *) sections {
1526 return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array];
1529 - (void) _addSection:(NSString *)section {
1532 else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) {
1533 if (![sections containsObject:section]) {
1534 [sections addObject:section];
1538 [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"];
1543 - (bool) addSection:(NSString *)section {
1547 [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO];
1551 - (void) _removeSection:(NSString *)section {
1555 if (NSMutableArray *sections = [record_ objectForKey:@"Sections"])
1556 if ([sections containsObject:section]) {
1557 [sections removeObject:section];
1562 - (bool) removeSection:(NSString *)section {
1566 [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO];
1571 [Sources_ removeObjectForKey:[self key]];
1576 bool value(record_ != nil);
1577 [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO];
1581 - (NSDictionary *) record {
1589 - (NSString *) rooturi {
1593 - (NSString *) distribution {
1594 return distribution_;
1597 - (NSString *) type {
1601 - (NSString *) baseuri {
1602 return base_.empty() ? nil : (id) base_;
1605 - (NSString *) iconuri {
1606 if (NSString *base = [self baseuri])
1607 return [base stringByAppendingString:@"CydiaIcon.png"];
1612 - (NSURL *) iconURL {
1613 if (NSString *uri = [self iconuri])
1614 return [NSURL URLWithString:uri];
1618 - (NSString *) key {
1619 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1622 - (NSString *) host {
1626 - (NSString *) name {
1627 return origin_.empty() ? (id) authority_ : origin_;
1630 - (NSString *) shortDescription {
1631 return description_;
1634 - (NSString *) label {
1635 return label_.empty() ? (id) authority_ : label_;
1638 - (NSString *) origin {
1642 - (NSString *) version {
1646 - (NSString *) defaultIcon {
1647 return defaultIcon_;
1652 /* CydiaOperation Class {{{ */
1653 @interface CydiaOperation : NSObject {
1654 _H<NSString> operator_;
1655 _H<NSString> value_;
1658 - (NSString *) operator;
1659 - (NSString *) value;
1663 @implementation CydiaOperation
1665 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1666 if ((self = [super init]) != nil) {
1667 operator_ = [NSString stringWithUTF8String:_operator];
1668 value_ = [NSString stringWithUTF8String:value];
1672 + (NSArray *) _attributeKeys {
1673 return [NSArray arrayWithObjects:
1679 - (NSArray *) attributeKeys {
1680 return [[self class] _attributeKeys];
1683 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1684 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1687 - (NSString *) operator {
1691 - (NSString *) value {
1697 /* CydiaClause Class {{{ */
1698 @interface CydiaClause : NSObject {
1699 _H<NSString> package_;
1700 _H<CydiaOperation> version_;
1703 - (NSString *) package;
1704 - (CydiaOperation *) version;
1708 @implementation CydiaClause
1710 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1711 if ((self = [super init]) != nil) {
1712 package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()];
1714 if (const char *version = dep.TargetVer())
1715 version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease];
1717 version_ = (id) [NSNull null];
1721 + (NSArray *) _attributeKeys {
1722 return [NSArray arrayWithObjects:
1728 - (NSArray *) attributeKeys {
1729 return [[self class] _attributeKeys];
1732 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1733 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1736 - (NSString *) package {
1740 - (CydiaOperation *) version {
1746 /* CydiaRelation Class {{{ */
1747 @interface CydiaRelation : NSObject {
1748 _H<NSString> relationship_;
1749 _H<NSMutableArray> clauses_;
1752 - (NSString *) relationship;
1753 - (NSArray *) clauses;
1757 @implementation CydiaRelation
1759 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1760 if ((self = [super init]) != nil) {
1761 relationship_ = [NSString stringWithUTF8String:dep.DepType()];
1762 clauses_ = [NSMutableArray arrayWithCapacity:8];
1764 pkgCache::DepIterator start;
1765 pkgCache::DepIterator end;
1766 dep.GlobOr(start, end); // ++dep
1769 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
1771 // yes, seriously. (wtf?)
1779 + (NSArray *) _attributeKeys {
1780 return [NSArray arrayWithObjects:
1786 - (NSArray *) attributeKeys {
1787 return [[self class] _attributeKeys];
1790 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1791 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1794 - (NSString *) relationship {
1795 return relationship_;
1798 - (NSArray *) clauses {
1802 - (void) addClause:(CydiaClause *)clause {
1803 [clauses_ addObject:clause];
1808 /* Package Class {{{ */
1809 struct ParsedPackage {
1813 CYString architecture_;
1816 CYString depiction_;
1826 @interface Package : NSObject {
1829 uint32_t essential_ : 1;
1830 uint32_t obsolete_ : 1;
1831 uint32_t ignored_ : 1;
1832 uint32_t pooled_ : 1;
1838 _transient Database *database_;
1840 pkgCache::VerIterator version_;
1841 pkgCache::PkgIterator iterator_;
1842 pkgCache::VerFileIterator file_;
1848 CYString installed_;
1850 const char *section_;
1851 _transient NSString *section$_;
1855 PackageValue *metadata_;
1856 ParsedPackage *parsed_;
1858 _H<NSMutableArray> tags_;
1861 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1862 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database;
1864 - (pkgCache::PkgIterator) iterator;
1867 - (NSString *) section;
1868 - (NSString *) simpleSection;
1870 - (NSString *) longSection;
1871 - (NSString *) shortSection;
1875 - (MIMEAddress *) maintainer;
1877 - (NSString *) longDescription;
1878 - (NSString *) shortDescription;
1881 - (PackageValue *) metadata;
1884 - (bool) subscribed;
1885 - (bool) setSubscribed:(bool)subscribed;
1889 - (NSString *) latest;
1890 - (NSString *) installed;
1891 - (BOOL) uninstalled;
1894 - (BOOL) upgradableAndEssential:(BOOL)essential;
1897 - (BOOL) unfiltered;
1901 - (BOOL) halfConfigured;
1902 - (BOOL) halfInstalled;
1904 - (NSString *) mode;
1907 - (NSString *) name;
1909 - (NSString *) homepage;
1910 - (NSString *) depiction;
1911 - (MIMEAddress *) author;
1913 - (NSString *) support;
1915 - (NSArray *) files;
1916 - (NSArray *) warnings;
1917 - (NSArray *) applications;
1919 - (Source *) source;
1922 - (BOOL) matches:(NSArray *)query;
1924 - (bool) hasSupportingRole;
1925 - (BOOL) hasTag:(NSString *)tag;
1926 - (NSString *) primaryPurpose;
1927 - (NSArray *) purposes;
1928 - (bool) isCommercial;
1930 - (void) setIndex:(size_t)index;
1932 - (CYString &) cyname;
1934 - (uint32_t) compareBySection:(NSArray *)sections;
1939 - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query;
1940 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search;
1941 - (bool) isInstalledAndUnfiltered:(NSNumber *)number;
1942 - (bool) isVisibleInSection:(NSString *)section;
1943 - (bool) isVisibleInSource:(Source *)source;
1947 uint32_t PackageChangesRadix(Package *self, void *) {
1952 uint32_t timestamp : 30;
1953 uint32_t ignored : 1;
1954 uint32_t upgradable : 1;
1958 bool upgradable([self upgradableAndEssential:YES]);
1959 value.bits.upgradable = upgradable ? 1 : 0;
1962 value.bits.timestamp = 0;
1963 value.bits.ignored = [self ignored] ? 0 : 1;
1964 value.bits.upgradable = 1;
1966 value.bits.timestamp = [self seen] >> 2;
1967 value.bits.ignored = 0;
1968 value.bits.upgradable = 0;
1971 return _not(uint32_t) - value.key;
1974 uint32_t PackagePrefixRadix(Package *self, void *context) {
1975 size_t offset(reinterpret_cast<size_t>(context));
1976 CYString &name([self cyname]);
1978 size_t size(name.size());
1981 char *text(name.data());
1984 if (!isdigit(text[0]))
1988 while (size != digits && isdigit(text[digits]))
1996 if (offset == 0 && zeros != 0) {
1997 memset(data, '0', zeros);
1998 memcpy(data + zeros, text, 4 - zeros);
2000 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2001 if (size <= offset - zeros)
2004 text += offset - zeros;
2005 size -= offset - zeros;
2008 memcpy(data, text, 4);
2010 memcpy(data, text, size);
2011 memset(data + size, 0, 4 - size);
2014 for (size_t i(0); i != 4; ++i)
2015 if (isalpha(data[i]))
2023 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2025 /* XXX: ntohl may be more honest */
2026 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2029 CYString &(*PackageName)(Package *self, SEL sel);
2031 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2032 _profile(PackageNameCompare)
2033 CYString &lhi(PackageName(lhs, @selector(cyname)));
2034 CYString &rhi(PackageName(rhs, @selector(cyname)));
2035 CFStringRef lhn(lhi), rhn(rhi);
2038 return rhn == NULL ? NSOrderedSame : NSOrderedAscending;
2039 else if (rhn == NULL)
2040 return NSOrderedDescending;
2042 _profile(PackageNameCompare$NumbersLast)
2043 if (!lhi.empty() && !rhi.empty()) {
2044 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2045 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2046 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2047 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2048 return lha ? NSOrderedAscending : NSOrderedDescending;
2052 CFIndex length = CFStringGetLength(lhn);
2054 _profile(PackageNameCompare$Compare)
2055 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_);
2060 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) {
2061 return PackageNameCompare(*lhs, *rhs, context);
2064 struct PackageNameOrdering :
2065 std::binary_function<Package *, Package *, bool>
2067 _finline bool operator ()(Package *lhs, Package *rhs) const {
2068 return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending;
2072 @implementation Package
2074 - (NSString *) description {
2075 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2080 apr_pool_destroy(pool_);
2081 if (parsed_ != NULL)
2086 + (NSString *) webScriptNameForSelector:(SEL)selector {
2088 else if (selector == @selector(clear))
2090 else if (selector == @selector(getField:))
2092 else if (selector == @selector(hasTag:))
2094 else if (selector == @selector(install))
2096 else if (selector == @selector(remove))
2102 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2103 return [self webScriptNameForSelector:selector] == nil;
2106 + (NSArray *) _attributeKeys {
2107 return [NSArray arrayWithObjects:
2128 @"shortDescription",
2141 - (NSArray *) attributeKeys {
2142 return [[self class] _attributeKeys];
2145 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2146 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2149 - (NSArray *) relations {
2150 @synchronized (database_) {
2151 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2152 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2153 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2157 - (NSString *) architecture {
2159 @synchronized (database_) {
2160 return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_;
2163 - (NSString *) getField:(NSString *)name {
2164 @synchronized (database_) {
2165 if ([database_ era] != era_ || file_.end())
2168 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2170 const char *start, *end;
2171 if (!parser.Find([name UTF8String], start, end))
2172 return (NSString *) [NSNull null];
2174 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2178 if (parsed_ != NULL)
2180 @synchronized (database_) {
2181 if ([database_ era] != era_ || file_.end())
2184 ParsedPackage *parsed(new ParsedPackage);
2187 _profile(Package$parse)
2188 pkgRecords::Parser *parser;
2190 _profile(Package$parse$Lookup)
2191 parser = &[database_ records]->Lookup(file_);
2196 _profile(Package$parse$Find)
2201 {"architecture", &parsed->architecture_},
2202 {"icon", &parsed->icon_},
2203 {"depiction", &parsed->depiction_},
2204 {"homepage", &parsed->homepage_},
2205 {"website", &website},
2206 {"bugs", &parsed->bugs_},
2207 {"support", &parsed->support_},
2208 {"sponsor", &parsed->sponsor_},
2209 {"author", &parsed->author_},
2210 {"md5sum", &parsed->md5sum_},
2213 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2214 const char *start, *end;
2216 if (parser->Find(names[i].name_, start, end)) {
2217 CYString &value(*names[i].value_);
2218 _profile(Package$parse$Value)
2219 value.set(pool_, start, end - start);
2225 _profile(Package$parse$Tagline)
2226 const char *start, *end;
2227 if (parser->ShortDesc(start, end)) {
2228 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2231 while (stop != start && stop[-1] == '\r')
2233 parsed->tagline_.set(pool_, start, stop - start);
2237 _profile(Package$parse$Retain)
2238 if (parsed->homepage_.empty())
2239 parsed->homepage_ = website;
2240 if (parsed->homepage_ == parsed->depiction_)
2241 parsed->homepage_.clear();
2246 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2247 if ((self = [super init]) != nil) {
2248 _profile(Package$initWithVersion)
2250 apr_pool_create(&pool_, NULL);
2256 database_ = database;
2257 era_ = [database era];
2261 pkgCache::PkgIterator iterator(version.ParentPkg());
2262 iterator_ = iterator;
2264 _profile(Package$initWithVersion$Version)
2265 if (!version_.end())
2266 file_ = version_.FileList();
2268 pkgCache &cache([database_ cache]);
2269 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2273 _profile(Package$initWithVersion$Cache)
2274 name_.set(NULL, iterator.Display());
2276 latest_.set(NULL, StripVersion_(version_.VerStr()));
2278 pkgCache::VerIterator current(iterator.CurrentVer());
2280 installed_.set(NULL, StripVersion_(current.VerStr()));
2283 _profile(Package$initWithVersion$Tags)
2284 pkgCache::TagIterator tag(iterator.TagList());
2286 tags_ = [NSMutableArray arrayWithCapacity:8];
2288 const char *name(tag.Name());
2289 [tags_ addObject:[(NSString *)CYStringCreate(name) autorelease]];
2291 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2292 if (strcmp(name + 6, "enduser") == 0)
2294 else if (strcmp(name + 6, "hacker") == 0)
2296 else if (strcmp(name + 6, "developer") == 0)
2298 else if (strcmp(name + 6, "cydia") == 0)
2304 if (strncmp(name, "cydia::", 7) == 0) {
2305 if (strcmp(name + 7, "essential") == 0)
2307 else if (strcmp(name + 7, "obsolete") == 0)
2312 } while (!tag.end());
2316 _profile(Package$initWithVersion$Metadata)
2317 const char *mixed(iterator.Name());
2318 size_t size(strlen(mixed));
2319 char lower[size + 1];
2321 for (size_t i(0); i != size; ++i)
2322 lower[i] = mixed[i] | 0x20;
2325 PackageValue *metadata(PackageFind(lower, size));
2326 metadata_ = metadata;
2328 id_.set(NULL, metadata->name_, size);
2330 const char *latest(version_.VerStr());
2331 size_t length(strlen(latest));
2333 uint16_t vhash(hashlittle(latest, length));
2335 size_t capped(std::min<size_t>(8, length));
2336 latest = latest + length - capped;
2338 if (metadata->first_ == 0)
2339 metadata->first_ = now_;
2341 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2342 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2343 metadata->vhash_ = vhash;
2344 metadata->last_ = now_;
2345 } else if (metadata->last_ == 0)
2346 metadata->last_ = metadata->first_;
2349 _profile(Package$initWithVersion$Section)
2350 section_ = iterator.Section();
2353 _profile(Package$initWithVersion$Flags)
2354 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2355 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2360 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database {
2361 pkgCache::VerIterator version;
2363 _profile(Package$packageWithIterator$GetCandidateVer)
2364 version = [database policy]->GetCandidateVer(iterator);
2372 _profile(Package$packageWithIterator$Allocate)
2373 package = [Package allocWithZone:zone];
2376 _profile(Package$packageWithIterator$Initialize)
2378 initWithVersion:version
2385 _profile(Package$packageWithIterator$Autorelease)
2386 package = [package autorelease];
2392 - (pkgCache::PkgIterator) iterator {
2396 - (NSString *) section {
2397 if (section$_ == nil) {
2398 if (section_ == NULL)
2401 _profile(Package$section$mappedSectionForPointer)
2402 section$_ = [database_ mappedSectionForPointer:section_];
2407 - (NSString *) simpleSection {
2408 if (NSString *section = [self section])
2409 return Simplify(section);
2414 - (NSString *) longSection {
2415 return LocalizeSection([self section]);
2418 - (NSString *) shortSection {
2419 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2422 - (NSString *) uri {
2425 pkgIndexFile *index;
2426 pkgCache::PkgFileIterator file(file_.File());
2427 if (![database_ list].FindIndex(file, index))
2429 return [NSString stringWithUTF8String:iterator_->Path];
2430 //return [NSString stringWithUTF8String:file.Site()];
2431 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2435 - (MIMEAddress *) maintainer {
2436 @synchronized (database_) {
2437 if ([database_ era] != era_ || file_.end())
2440 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2441 const std::string &maintainer(parser->Maintainer());
2442 return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2445 - (NSString *) md5sum {
2446 return parsed_ == NULL ? nil : (id) parsed_->md5sum_;
2450 @synchronized (database_) {
2451 if ([database_ era] != era_ || version_.end())
2454 return version_->InstalledSize;
2457 - (NSString *) longDescription {
2458 @synchronized (database_) {
2459 if ([database_ era] != era_ || file_.end())
2462 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2463 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2465 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2466 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2467 if ([lines count] < 2)
2470 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2471 for (size_t i(1), e([lines count]); i != e; ++i) {
2472 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2473 [trimmed addObject:trim];
2476 return [trimmed componentsJoinedByString:@"\n"];
2479 - (NSString *) shortDescription {
2480 if (parsed_ != NULL)
2481 return static_cast<NSString *>(parsed_->tagline_);
2483 @synchronized (database_) {
2484 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2486 const char *start, *end;
2487 if (!parser.ShortDesc(start, end))
2490 if (end - start > 200)
2494 if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start)))
2497 while (end != start && end[-1] == '\r')
2501 return [(id) CYStringCreate(start, end - start) autorelease];
2505 _profile(Package$index)
2506 CFStringRef name((CFStringRef) [self name]);
2507 if (CFStringGetLength(name) == 0)
2509 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2510 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2512 return toupper(character);
2516 - (PackageValue *) metadata {
2521 PackageValue *metadata([self metadata]);
2522 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2525 - (bool) subscribed {
2526 return [self metadata]->subscribed_;
2529 - (bool) setSubscribed:(bool)subscribed {
2530 PackageValue *metadata([self metadata]);
2531 if (metadata->subscribed_ == subscribed)
2533 metadata->subscribed_ = subscribed;
2541 - (NSString *) latest {
2545 - (NSString *) installed {
2549 - (BOOL) uninstalled {
2550 return installed_.empty();
2554 return !version_.end();
2557 - (BOOL) upgradableAndEssential:(BOOL)essential {
2558 _profile(Package$upgradableAndEssential)
2559 pkgCache::VerIterator current(iterator_.CurrentVer());
2561 return essential && essential_;
2563 return !version_.end() && version_ != current;
2567 - (BOOL) essential {
2572 return [database_ cache][iterator_].InstBroken();
2575 - (BOOL) unfiltered {
2576 _profile(Package$unfiltered$obsolete)
2577 if (_unlikely(obsolete_))
2581 _profile(Package$unfiltered$hasSupportingRole)
2582 if (_unlikely(![self hasSupportingRole]))
2590 if (![self unfiltered])
2595 _profile(Package$visible$section)
2596 section = [self section];
2599 _profile(Package$visible$isSectionVisible)
2600 if (!isSectionVisible(section))
2608 unsigned char current(iterator_->CurrentState);
2609 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2612 - (BOOL) halfConfigured {
2613 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2616 - (BOOL) halfInstalled {
2617 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2621 @synchronized (database_) {
2622 if ([database_ era] != era_ || iterator_.end())
2625 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2626 return state.Mode != pkgDepCache::ModeKeep;
2629 - (NSString *) mode {
2630 @synchronized (database_) {
2631 if ([database_ era] != era_ || iterator_.end())
2634 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2636 switch (state.Mode) {
2637 case pkgDepCache::ModeDelete:
2638 if ((state.iFlags & pkgDepCache::Purge) != 0)
2642 case pkgDepCache::ModeKeep:
2643 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2644 return @"REINSTALL";
2645 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2649 case pkgDepCache::ModeInstall:
2650 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2651 return @"REINSTALL";
2652 else*/ switch (state.Status) {
2654 return @"DOWNGRADE";
2660 return @"NEW_INSTALL";
2671 - (NSString *) name {
2672 return name_.empty() ? id_ : name_;
2675 - (UIImage *) icon {
2676 NSString *section = [self simpleSection];
2679 if (parsed_ != NULL)
2680 if (NSString *href = parsed_->icon_)
2681 if ([href hasPrefix:@"file:///"])
2682 icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2683 if (icon == nil) if (section != nil)
2684 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
2685 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
2686 if ([dicon hasPrefix:@"file:///"])
2687 icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2689 icon = [UIImage applicationImageNamed:@"unknown.png"];
2693 - (NSString *) homepage {
2694 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
2697 - (NSString *) depiction {
2698 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
2701 - (MIMEAddress *) sponsor {
2702 return parsed_ == NULL || parsed_->sponsor_.empty() ? nil : [MIMEAddress addressWithString:parsed_->sponsor_];
2705 - (MIMEAddress *) author {
2706 return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_];
2709 - (NSString *) support {
2710 return parsed_ != NULL && !parsed_->bugs_.empty() ? parsed_->bugs_ : [[self source] supportForPackage:id_];
2713 - (NSArray *) files {
2714 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
2715 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
2718 fin.open([path UTF8String]);
2723 while (std::getline(fin, line))
2724 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
2729 - (NSString *) state {
2730 @synchronized (database_) {
2731 if ([database_ era] != era_ || file_.end())
2734 switch (iterator_->CurrentState) {
2735 case pkgCache::State::NotInstalled:
2736 return @"NotInstalled";
2737 case pkgCache::State::UnPacked:
2739 case pkgCache::State::HalfConfigured:
2740 return @"HalfConfigured";
2741 case pkgCache::State::HalfInstalled:
2742 return @"HalfInstalled";
2743 case pkgCache::State::ConfigFiles:
2744 return @"ConfigFiles";
2745 case pkgCache::State::Installed:
2746 return @"Installed";
2747 case pkgCache::State::TriggersAwaited:
2748 return @"TriggersAwaited";
2749 case pkgCache::State::TriggersPending:
2750 return @"TriggersPending";
2753 return (NSString *) [NSNull null];
2756 - (NSString *) selection {
2757 @synchronized (database_) {
2758 if ([database_ era] != era_ || file_.end())
2761 switch (iterator_->SelectedState) {
2762 case pkgCache::State::Unknown:
2764 case pkgCache::State::Install:
2766 case pkgCache::State::Hold:
2768 case pkgCache::State::DeInstall:
2769 return @"DeInstall";
2770 case pkgCache::State::Purge:
2774 return (NSString *) [NSNull null];
2777 - (NSArray *) warnings {
2778 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
2779 const char *name(iterator_.Name());
2781 size_t length(strlen(name));
2782 if (length < 2) invalid:
2783 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
2784 else for (size_t i(0); i != length; ++i)
2786 /* XXX: technically this is not allowed */
2787 (name[i] < 'A' || name[i] > 'Z') &&
2788 (name[i] < 'a' || name[i] > 'z') &&
2789 (name[i] < '0' || name[i] > '9') &&
2790 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
2793 if (strcmp(name, "cydia") != 0) {
2796 bool _private = false;
2799 bool repository = [[self section] isEqualToString:@"Repositories"];
2801 if (NSArray *files = [self files])
2802 for (NSString *file in files)
2803 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
2805 else if (!user && [file isEqualToString:@"/User"])
2807 else if (!_private && [file isEqualToString:@"/private"])
2809 else if (!stash && [file isEqualToString:@"/var/stash"])
2812 /* XXX: this is not sensitive enough. only some folders are valid. */
2813 if (cydia && !repository)
2814 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
2816 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
2818 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
2820 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
2823 return [warnings count] == 0 ? nil : warnings;
2826 - (NSArray *) applications {
2827 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
2829 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
2831 static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$");
2832 if (NSArray *files = [self files])
2833 for (NSString *file in files)
2834 if (application_r(file)) {
2835 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
2836 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
2837 if ([id isEqualToString:me])
2840 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
2842 display = application_r[1];
2844 NSString *bundle([file stringByDeletingLastPathComponent]);
2845 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
2846 if (icon == nil || [icon length] == 0)
2848 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
2850 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
2851 [applications addObject:application];
2853 [application addObject:id];
2854 [application addObject:display];
2855 [application addObject:url];
2858 return [applications count] == 0 ? nil : applications;
2861 - (Source *) source {
2862 if (source_ == nil) {
2863 @synchronized (database_) {
2864 if ([database_ era] != era_ || file_.end())
2865 source_ = (Source *) [NSNull null];
2867 source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null];
2871 return source_ == (Source *) [NSNull null] ? nil : source_;
2878 - (BOOL) matches:(NSArray *)query {
2879 if (query == nil || [query count] == 0)
2888 string = [self name];
2889 length = [string length];
2891 for (NSString *term in query) {
2892 range = [string rangeOfString:term options:MatchCompareOptions_];
2893 if (range.location != NSNotFound)
2894 rank_ -= 6 * 1000000 / length;
2899 length = [string length];
2901 for (NSString *term in query) {
2902 range = [string rangeOfString:term options:MatchCompareOptions_];
2903 if (range.location != NSNotFound)
2904 rank_ -= 6 * 1000000 / length;
2908 string = [self shortDescription];
2909 length = [string length];
2910 NSUInteger stop(std::min<NSUInteger>(length, 200));
2912 for (NSString *term in query) {
2913 range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)];
2914 if (range.location != NSNotFound)
2915 rank_ -= 2 * 100000;
2921 - (bool) hasSupportingRole {
2926 if ([Role_ isEqualToString:@"User"])
2930 if ([Role_ isEqualToString:@"Hacker"])
2934 if ([Role_ isEqualToString:@"Developer"])
2939 - (NSArray *) tags {
2943 - (BOOL) hasTag:(NSString *)tag {
2944 return tags_ == nil ? NO : [tags_ containsObject:tag];
2947 - (NSString *) primaryPurpose {
2948 for (NSString *tag in (NSArray *) tags_)
2949 if ([tag hasPrefix:@"purpose::"])
2950 return [tag substringFromIndex:9];
2954 - (NSArray *) purposes {
2955 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
2956 for (NSString *tag in (NSArray *) tags_)
2957 if ([tag hasPrefix:@"purpose::"])
2958 [purposes addObject:[tag substringFromIndex:9]];
2959 return [purposes count] == 0 ? nil : purposes;
2962 - (bool) isCommercial {
2963 return [self hasTag:@"cydia::commercial"];
2966 - (void) setIndex:(size_t)index {
2967 if (metadata_->index_ != index)
2968 metadata_->index_ = index;
2971 - (CYString &) cyname {
2972 return name_.empty() ? id_ : name_;
2975 - (uint32_t) compareBySection:(NSArray *)sections {
2976 NSString *section([self section]);
2977 for (size_t i(0), e([sections count]); i != e; ++i) {
2978 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
2982 return _not(uint32_t);
2986 @synchronized (database_) {
2987 pkgProblemResolver *resolver = [database_ resolver];
2988 resolver->Clear(iterator_);
2990 pkgCacheFile &cache([database_ cache]);
2991 cache->SetReInstall(iterator_, false);
2992 cache->MarkKeep(iterator_, false);
2996 @synchronized (database_) {
2997 pkgProblemResolver *resolver = [database_ resolver];
2998 resolver->Clear(iterator_);
2999 resolver->Protect(iterator_);
3001 pkgCacheFile &cache([database_ cache]);
3002 cache->SetReInstall(iterator_, false);
3003 cache->MarkInstall(iterator_, false);
3005 pkgDepCache::StateCache &state((*cache)[iterator_]);
3006 if (!state.Install())
3007 cache->SetReInstall(iterator_, true);
3011 @synchronized (database_) {
3012 pkgProblemResolver *resolver = [database_ resolver];
3013 resolver->Clear(iterator_);
3014 resolver->Remove(iterator_);
3015 resolver->Protect(iterator_);
3017 pkgCacheFile &cache([database_ cache]);
3018 cache->SetReInstall(iterator_, false);
3019 cache->MarkDelete(iterator_, true);
3022 - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query {
3023 _profile(Package$isUnfilteredAndSearchedForBy)
3026 _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered)
3027 value &= [self unfiltered];
3030 _profile(Package$isUnfilteredAndSearchedForBy$Match)
3031 value &= [self matches:query];
3038 - (bool) isUnfilteredAndSelectedForBy:(NSString *)search {
3039 if ([search length] == 0)
3042 _profile(Package$isUnfilteredAndSelectedForBy)
3045 _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered)
3046 value &= [self unfiltered];
3049 _profile(Package$isUnfilteredAndSelectedForBy$Match)
3050 value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame;
3057 - (bool) isInstalledAndUnfiltered:(NSNumber *)number {
3058 return ![self uninstalled] && (![number boolValue] && role_ != 7 || [self unfiltered]);
3061 - (bool) isVisibleInSection:(NSString *)name {
3062 NSString *section([self section]);
3066 section == nil && [name length] == 0 ||
3067 [name isEqualToString:section]
3068 ) && [self visible];
3071 - (bool) isVisibleInSource:(Source *)source {
3072 return [self source] == source && [self visible];
3077 /* Section Class {{{ */
3078 @interface Section : NSObject {
3083 _H<NSString> localized_;
3086 - (NSComparisonResult) compareByLocalized:(Section *)section;
3087 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3088 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3089 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3090 - (Section *) initWithIndex:(unichar)index row:(size_t)row;
3091 - (NSString *) name;
3098 - (void) addToCount;
3100 - (void) setCount:(size_t)count;
3101 - (NSString *) localized;
3105 @implementation Section
3107 - (NSComparisonResult) compareByLocalized:(Section *)section {
3108 NSString *lhs(localized_);
3109 NSString *rhs([section localized]);
3111 /*if ([lhs length] != 0 && [rhs length] != 0) {
3112 unichar lhc = [lhs characterAtIndex:0];
3113 unichar rhc = [rhs characterAtIndex:0];
3115 if (isalpha(lhc) && !isalpha(rhc))
3116 return NSOrderedAscending;
3117 else if (!isalpha(lhc) && isalpha(rhc))
3118 return NSOrderedDescending;
3121 return [lhs compare:rhs options:LaxCompareOptions_];
3124 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3125 if ((self = [self initWithName:name localize:NO]) != nil) {
3126 if (localized != nil)
3127 localized_ = localized;
3131 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3132 return [self initWithName:name row:0 localize:localize];
3135 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3136 if ((self = [super init]) != nil) {
3141 localized_ = LocalizeSection(name_);
3145 /* XXX: localize the index thingees */
3146 - (Section *) initWithIndex:(unichar)index row:(size_t)row {
3147 if ((self = [super init]) != nil) {
3148 name_ = [NSString stringWithCharacters:&index length:1];
3154 - (NSString *) name {
3174 - (void) addToCount {
3178 - (void) setCount:(size_t)count {
3182 - (NSString *) localized {
3189 class CydiaLogCleaner :
3190 public pkgArchiveCleaner
3193 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3198 /* Database Implementation {{{ */
3199 @implementation Database
3201 + (Database *) sharedInstance {
3202 static _H<Database> instance;
3203 if (instance == nil)
3204 instance = [[[Database alloc] init] autorelease];
3212 - (void) releasePackages {
3213 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3214 CFArrayRemoveAllValues(packages_);
3218 // XXX: actually implement this thing
3220 [self releasePackages];
3221 apr_pool_destroy(pool_);
3222 NSRecycleZone(zone_);
3226 - (void) _readCydia:(NSNumber *)fd {
3227 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3228 std::istream is(&ib);
3231 static Pcre finish_r("^finish:([^:]*)$");
3233 while (std::getline(is, line)) {
3234 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3236 const char *data(line.c_str());
3237 size_t size = line.size();
3238 lprintf("C:%s\n", data);
3240 if (finish_r(data, size)) {
3241 NSString *finish = finish_r[1];
3242 int index = [Finishes_ indexOfObject:finish];
3243 if (index != INT_MAX && index > Finish_)
3253 - (void) _readStatus:(NSNumber *)fd {
3254 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3255 std::istream is(&ib);
3258 static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$");
3259 static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$");
3261 while (std::getline(is, line)) {
3262 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3264 const char *data(line.c_str());
3265 size_t size(line.size());
3266 lprintf("S:%s\n", data);
3268 if (conffile_r(data, size)) {
3269 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3270 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3271 } else if (strncmp(data, "status: ", 8) == 0) {
3272 // status: <package>: {unpacked,half-configured,installed}
3273 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3274 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3275 } else if (strncmp(data, "processing: ", 12) == 0) {
3276 // processing: configure: config-test
3277 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3278 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3279 } else if (pmstatus_r(data, size)) {
3280 std::string type([pmstatus_r[1] UTF8String]);
3282 NSString *package = pmstatus_r[2];
3283 if ([package isEqualToString:@"dpkg-exec"])
3286 float percent([pmstatus_r[3] floatValue]);
3287 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3289 NSString *string = pmstatus_r[4];
3291 if (type == "pmerror") {
3292 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3293 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3294 } else if (type == "pmstatus") {
3295 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3296 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3297 } else if (type == "pmconffile")
3298 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3300 lprintf("E:unknown pmstatus\n");
3302 lprintf("E:unknown status\n");
3310 - (void) _readOutput:(NSNumber *)fd {
3311 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3312 std::istream is(&ib);
3315 while (std::getline(is, line)) {
3316 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3318 lprintf("O:%s\n", line.c_str());
3320 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3321 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3333 - (Package *) packageWithName:(NSString *)name {
3336 @synchronized (self) {
3337 if (static_cast<pkgDepCache *>(cache_) == NULL)
3339 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3340 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self];
3344 if ((self = [super init]) != nil) {
3351 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3352 apr_pool_create(&pool_, NULL);
3354 size_t capacity(MetaFile_->active_);
3360 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3361 sourceList_ = [NSMutableArray arrayWithCapacity:16];
3365 _assert(pipe(fds) != -1);
3368 _config->Set("APT::Keep-Fds::", cydiafd_);
3369 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3372 detachNewThreadSelector:@selector(_readCydia:)
3374 withObject:[NSNumber numberWithInt:fds[0]]
3377 _assert(pipe(fds) != -1);
3381 detachNewThreadSelector:@selector(_readStatus:)
3383 withObject:[NSNumber numberWithInt:fds[0]]
3386 _assert(pipe(fds) != -1);
3387 _assert(dup2(fds[0], 0) != -1);
3388 _assert(close(fds[0]) != -1);
3390 input_ = fdopen(fds[1], "a");
3392 _assert(pipe(fds) != -1);
3393 _assert(dup2(fds[1], 1) != -1);
3394 _assert(close(fds[1]) != -1);
3397 detachNewThreadSelector:@selector(_readOutput:)
3399 withObject:[NSNumber numberWithInt:fds[0]]
3404 - (pkgCacheFile &) cache {
3408 - (pkgDepCache::Policy *) policy {
3412 - (pkgRecords *) records {
3416 - (pkgProblemResolver *) resolver {
3420 - (pkgAcquire &) fetcher {
3424 - (pkgSourceList &) list {
3428 - (NSArray *) packages {
3429 return (NSArray *) packages_;
3432 - (NSArray *) sources {
3436 - (Source *) sourceWithKey:(NSString *)key {
3437 for (Source *source in [self sources]) {
3438 if ([[source key] isEqualToString:key])
3443 - (bool) popErrorWithTitle:(NSString *)title {
3446 while (!_error->empty()) {
3448 bool warning(!_error->PopMessage(error));
3453 size_t size(error.size());
3454 if (size == 0 || error[size - 1] != '\n')
3456 error.resize(size - 1);
3459 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3461 static Pcre no_pubkey("^GPG error:.* NO_PUBKEY .*$");
3462 if (warning && no_pubkey(error.c_str()))
3465 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3471 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3472 return [self popErrorWithTitle:title] || !success;
3475 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
3476 @synchronized (self) {
3479 [self releasePackages];
3482 [sourceList_ removeAllObjects];
3502 apr_pool_clear(pool_);
3504 NSRecycleZone(zone_);
3505 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3507 int chk(creat("/tmp/cydia.chk", 0644));
3511 if (invocation != nil)
3512 [invocation invoke];
3514 NSString *title(UCLocalize("DATABASE"));
3517 OpProgress progress;
3518 while (!cache_.Open(progress, true)) { pop:
3520 bool warning(!_error->PopMessage(error));
3521 lprintf("cache_.Open():[%s]\n", error.c_str());
3523 if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3524 [delegate_ repairWithSelector:@selector(configure)];
3525 else if (error == "The package lists or status file could not be parsed or opened.")
3526 [delegate_ repairWithSelector:@selector(update)];
3527 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3528 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3529 // else if (error == "Malformed Status line")
3530 // else if (error == "The list of sources could not be read.")
3532 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3542 unlink("/tmp/cydia.chk");
3544 now_ = [[NSDate date] timeIntervalSince1970];
3546 policy_ = new pkgDepCache::Policy();
3547 records_ = new pkgRecords(cache_);
3548 resolver_ = new pkgProblemResolver(cache_);
3549 fetcher_ = new pkgAcquire(&status_);
3552 list_ = new pkgSourceList();
3553 if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()])
3556 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3557 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3561 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3564 if (cache_->BrokenCount() != 0) {
3565 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3568 if (cache_->BrokenCount() != 0) {
3569 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3573 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3577 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3578 Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:pool_] autorelease]);
3579 [sourceList_ addObject:object];
3581 std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
3582 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3583 // XXX: this could be more intelligent
3584 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3585 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3587 sourceMap_[cached->ID] = object;
3592 /*std::vector<Package *> packages;
3593 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3598 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3599 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self])
3600 //packages.push_back(package);
3601 CFArrayAppendValue(packages_, CFRetain(package));
3605 /*if (packages.empty())
3606 packages_ = [[NSArray alloc] init];
3608 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3611 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)];
3612 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3613 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3621 /*if (!packages.empty())
3622 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/
3623 //std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3625 //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3627 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3629 //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3633 size_t count(CFArrayGetCount(packages_));
3634 MetaFile_->active_ = count;
3636 for (size_t index(0); index != count; ++index)
3637 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3644 @synchronized (self) {
3646 resolver_ = new pkgProblemResolver(cache_);
3648 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3649 if (!cache_[iterator].Keep())
3650 cache_->MarkKeep(iterator, false);
3651 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3652 cache_->SetReInstall(iterator, false);
3655 - (void) configure {
3656 NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_];
3658 system([dpkg UTF8String]);
3663 // XXX: I don't remember this condition
3668 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3670 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3672 if ([self popErrorWithTitle:title])
3676 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
3678 CydiaLogCleaner cleaner;
3679 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
3686 fetcher_->Shutdown();
3688 pkgRecords records(cache_);
3690 lock_ = new FileFd();
3691 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3693 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
3695 if ([self popErrorWithTitle:title])
3699 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3702 manager_ = (_system->CreatePM(cache_));
3703 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
3710 bool substrate(RestartSubstrate_);
3711 RestartSubstrate_ = false;
3713 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
3715 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
3717 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3719 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3720 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3723 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3725 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
3727 [self popErrorWithTitle:title];
3731 bool failed = false;
3732 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
3733 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
3735 if ((*item)->Status == pkgAcquire::Item::StatIdle)
3741 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3749 RestartSubstrate_ = true;
3752 pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_);
3754 if (_error->PendingError()) {
3759 if (result == pkgPackageManager::Failed) {
3764 if (result != pkgPackageManager::Completed) {
3769 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
3771 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3773 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
3774 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
3777 if (![before isEqualToArray:after])
3782 NSString *title(UCLocalize("UPGRADE"));
3783 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
3789 [self updateWithStatus:status_];
3792 - (void) updateWithStatus:(Status &)status {
3793 NSString *title(UCLocalize("REFRESHING_DATA"));
3796 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3800 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
3801 if ([self popErrorWithTitle:title])
3804 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3806 bool success(ListUpdate(status, list, PulseInterval_));
3807 if (status.WasCancelled())
3810 [self popErrorWithTitle:title forOperation:success];
3811 [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"];
3815 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
3818 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
3819 delegate_ = delegate;
3822 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
3823 progress_ = delegate;
3824 status_.setDelegate(delegate);
3827 - (NSObject<ProgressDelegate> *) progressDelegate {
3831 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
3832 SourceMap::const_iterator i(sourceMap_.find(file->ID));
3833 return i == sourceMap_.end() ? nil : i->second;
3836 - (NSString *) mappedSectionForPointer:(const char *)section {
3837 _H<NSString> *mapped;
3839 _profile(Database$mappedSectionForPointer$Cache)
3840 mapped = §ions_[section];
3843 if (*mapped == NULL) {
3844 size_t length(strlen(section));
3845 char spaced[length + 1];
3847 _profile(Database$mappedSectionForPointer$Replace)
3848 for (size_t index(0); index != length; ++index)
3849 spaced[index] = section[index] == '_' ? ' ' : section[index];
3850 spaced[length] = '\0';
3855 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
3856 string = [NSString stringWithUTF8String:spaced];
3859 _profile(Database$mappedSectionForPointer$Map)
3860 string = [SectionMap_ objectForKey:string] ?: string;
3870 static _H<NSMutableSet> Diversions_;
3872 @interface Diversion : NSObject {
3875 _H<NSString> format_;
3880 @implementation Diversion
3882 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
3883 if ((self = [super init]) != nil) {
3884 pattern_ = [from UTF8String];
3890 - (NSString *) divert:(NSString *)url {
3891 return !pattern_(url) ? nil : pattern_->*format_;
3894 + (NSURL *) divertURL:(NSURL *)url {
3896 NSString *href([url absoluteString]);
3898 for (Diversion *diversion in (id) Diversions_)
3899 if (NSString *diverted = [diversion divert:href]) {
3901 NSLog(@"div: %@", diverted);
3903 url = [NSURL URLWithString:diverted];
3910 - (NSString *) key {
3914 - (NSUInteger) hash {
3918 - (BOOL) isEqual:(Diversion *)object {
3919 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
3924 @interface CydiaObject : NSObject {
3925 _H<IndirectDelegate> indirect_;
3926 _transient id delegate_;
3929 - (id) initWithDelegate:(IndirectDelegate *)indirect;
3933 @interface CydiaWebViewController : CyteWebViewController {
3934 _H<CydiaObject> cydia_;
3937 + (void) addDiversion:(Diversion *)diversion;
3941 /* Web Scripting {{{ */
3942 @implementation CydiaObject
3944 - (id) initWithDelegate:(IndirectDelegate *)indirect {
3945 if ((self = [super init]) != nil) {
3946 indirect_ = indirect;
3950 - (void) setDelegate:(id)delegate {
3951 delegate_ = delegate;
3954 + (NSArray *) _attributeKeys {
3955 return [NSArray arrayWithObjects:
3974 - (NSArray *) attributeKeys {
3975 return [[self class] _attributeKeys];
3978 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
3979 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
3982 - (NSString *) version {
3986 - (NSString *) device {
3987 return [[UIDevice currentDevice] uniqueIdentifier];
3990 - (NSString *) firmware {
3991 return [[UIDevice currentDevice] systemVersion];
3994 - (NSString *) hostname {
3995 return [[UIDevice currentDevice] name];
3998 - (NSString *) idiom {
3999 return (id) Idiom_ ?: [NSNull null];
4002 - (NSString *) mcc {
4003 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode")))
4004 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease];
4008 - (NSString *) mnc {
4009 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode")))
4010 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease];
4014 - (NSString *) operator {
4015 if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName")))
4016 return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease];
4020 - (NSString *) bbsnum {
4021 return (id) BBSNum_ ?: [NSNull null];
4024 - (NSString *) ecid {
4025 return (id) ChipID_ ?: [NSNull null];
4028 - (NSString *) serial {
4029 return SerialNumber_;
4032 - (NSString *) role {
4033 return (id) Role_ ?: [NSNull null];
4036 - (NSString *) model {
4037 return [NSString stringWithUTF8String:Machine_];
4040 - (NSString *) token {
4041 return (id) Token_ ?: [NSNull null];
4044 + (NSString *) webScriptNameForSelector:(SEL)selector {
4046 else if (selector == @selector(addBridgedHost:))
4047 return @"addBridgedHost";
4048 else if (selector == @selector(addInsecureHost:))
4049 return @"addInsecureHost";
4050 else if (selector == @selector(addInternalRedirect::))
4051 return @"addInternalRedirect";
4052 else if (selector == @selector(addPipelinedHost:scheme:))
4053 return @"addPipelinedHost";
4054 else if (selector == @selector(addSource:::))
4055 return @"addSource";
4056 else if (selector == @selector(addTokenHost:))
4057 return @"addTokenHost";
4058 else if (selector == @selector(addTrivialSource:))
4059 return @"addTrivialSource";
4060 else if (selector == @selector(close))
4062 else if (selector == @selector(du:))
4064 else if (selector == @selector(stringWithFormat:arguments:))
4066 else if (selector == @selector(getAllSources))
4067 return @"getAllSourcs";
4068 else if (selector == @selector(getKernelNumber:))
4069 return @"getKernelNumber";
4070 else if (selector == @selector(getKernelString:))
4071 return @"getKernelString";
4072 else if (selector == @selector(getInstalledPackages))
4073 return @"getInstalledPackages";
4074 else if (selector == @selector(getIORegistryEntry::))
4075 return @"getIORegistryEntry";
4076 else if (selector == @selector(getLocaleIdentifier))
4077 return @"getLocaleIdentifier";
4078 else if (selector == @selector(getPreferredLanguages))
4079 return @"getPreferredLanguages";
4080 else if (selector == @selector(getPackageById:))
4081 return @"getPackageById";
4082 else if (selector == @selector(getMetadataKeys))
4083 return @"getMetadataKeys";
4084 else if (selector == @selector(getMetadataValue:))
4085 return @"getMetadataValue";
4086 else if (selector == @selector(getSessionValue:))
4087 return @"getSessionValue";
4088 else if (selector == @selector(installPackages:))
4089 return @"installPackages";
4090 else if (selector == @selector(localizedStringForKey:value:table:))
4092 else if (selector == @selector(popViewController:))
4093 return @"popViewController";
4094 else if (selector == @selector(refreshSources))
4095 return @"refreshSources";
4096 else if (selector == @selector(removeButton))
4097 return @"removeButton";
4098 else if (selector == @selector(saveConfig))
4099 return @"saveConfig";
4100 else if (selector == @selector(setCydiaSource:))
4101 return @"setCydiaSource";
4102 else if (selector == @selector(setMetadataValue::))
4103 return @"setMetadataValue";
4104 else if (selector == @selector(setSessionValue::))
4105 return @"setSessionValue";
4106 else if (selector == @selector(substitutePackageNames:))
4107 return @"substitutePackageNames";
4108 else if (selector == @selector(scrollToBottom:))
4109 return @"scrollToBottom";
4110 else if (selector == @selector(setAllowsNavigationAction:))
4111 return @"setAllowsNavigationAction";
4112 else if (selector == @selector(setBadgeValue:))
4113 return @"setBadgeValue";
4114 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4115 return @"setButtonImage";
4116 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4117 return @"setButtonTitle";
4118 else if (selector == @selector(setHidesBackButton:))
4119 return @"setHidesBackButton";
4120 else if (selector == @selector(setHidesNavigationBar:))
4121 return @"setHidesNavigationBar";
4122 else if (selector == @selector(setNavigationBarStyle:))
4123 return @"setNavigationBarStyle";
4124 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4125 return @"setNavigationBarTintColor";
4126 else if (selector == @selector(setPasteboardString:))
4127 return @"setPasteboardString";
4128 else if (selector == @selector(setPasteboardURL:))
4129 return @"setPasteboardURL";
4130 else if (selector == @selector(setScrollAlwaysBounceVertical:))
4131 return @"setScrollAlwaysBounceVertical";
4132 else if (selector == @selector(setScrollIndicatorStyle:))
4133 return @"setScrollIndicatorStyle";
4134 else if (selector == @selector(setToken:))
4136 else if (selector == @selector(setViewportWidth:))
4137 return @"setViewportWidth";
4138 else if (selector == @selector(statfs:))
4140 else if (selector == @selector(supports:))
4142 else if (selector == @selector(unload))
4148 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4149 return [self webScriptNameForSelector:selector] == nil;
4152 - (BOOL) supports:(NSString *)feature {
4153 return [feature isEqualToString:@"window.open"];
4157 [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO];
4160 - (void) setScrollAlwaysBounceVertical:(NSNumber *)value {
4161 [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO];
4164 - (void) setScrollIndicatorStyle:(NSString *)style {
4165 [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO];
4168 - (void) addInternalRedirect:(NSString *)from :(NSString *)to {
4169 [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4172 - (NSNumber *) getKernelNumber:(NSString *)name {
4173 const char *string([name UTF8String]);
4176 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4177 return (id) [NSNull null];
4179 if (size != sizeof(int))
4180 return (id) [NSNull null];
4183 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4184 return (id) [NSNull null];
4186 return [NSNumber numberWithInt:value];
4189 - (NSString *) getKernelString:(NSString *)name {
4190 const char *string([name UTF8String]);
4193 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4194 return (id) [NSNull null];
4196 char value[size + 1];
4197 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4198 return (id) [NSNull null];
4200 // XXX: just in case you request something ludicrous
4203 return [NSString stringWithCString:value];
4206 - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry {
4207 NSObject *value(CYIOGetValue([path UTF8String], entry));
4210 if ([value isKindOfClass:[NSData class]])
4211 value = CYHex((NSData *) value);
4216 - (void) _setCydiaSource:(NSString *)source {
4217 @synchronized (HostConfig_) {
4218 CydiaSource_ = source;
4219 [Metadata_ setObject:source forKey:@"CydiaSource"];
4225 - (void) setCydiaSource:(NSString *)source {
4226 [self performSelectorOnMainThread:@selector(_setCydiaSource:) withObject:source waitUntilDone:NO];
4229 - (NSString *) cydiaSource {
4230 @synchronized (HostConfig_) {
4231 return (id) CydiaSource_ ?: [NSNull null];
4235 - (NSArray *) getMetadataKeys {
4236 @synchronized (Values_) {
4237 return [Values_ allKeys];
4240 - (id) getMetadataValue:(NSString *)key {
4241 @synchronized (Values_) {
4242 return [Values_ objectForKey:key];
4245 - (void) setMetadataValue:(NSString *)key :(NSString *)value {
4246 @synchronized (Values_) {
4247 if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null])
4248 [Values_ removeObjectForKey:key];
4250 [Values_ setObject:value forKey:key];
4252 [delegate_ performSelectorOnMainThread:@selector(updateValues) withObject:nil waitUntilDone:YES];
4255 - (id) getSessionValue:(NSString *)key {
4256 @synchronized (SessionData_) {
4257 return [SessionData_ objectForKey:key];
4260 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4261 @synchronized (SessionData_) {
4262 if (value == (id) [WebUndefined undefined])
4263 [SessionData_ removeObjectForKey:key];
4265 [SessionData_ setObject:value forKey:key];
4268 - (void) addBridgedHost:(NSString *)host {
4269 @synchronized (HostConfig_) {
4270 [BridgedHosts_ addObject:host];
4273 - (void) addInsecureHost:(NSString *)host {
4274 @synchronized (HostConfig_) {
4275 [InsecureHosts_ addObject:host];
4278 - (void) addTokenHost:(NSString *)host {
4279 @synchronized (HostConfig_) {
4280 [TokenHosts_ addObject:host];
4283 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4284 @synchronized (HostConfig_) {
4285 if (scheme != (id) [WebUndefined undefined])
4286 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4288 [PipelinedHosts_ addObject:host];
4291 - (void) popViewController:(NSNumber *)value {
4292 if (value == (id) [WebUndefined undefined])
4293 value = [NSNumber numberWithBool:YES];
4294 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4297 - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections {
4298 NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]);
4300 for (NSString *section in sections)
4301 [array addObject:section];
4303 [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys:
4306 distribution, @"Distribution",
4308 nil] waitUntilDone:NO];
4311 - (void) addTrivialSource:(NSString *)href {
4312 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4315 - (void) refreshSources {
4316 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4319 - (void) saveConfig {
4320 [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO];
4323 - (NSArray *) getAllSources {
4324 return [[Database sharedInstance] sources];
4327 - (NSArray *) getInstalledPackages {
4328 Database *database([Database sharedInstance]);
4329 @synchronized (database) {
4330 NSArray *packages([database packages]);
4331 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4332 for (Package *package in packages)
4333 if (![package uninstalled])
4334 [installed addObject:package];
4338 - (Package *) getPackageById:(NSString *)id {
4339 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4343 return (Package *) [NSNull null];
4346 - (NSString *) getLocaleIdentifier {
4347 return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_);
4350 - (NSArray *) getPreferredLanguages {
4354 - (NSArray *) statfs:(NSString *)path {
4357 if (path == nil || statfs([path UTF8String], &stat) == -1)
4360 return [NSArray arrayWithObjects:
4361 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4362 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4363 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4367 - (NSNumber *) du:(NSString *)path {
4368 NSNumber *value(nil);
4371 _assert(pipe(fds) != -1);
4373 pid_t pid(ExecFork());
4375 _assert(dup2(fds[1], 1) != -1);
4376 _assert(close(fds[0]) != -1);
4377 _assert(close(fds[1]) != -1);
4378 /* XXX: this should probably not use du */
4379 execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL);
4384 _assert(close(fds[1]) != -1);
4386 if (FILE *du = fdopen(fds[0], "r")) {
4388 while (fgets(line, sizeof(line), du) != NULL) {
4389 size_t length(strlen(line));
4390 while (length != 0 && line[length - 1] == '\n')
4391 line[--length] = '\0';
4392 if (char *tab = strchr(line, '\t')) {
4394 value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)];
4399 } else _assert(close(fds[0]));
4407 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4410 - (void) installPackages:(NSArray *)packages {
4411 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4414 - (NSString *) substitutePackageNames:(NSString *)message {
4415 NSMutableArray *words([[message componentsSeparatedByString:@" "] mutableCopy]);
4416 for (size_t i(0), e([words count]); i != e; ++i) {
4417 NSString *word([words objectAtIndex:i]);
4418 if (Package *package = [[Database sharedInstance] packageWithName:word])
4419 [words replaceObjectAtIndex:i withObject:[package name]];
4422 return [words componentsJoinedByString:@" "];
4425 - (void) removeButton {
4426 [indirect_ removeButton];
4429 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4430 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4433 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4434 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4437 - (void) setBadgeValue:(id)value {
4438 [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO];
4441 - (void) setAllowsNavigationAction:(NSString *)value {
4442 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4445 - (void) setHidesBackButton:(NSString *)value {
4446 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4449 - (void) setHidesNavigationBar:(NSString *)value {
4450 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4453 - (void) setNavigationBarStyle:(NSString *)value {
4454 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4457 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4458 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4459 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4460 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4463 - (void) setPasteboardString:(NSString *)value {
4464 [[objc_getClass("UIPasteboard") generalPasteboard] setString:value];
4467 - (void) setPasteboardURL:(NSString *)value {
4468 [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]];
4471 - (void) _setToken:(NSString *)token {
4475 [Metadata_ removeObjectForKey:@"Token"];
4477 [Metadata_ setObject:Token_ forKey:@"Token"];
4482 - (void) setToken:(NSString *)token {
4483 [self performSelectorOnMainThread:@selector(_setToken:) withObject:token waitUntilDone:NO];
4486 - (void) scrollToBottom:(NSNumber *)animated {
4487 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4490 - (void) setViewportWidth:(float)width {
4491 [indirect_ setViewportWidthOnMainThread:width];
4494 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4495 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4496 unsigned count([arguments count]);
4498 for (unsigned i(0); i != count; ++i)
4499 values[i] = [arguments objectAtIndex:i];
4500 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4503 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4504 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4506 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4508 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4514 @interface NSURL (CydiaSecure)
4517 @implementation NSURL (CydiaSecure)
4519 - (bool) isCydiaSecure {
4520 if ([[[self scheme] lowercaseString] isEqualToString:@"https"])
4523 @synchronized (HostConfig_) {
4524 if ([InsecureHosts_ containsObject:[self host]])
4533 /* Cydia Browser Controller {{{ */
4534 @implementation CydiaWebViewController
4536 - (NSURL *) navigationURL {
4537 return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4540 + (void) _initialize {
4541 [super _initialize];
4543 Diversions_ = [NSMutableSet setWithCapacity:0];
4546 + (void) addDiversion:(Diversion *)diversion {
4547 [Diversions_ addObject:diversion];
4550 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4551 [super webView:view didClearWindowObject:window forFrame:frame];
4553 WebDataSource *source([frame dataSource]);
4554 NSURLResponse *response([source response]);
4555 NSURL *url([response URL]);
4556 NSString *scheme([[url scheme] lowercaseString]);
4558 bool bridged(false);
4560 @synchronized (HostConfig_) {
4561 if ([scheme isEqualToString:@"file"])
4563 else if ([scheme isEqualToString:@"https"])
4564 if ([BridgedHosts_ containsObject:[url host]])
4569 [window setValue:cydia_ forKey:@"cydia"];
4572 - (void) _setupMail:(MFMailComposeViewController *)controller {
4573 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"];
4575 system("/usr/bin/dpkg -l >/tmp/dpkgl.log");
4576 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"];
4579 - (NSURL *) URLWithURL:(NSURL *)url {
4580 return [Diversion divertURL:url];
4583 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4584 NSURL *url([request URL]);
4585 NSString *host([url host]);
4587 NSMutableURLRequest *copy([[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source] mutableCopy]);
4589 if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil)
4590 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4595 @synchronized (HostConfig_) {
4596 bridged = [BridgedHosts_ containsObject:host];
4597 token = [TokenHosts_ containsObject:host];
4600 if ([url isCydiaSecure]) {
4602 if (UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil)
4603 [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
4605 if (Token_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Token"] == nil)
4606 [copy setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"];
4613 - (void) setDelegate:(id)delegate {
4614 [super setDelegate:delegate];
4615 [cydia_ setDelegate:delegate];
4618 - (NSString *) applicationNameForUserAgent {
4619 NSString *application([NSString stringWithFormat:@"Cydia/%@", Cydia_]);
4622 application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application];
4624 application = [NSString stringWithFormat:@"Mobile/%@ %@", System_, application];
4625 if (Product_ != nil)
4626 application = [NSString stringWithFormat:@"Version/%@ %@", Product_, application];
4632 if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) {
4633 cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease];
4639 @interface AppCacheController : CydiaWebViewController {
4644 @implementation AppCacheController
4646 - (void) didReceiveMemoryWarning {
4653 @interface NSObject (CydiaScript)
4654 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4657 @implementation NSObject (CydiaScript)
4659 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4665 @implementation NSArray (CydiaScript)
4667 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4668 WebScriptObject *object([context evaluateWebScript:@"[]"]);
4669 for (size_t i(0), e([self count]); i != e; ++i)
4670 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
4676 @implementation NSDictionary (CydiaScript)
4678 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4679 WebScriptObject *object([context evaluateWebScript:@"({})"]);
4681 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
4688 /* Confirmation Controller {{{ */
4689 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
4690 if (!iterator.end())
4691 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
4692 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
4694 pkgCache::PkgIterator package(dep.TargetPkg());
4697 if (strcmp(package.Name(), "mobilesubstrate") == 0)
4704 @protocol ConfirmationControllerDelegate
4705 - (void) cancelAndClear:(bool)clear;
4706 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
4710 @interface ConfirmationController : CydiaWebViewController {
4711 _transient Database *database_;
4713 _H<UIAlertView> essential_;
4715 _H<NSDictionary> changes_;
4716 _H<NSMutableArray> issues_;
4717 _H<NSDictionary> sizes_;
4722 - (id) initWithDatabase:(Database *)database;
4726 @implementation ConfirmationController
4730 RestartSubstrate_ = true;
4731 [delegate_ confirmWithNavigationController:[self navigationController]];
4734 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
4735 NSString *context([alert context]);
4737 if ([context isEqualToString:@"remove"]) {
4738 if (button == [alert cancelButtonIndex])
4739 [self dismissModalViewControllerAnimated:YES];
4740 else if (button == [alert firstOtherButtonIndex]) {
4744 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4745 } else if ([context isEqualToString:@"unable"]) {
4746 [self dismissModalViewControllerAnimated:YES];
4747 [alert dismissWithClickedButtonIndex:-1 animated:YES];
4749 [super alertView:alert clickedButtonAtIndex:button];
4753 - (void) _doContinue {
4754 [delegate_ cancelAndClear:NO];
4755 [self dismissModalViewControllerAnimated:YES];
4758 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
4759 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
4763 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4764 [super webView:view didClearWindowObject:window forFrame:frame];
4766 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
4767 (id) changes_, @"changes",
4768 (id) issues_, @"issues",
4769 (id) sizes_, @"sizes",
4771 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
4774 - (id) initWithDatabase:(Database *)database {
4775 if ((self = [super init]) != nil) {
4776 database_ = database;
4778 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
4779 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
4780 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
4781 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
4782 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
4786 pkgCacheFile &cache([database_ cache]);
4787 NSArray *packages([database_ packages]);
4788 pkgDepCache::Policy *policy([database_ policy]);
4790 issues_ = [NSMutableArray arrayWithCapacity:4];
4792 for (Package *package in packages) {
4793 pkgCache::PkgIterator iterator([package iterator]);
4794 NSString *name([package id]);
4796 if ([package broken]) {
4797 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
4799 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4801 reasons, @"reasons",
4804 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
4808 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
4809 pkgCache::DepIterator start;
4810 pkgCache::DepIterator end;
4811 dep.GlobOr(start, end); // ++dep
4813 if (!cache->IsImportantDep(end))
4815 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
4818 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
4820 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4821 [NSString stringWithUTF8String:start.DepType()], @"relationship",
4822 clauses, @"clauses",
4826 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
4828 pkgCache::PkgIterator target(start.TargetPkg());
4829 if (target->ProvidesList != 0)
4830 reason = @"missing";
4832 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
4834 reason = @"installed";
4835 installed = [NSString stringWithUTF8String:ver.VerStr()];
4836 } else if (!cache[target].CandidateVerIter(cache).end())
4837 reason = @"uninstalled";
4838 else if (target->ProvidesList == 0)
4839 reason = @"uninstallable";
4841 reason = @"virtual";
4844 NSDictionary *version(start.TargetVer() == 0 ? [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
4845 [NSString stringWithUTF8String:start.CompType()], @"operator",
4846 [NSString stringWithUTF8String:start.TargetVer()], @"value",
4849 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4850 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
4851 version, @"version",
4853 installed, @"installed",
4856 // yes, seriously. (wtf?)
4864 pkgDepCache::StateCache &state(cache[iterator]);
4866 static Pcre special_r("^(firmware$|gsc\\.|cy\\+)");
4868 if (state.NewInstall())
4869 [installs addObject:name];
4870 // XXX: else if (state.Install())
4871 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
4872 [reinstalls addObject:name];
4873 // XXX: move before previous if
4874 else if (state.Upgrade())
4875 [upgrades addObject:name];
4876 else if (state.Downgrade())
4877 [downgrades addObject:name];
4878 else if (!state.Delete())
4879 // XXX: _assert(state.Keep());
4881 else if (special_r(name))
4882 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
4883 [NSNull null], @"package",
4884 [NSArray arrayWithObjects:
4885 [NSDictionary dictionaryWithObjectsAndKeys:
4886 @"Conflicts", @"relationship",
4887 [NSArray arrayWithObjects:
4888 [NSDictionary dictionaryWithObjectsAndKeys:
4890 [NSNull null], @"version",
4891 @"installed", @"reason",
4898 if ([package essential])
4900 [removes addObject:name];
4903 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
4904 substrate_ |= DepSubstrate(iterator.CurrentVer());
4909 else if (Advanced_) {
4910 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
4912 essential_ = [[[UIAlertView alloc]
4913 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
4914 message:UCLocalize("REMOVING_ESSENTIALS_EX")
4916 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
4918 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
4922 [essential_ setContext:@"remove"];
4924 essential_ = [[[UIAlertView alloc]
4925 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
4926 message:UCLocalize("UNABLE_TO_COMPLY_EX")
4928 cancelButtonTitle:UCLocalize("OKAY")
4929 otherButtonTitles:nil
4932 [essential_ setContext:@"unable"];
4935 changes_ = [NSDictionary dictionaryWithObjectsAndKeys:
4936 installs, @"installs",
4937 reinstalls, @"reinstalls",
4938 upgrades, @"upgrades",
4939 downgrades, @"downgrades",
4940 removes, @"removes",
4943 sizes_ = [NSDictionary dictionaryWithObjectsAndKeys:
4944 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
4945 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
4948 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
4952 - (UIBarButtonItem *) leftButton {
4953 return [[[UIBarButtonItem alloc]
4954 initWithTitle:UCLocalize("CANCEL")
4955 style:UIBarButtonItemStylePlain
4957 action:@selector(cancelButtonClicked)
4962 - (void) applyRightButton {
4963 if ([issues_ count] == 0 && ![self isLoading])
4964 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
4965 initWithTitle:UCLocalize("CONFIRM")
4966 style:UIBarButtonItemStyleDone
4968 action:@selector(confirmButtonClicked)
4971 [[self navigationItem] setRightBarButtonItem:nil];
4975 - (void) cancelButtonClicked {
4976 [self dismissModalViewControllerAnimated:YES];
4977 [delegate_ cancelAndClear:YES];
4981 - (void) confirmButtonClicked {
4982 if (essential_ != nil)
4992 /* Progress Data {{{ */
4993 @interface CydiaProgressData : NSObject {
4994 _transient id delegate_;
5003 _H<NSMutableArray> events_;
5004 _H<NSString> title_;
5006 _H<NSString> status_;
5007 _H<NSString> finish_;
5012 @implementation CydiaProgressData
5014 + (NSArray *) _attributeKeys {
5015 return [NSArray arrayWithObjects:
5027 - (NSArray *) attributeKeys {
5028 return [[self class] _attributeKeys];
5031 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
5032 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
5036 if ((self = [super init]) != nil) {
5037 events_ = [NSMutableArray arrayWithCapacity:32];
5041 - (void) setDelegate:(id)delegate {
5042 delegate_ = delegate;
5045 - (void) setPercent:(float)value {
5049 - (NSNumber *) percent {
5050 return [NSNumber numberWithFloat:percent_];
5053 - (void) setCurrent:(float)value {
5057 - (NSNumber *) current {
5058 return [NSNumber numberWithFloat:current_];
5061 - (void) setTotal:(float)value {
5065 - (NSNumber *) total {
5066 return [NSNumber numberWithFloat:total_];
5069 - (void) setSpeed:(float)value {
5073 - (NSNumber *) speed {
5074 return [NSNumber numberWithFloat:speed_];
5077 - (NSArray *) events {
5081 - (void) removeAllEvents {
5082 [events_ removeAllObjects];
5085 - (void) addEvent:(CydiaProgressEvent *)event {
5086 [events_ addObject:event];
5089 - (void) setTitle:(NSString *)text {
5093 - (NSString *) title {
5097 - (void) setFinish:(NSString *)text {
5101 - (NSString *) finish {
5102 return (id) finish_ ?: [NSNull null];
5105 - (void) setRunning:(bool)running {
5109 - (NSNumber *) running {
5110 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5115 /* Progress Controller {{{ */
5116 @interface ProgressController : CydiaWebViewController <
5119 _transient Database *database_;
5120 _H<CydiaProgressData, 1> progress_;
5124 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5126 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5128 - (void) setTitle:(NSString *)title;
5129 - (void) setCancellable:(bool)cancellable;
5133 @implementation ProgressController
5136 [database_ setProgressDelegate:nil];
5140 - (UIBarButtonItem *) leftButton {
5141 return cancel_ == 1 ? [[[UIBarButtonItem alloc]
5142 initWithTitle:UCLocalize("CANCEL")
5143 style:UIBarButtonItemStylePlain
5145 action:@selector(cancel)
5146 ] autorelease] : nil;
5149 - (void) updateCancel {
5150 [super applyLeftButton];
5153 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5154 if ((self = [super init]) != nil) {
5155 database_ = database;
5156 delegate_ = delegate;
5158 [database_ setProgressDelegate:self];
5160 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5161 [progress_ setDelegate:self];
5163 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5165 [scroller_ setBackgroundColor:[UIColor blackColor]];
5167 [[self navigationItem] setHidesBackButton:YES];
5169 [self updateCancel];
5173 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5174 [super webView:view didClearWindowObject:window forFrame:frame];
5175 [window setValue:progress_ forKey:@"cydiaProgress"];
5178 - (void) updateProgress {
5179 [self dispatchEvent:@"CydiaProgressUpdate"];
5182 - (void) viewWillAppear:(BOOL)animated {
5183 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5184 [super viewWillAppear:animated];
5188 UpdateExternalStatus(0);
5191 [delegate_ saveState];
5195 [delegate_ returnToCydia];
5199 [delegate_ terminateWithSuccess];
5200 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5201 [delegate_ suspendWithAnimation:YES];
5203 [delegate_ suspend];*/
5215 system("/usr/bin/sbreload");
5221 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5222 SBReboot(SBSSpringBoardServerPort());
5224 reboot2(RB_AUTOBOOT);
5231 - (void) setTitle:(NSString *)title {
5232 [progress_ setTitle:title];
5233 [self updateProgress];
5236 - (UIBarButtonItem *) rightButton {
5237 return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc]
5238 initWithTitle:UCLocalize("CLOSE")
5239 style:UIBarButtonItemStylePlain
5241 action:@selector(close)
5247 system("su -c /usr/bin/uicache mobile");
5251 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5252 UpdateExternalStatus(1);
5254 [progress_ setRunning:true];
5255 [self setTitle:title];
5256 // implicit updateProgress
5258 SHA1SumValue notifyconf; {
5260 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5263 MMap mmap(file, MMap::ReadOnly);
5265 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5266 notifyconf = sha1.Result();
5270 SHA1SumValue springlist; {
5272 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5275 MMap mmap(file, MMap::ReadOnly);
5277 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5278 springlist = sha1.Result();
5282 if (invocation != nil) {
5283 [invocation yieldToSelector:@selector(invoke)];
5284 [self setTitle:@"COMPLETE"];
5289 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5292 MMap mmap(file, MMap::ReadOnly);
5294 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5295 if (!(notifyconf == sha1.Result()))
5302 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5305 MMap mmap(file, MMap::ReadOnly);
5307 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5308 if (!(springlist == sha1.Result()))
5314 if (RestartSubstrate_)
5318 RestartSubstrate_ = false;
5321 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5322 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5323 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5324 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5325 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5328 UIProgressHUD *hud([delegate_ addProgressHUD]);
5329 [hud setText:UCLocalize("LOADING")];
5330 [self yieldToSelector:@selector(uicache)];
5331 [delegate_ removeProgressHUD:hud];
5333 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5335 [progress_ setRunning:false];
5336 [self updateProgress];
5338 [self applyRightButton];
5341 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5342 [progress_ addEvent:event];
5343 [self updateProgress];
5346 - (bool) isProgressCancelled {
5347 return cancel_ == 2;
5352 [self updateCancel];
5355 - (void) setCancellable:(bool)cancellable {
5356 unsigned cancel(cancel_);
5360 else if (cancel_ == 0)
5363 if (cancel != cancel_)
5364 [self updateCancel];
5367 - (void) setProgressCancellable:(NSNumber *)cancellable {
5368 [self setCancellable:[cancellable boolValue]];
5371 - (void) setProgressPercent:(NSNumber *)percent {
5372 [progress_ setPercent:[percent floatValue]];
5373 [self updateProgress];
5376 - (void) setProgressStatus:(NSDictionary *)status {
5377 if (status == nil) {
5378 [progress_ setCurrent:0];
5379 [progress_ setTotal:0];
5380 [progress_ setSpeed:0];
5382 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5384 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5385 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5386 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5389 [self updateProgress];
5395 /* Package Cell {{{ */
5396 @interface PackageCell : CyteTableViewCell <
5397 CyteTableViewCellDelegate
5401 _H<NSString> description_;
5403 _H<NSString> source_;
5405 _H<UIImage> placard_;
5409 - (PackageCell *) init;
5410 - (void) setPackage:(Package *)package asSummary:(bool)summary;
5412 - (void) drawContentRect:(CGRect)rect;
5416 @implementation PackageCell
5418 - (PackageCell *) init {
5419 CGRect frame(CGRectMake(0, 0, 320, 74));
5420 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5421 UIView *content([self contentView]);
5422 CGRect bounds([content bounds]);
5424 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5425 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5426 [content addSubview:content_];
5428 [content_ setDelegate:self];
5429 [content_ setOpaque:YES];
5433 - (NSString *) accessibilityLabel {
5434 return [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), (id) name_, (id) description_];
5437 - (void) setPackage:(Package *)package asSummary:(bool)summary {
5438 summarized_ = summary;
5448 [content_ setBackgroundColor:[UIColor whiteColor]];
5452 Source *source = [package source];
5454 icon_ = [package icon];
5456 if (NSString *name = [package name])
5457 name_ = [NSString stringWithString:name];
5459 NSString *description(nil);
5461 if (description == nil && IsWildcat_)
5462 description = [package longDescription];
5463 if (description == nil)
5464 description = [package shortDescription];
5466 if (description != nil)
5467 description_ = [NSString stringWithString:description];
5469 commercial_ = [package isCommercial];
5471 NSString *label = nil;
5472 bool trusted = false;
5474 if (source != nil) {
5475 label = [source label];
5476 trusted = [source trusted];
5477 } else if ([[package id] isEqualToString:@"firmware"])
5478 label = UCLocalize("APPLE");
5480 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5482 NSString *from(label);
5484 NSString *section = [package simpleSection];
5485 if (section != nil && ![section isEqualToString:label]) {
5486 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5487 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5490 source_ = [NSString stringWithFormat:UCLocalize("FROM"), from];
5492 if (NSString *purpose = [package primaryPurpose])
5493 badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]];
5498 if (NSString *mode = [package mode]) {
5499 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5500 color = RemovingColor_;
5501 //placard = @"removing";
5503 color = InstallingColor_;
5504 //placard = @"installing";
5507 // XXX: the removing/installing placards are not @2x
5510 color = [UIColor whiteColor];
5512 if ([package installed] != nil)
5513 placard = @"installed";
5518 [content_ setBackgroundColor:color];
5521 placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]];
5524 [self setNeedsDisplay];
5525 [content_ setNeedsDisplay];
5528 - (void) drawSummaryContentRect:(CGRect)rect {
5529 bool highlighted(highlighted_);
5530 float width([self bounds].size.width);
5534 rect.size = [(UIImage *) icon_ size];
5536 while (rect.size.width > 16 || rect.size.height > 16) {
5537 rect.size.width /= 2;
5538 rect.size.height /= 2;
5541 rect.origin.x = 18 - rect.size.width / 2;
5542 rect.origin.y = 18 - rect.size.height / 2;
5544 [icon_ drawInRect:rect];
5547 if (badge_ != nil) {
5549 rect.size = [(UIImage *) badge_ size];
5551 rect.size.width /= 4;
5552 rect.size.height /= 4;
5554 rect.origin.x = 23 - rect.size.width / 2;
5555 rect.origin.y = 23 - rect.size.height / 2;
5557 [badge_ drawInRect:rect];
5564 UISetColor(commercial_ ? Purple_ : Black_);
5565 [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5567 if (placard_ != nil)
5568 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5571 - (void) drawNormalContentRect:(CGRect)rect {
5572 bool highlighted(highlighted_);
5573 float width([self bounds].size.width);
5577 rect.size = [(UIImage *) icon_ size];
5579 while (rect.size.width > 32 || rect.size.height > 32) {
5580 rect.size.width /= 2;
5581 rect.size.height /= 2;
5584 rect.origin.x = 25 - rect.size.width / 2;
5585 rect.origin.y = 25 - rect.size.height / 2;
5587 [icon_ drawInRect:rect];
5590 if (badge_ != nil) {
5592 rect.size = [(UIImage *) badge_ size];
5594 rect.size.width /= 2;
5595 rect.size.height /= 2;
5597 rect.origin.x = 36 - rect.size.width / 2;
5598 rect.origin.y = 36 - rect.size.height / 2;
5600 [badge_ drawInRect:rect];
5607 UISetColor(commercial_ ? Purple_ : Black_);
5608 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5609 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
5612 UISetColor(commercial_ ? Purplish_ : Gray_);
5613 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation];
5615 if (placard_ != nil)
5616 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5619 - (void) drawContentRect:(CGRect)rect {
5621 [self drawSummaryContentRect:rect];
5623 [self drawNormalContentRect:rect];
5628 /* Section Cell {{{ */
5629 @interface SectionCell : CyteTableViewCell <
5630 CyteTableViewCellDelegate
5632 _H<NSString> basic_;
5633 _H<NSString> section_;
5635 _H<NSString> count_;
5637 _H<UISwitch> switch_;
5641 - (void) setSection:(Section *)section editing:(BOOL)editing;
5645 @implementation SectionCell
5647 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5648 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5649 icon_ = [UIImage applicationImageNamed:@"folder.png"];
5650 switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease];
5651 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5653 UIView *content([self contentView]);
5654 CGRect bounds([content bounds]);
5656 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5657 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5658 [content addSubview:content_];
5659 [content_ setBackgroundColor:[UIColor whiteColor]];
5661 [content_ setDelegate:self];
5665 - (void) onSwitch:(id)sender {
5666 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
5667 if (metadata == nil) {
5668 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
5669 [Sections_ setObject:metadata forKey:basic_];
5672 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
5676 - (void) setSection:(Section *)section editing:(BOOL)editing {
5677 if (editing != editing_) {
5679 [switch_ removeFromSuperview];
5681 [self addSubview:switch_];
5690 if (section == nil) {
5691 name_ = UCLocalize("ALL_PACKAGES");
5694 basic_ = [section name];
5695 section_ = [section localized];
5697 name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_;
5698 count_ = [NSString stringWithFormat:@"%d", [section count]];
5701 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
5704 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
5705 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
5707 [content_ setNeedsDisplay];
5710 - (void) setFrame:(CGRect)frame {
5711 [super setFrame:frame];
5713 CGRect rect([switch_ frame]);
5714 [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)];
5717 - (NSString *) accessibilityLabel {
5721 - (void) drawContentRect:(CGRect)rect {
5722 bool highlighted(highlighted_ && !editing_);
5724 [icon_ drawInRect:CGRectMake(8, 7, 32, 32)];
5729 float width(rect.size.width);
5735 [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation];
5737 CGSize size = [count_ sizeWithFont:Font14_];
5741 [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_];
5747 /* File Table {{{ */
5748 @interface FileTable : CyteViewController <
5749 UITableViewDataSource,
5752 _transient Database *database_;
5753 _H<Package> package_;
5755 _H<NSMutableArray> files_;
5756 _H<UITableView, 2> list_;
5759 - (id) initWithDatabase:(Database *)database;
5760 - (void) setPackage:(Package *)package;
5764 @implementation FileTable
5766 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5767 return files_ == nil ? 0 : [files_ count];
5770 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
5774 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
5775 static NSString *reuseIdentifier = @"Cell";
5777 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
5779 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
5780 [cell setFont:[UIFont systemFontOfSize:16]];
5782 [cell setText:[files_ objectAtIndex:indexPath.row]];
5783 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
5788 - (NSURL *) navigationURL {
5789 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
5793 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
5795 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease];
5796 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5797 [list_ setRowHeight:24.0f];
5798 [(UITableView *) list_ setDataSource:self];
5799 [list_ setDelegate:self];
5800 [[self view] addSubview:list_];
5803 - (void) viewDidLoad {
5804 [super viewDidLoad];
5806 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
5809 - (void) releaseSubviews {
5815 [super releaseSubviews];
5818 - (id) initWithDatabase:(Database *)database {
5819 if ((self = [super init]) != nil) {
5820 database_ = database;
5824 - (void) setPackage:(Package *)package {
5828 files_ = [NSMutableArray arrayWithCapacity:32];
5830 if (package != nil) {
5832 name_ = [package id];
5834 if (NSArray *files = [package files])
5835 [files_ addObjectsFromArray:files];
5837 if ([files_ count] != 0) {
5838 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
5839 [files_ removeObjectAtIndex:0];
5840 [files_ sortUsingSelector:@selector(compareByPath:)];
5842 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
5843 [stack addObject:@"/"];
5845 for (int i(0), e([files_ count]); i != e; ++i) {
5846 NSString *file = [files_ objectAtIndex:i];
5847 while (![file hasPrefix:[stack lastObject]])
5848 [stack removeLastObject];
5849 NSString *directory = [stack lastObject];
5850 [stack addObject:[file stringByAppendingString:@"/"]];
5851 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
5852 ([stack count] - 2) * 3, "",
5853 [file substringFromIndex:[directory length]]
5862 - (void) reloadData {
5865 [self setPackage:[database_ packageWithName:name_]];
5870 /* Package Controller {{{ */
5871 @interface CYPackageController : CydiaWebViewController <
5872 UIActionSheetDelegate
5874 _transient Database *database_;
5875 _H<Package> package_;
5878 _H<NSMutableArray> buttons_;
5879 _H<UIBarButtonItem> button_;
5882 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name;
5886 @implementation CYPackageController
5888 - (NSURL *) navigationURL {
5889 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
5892 /* XXX: this is not safe at all... localization of /fail/ */
5893 - (void) _clickButtonWithName:(NSString *)name {
5894 if ([name isEqualToString:UCLocalize("CLEAR")])
5895 [delegate_ clearPackage:package_];
5896 else if ([name isEqualToString:UCLocalize("INSTALL")])
5897 [delegate_ installPackage:package_];
5898 else if ([name isEqualToString:UCLocalize("REINSTALL")])
5899 [delegate_ installPackage:package_];
5900 else if ([name isEqualToString:UCLocalize("REMOVE")])
5901 [delegate_ removePackage:package_];
5902 else if ([name isEqualToString:UCLocalize("UPGRADE")])
5903 [delegate_ installPackage:package_];
5904 else _assert(false);
5907 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
5908 NSString *context([sheet context]);
5910 if ([context isEqualToString:@"modify"]) {
5911 if (button != [sheet cancelButtonIndex]) {
5912 NSString *buttonName = [buttons_ objectAtIndex:button];
5913 [self _clickButtonWithName:buttonName];
5916 [sheet dismissWithClickedButtonIndex:-1 animated:YES];
5920 - (bool) _allowJavaScriptPanel {
5925 - (void) _customButtonClicked {
5926 int count([buttons_ count]);
5931 [self _clickButtonWithName:[buttons_ objectAtIndex:0]];
5933 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
5934 [buttons addObjectsFromArray:buttons_];
5936 UIActionSheet *sheet = [[[UIActionSheet alloc]
5939 cancelButtonTitle:nil
5940 destructiveButtonTitle:nil
5941 otherButtonTitles:nil
5944 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
5946 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
5947 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
5949 [sheet setContext:@"modify"];
5951 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
5955 // We don't want to allow non-commercial packages to do custom things to the install button,
5956 // so it must call customButtonClicked with a custom commercial_ == 1 fallthrough.
5957 - (void) customButtonClicked {
5959 [super customButtonClicked];
5961 [self _customButtonClicked];
5964 - (void) reloadButtonClicked {
5965 // Don't reload a commerical package by tapping the loading button,
5966 // but if it's not an Install button, we should forward it on.
5967 if (![package_ uninstalled])
5968 [self _customButtonClicked];
5971 - (void) applyLoadingTitle {
5972 // Don't show "Loading" as the title. Ever.
5975 - (UIBarButtonItem *) rightButton {
5980 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name {
5981 if ((self = [super init]) != nil) {
5982 database_ = database;
5983 buttons_ = [NSMutableArray arrayWithCapacity:4];
5984 name_ = name == nil ? @"" : [NSString stringWithString:name];
5985 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]]];
5989 - (void) reloadData {
5992 package_ = [database_ packageWithName:name_];
5994 [buttons_ removeAllObjects];
5996 if (package_ != nil) {
5997 [(Package *) package_ parse];
5999 commercial_ = [package_ isCommercial];
6001 if ([package_ mode] != nil)
6002 [buttons_ addObject:UCLocalize("CLEAR")];
6003 if ([package_ source] == nil);
6004 else if ([package_ upgradableAndEssential:NO])
6005 [buttons_ addObject:UCLocalize("UPGRADE")];
6006 else if ([package_ uninstalled])
6007 [buttons_ addObject:UCLocalize("INSTALL")];
6009 [buttons_ addObject:UCLocalize("REINSTALL")];
6010 if (![package_ uninstalled])
6011 [buttons_ addObject:UCLocalize("REMOVE")];
6015 switch ([buttons_ count]) {
6016 case 0: title = nil; break;
6017 case 1: title = [buttons_ objectAtIndex:0]; break;
6018 default: title = UCLocalize("MODIFY"); break;
6021 button_ = [[[UIBarButtonItem alloc]
6023 style:UIBarButtonItemStylePlain
6025 action:@selector(customButtonClicked)
6029 - (bool) isLoading {
6030 return commercial_ ? [super isLoading] : false;
6036 /* Package List Controller {{{ */
6037 @interface PackageListController : CyteViewController <
6038 UITableViewDataSource,
6041 _transient Database *database_;
6043 _H<NSArray> packages_;
6044 _H<NSMutableArray> sections_;
6045 _H<UITableView, 2> list_;
6046 _H<NSMutableArray> index_;
6047 _H<NSMutableDictionary> indices_;
6048 _H<NSString> title_;
6049 unsigned reloading_;
6052 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6053 - (void) setDelegate:(id)delegate;
6054 - (void) resetCursor;
6059 @implementation PackageListController
6061 - (bool) isSummarized {
6065 - (bool) showsSections {
6069 - (void) deselectWithAnimation:(BOOL)animated {
6070 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6073 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6074 CGRect base = [[self view] bounds];
6075 base.size.height -= bounds.size.height;
6076 base.origin = [list_ frame].origin;
6078 [UIView beginAnimations:nil context:NULL];
6079 [UIView setAnimationBeginsFromCurrentState:YES];
6080 [UIView setAnimationCurve:curve];
6081 [UIView setAnimationDuration:duration];
6082 [list_ setFrame:base];
6083 [UIView commitAnimations];
6086 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6087 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6090 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6091 [self resizeForKeyboardBounds:bounds duration:0];
6094 - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification {
6095 if (&UIKeyboardAnimationCurveUserInfoKey == NULL)
6096 *curve = UIViewAnimationCurveEaseInOut;
6098 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve];
6100 if (&UIKeyboardAnimationDurationUserInfoKey == NULL)
6103 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration];
6106 - (void) keyboardWillShow:(NSNotification *)notification {
6109 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6110 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er];
6112 NSTimeInterval duration;
6113 UIViewAnimationCurve curve;
6114 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6116 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);
6117 UIViewController *base = self;
6118 while ([base parentViewController] != nil)
6119 base = [base parentViewController];
6120 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6121 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6123 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6124 intersection.size.height += CYStatusBarHeight();
6126 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6129 - (void) keyboardWillHide:(NSNotification *)notification {
6130 NSTimeInterval duration;
6131 UIViewAnimationCurve curve;
6132 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6134 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6137 - (void) viewWillAppear:(BOOL)animated {
6138 [super viewWillAppear:animated];
6140 [self resizeForKeyboardBounds:CGRectZero];
6141 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6142 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6145 - (void) viewWillDisappear:(BOOL)animated {
6146 [super viewWillDisappear:animated];
6148 [self resizeForKeyboardBounds:CGRectZero];
6149 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6150 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6153 - (void) viewDidAppear:(BOOL)animated {
6154 [super viewDidAppear:animated];
6155 [self deselectWithAnimation:animated];
6158 - (void) didSelectPackage:(Package *)package {
6159 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
6160 [view setDelegate:delegate_];
6161 [[self navigationController] pushViewController:view animated:YES];
6164 #if TryIndexedCollation
6165 + (BOOL) hasIndexedCollation {
6166 return NO; // XXX: objc_getClass("UILocalizedIndexedCollation") != nil;
6170 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6171 NSInteger count([sections_ count]);
6172 return count == 0 ? 1 : count;
6175 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6176 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6178 return [[sections_ objectAtIndex:section] name];
6181 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6182 if ([sections_ count] == 0)
6184 return [[sections_ objectAtIndex:section] count];
6187 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6188 @synchronized (database_) {
6189 if ([database_ era] != era_)
6192 Section *section([sections_ objectAtIndex:[path section]]);
6193 NSInteger row([path row]);
6194 Package *package([packages_ objectAtIndex:([section row] + row)]);
6195 return [[package retain] autorelease];
6198 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6199 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6201 cell = [[[PackageCell alloc] init] autorelease];
6203 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
6204 [cell setPackage:package asSummary:[self isSummarized]];
6208 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6209 Package *package([self packageAtIndexPath:path]);
6210 package = [database_ packageWithName:[package id]];
6211 [self didSelectPackage:package];
6214 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6215 if (![self showsSections])
6221 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6222 #if TryIndexedCollation
6223 if ([[self class] hasIndexedCollation]) {
6224 return [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionForSectionIndexTitleAtIndex:index];
6231 - (void) updateHeight {
6232 [list_ setRowHeight:([self isSummarized] ? 38 : 73)];
6235 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6236 if ((self = [super init]) != nil) {
6237 database_ = database;
6238 title_ = [title copy];
6239 [[self navigationItem] setTitle:title_];
6244 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
6246 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
6247 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6248 [[self view] addSubview:list_];
6250 // XXX: is 20 the most optimal number here?
6251 [list_ setSectionIndexMinimumDisplayRowCount:20];
6253 [(UITableView *) list_ setDataSource:self];
6254 [list_ setDelegate:self];
6256 [self updateHeight];
6259 - (void) releaseSubviews {
6267 [super releaseSubviews];
6270 - (void) setDelegate:(id)delegate {
6271 delegate_ = delegate;
6274 - (bool) shouldYield {
6278 - (bool) shouldBlock {
6282 - (NSMutableArray *) _reloadPackages {
6283 @synchronized (database_) {
6284 era_ = [database_ era];
6285 NSArray *packages([database_ packages]);
6287 return [NSMutableArray arrayWithArray:packages];
6290 - (void) _reloadData {
6291 if (reloading_ != 0) {
6298 if ([self shouldYield]) {
6302 if (![self shouldBlock])
6305 hud = [delegate_ addProgressHUD];
6306 [hud setText:UCLocalize("LOADING")];
6310 packages = [self yieldToSelector:@selector(_reloadPackages)];
6313 [delegate_ removeProgressHUD:hud];
6314 } while (reloading_ == 2);
6318 packages = [self _reloadPackages];
6321 packages_ = packages;
6323 indices_ = [NSMutableDictionary dictionaryWithCapacity:32];
6324 sections_ = [NSMutableArray arrayWithCapacity:16];
6326 Section *section = nil;
6328 #if TryIndexedCollation
6329 if ([[self class] hasIndexedCollation]) {
6330 index_ = [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionIndexTitles];
6332 id collation = [objc_getClass("UILocalizedIndexedCollation") currentCollation];
6333 NSArray *titles = [collation sectionIndexTitles];
6336 _profile(PackageTable$reloadData$Section)
6337 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6341 _profile(PackageTable$reloadData$Section$Package)
6342 package = [packages_ objectAtIndex:offset];
6343 index = [collation sectionForObject:package collationStringSelector:@selector(name)];
6346 while (secidx < index) {
6349 _profile(PackageTable$reloadData$Section$Allocate)
6350 section = [[[Section alloc] initWithName:[titles objectAtIndex:secidx] row:offset localize:NO] autorelease];
6353 _profile(PackageTable$reloadData$Section$Add)
6354 [sections_ addObject:section];
6358 [section addToCount];
6364 index_ = [NSMutableArray arrayWithCapacity:32];
6366 bool sectioned([self showsSections]);
6368 section = [[[Section alloc] initWithName:nil localize:false] autorelease];
6369 [sections_ addObject:section];
6372 _profile(PackageTable$reloadData$Section)
6373 for (size_t offset(0), end([packages_ count]); offset != end; ++offset) {
6377 _profile(PackageTable$reloadData$Section$Package)
6378 package = [packages_ objectAtIndex:offset];
6379 index = [package index];
6382 if (sectioned && (section == nil || [section index] != index)) {
6383 _profile(PackageTable$reloadData$Section$Allocate)
6384 section = [[[Section alloc] initWithIndex:index row:offset] autorelease];
6387 [index_ addObject:[section name]];
6388 //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index];
6390 _profile(PackageTable$reloadData$Section$Add)
6391 [sections_ addObject:section];
6395 [section addToCount];
6400 [self updateHeight];
6402 _profile(PackageTable$reloadData$List)
6403 [(UITableView *) list_ setDataSource:self];
6408 - (void) reloadData {
6411 if ([self shouldYield])
6412 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
6417 - (void) resetCursor {
6418 [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
6421 - (void) clearData {
6422 [self updateHeight];
6424 [list_ setDataSource:nil];
6432 /* Filtered Package List Controller {{{ */
6433 @interface FilteredPackageListController : PackageListController {
6436 _H<NSObject> object_;
6439 - (void) setObject:(id)object;
6440 - (void) setObject:(id)object forFilter:(SEL)filter;
6443 - (void) setFilter:(SEL)filter;
6445 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object;
6449 @implementation FilteredPackageListController
6455 - (void) setFilter:(SEL)filter {
6456 @synchronized (self) {
6459 /* XXX: this is an unsafe optimization of doomy hell */
6460 Method method(class_getInstanceMethod([Package class], filter));
6461 _assert(method != NULL);
6462 imp_ = method_getImplementation(method);
6463 _assert(imp_ != NULL);
6466 - (void) setObject:(id)object {
6467 @synchronized (self) {
6471 - (void) setObject:(id)object forFilter:(SEL)filter {
6472 @synchronized (self) {
6473 [self setFilter:filter];
6474 [self setObject:object];
6477 - (NSMutableArray *) _reloadPackages {
6478 @synchronized (database_) {
6479 era_ = [database_ era];
6480 NSArray *packages([database_ packages]);
6482 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
6486 _H<NSObject> object;
6488 @synchronized (self) {
6494 _profile(PackageTable$reloadData$Filter)
6495 for (Package *package in packages)
6496 if ([package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp))(package, filter, object))
6497 [filtered addObject:package];
6503 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object {
6504 if ((self = [super initWithDatabase:database title:title]) != nil) {
6505 [self setFilter:filter];
6506 [self setObject:object];
6513 /* Home Controller {{{ */
6514 @interface HomeController : CydiaWebViewController {
6519 @implementation HomeController
6522 if ((self = [super init]) != nil) {
6523 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6528 - (NSURL *) navigationURL {
6529 return [NSURL URLWithString:@"cydia://home"];
6532 - (void) didReceiveMemoryWarning {
6535 - (void) aboutButtonClicked {
6536 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6538 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6539 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6540 [alert setCancelButtonIndex:0];
6543 @"Copyright \u00a9 2008-2011\n"
6546 "Jay Freeman (saurik)\n"
6547 "saurik@saurik.com\n"
6548 "http://www.saurik.com/"
6554 - (UIBarButtonItem *) leftButton {
6555 return [[[UIBarButtonItem alloc]
6556 initWithTitle:UCLocalize("ABOUT")
6557 style:UIBarButtonItemStylePlain
6559 action:@selector(aboutButtonClicked)
6565 /* Manage Controller {{{ */
6566 @interface ManageController : CydiaWebViewController {
6569 - (void) queueStatusDidChange;
6573 @implementation ManageController
6576 if ((self = [super init]) != nil) {
6577 [self setURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]];
6581 - (NSURL *) navigationURL {
6582 return [NSURL URLWithString:@"cydia://manage"];
6585 - (UIBarButtonItem *) leftButton {
6586 return [[[UIBarButtonItem alloc]
6587 initWithTitle:UCLocalize("SETTINGS")
6588 style:UIBarButtonItemStylePlain
6590 action:@selector(settingsButtonClicked)
6594 - (void) settingsButtonClicked {
6595 [delegate_ showSettings];
6598 - (void) queueButtonClicked {
6602 - (UIBarButtonItem *) rightButton {
6603 return Queuing_ ? [[[UIBarButtonItem alloc]
6604 initWithTitle:UCLocalize("QUEUE")
6605 style:UIBarButtonItemStyleDone
6607 action:@selector(queueButtonClicked)
6608 ] autorelease] : nil;
6611 - (void) queueStatusDidChange {
6612 [self applyRightButton];
6615 - (bool) isLoading {
6616 return !Queuing_ && [super isLoading];
6622 /* Refresh Bar {{{ */
6623 @interface RefreshBar : UINavigationBar {
6624 _H<UIProgressIndicator> indicator_;
6625 _H<UITextLabel> prompt_;
6626 _H<UIProgressBar> progress_;
6627 _H<UINavigationButton> cancel_;
6632 @implementation RefreshBar
6634 - (void) positionViews {
6635 CGRect frame = [cancel_ frame];
6636 frame.size = [cancel_ sizeThatFits:frame.size];
6637 frame.origin.x = [self frame].size.width - frame.size.width - 5;
6638 frame.origin.y = ([self frame].size.height - frame.size.height) / 2;
6639 [cancel_ setFrame:frame];
6641 CGSize prgsize = {75, 100};
6643 [self frame].size.width - prgsize.width - 10,
6644 ([self frame].size.height - prgsize.height) / 2
6646 [progress_ setFrame:prgrect];
6648 CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]);
6649 unsigned indoffset = ([self frame].size.height - indsize.height) / 2;
6650 CGRect indrect = {{indoffset, indoffset}, indsize};
6651 [indicator_ setFrame:indrect];
6653 CGSize prmsize = {215, indsize.height + 4};
6655 indoffset * 2 + indsize.width,
6656 unsigned([self frame].size.height - prmsize.height) / 2 - 1
6658 [prompt_ setFrame:prmrect];
6661 - (void) setFrame:(CGRect)frame {
6662 [super setFrame:frame];
6663 [self positionViews];
6666 - (id) initWithFrame:(CGRect)frame delegate:(id)delegate {
6667 if ((self = [super initWithFrame:frame]) != nil) {
6668 [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
6670 [self setBarStyle:UIBarStyleBlack];
6672 UIBarStyle barstyle([self _barStyle:NO]);
6673 bool ugly(barstyle == UIBarStyleDefault);
6675 UIProgressIndicatorStyle style = ugly ?
6676 UIProgressIndicatorStyleMediumBrown :
6677 UIProgressIndicatorStyleMediumWhite;
6679 indicator_ = [[[UIProgressIndicator alloc] initWithFrame:CGRectZero] autorelease];
6680 [(UIProgressIndicator *) indicator_ setStyle:style];
6681 [indicator_ startAnimation];
6682 [self addSubview:indicator_];
6684 prompt_ = [[[UITextLabel alloc] initWithFrame:CGRectZero] autorelease];
6685 [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]];
6686 [prompt_ setBackgroundColor:[UIColor clearColor]];
6687 [prompt_ setFont:[UIFont systemFontOfSize:15]];
6688 [self addSubview:prompt_];
6690 progress_ = [[[UIProgressBar alloc] initWithFrame:CGRectZero] autorelease];
6691 [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin];
6692 [(UIProgressBar *) progress_ setStyle:0];
6693 [self addSubview:progress_];
6695 cancel_ = [[[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted] autorelease];
6696 [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
6697 [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside];
6698 [cancel_ setBarStyle:barstyle];
6700 [self positionViews];
6704 - (void) setCancellable:(bool)cancellable {
6706 [self addSubview:cancel_];
6708 [cancel_ removeFromSuperview];
6712 [prompt_ setText:UCLocalize("UPDATING_DATABASE")];
6713 [progress_ setProgress:0];
6717 [self setCancellable:NO];
6720 - (void) setPrompt:(NSString *)prompt {
6721 [prompt_ setText:prompt];
6724 - (void) setProgress:(float)progress {
6725 [progress_ setProgress:progress];
6731 /* Cydia Navigation Controller Interface {{{ */
6732 @interface UINavigationController (Cydia)
6734 - (NSArray *) navigationURLCollection;
6735 - (void) unloadData;
6740 /* Cydia Tab Bar Controller {{{ */
6741 @interface CYTabBarController : UITabBarController <
6742 UITabBarControllerDelegate,
6745 _transient Database *database_;
6746 _H<RefreshBar, 1> refreshbar_;
6750 // XXX: ok, "updatedelegate_"?...
6751 _transient NSObject<CydiaDelegate> *updatedelegate_;
6753 _H<UIViewController> remembered_;
6754 _transient UIViewController *transient_;
6757 - (NSArray *) navigationURLCollection;
6758 - (void) dropBar:(BOOL)animated;
6759 - (void) beginUpdate;
6760 - (void) raiseBar:(BOOL)animated;
6762 - (void) unloadData;
6766 @implementation CYTabBarController
6768 - (void) setUnselectedViewController:(UIViewController *)transient {
6769 NSMutableArray *controllers = [[self viewControllers] mutableCopy];
6770 if (transient != nil) {
6771 if (transient_ == nil)
6772 remembered_ = [controllers objectAtIndex:0];
6773 transient_ = transient;
6774 [transient_ setTabBarItem:[remembered_ tabBarItem]];
6775 [controllers replaceObjectAtIndex:0 withObject:transient_];
6776 [self setSelectedIndex:0];
6777 [self setViewControllers:controllers];
6778 [self concealTabBarSelection];
6779 } else if (remembered_ != nil) {
6780 [remembered_ setTabBarItem:[transient_ tabBarItem]];
6781 transient_ = transient;
6782 [controllers replaceObjectAtIndex:0 withObject:remembered_];
6784 [self setViewControllers:controllers];
6785 [self revealTabBarSelection];
6789 - (UIViewController *) unselectedViewController {
6793 - (void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
6794 if ([self unselectedViewController])
6795 [self setUnselectedViewController:nil];
6798 - (NSArray *) navigationURLCollection {
6799 NSMutableArray *items([NSMutableArray array]);
6801 // XXX: Should this deal with transient view controllers?
6802 for (id navigation in [self viewControllers]) {
6803 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6805 [items addObject:stack];
6811 - (void) dismissModalViewControllerAnimated:(BOOL)animated {
6812 if ([self modalViewController] == nil && [self unselectedViewController] != nil)
6813 [self setUnselectedViewController:nil];
6815 [super dismissModalViewControllerAnimated:YES];
6818 - (void) unloadData {
6821 for (UINavigationController *controller in [self viewControllers])
6822 [controller unloadData];
6824 if (UIViewController *selected = [self selectedViewController])
6825 [selected reloadData];
6827 if (UIViewController *unselected = [self unselectedViewController]) {
6828 [unselected unloadData];
6829 [unselected reloadData];
6834 [[NSNotificationCenter defaultCenter] removeObserver:self];
6839 - (id) initWithDatabase:(Database *)database {
6840 if ((self = [super init]) != nil) {
6841 database_ = database;
6842 [self setDelegate:self];
6844 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6845 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
6847 refreshbar_ = [[[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self] autorelease];
6851 - (void) setUpdate:(NSDate *)date {
6855 - (void) beginUpdate {
6856 [(RefreshBar *) refreshbar_ start];
6859 [updatedelegate_ retainNetworkActivityIndicator];
6863 detachNewThreadSelector:@selector(performUpdate)
6869 - (void) performUpdate {
6870 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
6873 status.setDelegate(self);
6874 [database_ updateWithStatus:status];
6877 performSelectorOnMainThread:@selector(completeUpdate)
6885 - (void) stopUpdateWithSelector:(SEL)selector {
6887 [updatedelegate_ releaseNetworkActivityIndicator];
6889 [self raiseBar:YES];
6892 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6895 - (void) completeUpdate {
6898 [self stopUpdateWithSelector:@selector(reloadData)];
6901 - (void) cancelUpdate {
6902 [self stopUpdateWithSelector:@selector(updateData)];
6905 - (void) cancelPressed {
6906 [self cancelUpdate];
6913 - (void) addProgressEvent:(CydiaProgressEvent *)event {
6914 [refreshbar_ setPrompt:[event compoundMessage]];
6917 - (bool) isProgressCancelled {
6921 - (void) setProgressCancellable:(NSNumber *)cancellable {
6922 [refreshbar_ setCancellable:(updating_ && [cancellable boolValue])];
6925 - (void) setProgressPercent:(NSNumber *)percent {
6926 [refreshbar_ setProgress:[percent floatValue]];
6929 - (void) setProgressStatus:(NSDictionary *)status {
6931 [self setProgressPercent:[status objectForKey:@"Percent"]];
6934 - (void) setUpdateDelegate:(id)delegate {
6935 updatedelegate_ = delegate;
6938 - (UIView *) transitionView {
6939 if ([self respondsToSelector:@selector(_transitionView)])
6940 return [self _transitionView];
6942 return MSHookIvar<id>(self, "_viewControllerTransitionView");
6945 - (void) dropBar:(BOOL)animated {
6950 UIView *transition([self transitionView]);
6951 [[self view] addSubview:refreshbar_];
6953 CGRect barframe([refreshbar_ frame]);
6955 if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6956 barframe.origin.y = CYStatusBarHeight();
6958 barframe.origin.y = 0;
6960 [refreshbar_ setFrame:barframe];
6963 [UIView beginAnimations:nil context:NULL];
6965 CGRect viewframe = [transition frame];
6966 viewframe.origin.y += barframe.size.height;
6967 viewframe.size.height -= barframe.size.height;
6968 [transition setFrame:viewframe];
6971 [UIView commitAnimations];
6973 // Ensure bar has the proper width for our view, it might have changed
6974 barframe.size.width = viewframe.size.width;
6975 [refreshbar_ setFrame:barframe];
6978 - (void) raiseBar:(BOOL)animated {
6983 UIView *transition([self transitionView]);
6984 [refreshbar_ removeFromSuperview];
6986 CGRect barframe([refreshbar_ frame]);
6989 [UIView beginAnimations:nil context:NULL];
6991 CGRect viewframe = [transition frame];
6992 viewframe.origin.y -= barframe.size.height;
6993 viewframe.size.height += barframe.size.height;
6994 [transition setFrame:viewframe];
6997 [UIView commitAnimations];
7000 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
7001 bool dropped(dropped_);
7006 [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
7012 - (void) statusBarFrameChanged:(NSNotification *)notification {
7022 /* Cydia Navigation Controller Implementation {{{ */
7023 @implementation UINavigationController (Cydia)
7025 - (NSArray *) navigationURLCollection {
7026 NSMutableArray *stack([NSMutableArray array]);
7028 for (CyteViewController *controller in [self viewControllers]) {
7029 NSString *url = [[controller navigationURL] absoluteString];
7031 [stack addObject:url];
7037 - (void) reloadData {
7040 UIViewController *visible([self visibleViewController]);
7042 [visible reloadData];
7044 // on the iPad, this view controller is ALSO visible. :(
7046 if (UIViewController *top = [self topViewController])
7051 - (void) unloadData {
7052 for (CyteViewController *page in [self viewControllers])
7061 /* Cydia:// Protocol {{{ */
7062 @interface CydiaURLProtocol : NSURLProtocol {
7067 @implementation CydiaURLProtocol
7069 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7070 NSURL *url([request URL]);
7074 NSString *scheme([[url scheme] lowercaseString]);
7075 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7077 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7083 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7087 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7088 id<NSURLProtocolClient> client([self client]);
7090 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7092 NSData *data(UIImagePNGRepresentation(icon));
7094 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7095 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7096 [client URLProtocol:self didLoadData:data];
7097 [client URLProtocolDidFinishLoading:self];
7101 - (void) startLoading {
7102 id<NSURLProtocolClient> client([self client]);
7103 NSURLRequest *request([self request]);
7105 NSURL *url([request URL]);
7106 NSString *href([url absoluteString]);
7107 NSString *scheme([[url scheme] lowercaseString]);
7111 if ([scheme isEqualToString:@"cydia"])
7112 path = [href substringFromIndex:8];
7113 else if ([scheme isEqualToString:@"about"])
7114 path = [href substringFromIndex:12];
7115 else _assert(false);
7117 NSRange slash([path rangeOfString:@"/"]);
7120 if (slash.location == NSNotFound) {
7124 command = [path substringToIndex:slash.location];
7125 path = [path substringFromIndex:(slash.location + 1)];
7128 Database *database([Database sharedInstance]);
7130 if ([command isEqualToString:@"package-icon"]) {
7133 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7134 Package *package([database packageWithName:path]);
7138 UIImage *icon([package icon]);
7139 [self _returnPNGWithImage:icon forRequest:request];
7140 } else if ([command isEqualToString:@"uikit-image"]) {
7143 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7144 UIImage *icon(_UIImageWithName(path));
7145 [self _returnPNGWithImage:icon forRequest:request];
7146 } else if ([command isEqualToString:@"section-icon"]) {
7149 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7150 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]);
7152 icon = [UIImage applicationImageNamed:@"unknown.png"];
7153 [self _returnPNGWithImage:icon forRequest:request];
7155 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7159 - (void) stopLoading {
7165 /* Section Controller {{{ */
7166 @interface SectionController : FilteredPackageListController {
7167 _H<NSString> section_;
7170 - (id) initWithDatabase:(Database *)database section:(NSString *)section;
7174 @implementation SectionController
7176 - (NSURL *) navigationURL {
7177 NSString *name = section_;
7181 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@", name]];
7184 - (id) initWithDatabase:(Database *)database section:(NSString *)name {
7187 title = UCLocalize("ALL_PACKAGES");
7188 else if (![name isEqual:@""])
7189 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"];
7191 title = UCLocalize("NO_SECTION");
7193 if ((self = [super initWithDatabase:database title:title filter:@selector(isVisibleInSection:) with:name]) != nil) {
7200 /* Sections Controller {{{ */
7201 @interface SectionsController : CyteViewController <
7202 UITableViewDataSource,
7205 _transient Database *database_;
7206 _H<NSMutableArray> sections_;
7207 _H<NSMutableArray> filtered_;
7208 _H<UITableView, 2> list_;
7211 - (id) initWithDatabase:(Database *)database;
7212 - (void) editButtonClicked;
7216 @implementation SectionsController
7218 - (NSURL *) navigationURL {
7219 return [NSURL URLWithString:@"cydia://sections"];
7222 - (void) updateNavigationItem {
7223 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7224 if ([sections_ count] == 0) {
7225 [[self navigationItem] setRightBarButtonItem:nil];
7227 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7228 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7230 action:@selector(editButtonClicked)
7231 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7235 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7236 [super setEditing:editing animated:animated];
7241 [delegate_ updateData];
7243 [self updateNavigationItem];
7246 - (void) viewDidAppear:(BOOL)animated {
7247 [super viewDidAppear:animated];
7248 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7251 - (void) viewWillDisappear:(BOOL)animated {
7252 [super viewWillDisappear:animated];
7253 if ([self isEditing]) [self setEditing:NO];
7256 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7257 Section *section = nil;
7258 int index = [indexPath row];
7259 if (![self isEditing]) {
7262 section = [filtered_ objectAtIndex:index];
7264 section = [sections_ objectAtIndex:index];
7269 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7270 if ([self isEditing])
7271 return [sections_ count];
7273 return [filtered_ count] + 1;
7276 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7280 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7281 static NSString *reuseIdentifier = @"SectionCell";
7283 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7285 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7287 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7292 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7293 if ([self isEditing])
7296 Section *section = [self sectionAtIndexPath:indexPath];
7298 SectionController *controller = [[[SectionController alloc]
7299 initWithDatabase:database_
7300 section:[section name]
7302 [controller setDelegate:delegate_];
7304 [[self navigationController] pushViewController:controller animated:YES];
7308 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7310 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease];
7311 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7312 [list_ setRowHeight:45.0f];
7313 [(UITableView *) list_ setDataSource:self];
7314 [list_ setDelegate:self];
7315 [[self view] addSubview:list_];
7318 - (void) viewDidLoad {
7319 [super viewDidLoad];
7321 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7324 - (void) releaseSubviews {
7330 [super releaseSubviews];
7333 - (id) initWithDatabase:(Database *)database {
7334 if ((self = [super init]) != nil) {
7335 database_ = database;
7339 - (void) reloadData {
7342 NSArray *packages = [database_ packages];
7344 sections_ = [NSMutableArray arrayWithCapacity:16];
7345 filtered_ = [NSMutableArray arrayWithCapacity:16];
7347 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7350 for (Package *package in packages) {
7351 NSString *name([package section]);
7352 NSString *key(name == nil ? @"" : name);
7356 _profile(SectionsView$reloadData$Section)
7357 section = [sections objectForKey:key];
7358 if (section == nil) {
7359 _profile(SectionsView$reloadData$Section$Allocate)
7360 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7361 [sections setObject:section forKey:key];
7366 [section addToCount];
7368 _profile(SectionsView$reloadData$Filter)
7369 if (![package valid] || ![package visible])
7377 [sections_ addObjectsFromArray:[sections allValues]];
7379 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7381 for (Section *section in (id) sections_) {
7382 size_t count([section row]);
7386 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7387 [section setCount:count];
7388 [filtered_ addObject:section];
7391 [self updateNavigationItem];
7396 - (void) editButtonClicked {
7397 [self setEditing:![self isEditing] animated:YES];
7403 /* Changes Controller {{{ */
7404 @interface ChangesController : CyteViewController <
7405 UITableViewDataSource,
7408 _transient Database *database_;
7410 _H<NSArray> packages_;
7411 _H<NSMutableArray> sections_;
7412 _H<UITableView, 2> list_;
7416 - (id) initWithDatabase:(Database *)database;
7420 @implementation ChangesController
7422 - (NSURL *) navigationURL {
7423 return [NSURL URLWithString:@"cydia://changes"];
7426 - (void) viewDidAppear:(BOOL)animated {
7427 [super viewDidAppear:animated];
7428 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7431 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
7432 NSInteger count([sections_ count]);
7433 return count == 0 ? 1 : count;
7436 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
7437 if ([sections_ count] == 0)
7439 return [[sections_ objectAtIndex:section] name];
7442 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
7443 if ([sections_ count] == 0)
7445 return [[sections_ objectAtIndex:section] count];
7448 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7449 @synchronized (database_) {
7450 if ([database_ era] != era_)
7453 NSUInteger sectionIndex([path section]);
7454 if (sectionIndex >= [sections_ count])
7456 Section *section([sections_ objectAtIndex:sectionIndex]);
7457 NSInteger row([path row]);
7458 return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease];
7461 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
7462 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
7464 cell = [[[PackageCell alloc] init] autorelease];
7466 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
7467 [cell setPackage:package asSummary:false];
7471 - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path {
7472 Package *package([self packageAtIndexPath:path]);
7473 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]);
7474 [view setDelegate:delegate_];
7475 [[self navigationController] pushViewController:view animated:YES];
7479 - (void) refreshButtonClicked {
7480 [delegate_ beginUpdate];
7481 [[self navigationItem] setLeftBarButtonItem:nil animated:YES];
7484 - (void) upgradeButtonClicked {
7485 [delegate_ distUpgrade];
7486 [[self navigationItem] setRightBarButtonItem:nil animated:YES];
7490 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7492 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
7493 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7494 [list_ setRowHeight:73];
7495 [(UITableView *) list_ setDataSource:self];
7496 [list_ setDelegate:self];
7497 [[self view] addSubview:list_];
7500 - (void) viewDidLoad {
7501 [super viewDidLoad];
7503 [[self navigationItem] setTitle:UCLocalize("CHANGES")];
7506 - (void) releaseSubviews {
7512 [super releaseSubviews];
7515 - (id) initWithDatabase:(Database *)database {
7516 if ((self = [super init]) != nil) {
7517 database_ = database;
7521 - (NSMutableArray *) _reloadPackages {
7522 @synchronized (database_) {
7523 era_ = [database_ era];
7524 NSArray *packages([database_ packages]);
7526 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
7529 _profile(ChangesController$_reloadPackages$Filter)
7530 for (Package *package in packages)
7531 if ([package upgradableAndEssential:YES] || [package visible])
7532 CFArrayAppendValue((CFMutableArrayRef) filtered, package);
7535 _profile(ChangesController$_reloadPackages$radixSort)
7536 [filtered radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL];
7543 - (void) _reloadData {
7548 UIProgressHUD *hud([delegate_ addProgressHUD]);
7549 [hud setText:UCLocalize("LOADING")];
7550 //NSLog(@"HUD:%@::%@", delegate_, hud);
7551 packages = [self yieldToSelector:@selector(_reloadPackages)];
7552 [delegate_ removeProgressHUD:hud];
7554 packages = [self _reloadPackages];
7557 @synchronized (database_) {
7558 if (era_ != [database_ era])
7561 packages_ = packages;
7562 sections_ = [NSMutableArray arrayWithCapacity:16];
7564 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7565 Section *ignored = nil;
7566 Section *section = nil;
7570 bool unseens = false;
7572 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7574 for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) {
7575 Package *package = [packages_ objectAtIndex:offset];
7577 BOOL uae = [package upgradableAndEssential:YES];
7581 time_t seen([package seen]);
7583 if (section == nil || last != seen) {
7587 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7590 _profile(ChangesController$reloadData$Allocate)
7591 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7592 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7593 [sections_ addObject:section];
7597 [section addToCount];
7598 } else if ([package ignored]) {
7599 if (ignored == nil) {
7600 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7602 [ignored addToCount];
7605 [upgradable addToCount];
7610 CFRelease(formatter);
7613 Section *last = [sections_ lastObject];
7614 size_t count = [last count];
7615 [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)];
7616 [sections_ removeLastObject];
7619 if ([ignored count] != 0)
7620 [sections_ insertObject:ignored atIndex:0];
7622 [sections_ insertObject:upgradable atIndex:0];
7626 [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc]
7627 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7628 style:UIBarButtonItemStylePlain
7630 action:@selector(upgradeButtonClicked)
7631 ] autorelease]) animated:YES];
7633 [[self navigationItem] setLeftBarButtonItem:([delegate_ updating] ? nil : [[[UIBarButtonItem alloc]
7634 initWithTitle:UCLocalize("REFRESH")
7635 style:UIBarButtonItemStylePlain
7637 action:@selector(refreshButtonClicked)
7638 ] autorelease]) animated:YES];
7643 - (void) reloadData {
7645 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
7650 /* Search Controller {{{ */
7651 @interface SearchController : FilteredPackageListController <
7654 _H<UISearchBar, 1> search_;
7658 - (id) initWithDatabase:(Database *)database query:(NSString *)query;
7659 - (void) reloadData;
7663 @implementation SearchController
7665 - (NSURL *) navigationURL {
7666 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7667 return [NSURL URLWithString:@"cydia://search"];
7669 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [search_ text]]];
7672 - (void) useSearch {
7673 [self setObject:[[search_ text] componentsSeparatedByString:@" "] forFilter:@selector(isUnfilteredAndSearchedForBy:)];
7678 - (void) viewWillAppear:(BOOL)animated {
7679 [super viewWillAppear:animated];
7681 if ([self filter] == @selector(isUnfilteredAndSelectedForBy:))
7685 - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
7686 [self setObject:[search_ text] forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7691 - (void) searchBarButtonClicked:(UISearchBar *)searchBar {
7692 [search_ resignFirstResponder];
7696 - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar {
7697 [search_ setText:@""];
7698 [self searchBarButtonClicked:searchBar];
7701 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7702 [self searchBarButtonClicked:searchBar];
7705 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7706 [self setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)];
7710 - (bool) shouldYield {
7714 - (bool) shouldBlock {
7715 return [self filter] == @selector(isUnfilteredAndSearchedForBy:);
7718 - (bool) isSummarized {
7719 return [self filter] == @selector(isUnfilteredAndSelectedForBy:);
7722 - (bool) showsSections {
7726 - (NSMutableArray *) _reloadPackages {
7727 NSMutableArray *packages([super _reloadPackages]);
7728 if ([self filter] == @selector(isUnfilteredAndSearchedForBy:))
7729 [packages radixSortUsingSelector:@selector(rank)];
7733 - (id) initWithDatabase:(Database *)database query:(NSString *)query {
7734 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:[query componentsSeparatedByString:@" "]])) {
7735 search_ = [[[UISearchBar alloc] init] autorelease];
7736 [search_ setDelegate:self];
7739 [search_ setText:query];
7743 - (void) viewDidAppear:(BOOL)animated {
7744 [super viewDidAppear:animated];
7746 if (!searchloaded_) {
7747 searchloaded_ = YES;
7748 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7749 [search_ layoutSubviews];
7750 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7752 UITextField *textField;
7753 if ([search_ respondsToSelector:@selector(searchField)])
7754 textField = [search_ searchField];
7756 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7758 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7759 [textField setEnablesReturnKeyAutomatically:NO];
7760 [[self navigationItem] setTitleView:textField];
7764 - (void) reloadData {
7765 id object([search_ text]);
7766 if ([self filter] == @selector(isUnfilteredAndSearchedForBy:))
7767 object = [object componentsSeparatedByString:@" "];
7769 [self setObject:object];
7775 - (void) didSelectPackage:(Package *)package {
7776 [search_ resignFirstResponder];
7777 [super didSelectPackage:package];
7782 /* Package Settings Controller {{{ */
7783 @interface PackageSettingsController : CyteViewController <
7784 UITableViewDataSource,
7787 _transient Database *database_;
7789 _H<Package> package_;
7790 _H<UITableView, 2> table_;
7791 _H<UISwitch> subscribedSwitch_;
7792 _H<UISwitch> ignoredSwitch_;
7793 _H<UITableViewCell> subscribedCell_;
7794 _H<UITableViewCell> ignoredCell_;
7797 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7801 @implementation PackageSettingsController
7803 - (NSURL *) navigationURL {
7804 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]];
7807 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7808 if (package_ == nil)
7811 if ([package_ installed] == nil)
7817 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7818 if (package_ == nil)
7821 // both sections contain just one item right now.
7825 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7829 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7831 return UCLocalize("SHOW_ALL_CHANGES_EX");
7833 return UCLocalize("IGNORE_UPGRADES_EX");
7836 - (void) onSubscribed:(id)control {
7837 bool value([control isOn]);
7838 if (package_ == nil)
7840 if ([package_ setSubscribed:value])
7841 [delegate_ updateData];
7844 - (void) _updateIgnored {
7845 const char *package([name_ UTF8String]);
7846 bool on([ignoredSwitch_ isOn]);
7848 pid_t pid(ExecFork());
7850 FILE *dpkg(popen("dpkg --set-selections", "w"));
7851 fwrite(package, strlen(package), 1, dpkg);
7854 fwrite(" hold\n", 6, 1, dpkg);
7856 fwrite(" install\n", 9, 1, dpkg);
7867 - (void) onIgnored:(id)control {
7868 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7869 [invocation setTarget:self];
7870 [invocation setSelector:@selector(_updateIgnored)];
7872 [delegate_ reloadDataWithInvocation:invocation];
7875 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7876 if (package_ == nil)
7879 switch ([indexPath section]) {
7880 case 0: return subscribedCell_;
7881 case 1: return ignoredCell_;
7890 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
7892 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
7893 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7894 [(UITableView *) table_ setDataSource:self];
7895 [table_ setDelegate:self];
7896 [[self view] addSubview:table_];
7898 subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7899 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7900 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7902 ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7903 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7904 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7906 subscribedCell_ = [[[UITableViewCell alloc] init] autorelease];
7907 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7908 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7909 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7911 ignoredCell_ = [[[UITableViewCell alloc] init] autorelease];
7912 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7913 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7914 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7917 - (void) viewDidLoad {
7918 [super viewDidLoad];
7920 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7923 - (void) releaseSubviews {
7925 subscribedCell_ = nil;
7927 ignoredSwitch_ = nil;
7928 subscribedSwitch_ = nil;
7930 [super releaseSubviews];
7933 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7934 if ((self = [super init]) != nil) {
7935 database_ = database;
7940 - (void) reloadData {
7943 package_ = [database_ packageWithName:name_];
7945 if (package_ != nil) {
7946 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7947 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7948 } // XXX: what now, G?
7950 [table_ reloadData];
7956 /* Installed Controller {{{ */
7957 @interface InstalledController : FilteredPackageListController {
7961 - (id) initWithDatabase:(Database *)database;
7963 - (void) updateRoleButton;
7964 - (void) queueStatusDidChange;
7968 @implementation InstalledController
7970 - (NSURL *) navigationURL {
7971 return [NSURL URLWithString:@"cydia://installed"];
7974 - (id) initWithDatabase:(Database *)database {
7975 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndUnfiltered:) with:[NSNumber numberWithBool:YES]]) != nil) {
7976 [self updateRoleButton];
7977 [self queueStatusDidChange];
7982 - (void) queueButtonClicked {
7987 - (void) queueStatusDidChange {
7991 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7992 initWithTitle:UCLocalize("QUEUE")
7993 style:UIBarButtonItemStyleDone
7995 action:@selector(queueButtonClicked)
7998 [[self navigationItem] setLeftBarButtonItem:nil];
8004 - (void) updateRoleButton {
8005 if (Role_ != nil && ![Role_ isEqualToString:@"Developer"])
8006 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8007 initWithTitle:(expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE"))
8008 style:(expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8010 action:@selector(roleButtonClicked)
8014 - (void) roleButtonClicked {
8015 [self setObject:[NSNumber numberWithBool:expert_]];
8019 [self updateRoleButton];
8025 /* Source Cell {{{ */
8026 @interface SourceCell : CyteTableViewCell <
8027 CyteTableViewCellDelegate
8031 _H<NSString> origin_;
8032 _H<NSString> label_;
8035 - (void) setSource:(Source *)source;
8039 @implementation SourceCell
8041 - (void) _setImage:(NSArray *)data {
8042 if ([url_ isEqual:[data objectAtIndex:0]]) {
8043 icon_ = [data objectAtIndex:1];
8044 [content_ setNeedsDisplay];
8048 - (void) _setSource:(NSURL *) url {
8049 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
8051 if (NSData *data = [NSURLConnection
8052 sendSynchronousRequest:[NSURLRequest
8054 //cachePolicy:NSURLRequestUseProtocolCachePolicy
8058 returningResponse:NULL
8061 if (UIImage *image = [UIImage imageWithData:data])
8062 [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO];
8067 - (void) setSource:(Source *)source {
8068 icon_ = [UIImage applicationImageNamed:@"unknown.png"];
8070 origin_ = [source name];
8071 label_ = [source rooturi];
8073 [content_ setNeedsDisplay];
8075 url_ = [source iconURL];
8076 [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_];
8079 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8080 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8081 UIView *content([self contentView]);
8082 CGRect bounds([content bounds]);
8084 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
8085 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8086 [content_ setBackgroundColor:[UIColor whiteColor]];
8087 [content addSubview:content_];
8089 [content_ setDelegate:self];
8090 [content_ setOpaque:YES];
8092 [[content_ layer] setContentsGravity:kCAGravityTopLeft];
8096 - (NSString *) accessibilityLabel {
8100 - (void) drawContentRect:(CGRect)rect {
8101 bool highlighted(highlighted_);
8102 float width(rect.size.width);
8106 rect.size = [(UIImage *) icon_ size];
8108 while (rect.size.width > 32 || rect.size.height > 32) {
8109 rect.size.width /= 2;
8110 rect.size.height /= 2;
8113 rect.origin.x = 25 - rect.size.width / 2;
8114 rect.origin.y = 25 - rect.size.height / 2;
8116 [icon_ drawInRect:rect];
8124 [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 65) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation];
8128 [label_ drawAtPoint:CGPointMake(48, 29) forWidth:(width - 65) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation];
8133 /* Source Controller {{{ */
8134 @interface SourceController : FilteredPackageListController {
8135 _transient Source *source_;
8139 - (id) initWithDatabase:(Database *)database source:(Source *)source;
8143 @implementation SourceController
8145 - (NSURL *) navigationURL {
8146 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]];
8149 - (id) initWithDatabase:(Database *)database source:(Source *)source {
8150 if ((self = [super initWithDatabase:database title:[source label] filter:@selector(isVisibleInSource:) with:source]) != nil) {
8152 key_ = [source key];
8156 - (void) reloadData {
8157 source_ = [database_ sourceWithKey:key_];
8158 key_ = [source_ key];
8159 [self setObject:source_];
8161 [[self navigationItem] setTitle:[source_ label]];
8168 /* Sources Controller {{{ */
8169 @interface SourcesController : CyteViewController <
8170 UITableViewDataSource,
8173 _transient Database *database_;
8176 _H<UITableView, 2> list_;
8177 _H<NSMutableArray> sources_;
8181 _H<UIProgressHUD> hud_;
8184 //NSURLConnection *installer_;
8185 NSURLConnection *trivial_;
8186 NSURLConnection *trivial_bz2_;
8187 NSURLConnection *trivial_gz_;
8188 //NSURLConnection *automatic_;
8193 - (id) initWithDatabase:(Database *)database;
8194 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated;
8198 @implementation SourcesController
8200 - (void) _releaseConnection:(NSURLConnection *)connection {
8201 if (connection != nil) {
8202 [connection cancel];
8203 //[connection setDelegate:nil];
8204 [connection release];
8209 //[self _releaseConnection:installer_];
8210 [self _releaseConnection:trivial_];
8211 [self _releaseConnection:trivial_gz_];
8212 [self _releaseConnection:trivial_bz2_];
8213 //[self _releaseConnection:automatic_];
8218 - (NSURL *) navigationURL {
8219 return [NSURL URLWithString:@"cydia://sources"];
8222 - (void) viewDidAppear:(BOOL)animated {
8223 [super viewDidAppear:animated];
8224 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8227 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8231 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8235 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8236 return [sources_ count];
8239 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8240 @synchronized (database_) {
8241 if ([database_ era] != era_)
8244 return [sources_ objectAtIndex:[indexPath row]];
8247 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8248 static NSString *cellIdentifier = @"SourceCell";
8250 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8251 if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8252 [cell setSource:[self sourceAtIndexPath:indexPath]];
8253 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8258 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8259 Source *source = [self sourceAtIndexPath:indexPath];
8261 SourceController *controller = [[[SourceController alloc]
8262 initWithDatabase:database_
8266 [controller setDelegate:delegate_];
8268 [[self navigationController] pushViewController:controller animated:YES];
8271 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8272 Source *source = [self sourceAtIndexPath:indexPath];
8273 return [source record] != nil;
8276 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8277 if (editingStyle == UITableViewCellEditingStyleDelete) {
8278 Source *source = [self sourceAtIndexPath:indexPath];
8279 [Sources_ removeObjectForKey:[source key]];
8280 [delegate_ syncData];
8285 [delegate_ addTrivialSource:href_];
8288 [delegate_ syncData];
8291 - (NSString *) getWarning {
8292 NSString *href(href_);
8293 NSRange colon([href rangeOfString:@"://"]);
8294 if (colon.location != NSNotFound)
8295 href = [href substringFromIndex:(colon.location + 3)];
8296 href = [href stringByAddingPercentEscapes];
8297 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8299 NSURL *url([NSURL URLWithString:href]);
8301 NSStringEncoding encoding;
8302 NSError *error(nil);
8304 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8305 return [warning length] == 0 ? nil : warning;
8309 - (void) _endConnection:(NSURLConnection *)connection {
8310 // XXX: the memory management in this method is horribly awkward
8312 NSURLConnection **field = NULL;
8313 if (connection == trivial_)
8315 else if (connection == trivial_bz2_)
8316 field = &trivial_bz2_;
8317 else if (connection == trivial_gz_)
8318 field = &trivial_gz_;
8319 _assert(field != NULL);
8320 [connection release];
8325 trivial_bz2_ == nil &&
8328 NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil);
8330 [delegate_ releaseNetworkActivityIndicator];
8332 [delegate_ removeProgressHUD:hud_];
8336 if (warning != nil) {
8337 UIAlertView *alert = [[[UIAlertView alloc]
8338 initWithTitle:UCLocalize("SOURCE_WARNING")
8341 cancelButtonTitle:UCLocalize("CANCEL")
8343 UCLocalize("ADD_ANYWAY"),
8347 [alert setContext:@"warning"];
8348 [alert setNumberOfRows:1];
8351 // XXX: there used to be this great mechanism called yieldToPopup... who deleted it?
8357 } else if (error_ != nil) {
8358 UIAlertView *alert = [[[UIAlertView alloc]
8359 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8360 message:[error_ localizedDescription]
8362 cancelButtonTitle:UCLocalize("OK")
8363 otherButtonTitles:nil
8366 [alert setContext:@"urlerror"];
8371 UIAlertView *alert = [[[UIAlertView alloc]
8372 initWithTitle:UCLocalize("NOT_REPOSITORY")
8373 message:UCLocalize("NOT_REPOSITORY_EX")
8375 cancelButtonTitle:UCLocalize("OK")
8376 otherButtonTitles:nil
8379 [alert setContext:@"trivial"];
8389 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8390 switch ([response statusCode]) {
8396 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8397 lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8399 [self _endConnection:connection];
8402 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8403 [self _endConnection:connection];
8406 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8407 NSURL *url([NSURL URLWithString:href]);
8409 NSMutableURLRequest *request = [NSMutableURLRequest
8411 cachePolicy:NSURLRequestUseProtocolCachePolicy
8412 timeoutInterval:120.0
8415 [request setHTTPMethod:method];
8417 if (Machine_ != NULL)
8418 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8420 if ([url isCydiaSecure]) {
8421 if (UniqueID_ != nil) {
8422 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8423 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
8427 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8430 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8431 NSString *context([alert context]);
8433 if ([context isEqualToString:@"source"]) {
8436 NSString *href = [[alert textField] text];
8438 //installer_ = [[self _requestHRef:href method:@"GET"] retain];
8440 if (![href hasSuffix:@"/"])
8441 href_ = [href stringByAppendingString:@"/"];
8445 trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain];
8446 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8447 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8448 //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain];
8452 // XXX: this is stupid
8453 hud_ = [delegate_ addProgressHUD];
8454 [hud_ setText:UCLocalize("VERIFYING_URL")];
8455 [delegate_ retainNetworkActivityIndicator];
8464 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8465 } else if ([context isEqualToString:@"trivial"])
8466 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8467 else if ([context isEqualToString:@"urlerror"])
8468 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8469 else if ([context isEqualToString:@"warning"]) {
8472 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
8481 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8486 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8488 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
8489 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8490 [list_ setRowHeight:53];
8491 [(UITableView *) list_ setDataSource:self];
8492 [list_ setDelegate:self];
8493 [[self view] addSubview:list_];
8496 - (void) viewDidLoad {
8497 [super viewDidLoad];
8499 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8500 [self updateButtonsForEditingStatus:NO animated:NO];
8503 - (void) releaseSubviews {
8508 [super releaseSubviews];
8511 - (id) initWithDatabase:(Database *)database {
8512 if ((self = [super init]) != nil) {
8513 database_ = database;
8517 - (void) reloadData {
8520 @synchronized (database_) {
8521 era_ = [database_ era];
8524 if ([database_ popErrorWithTitle:UCLocalize("SOURCES") forOperation:list.ReadMainList()])
8527 sources_ = [NSMutableArray arrayWithCapacity:16];
8528 [sources_ addObjectsFromArray:[database_ sources]];
8530 [sources_ sortUsingSelector:@selector(compareByName:)];
8533 int count([sources_ count]);
8535 for (int i = 0; i != count; i++) {
8536 if ([[sources_ objectAtIndex:i] record] == nil)
8541 [list_ setEditing:NO];
8542 [self updateButtonsForEditingStatus:NO animated:NO];
8546 - (void) showAddSourcePrompt {
8547 UIAlertView *alert = [[[UIAlertView alloc]
8548 initWithTitle:UCLocalize("ENTER_APT_URL")
8551 cancelButtonTitle:UCLocalize("CANCEL")
8553 UCLocalize("ADD_SOURCE"),
8557 [alert setContext:@"source"];
8559 [alert setNumberOfRows:1];
8560 [alert addTextFieldWithValue:@"http://" label:@""];
8562 UITextInputTraits *traits = [[alert textField] textInputTraits];
8563 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8564 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8565 [traits setKeyboardType:UIKeyboardTypeURL];
8566 // XXX: UIReturnKeyDone
8567 [traits setReturnKeyType:UIReturnKeyNext];
8572 - (void) addButtonClicked {
8573 [self showAddSourcePrompt];
8576 - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated {
8577 [[self navigationItem] setLeftBarButtonItem:(editing ? [[[UIBarButtonItem alloc]
8578 initWithTitle:UCLocalize("ADD")
8579 style:UIBarButtonItemStylePlain
8581 action:@selector(addButtonClicked)
8582 ] autorelease] : [[self navigationItem] backBarButtonItem]) animated:animated];
8584 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8585 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8586 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8588 action:@selector(editButtonClicked)
8589 ] autorelease] animated:animated];
8591 if (IsWildcat_ && !editing)
8592 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8593 initWithTitle:UCLocalize("SETTINGS")
8594 style:UIBarButtonItemStylePlain
8596 action:@selector(settingsButtonClicked)
8600 - (void) settingsButtonClicked {
8601 [delegate_ showSettings];
8604 - (void) editButtonClicked {
8605 [list_ setEditing:![list_ isEditing] animated:YES];
8607 [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES];
8613 /* Settings Controller {{{ */
8614 @interface SettingsController : CyteViewController <
8615 UITableViewDataSource,
8618 _transient Database *database_;
8619 // XXX: ok, "roledelegate_"?...
8620 _transient id roledelegate_;
8621 _H<UITableView, 2> table_;
8622 _H<UISegmentedControl> segment_;
8623 _H<UIView> container_;
8626 - (void) showDoneButton;
8627 - (void) resizeSegmentedControl;
8631 @implementation SettingsController
8634 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8636 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
8637 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8638 [table_ setDelegate:self];
8639 [(UITableView *) table_ setDataSource:self];
8640 [[self view] addSubview:table_];
8642 NSArray *items = [NSArray arrayWithObjects:
8644 UCLocalize("HACKER"),
8645 UCLocalize("DEVELOPER"),
8647 segment_ = [[[UISegmentedControl alloc] initWithItems:items] autorelease];
8648 [segment_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin)];
8649 container_ = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)] autorelease];
8650 [container_ addSubview:segment_];
8653 - (void) viewDidLoad {
8654 [super viewDidLoad];
8656 [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")];
8659 if ([Role_ isEqualToString:@"User"]) index = 0;
8660 if ([Role_ isEqualToString:@"Hacker"]) index = 1;
8661 if ([Role_ isEqualToString:@"Developer"]) index = 2;
8663 [segment_ setSelectedSegmentIndex:index];
8664 [self showDoneButton];
8667 [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
8668 [self resizeSegmentedControl];
8671 - (void) releaseSubviews {
8676 [super releaseSubviews];
8679 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
8680 if ((self = [super init]) != nil) {
8681 database_ = database;
8682 roledelegate_ = delegate;
8686 - (void) resizeSegmentedControl {
8687 CGFloat width = [[self view] frame].size.width;
8688 [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)];
8691 - (void) viewWillAppear:(BOOL)animated {
8692 [super viewWillAppear:animated];
8694 [self resizeSegmentedControl];
8697 - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
8698 [self resizeSegmentedControl];
8701 - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
8702 [self resizeSegmentedControl];
8706 NSString *role(nil);
8708 switch ([segment_ selectedSegmentIndex]) {
8709 case 0: role = @"User"; break;
8710 case 1: role = @"Hacker"; break;
8711 case 2: role = @"Developer"; break;
8716 if (![role isEqualToString:Role_]) {
8717 bool rolling(Role_ == nil);
8720 Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys:
8724 [Metadata_ setObject:Settings_ forKey:@"Settings"];
8728 [roledelegate_ loadData];
8730 [roledelegate_ updateData];
8734 - (void) segmentChanged:(UISegmentedControl *)control {
8735 [self showDoneButton];
8738 - (void) saveAndClose {
8741 [[self navigationItem] setRightBarButtonItem:nil];
8742 [[self navigationController] dismissModalViewControllerAnimated:YES];
8745 - (void) doneButtonClicked {
8746 UIActivityIndicatorView *spinner = [[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20.0f, 20.0f)] autorelease];
8747 [spinner startAnimating];
8748 UIBarButtonItem *spinItem = [[[UIBarButtonItem alloc] initWithCustomView:spinner] autorelease];
8749 [[self navigationItem] setRightBarButtonItem:spinItem];
8751 [self performSelector:@selector(saveAndClose) withObject:nil afterDelay:0];
8754 - (void) showDoneButton {
8755 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8756 initWithTitle:UCLocalize("DONE")
8757 style:UIBarButtonItemStyleDone
8759 action:@selector(doneButtonClicked)
8760 ] autorelease] animated:([[self navigationItem] rightBarButtonItem] == nil)];
8763 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8764 // XXX: For not having a single cell in the table, this sure is a lot of sections.
8768 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8772 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8773 return nil; // This method is required by the protocol.
8776 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
8778 return UCLocalize("ROLE_EX");
8780 return [NSString stringWithFormat:
8781 @"%@: %@\n%@: %@\n%@: %@",
8782 UCLocalize("USER"), UCLocalize("USER_EX"),
8783 UCLocalize("HACKER"), UCLocalize("HACKER_EX"),
8784 UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX")
8789 - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
8790 return section == 3 ? 44.0f : 0;
8793 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
8794 return section == 3 ? container_ : nil;
8797 - (void) reloadData {
8800 [table_ reloadData];
8805 /* Stash Controller {{{ */
8806 @interface StashController : CyteViewController {
8807 _H<UIActivityIndicatorView> spinner_;
8808 _H<UILabel> status_;
8809 _H<UILabel> caption_;
8814 @implementation StashController
8817 [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]];
8818 [[self view] setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8820 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8821 CGRect spinrect = [spinner_ frame];
8822 spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2);
8823 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8824 [spinner_ setFrame:spinrect];
8825 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8826 [[self view] addSubview:spinner_];
8827 [spinner_ startAnimating];
8830 captrect.size.width = [[self view] frame].size.width;
8831 captrect.size.height = 40.0f;
8832 captrect.origin.x = 0;
8833 captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2);
8834 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8835 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8836 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8837 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8838 [caption_ setTextColor:[UIColor whiteColor]];
8839 [caption_ setBackgroundColor:[UIColor clearColor]];
8840 [caption_ setShadowColor:[UIColor blackColor]];
8841 [caption_ setTextAlignment:UITextAlignmentCenter];
8842 [[self view] addSubview:caption_];
8845 statusrect.size.width = [[self view] frame].size.width;
8846 statusrect.size.height = 30.0f;
8847 statusrect.origin.x = 0;
8848 statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height;
8849 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8850 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8851 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8852 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8853 [status_ setTextColor:[UIColor whiteColor]];
8854 [status_ setBackgroundColor:[UIColor clearColor]];
8855 [status_ setShadowColor:[UIColor blackColor]];
8856 [status_ setTextAlignment:UITextAlignmentCenter];
8857 [[self view] addSubview:status_];
8860 - (void) releaseSubviews {
8865 [super releaseSubviews];
8871 @interface CYURLCache : SDURLCache {
8876 @implementation CYURLCache
8878 - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request {
8881 else if ([event isEqualToString:@"no-cache"])
8883 else if ([event isEqualToString:@"store"])
8885 else if ([event isEqualToString:@"invalid"])
8887 else if ([event isEqualToString:@"memory"])
8889 else if ([event isEqualToString:@"disk"])
8891 else if ([event isEqualToString:@"miss"])
8894 NSLog(@"%@: %@", event, [[request URL] absoluteString]);
8898 - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request {
8899 if (NSURLResponse *response = [cached response])
8900 if (NSString *mime = [response MIMEType])
8901 if ([mime isEqualToString:@"text/cache-manifest"]) {
8902 NSURL *url([response URL]);
8905 NSLog(@"###: %@", [url absoluteString]);
8908 @synchronized (HostConfig_) {
8909 [CachedURLs_ addObject:url];
8913 [super storeCachedResponse:cached forRequest:request];
8918 @interface Cydia : UIApplication <
8919 ConfirmationControllerDelegate,
8922 UINavigationControllerDelegate,
8923 UITabBarControllerDelegate
8925 _H<UIWindow> window_;
8926 _H<CYTabBarController> tabbar_;
8927 _H<CydiaLoadingViewController> emulated_;
8929 _H<NSMutableArray> essential_;
8930 _H<NSMutableArray> broken_;
8932 Database *database_;
8934 _H<NSURL> starturl_;
8939 _H<StashController> stash_;
8948 @implementation Cydia
8950 - (void) beginUpdate {
8951 [tabbar_ beginUpdate];
8955 return [tabbar_ updating];
8959 if ([broken_ count] != 0) {
8960 int count = [broken_ count];
8962 UIAlertView *alert = [[[UIAlertView alloc]
8963 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8964 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8966 cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR")
8968 UCLocalize("TEMPORARY_IGNORE"),
8972 [alert setContext:@"fixhalf"];
8973 [alert setNumberOfRows:2];
8975 } else if (!Ignored_ && [essential_ count] != 0) {
8976 int count = [essential_ count];
8978 UIAlertView *alert = [[[UIAlertView alloc]
8979 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8980 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8982 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8984 UCLocalize("UPGRADE_ESSENTIAL"),
8985 UCLocalize("COMPLETE_UPGRADE"),
8989 [alert setContext:@"upgrade"];
8994 - (void) returnToCydia {
8998 - (void) _saveConfig {
8999 @synchronized (database_) {
9006 NSString *error(nil);
9008 if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) {
9010 NSError *error(nil);
9011 if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error])
9012 NSLog(@"failure to save metadata data: %@", error);
9017 NSLog(@"failure to serialize metadata: %@", error);
9021 CydiaWriteSources();
9024 // Navigation controller for the queuing badge.
9025 - (UINavigationController *) queueNavigationController {
9026 NSArray *controllers = [tabbar_ viewControllers];
9027 return [controllers objectAtIndex:3];
9030 - (void) unloadData {
9031 [tabbar_ unloadData];
9034 - (void) _updateData {
9038 UINavigationController *navigation = [self queueNavigationController];
9040 id queuedelegate = nil;
9041 if ([[navigation viewControllers] count] > 0)
9042 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
9044 [queuedelegate queueStatusDidChange];
9045 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
9048 - (void) _refreshIfPossible:(NSDate *)update {
9049 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9051 bool recently = false;
9052 if (update != nil) {
9053 NSTimeInterval interval([update timeIntervalSinceNow]);
9054 if (interval <= 0 && interval > -(15*60))
9058 // Don't automatic refresh if:
9059 // - We already refreshed recently.
9060 // - We already auto-refreshed this launch.
9061 // - Auto-refresh is disabled.
9062 if (recently || loaded_ || ManualRefresh) {
9063 // If we are cancelling, we need to make sure it knows it's already loaded.
9066 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9068 // We are going to load, so remember that.
9071 SCNetworkReachabilityFlags flags; {
9072 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(NULL, "cydia.saurik.com"));
9073 SCNetworkReachabilityGetFlags(reachability, &flags);
9074 CFRelease(reachability);
9077 // XXX: this elaborate mess is what Apple is using to determine this? :(
9078 // XXX: do we care if the user has to intervene? maybe that's ok?
9080 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
9081 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
9082 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
9083 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
9084 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
9085 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
9089 // If we can reach the server, auto-refresh!
9091 [tabbar_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO];
9097 - (void) refreshIfPossible {
9098 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible:) toTarget:self withObject:[Metadata_ objectForKey:@"LastUpdate"]];
9101 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9102 @synchronized (self) {
9103 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9104 [hud setText:UCLocalize("RELOADING_DATA")];
9106 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9110 [essential_ removeAllObjects];
9111 [broken_ removeAllObjects];
9113 NSArray *packages([database_ packages]);
9114 for (Package *package in packages) {
9116 [broken_ addObject:package];
9117 if ([package upgradableAndEssential:NO]) {
9118 if ([package essential])
9119 [essential_ addObject:package];
9124 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9127 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9128 [changesItem setBadgeValue:badge];
9129 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9130 [self setApplicationIconBadgeNumber:changes];
9133 [changesItem setBadgeValue:nil];
9134 [changesItem setAnimatedBadge:NO];
9135 [self setApplicationIconBadgeNumber:0];
9141 [self removeProgressHUD:hud];
9144 - (void) updateData {
9150 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9153 - (void) disemulate {
9154 if (emulated_ == nil)
9157 [window_ addSubview:[tabbar_ view]];
9158 [[emulated_ view] removeFromSuperview];
9160 [window_ setUserInteractionEnabled:YES];
9163 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9164 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9166 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9168 UIViewController *parent;
9169 if (emulated_ == nil)
9178 [parent presentModalViewController:navigation animated:YES];
9181 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9182 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9184 if (navigation != nil)
9185 [navigation pushViewController:progress animated:YES];
9187 [self presentModalViewController:progress force:YES];
9189 [progress invoke:invocation withTitle:title];
9193 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9194 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9197 - (void) repairWithInvocation:(NSInvocation *)invocation {
9199 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9203 - (void) repairWithSelector:(SEL)selector {
9204 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9207 - (void) reloadData {
9208 [self reloadDataWithInvocation:nil];
9209 if ([database_ progressDelegate] == nil)
9215 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9218 - (void) addSource:(NSDictionary *) source {
9219 CydiaAddSource(source);
9222 - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections {
9223 CydiaAddSource(href, distribution, sections);
9226 - (void) addTrivialSource:(NSString *)href {
9227 CydiaAddSource(href, @"./");
9230 - (void) updateValues {
9235 pkgProblemResolver *resolver = [database_ resolver];
9237 resolver->InstallProtect();
9238 if (!resolver->Resolve(true))
9243 // XXX: this is a really crappy way of doing this.
9244 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9245 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9246 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9247 if ([tabbar_ updating])
9248 [tabbar_ cancelUpdate];
9250 if (![database_ prepare])
9253 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9254 [page setDelegate:self];
9255 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9258 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9259 [tabbar_ presentModalViewController:confirm_ animated:YES];
9265 @synchronized (self) {
9270 - (void) clearPackage:(Package *)package {
9271 @synchronized (self) {
9278 - (void) installPackages:(NSArray *)packages {
9279 @synchronized (self) {
9280 for (Package *package in packages)
9287 - (void) installPackage:(Package *)package {
9288 @synchronized (self) {
9295 - (void) removePackage:(Package *)package {
9296 @synchronized (self) {
9303 - (void) distUpgrade {
9304 @synchronized (self) {
9305 if (![database_ upgrade])
9312 [database_ perform];
9313 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9316 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9319 [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"];
9321 [self refreshIfPossible];
9324 - (void) showSettings {
9325 [self presentModalViewController:[[[SettingsController alloc] initWithDatabase:database_ delegate:self] autorelease] force:NO];
9328 - (void) retainNetworkActivityIndicator {
9329 if (activity_++ == 0)
9330 [self setNetworkActivityIndicatorVisible:YES];
9333 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9337 - (void) releaseNetworkActivityIndicator {
9338 if (--activity_ == 0)
9339 [self setNetworkActivityIndicatorVisible:NO];
9342 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9347 - (void) cancelAndClear:(bool)clear {
9348 @synchronized (self) {
9360 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9361 NSString *context([alert context]);
9363 if ([context isEqualToString:@"conffile"]) {
9364 FILE *input = [database_ input];
9365 if (button == [alert cancelButtonIndex])
9366 fprintf(input, "N\n");
9367 else if (button == [alert firstOtherButtonIndex])
9368 fprintf(input, "Y\n");
9371 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9372 } else if ([context isEqualToString:@"fixhalf"]) {
9373 if (button == [alert cancelButtonIndex]) {
9374 @synchronized (self) {
9375 for (Package *broken in (id) broken_) {
9378 NSString *id = [broken id];
9379 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
9380 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
9381 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
9382 unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
9388 } else if (button == [alert firstOtherButtonIndex]) {
9389 [broken_ removeAllObjects];
9393 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9394 } else if ([context isEqualToString:@"upgrade"]) {
9395 if (button == [alert firstOtherButtonIndex]) {
9396 @synchronized (self) {
9397 for (Package *essential in (id) essential_)
9398 [essential install];
9403 } else if (button == [alert firstOtherButtonIndex] + 1) {
9405 } else if (button == [alert cancelButtonIndex]) {
9409 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9413 - (void) system:(NSString *)command {
9414 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9417 system([command UTF8String]);
9423 - (void) applicationWillSuspend {
9425 [super applicationWillSuspend];
9428 - (BOOL) isSafeToSuspend {
9431 NSLog(@"isSafeToSuspend: locked_ != 0");
9436 // Use external process status API internally.
9437 // This is probably a really bad idea.
9438 // XXX: what is the point of this? does this solve anything at all?
9439 uint64_t status = 0;
9441 if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) {
9442 notify_get_state(notify_token, &status);
9443 notify_cancel(notify_token);
9448 NSLog(@"isSafeToSuspend: status != 0");
9454 NSLog(@"isSafeToSuspend: -> true");
9459 - (void) applicationSuspend:(__GSEvent *)event {
9460 if ([self isSafeToSuspend])
9461 [super applicationSuspend:event];
9464 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9465 if ([self isSafeToSuspend])
9466 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9469 - (void) _setSuspended:(BOOL)value {
9470 if ([self isSafeToSuspend])
9471 [super _setSuspended:value];
9474 - (UIProgressHUD *) addProgressHUD {
9475 UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]);
9476 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9478 [window_ setUserInteractionEnabled:NO];
9480 UIViewController *target(tabbar_);
9481 if (UIViewController *modal = [target modalViewController])
9484 [hud showInView:[target view]];
9490 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9493 [hud removeFromSuperview];
9494 [window_ setUserInteractionEnabled:YES];
9497 - (CyteViewController *) pageForPackage:(NSString *)name {
9498 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name] autorelease];
9501 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external {
9502 NSString *scheme([[url scheme] lowercaseString]);
9503 if ([[url absoluteString] length] <= [scheme length] + 3)
9505 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9506 NSArray *components([path componentsSeparatedByString:@"/"]);
9508 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"])
9509 return [self pageForPackage:[components objectAtIndex:1]];
9511 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9514 NSString *base([components objectAtIndex:0]);
9516 CyteViewController *controller = nil;
9518 if ([base isEqualToString:@"url"]) {
9519 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9520 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9521 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9522 } else if (!external && [components count] == 1) {
9523 if ([base isEqualToString:@"manage"]) {
9524 controller = [[[ManageController alloc] init] autorelease];
9527 if ([base isEqualToString:@"storage"]) {
9528 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/storage/", UI_]]] autorelease];
9531 if ([base isEqualToString:@"sources"]) {
9532 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9535 if ([base isEqualToString:@"home"]) {
9536 controller = [[[HomeController alloc] init] autorelease];
9539 if ([base isEqualToString:@"sections"]) {
9540 controller = [[[SectionsController alloc] initWithDatabase:database_] autorelease];
9543 if ([base isEqualToString:@"search"]) {
9544 controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease];
9547 if ([base isEqualToString:@"changes"]) {
9548 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9551 if ([base isEqualToString:@"installed"]) {
9552 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9554 } else if ([components count] == 2) {
9555 NSString *argument = [components objectAtIndex:1];
9557 if ([base isEqualToString:@"package"]) {
9558 controller = [self pageForPackage:argument];
9561 if (!external && [base isEqualToString:@"search"]) {
9562 controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease];
9565 if (!external && [base isEqualToString:@"sections"]) {
9566 if ([argument isEqualToString:@"all"])
9568 controller = [[[SectionController alloc] initWithDatabase:database_ section:argument] autorelease];
9571 if (!external && [base isEqualToString:@"sources"]) {
9572 if ([argument isEqualToString:@"add"]) {
9573 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9574 [(SourcesController *)controller showAddSourcePrompt];
9576 Source *source = [database_ sourceWithKey:[argument stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
9577 controller = [[[SourceController alloc] initWithDatabase:database_ source:source] autorelease];
9581 if (!external && [base isEqualToString:@"launch"]) {
9582 [self launchApplicationWithIdentifier:argument suspended:NO];
9585 } else if (!external && [components count] == 3) {
9586 NSString *arg1 = [components objectAtIndex:1];
9587 NSString *arg2 = [components objectAtIndex:2];
9589 if ([base isEqualToString:@"package"]) {
9590 if ([arg2 isEqualToString:@"settings"]) {
9591 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9592 } else if ([arg2 isEqualToString:@"files"]) {
9593 if (Package *package = [database_ packageWithName:arg1]) {
9594 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9595 [(FileTable *)controller setPackage:package];
9601 [controller setDelegate:self];
9605 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9606 CyteViewController *page([self pageForURL:url forExternal:external]);
9609 UINavigationController *nav = [[[UINavigationController alloc] init] autorelease];
9610 [nav setViewControllers:[NSArray arrayWithObject:page]];
9611 [tabbar_ setUnselectedViewController:nav];
9617 - (void) applicationOpenURL:(NSURL *)url {
9618 [super applicationOpenURL:url];
9623 [self openCydiaURL:url forExternal:YES];
9626 - (void) applicationWillResignActive:(UIApplication *)application {
9627 // Stop refreshing if you get a phone call or lock the device.
9628 if ([tabbar_ updating])
9629 [tabbar_ cancelUpdate];
9631 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9632 [super applicationWillResignActive:application];
9635 - (void) saveState {
9636 [Metadata_ setObject:[tabbar_ navigationURLCollection] forKey:@"InterfaceState"];
9637 [Metadata_ setObject:[NSDate date] forKey:@"LastClosed"];
9638 [Metadata_ setObject:[NSNumber numberWithInt:[tabbar_ selectedIndex]] forKey:@"InterfaceIndex"];
9644 - (void) applicationWillTerminate:(UIApplication *)application {
9648 - (void) setConfigurationData:(NSString *)data {
9649 static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$");
9651 if (!conffile_r(data)) {
9652 lprintf("E:invalid conffile\n");
9656 NSString *ofile = conffile_r[1];
9657 //NSString *nfile = conffile_r[2];
9659 UIAlertView *alert = [[[UIAlertView alloc]
9660 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9661 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9663 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9665 UCLocalize("ACCEPT_NEW_COPY"),
9666 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9670 [alert setContext:@"conffile"];
9671 [alert setNumberOfRows:2];
9675 - (void) addStashController {
9677 stash_ = [[[StashController alloc] init] autorelease];
9678 [window_ addSubview:[stash_ view]];
9681 - (void) removeStashController {
9682 [[stash_ view] removeFromSuperview];
9688 [self setIdleTimerDisabled:YES];
9690 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9691 UpdateExternalStatus(1);
9692 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"];
9693 UpdateExternalStatus(0);
9695 [self removeStashController];
9697 pid_t pid(ExecFork());
9699 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9700 perror("launchctl stop");
9707 - (void) setupViewControllers {
9708 tabbar_ = [[[CYTabBarController alloc] initWithDatabase:database_] autorelease];
9710 NSMutableArray *items([NSMutableArray arrayWithObjects:
9711 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease],
9712 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:0] autorelease],
9713 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:0] autorelease],
9714 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:0] autorelease],
9718 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:0] autorelease] atIndex:3];
9719 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9721 [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3];
9724 NSMutableArray *controllers([NSMutableArray array]);
9725 for (UITabBarItem *item in items) {
9726 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9727 [controller setTabBarItem:item];
9728 [controllers addObject:controller];
9730 [tabbar_ setViewControllers:controllers];
9732 [tabbar_ setUpdateDelegate:self];
9735 - (void) _sendMemoryWarningNotification {
9736 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]];
9739 - (void) _sendMemoryWarningNotifications {
9741 [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO];
9746 - (void) applicationDidFinishLaunching:(id)unused {
9747 //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil];
9750 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9751 [self setApplicationSupportsShakeToEdit:NO];
9753 @synchronized (HostConfig_) {
9754 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9757 [NSURLCache setSharedURLCache:[[[CYURLCache alloc]
9758 initWithMemoryCapacity:524288
9759 diskCapacity:10485760
9760 diskPath:[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia/SDURLCache", @"/var/root"]
9763 [CydiaWebViewController _initialize];
9765 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9767 // this would disallow http{,s} URLs from accessing this data
9768 //[WebView registerURLSchemeAsLocal:@"cydia"];
9770 Font12_ = [UIFont systemFontOfSize:12];
9771 Font12Bold_ = [UIFont boldSystemFontOfSize:12];
9772 Font14_ = [UIFont systemFontOfSize:14];
9773 Font18Bold_ = [UIFont boldSystemFontOfSize:18];
9774 Font22Bold_ = [UIFont boldSystemFontOfSize:22];
9776 essential_ = [NSMutableArray arrayWithCapacity:4];
9777 broken_ = [NSMutableArray arrayWithCapacity:4];
9779 // XXX: I really need this thing... like, seriously... I'm sorry
9780 [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] reloadData];
9782 window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
9783 [window_ orderFront:self];
9784 [window_ makeKey:self];
9785 [window_ setHidden:NO];
9788 readlink("/Applications", NULL, 0) == -1 && errno == EINVAL ||
9789 readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL ||
9790 readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL ||
9791 //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL ||
9792 readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL ||
9793 readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL ||
9794 readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL ||
9795 readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL ||
9796 //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL ||
9799 [self addStashController];
9800 // XXX: this would be much cleaner as a yieldToSelector:
9801 // that way the removeStashController could happen right here inline
9802 // we also could no longer require the useless stash_ field anymore
9803 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9807 database_ = [Database sharedInstance];
9808 [database_ setDelegate:self];
9810 [window_ setUserInteractionEnabled:NO];
9811 [self setupViewControllers];
9813 emulated_ = [[[CydiaLoadingViewController alloc] init] autorelease];
9814 [window_ addSubview:[emulated_ view]];
9816 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9820 - (NSArray *) defaultStartPages {
9821 NSMutableArray *standard = [NSMutableArray array];
9822 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9823 [standard addObject:[NSArray arrayWithObject:@"cydia://sections"]];
9824 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9826 [standard addObject:[NSArray arrayWithObject:@"cydia://manage"]];
9828 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9829 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9831 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9838 [window_ setUserInteractionEnabled:YES];
9839 [self showSettings];
9842 if ([emulated_ modalViewController] != nil)
9843 [emulated_ dismissModalViewControllerAnimated:YES];
9844 [window_ setUserInteractionEnabled:NO];
9847 [self reloadDataWithInvocation:nil];
9848 [self refreshIfPossible];
9853 int savedIndex = [[Metadata_ objectForKey:@"InterfaceIndex"] intValue];
9854 NSArray *saved = [[Metadata_ objectForKey:@"InterfaceState"] mutableCopy];
9855 int standardIndex = 0;
9856 NSArray *standard = [self defaultStartPages];
9863 NSDate *closed = [Metadata_ objectForKey:@"LastClosed"];
9864 if (valid && closed != nil) {
9865 NSTimeInterval interval([closed timeIntervalSinceNow]);
9866 // XXX: Is 60 minutes the optimal time here?
9867 if (interval <= -(60*60))
9871 if (valid && [saved count] != [standard count])
9875 for (unsigned int i = 0; i < [standard count]; i++) {
9876 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9877 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9878 // but it's good enough for now.
9879 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9886 NSArray *items = nil;
9888 [tabbar_ setSelectedIndex:savedIndex];
9891 [tabbar_ setSelectedIndex:standardIndex];
9895 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9896 NSArray *stack = [items objectAtIndex:tab];
9897 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9898 NSMutableArray *current = [NSMutableArray array];
9900 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9901 NSString *addr = [stack objectAtIndex:nav];
9902 NSURL *url = [NSURL URLWithString:addr];
9903 CyteViewController *page = [self pageForURL:url forExternal:NO];
9905 [current addObject:page];
9908 [navigation setViewControllers:current];
9911 // (Try to) show the startup URL.
9912 if (starturl_ != nil) {
9913 [self openCydiaURL:starturl_ forExternal:NO];
9918 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9919 if (item != nil && IsWildcat_) {
9920 [sheet showFromBarButtonItem:item animated:YES];
9922 [sheet showInView:window_];
9926 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9927 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9928 [progress setTitle:task];
9929 [progress addProgressEvent:event];
9932 - (void) addProgressEventForTask:(NSArray *)data {
9933 CydiaProgressEvent *event([data objectAtIndex:0]);
9934 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9935 [self addProgressEvent:event forTask:task];
9938 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9939 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9945 id Alloc_(id self, SEL selector) {
9946 id object = alloc_(self, selector);
9947 lprintf("[%s]A-%p\n", self->isa->name, object);
9952 id Dealloc_(id self, SEL selector) {
9953 id object = dealloc_(self, selector);
9954 lprintf("[%s]D-%p\n", self->isa->name, object);
9958 Class $WebDefaultUIKitDelegate;
9960 MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) {
9961 if (delegate == nil && $WebDefaultUIKitDelegate != nil)
9962 delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate];
9963 return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate);
9966 static NSSet *MobilizedFiles_;
9968 static NSURL *MobilizeURL(NSURL *url) {
9969 NSString *path([url path]);
9970 if ([path hasPrefix:@"/var/root/"]) {
9971 NSString *file([path substringFromIndex:10]);
9972 if ([MobilizedFiles_ containsObject:file])
9973 url = [NSURL fileURLWithPath:[@"/var/mobile/" stringByAppendingString:file] isDirectory:NO];
9979 Class $CFXPreferencesPropertyListSource;
9980 @class CFXPreferencesPropertyListSource;
9982 MSHook(BOOL, CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9983 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9984 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9985 url = MobilizeURL(url);
9986 BOOL value(_CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(self, _cmd));
9987 //NSLog(@"%@ %s", [url absoluteString], value ? "YES" : "NO");
9993 MSHook(void *, CFXPreferencesPropertyListSource$createPlistFromDisk, CFXPreferencesPropertyListSource *self, SEL _cmd) {
9994 NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url);
9995 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9996 url = MobilizeURL(url);
9997 void *value(_CFXPreferencesPropertyListSource$createPlistFromDisk(self, _cmd));
9998 //NSLog(@"%@ %@", [url absoluteString], value);
10004 Class $NSURLConnection;
10006 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
10007 NSMutableURLRequest *copy([request mutableCopy]);
10009 NSURL *url([copy URL]);
10011 NSString *host([url host]);
10012 NSString *scheme([[url scheme] lowercaseString]);
10014 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
10016 @synchronized (HostConfig_) {
10017 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
10018 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
10019 [copy setHTTPShouldUsePipelining:YES];
10021 if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"])
10022 if ([control isEqualToString:@"max-age=0"])
10023 if ([CachedURLs_ containsObject:url]) {
10025 NSLog(@"~~~: %@", url);
10028 [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad];
10030 [copy setValue:nil forHTTPHeaderField:@"Cache-Control"];
10031 [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"];
10032 [copy setValue:nil forHTTPHeaderField:@"If-None-Match"];
10036 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
10040 int main(int argc, char *argv[]) {
10041 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
10045 UpdateExternalStatus(0);
10047 if (Class $UIDevice = objc_getClass("UIDevice")) {
10048 UIDevice *device([$UIDevice currentDevice]);
10049 IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat];
10051 IsWildcat_ = false;
10053 UIScreen *screen([UIScreen mainScreen]);
10054 if ([screen respondsToSelector:@selector(scale)])
10055 ScreenScale_ = [screen scale];
10059 UIDevice *device([UIDevice currentDevice]);
10060 if (![device respondsToSelector:@selector(userInterfaceIdiom)])
10061 Idiom_ = @"iphone";
10063 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10064 if (idiom == UIUserInterfaceIdiomPhone)
10065 Idiom_ = @"iphone";
10066 else if (idiom == UIUserInterfaceIdiomPad)
10069 NSLog(@"unknown UIUserInterfaceIdiom!");
10072 Pcre pattern("^([0-9]+\\.[0-9]+)");
10074 if (pattern([device systemVersion]))
10075 Firmware_ = pattern[1];
10076 if (pattern(Cydia_))
10077 Major_ = pattern[1];
10079 SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4];
10081 HostConfig_ = [[[NSObject alloc] init] autorelease];
10082 @synchronized (HostConfig_) {
10083 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10084 TokenHosts_ = [NSMutableSet setWithCapacity:4];
10085 InsecureHosts_ = [NSMutableSet setWithCapacity:4];
10086 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10087 CachedURLs_ = [NSMutableSet setWithCapacity:32];
10090 NSString *ui(@"ui/ios");
10092 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]];
10093 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]];
10094 UI_ = CydiaURL(ui);
10096 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10098 MobilizedFiles_ = [NSMutableSet setWithObjects:
10099 @"Library/Preferences/com.apple.Accessibility.plist",
10100 @"Library/Preferences/com.apple.preferences.sounds.plist",
10103 /* Library Hacks {{{ */
10104 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10106 $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSource");
10108 Method CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(_backingPlistChangedSinceLastSync)));
10109 if (CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync != NULL) {
10110 _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync = reinterpret_cast<BOOL (*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10111 method_setImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync));
10114 Method CFXPreferencesPropertyListSource$createPlistFromDisk(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(createPlistFromDisk)));
10115 if (CFXPreferencesPropertyListSource$createPlistFromDisk != NULL) {
10116 _CFXPreferencesPropertyListSource$createPlistFromDisk = reinterpret_cast<void *(*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk));
10117 method_setImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$createPlistFromDisk));
10120 $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate");
10121 Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:)));
10122 if (UIWebDocumentView$_setUIKitDelegate$ != NULL) {
10123 _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$));
10124 method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$));
10127 $NSURLConnection = objc_getClass("NSURLConnection");
10128 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10129 if (NSURLConnection$init$ != NULL) {
10130 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10131 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10134 /* Set Locale {{{ */
10135 Locale_ = CFLocaleCopyCurrent();
10136 Languages_ = [NSLocale preferredLanguages];
10138 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10139 //NSLog(@"%@", [Languages_ description]);
10142 if (Locale_ != NULL)
10143 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10144 else if (Languages_ != nil && [Languages_ count] != 0)
10145 lang = [[Languages_ objectAtIndex:0] UTF8String];
10147 // XXX: consider just setting to C and then falling through?
10150 if (lang != NULL) {
10151 Pcre pattern("^([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?$");
10152 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10155 NSLog(@"Setting Language: %s", lang);
10157 if (lang != NULL) {
10158 setenv("LANG", lang, true);
10159 std::setlocale(LC_ALL, lang);
10163 apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL);
10165 /* Parse Arguments {{{ */
10166 bool substrate(false);
10172 for (int argi(1); argi != argc; ++argi)
10173 if (strcmp(argv[argi], "--") == 0) {
10175 argv[argi] = argv[0];
10181 for (int argi(1); argi != arge; ++argi)
10182 if (strcmp(args[argi], "--substrate") == 0)
10185 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10189 App_ = [[NSBundle mainBundle] bundlePath];
10195 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10196 alloc_ = alloc->method_imp;
10197 alloc->method_imp = (IMP) &Alloc_;*/
10199 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10200 dealloc_ = dealloc->method_imp;
10201 dealloc->method_imp = (IMP) &Dealloc_;*/
10203 /* System Information {{{ */
10207 size = sizeof(maxproc);
10208 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10209 perror("sysctlbyname(\"kern.maxproc\", ?)");
10210 else if (maxproc < 64) {
10212 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10213 perror("sysctlbyname(\"kern.maxproc\", #)");
10216 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10217 char *osversion = new char[size];
10218 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10219 perror("sysctlbyname(\"kern.osversion\", ?)");
10221 System_ = [NSString stringWithUTF8String:osversion];
10223 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10224 char *machine = new char[size];
10225 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10226 perror("sysctlbyname(\"hw.machine\", ?)");
10228 Machine_ = machine;
10230 SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber");
10231 ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString];
10232 BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false);
10234 UniqueID_ = [device uniqueIdentifier];
10236 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10237 Product_ = [info objectForKey:@"SafariProductVersion"];
10238 Safari_ = [info objectForKey:@"CFBundleVersion"];
10241 /* Load Database {{{ */
10243 Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease];
10245 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10247 if (Metadata_ == NULL)
10248 Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2];
10250 Settings_ = [Metadata_ objectForKey:@"Settings"];
10252 Packages_ = [Metadata_ objectForKey:@"Packages"];
10254 Values_ = [Metadata_ objectForKey:@"Values"];
10255 Sections_ = [Metadata_ objectForKey:@"Sections"];
10256 Sources_ = [Metadata_ objectForKey:@"Sources"];
10258 Token_ = [Metadata_ objectForKey:@"Token"];
10260 Version_ = [Metadata_ objectForKey:@"Version"];
10262 @synchronized (HostConfig_) {
10263 CydiaSource_ = [Metadata_ objectForKey:@"CydiaSource"];
10267 if (Settings_ != nil)
10268 Role_ = [Settings_ objectForKey:@"Role"];
10270 if (Values_ == nil) {
10271 Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease];
10272 [Metadata_ setObject:Values_ forKey:@"Values"];
10275 if (Sections_ == nil) {
10276 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10277 [Metadata_ setObject:Sections_ forKey:@"Sections"];
10280 if (Sources_ == nil) {
10281 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10282 [Metadata_ setObject:Sources_ forKey:@"Sources"];
10285 if (Version_ == nil) {
10286 Version_ = [NSNumber numberWithUnsignedInt:0];
10287 [Metadata_ setObject:Version_ forKey:@"Version"];
10290 @synchronized (HostConfig_) {
10291 if (CydiaSource_ == nil) {
10292 CydiaSource_ = @"apt.saurik.com";
10293 [Metadata_ setObject:CydiaSource_ forKey:@"CydiaSource"];
10297 if ([Version_ unsignedIntValue] == 0) {
10298 CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10299 CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10300 CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10301 CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
10303 Version_ = [NSNumber numberWithUnsignedInt:1];
10304 [Metadata_ setObject:Version_ forKey:@"Version"];
10306 [Metadata_ removeObjectForKey:@"LastUpdate"];
10312 CydiaWriteSources();
10315 MetaFile_.Open("/var/lib/cydia/metadata.cb0");
10318 if (Packages_ != nil) {
10320 CFDictionaryApplyFunction((CFDictionaryRef) Packages_, &PackageImport, &fail);
10324 [Metadata_ removeObjectForKey:@"Packages"];
10330 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10332 #define MobileSubstrate_(name) \
10333 if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", F_OK) == 0) { \
10334 void *handle(dlopen("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", RTLD_LAZY | RTLD_GLOBAL)); \
10335 if (handle == NULL) \
10336 NSLog(@"%s", dlerror()); \
10339 MobileSubstrate_(Activator)
10340 MobileSubstrate_(libstatusbar)
10341 MobileSubstrate_(SimulatedKeyEvents)
10342 MobileSubstrate_(WinterBoard)
10344 /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0)
10345 dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/
10347 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10349 if (access("/tmp/.cydia.fw", F_OK) == 0) {
10350 unlink("/tmp/.cydia.fw");
10352 } else if (access("/User", F_OK) != 0 || version < 4) {
10355 system("/usr/libexec/cydia/firmware.sh");
10359 _assert([[NSFileManager defaultManager]
10360 createDirectoryAtPath:@"/var/cache/apt/archives/partial"
10361 withIntermediateDirectories:YES
10366 if (access("/tmp/cydia.chk", F_OK) == 0) {
10367 if (unlink("/var/cache/apt/pkgcache.bin") == -1)
10368 _assert(errno == ENOENT);
10369 if (unlink("/var/cache/apt/srcpkgcache.bin") == -1)
10370 _assert(errno == ENOENT);
10373 /* APT Initialization {{{ */
10374 _assert(pkgInitConfig(*_config));
10375 _assert(pkgInitSystem(*_config, _system));
10378 _config->Set("APT::Acquire::Translation", lang);
10380 // XXX: this timeout might be important :(
10381 //_config->Set("Acquire::http::Timeout", 15);
10383 _config->Set("Acquire::http::MaxParallel", 3);
10385 /* Color Choices {{{ */
10386 space_ = CGColorSpaceCreateDeviceRGB();
10388 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10389 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10390 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10391 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10392 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10393 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10394 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10395 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10396 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10398 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10399 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10401 /* UIKit Configuration {{{ */
10402 void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics")));
10403 if ($GSFontSetUseLegacyFontMetrics != NULL)
10404 $GSFontSetUseLegacyFontMetrics(YES);
10406 // XXX: I have a feeling this was important
10407 //UIKeyboardDisableAutomaticAppearance();
10410 Colon_ = UCLocalize("COLON_DELIMITED");
10411 Elision_ = UCLocalize("ELISION");
10412 Error_ = UCLocalize("ERROR");
10413 Warning_ = UCLocalize("WARNING");
10416 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10418 CGColorSpaceRelease(space_);
10419 CFRelease(Locale_);