]> git.saurik.com Git - cydia.git/blob - MobileCydia.mm
796c9d64799437c8ac83e2d9bf41a510182686ae
[cydia.git] / MobileCydia.mm
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 // XXX: wtf/FastMalloc.h... wtf?
23 #define USE_SYSTEM_MALLOC 1
24
25 /* #include Directives {{{ */
26 #include "CyteKit/UCPlatform.h"
27 #include "CyteKit/Localize.h"
28
29 #include <unicode/ustring.h>
30 #include <unicode/utrans.h>
31
32 #include <objc/objc.h>
33 #include <objc/runtime.h>
34
35 #include <CoreGraphics/CoreGraphics.h>
36 #include <Foundation/Foundation.h>
37
38 #if 0
39 #define DEPLOYMENT_TARGET_MACOSX 1
40 #define CF_BUILDING_CF 1
41 #include <CoreFoundation/CFInternal.h>
42 #endif
43
44 #include <CoreFoundation/CFUniChar.h>
45
46 #include <SystemConfiguration/SystemConfiguration.h>
47
48 #include <UIKit/UIKit.h>
49 #include "iPhonePrivate.h"
50
51 #include <IOKit/IOKitLib.h>
52
53 #include <QuartzCore/CALayer.h>
54
55 #include <WebCore/WebCoreThread.h>
56 #include <WebKit/DOMHTMLIFrameElement.h>
57
58 #include <algorithm>
59 #include <iomanip>
60 #include <set>
61 #include <sstream>
62 #include <string>
63
64 #include <ext/stdio_filebuf.h>
65
66 #undef ABS
67
68 #include <apt-pkg/acquire.h>
69 #include <apt-pkg/acquire-item.h>
70 #include <apt-pkg/algorithms.h>
71 #include <apt-pkg/cachefile.h>
72 #include <apt-pkg/clean.h>
73 #include <apt-pkg/configuration.h>
74 #include <apt-pkg/debindexfile.h>
75 #include <apt-pkg/debmetaindex.h>
76 #include <apt-pkg/error.h>
77 #include <apt-pkg/init.h>
78 #include <apt-pkg/mmap.h>
79 #include <apt-pkg/pkgrecords.h>
80 #include <apt-pkg/sha1.h>
81 #include <apt-pkg/sourcelist.h>
82 #include <apt-pkg/sptr.h>
83 #include <apt-pkg/strutl.h>
84 #include <apt-pkg/tagfile.h>
85
86 #include <sys/types.h>
87 #include <sys/stat.h>
88 #include <sys/sysctl.h>
89 #include <sys/param.h>
90 #include <sys/mount.h>
91 #include <sys/reboot.h>
92
93 #include <fcntl.h>
94 #include <notify.h>
95 #include <dlfcn.h>
96
97 extern "C" {
98 #include <mach-o/nlist.h>
99 }
100
101 #include <cstdio>
102 #include <cstdlib>
103 #include <cstring>
104
105 #include <errno.h>
106
107 #include <Cytore.hpp>
108 #include "Sources.h"
109
110 #include "Substrate.hpp"
111 #include "Menes/Menes.h"
112
113 #include "CyteKit/IndirectDelegate.h"
114 #include "CyteKit/RegEx.hpp"
115 #include "CyteKit/TableViewCell.h"
116 #include "CyteKit/TabBarController.h"
117 #include "CyteKit/WebScriptObject-Cyte.h"
118 #include "CyteKit/WebViewController.h"
119 #include "CyteKit/WebViewTableViewCell.h"
120 #include "CyteKit/stringWithUTF8Bytes.h"
121
122 #include "Cydia/MIMEAddress.h"
123 #include "Cydia/LoadingViewController.h"
124 #include "Cydia/ProgressEvent.h"
125
126 #include "SDURLCache/SDURLCache.h"
127 /* }}} */
128
129 /* Profiler {{{ */
130 struct timeval _ltv;
131 bool _itv;
132
133 #define _timestamp ({ \
134 struct timeval tv; \
135 gettimeofday(&tv, NULL); \
136 tv.tv_sec * 1000000 + tv.tv_usec; \
137 })
138
139 typedef std::vector<class ProfileTime *> TimeList;
140 TimeList times_;
141
142 class ProfileTime {
143 private:
144 const char *name_;
145 uint64_t total_;
146 uint64_t count_;
147
148 public:
149 ProfileTime(const char *name) :
150 name_(name),
151 total_(0)
152 {
153 times_.push_back(this);
154 }
155
156 void AddTime(uint64_t time) {
157 total_ += time;
158 ++count_;
159 }
160
161 void Print() {
162 if (total_ != 0)
163 std::cerr << std::setw(7) << count_ << ", " << std::setw(8) << total_ << " : " << name_ << std::endl;
164 total_ = 0;
165 count_ = 0;
166 }
167 };
168
169 class ProfileTimer {
170 private:
171 ProfileTime &time_;
172 uint64_t start_;
173
174 public:
175 ProfileTimer(ProfileTime &time) :
176 time_(time),
177 start_(_timestamp)
178 {
179 }
180
181 ~ProfileTimer() {
182 time_.AddTime(_timestamp - start_);
183 }
184 };
185
186 void PrintTimes() {
187 for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i)
188 (*i)->Print();
189 std::cerr << "========" << std::endl;
190 }
191
192 #define _profile(name) { \
193 static ProfileTime name(#name); \
194 ProfileTimer _ ## name(name);
195
196 #define _end }
197 /* }}} */
198
199 // XXX: I hate clang. Apple: please get over your petty hatred of GPL and fix your gcc fork
200 #define synchronized(lock) \
201 synchronized(static_cast<NSObject *>(lock))
202
203 extern NSString *Cydia_;
204
205 #define lprintf(args...) fprintf(stderr, args)
206
207 #define ForRelease 1
208 #define TraceLogging (1 && !ForRelease)
209 #define HistogramInsertionSort (0 && !ForRelease)
210 #define ProfileTimes (0 && !ForRelease)
211 #define ForSaurik (0 && !ForRelease)
212 #define LogBrowser (0 && !ForRelease)
213 #define TrackResize (0 && !ForRelease)
214 #define ManualRefresh (1 && !ForRelease)
215 #define ShowInternals (0 && !ForRelease)
216 #define AlwaysReload (0 && !ForRelease)
217
218 #if !TraceLogging
219 #undef _trace
220 #define _trace(args...)
221 #endif
222
223 #if !ProfileTimes
224 #undef _profile
225 #define _profile(name) {
226 #undef _end
227 #define _end }
228 #define PrintTimes() do {} while (false)
229 #endif
230
231 // Hash Functions/Structures {{{
232 extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0);
233
234 union SplitHash {
235 uint32_t u32;
236 uint16_t u16[2];
237 };
238 // }}}
239
240 static NSString *Colon_;
241 NSString *Elision_;
242 static NSString *Error_;
243 static NSString *Warning_;
244
245 static NSString *Cache_;
246 #define Cache(file) \
247 [NSString stringWithFormat:@"%@/%s", Cache_, file]
248
249 static void (*$SBSSetInterceptsMenuButtonForever)(bool);
250
251 static CFStringRef (*$MGCopyAnswer)(CFStringRef);
252
253 static NSString *UniqueIdentifier(UIDevice *device = nil) {
254 if (kCFCoreFoundationVersionNumber < 800) // iOS 7.x
255 return [device ?: [UIDevice currentDevice] uniqueIdentifier];
256 else
257 return [(id)$MGCopyAnswer(CFSTR("UniqueDeviceID")) autorelease];
258 }
259
260 static bool IsReachable(const char *name) {
261 SCNetworkReachabilityFlags flags; {
262 SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, name));
263 SCNetworkReachabilityGetFlags(reachability, &flags);
264 CFRelease(reachability);
265 }
266
267 // XXX: this elaborate mess is what Apple is using to determine this? :(
268 // XXX: do we care if the user has to intervene? maybe that's ok?
269 return
270 (flags & kSCNetworkReachabilityFlagsReachable) != 0 && (
271 (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || (
272 (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 ||
273 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0
274 ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 ||
275 (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0
276 )
277 ;
278 }
279
280 static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
281
282 static _finline NSString *CydiaURL(NSString *path) {
283 char page[26];
284 page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's';
285 page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y';
286 page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's';
287 page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k';
288 page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/';
289 page[25] = '\0';
290 return [[NSString stringWithUTF8String:page] stringByAppendingString:path];
291 }
292
293 static void ReapZombie(pid_t pid) {
294 int status;
295 wait:
296 if (waitpid(pid, &status, 0) == -1)
297 if (errno == EINTR)
298 goto wait;
299 else _assert(false);
300 }
301
302 static _finline void UpdateExternalStatus(uint64_t newStatus) {
303 int notify_token;
304 if (notify_register_check("com.saurik.Cydia.status", &notify_token) == NOTIFY_STATUS_OK) {
305 notify_set_state(notify_token, newStatus);
306 notify_cancel(notify_token);
307 }
308 notify_post("com.saurik.Cydia.status");
309 }
310
311 static CGFloat CYStatusBarHeight() {
312 CGSize size([[UIApplication sharedApplication] statusBarFrame].size);
313 return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width;
314 }
315
316 /* NSForcedOrderingSearch doesn't work on the iPhone */
317 static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch;
318 static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch;
319 static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
320
321 /* Insertion Sort {{{ */
322
323 CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
324 const char *ptr = (const char *)list;
325 while (0 < count) {
326 CFIndex half = count / 2;
327 const char *probe = ptr + elementSize * half;
328 CFComparisonResult cr = comparator(element, probe, context);
329 if (0 == cr) return (probe - (const char *)list) / elementSize;
330 ptr = (cr < 0) ? ptr : probe + elementSize;
331 count = (cr < 0) ? half : (half + (count & 1) - 1);
332 }
333 return (ptr - (const char *)list) / elementSize;
334 }
335
336 CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) {
337 const char *ptr = (const char *)list;
338 while (0 < count) {
339 CFIndex half = count / 2;
340 const char *probe = ptr + elementSize * half;
341 CFComparisonResult cr = comparator(element, probe, context);
342 if (0 == cr) return (probe - (const char *)list) / elementSize;
343 ptr = (cr < 0) ? ptr : probe + elementSize;
344 count = (cr < 0) ? half : (half + (count & 1) - 1);
345 }
346 return (ptr - (const char *)list) / elementSize;
347 }
348
349 void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) {
350 if (range.length == 0)
351 return;
352 const void **values(new const void *[range.length]);
353 CFArrayGetValues(array, range, values);
354
355 #if HistogramInsertionSort > 0
356 uint32_t total(0), *offsets(new uint32_t[range.length]);
357 #endif
358
359 for (CFIndex index(1); index != range.length; ++index) {
360 const void *value(values[index]);
361 //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context));
362 CFIndex correct(index);
363 while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) {
364 #if HistogramInsertionSort > 1
365 NSLog(@"%@ < %@", value, values[correct - 1]);
366 #endif
367 if (--correct == 0)
368 break;
369 }
370 if (correct != index) {
371 size_t offset(index - correct);
372 #if HistogramInsertionSort
373 total += offset;
374 ++offsets[offset];
375 if (offset > 10)
376 NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value);
377 #endif
378 memmove(values + correct + 1, values + correct, sizeof(const void *) * offset);
379 values[correct] = value;
380 }
381 }
382
383 CFArrayReplaceValues(array, range, values, range.length);
384 delete [] values;
385
386 #if HistogramInsertionSort > 0
387 for (CFIndex index(0); index != range.length; ++index)
388 if (offsets[index] != 0)
389 NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]);
390 NSLog(@"Average Insertion Displacement: %f", double(total) / range.length);
391 delete [] offsets;
392 #endif
393 }
394
395 /* }}} */
396
397 /* Apple Bug Fixes {{{ */
398 @implementation UIWebDocumentView (Cydia)
399
400 - (void) _setScrollerOffset:(CGPoint)offset {
401 UIScroller *scroller([self _scroller]);
402
403 CGSize size([scroller contentSize]);
404 CGSize bounds([scroller bounds].size);
405
406 CGPoint max;
407 max.x = size.width - bounds.width;
408 max.y = size.height - bounds.height;
409
410 // wtf Apple?!
411 if (max.x < 0)
412 max.x = 0;
413 if (max.y < 0)
414 max.y = 0;
415
416 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
417 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
418
419 [scroller setOffset:offset];
420 }
421
422 @end
423 /* }}} */
424
425 NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) {
426 size_t length([self length] - state->state);
427 if (length <= 0)
428 return 0;
429 else if (length > count)
430 length = count;
431 for (size_t i(0); i != length; ++i)
432 objects[i] = [self item:state->state++];
433 state->itemsPtr = objects;
434 state->mutationsPtr = (unsigned long *) self;
435 return length;
436 }
437
438 /* Cydia NSString Additions {{{ */
439 @interface NSString (Cydia)
440 - (NSComparisonResult) compareByPath:(NSString *)other;
441 - (NSString *) stringByAddingPercentEscapesIncludingReserved;
442 @end
443
444 @implementation NSString (Cydia)
445
446 - (NSComparisonResult) compareByPath:(NSString *)other {
447 NSString *prefix = [self commonPrefixWithString:other options:0];
448 size_t length = [prefix length];
449
450 NSRange lrange = NSMakeRange(length, [self length] - length);
451 NSRange rrange = NSMakeRange(length, [other length] - length);
452
453 lrange = [self rangeOfString:@"/" options:0 range:lrange];
454 rrange = [other rangeOfString:@"/" options:0 range:rrange];
455
456 NSComparisonResult value;
457
458 if (lrange.location == NSNotFound && rrange.location == NSNotFound)
459 value = NSOrderedSame;
460 else if (lrange.location == NSNotFound)
461 value = NSOrderedAscending;
462 else if (rrange.location == NSNotFound)
463 value = NSOrderedDescending;
464 else
465 value = NSOrderedSame;
466
467 NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] :
468 [self substringWithRange:NSMakeRange(length, lrange.location - length)];
469 NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] :
470 [other substringWithRange:NSMakeRange(length, rrange.location - length)];
471
472 NSComparisonResult result = [lpath compare:rpath];
473 return result == NSOrderedSame ? value : result;
474 }
475
476 - (NSString *) stringByAddingPercentEscapesIncludingReserved {
477 return [(id)CFURLCreateStringByAddingPercentEscapes(
478 kCFAllocatorDefault,
479 (CFStringRef) self,
480 NULL,
481 CFSTR(";/?:@&=+$,"),
482 kCFStringEncodingUTF8
483 ) autorelease];
484 }
485
486 @end
487 /* }}} */
488
489 /* C++ NSString Wrapper Cache {{{ */
490 static _finline CFStringRef CYStringCreate(const char *data, size_t size) {
491 return size == 0 ? NULL :
492 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?:
493 CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull);
494 }
495
496 static _finline CFStringRef CYStringCreate(const char *data) {
497 return CYStringCreate(data, strlen(data));
498 }
499
500 class CYString {
501 private:
502 char *data_;
503 size_t size_;
504 CFStringRef cache_;
505
506 _finline void clear_() {
507 if (cache_ != NULL) {
508 CFRelease(cache_);
509 cache_ = NULL;
510 }
511 }
512
513 public:
514 _finline bool empty() const {
515 return size_ == 0;
516 }
517
518 _finline size_t size() const {
519 return size_;
520 }
521
522 _finline char *data() const {
523 return data_;
524 }
525
526 _finline void clear() {
527 size_ = 0;
528 clear_();
529 }
530
531 _finline CYString() :
532 data_(0),
533 size_(0),
534 cache_(NULL)
535 {
536 }
537
538 _finline ~CYString() {
539 clear_();
540 }
541
542 void operator =(const CYString &rhs) {
543 data_ = rhs.data_;
544 size_ = rhs.size_;
545
546 if (rhs.cache_ == nil)
547 cache_ = NULL;
548 else
549 cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_));
550 }
551
552 void copy(CYPool *pool) {
553 char *temp(pool->malloc<char>(size_ + 1));
554 memcpy(temp, data_, size_);
555 temp[size_] = '\0';
556 data_ = temp;
557 }
558
559 void set(CYPool *pool, const char *data, size_t size) {
560 if (size == 0)
561 clear();
562 else {
563 clear_();
564
565 data_ = const_cast<char *>(data);
566 size_ = size;
567
568 if (pool != NULL)
569 copy(pool);
570 }
571 }
572
573 _finline void set(CYPool *pool, const char *data) {
574 set(pool, data, data == NULL ? 0 : strlen(data));
575 }
576
577 _finline void set(CYPool *pool, const std::string &rhs) {
578 set(pool, rhs.data(), rhs.size());
579 }
580
581 bool operator ==(const CYString &rhs) const {
582 return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0;
583 }
584
585 _finline operator CFStringRef() {
586 if (cache_ == NULL)
587 cache_ = CYStringCreate(data_, size_);
588 return cache_;
589 }
590
591 _finline operator id() {
592 return (NSString *) static_cast<CFStringRef>(*this);
593 }
594
595 _finline operator const char *() {
596 return reinterpret_cast<const char *>(data_);
597 }
598 };
599 /* }}} */
600 /* C++ NSString Algorithm Adapters {{{ */
601 extern "C" {
602 CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str);
603 }
604
605 struct NSStringMapHash :
606 std::unary_function<NSString *, size_t>
607 {
608 _finline size_t operator ()(NSString *value) const {
609 return CFStringHashNSString((CFStringRef) value);
610 }
611 };
612
613 struct NSStringMapLess :
614 std::binary_function<NSString *, NSString *, bool>
615 {
616 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
617 return [lhs compare:rhs] == NSOrderedAscending;
618 }
619 };
620
621 struct NSStringMapEqual :
622 std::binary_function<NSString *, NSString *, bool>
623 {
624 _finline bool operator ()(NSString *lhs, NSString *rhs) const {
625 return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo;
626 //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs);
627 //[lhs isEqualToString:rhs];
628 }
629 };
630 /* }}} */
631
632 /* CoreGraphics Primitives {{{ */
633 class CYColor {
634 private:
635 CGColorRef color_;
636
637 static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
638 CGFloat color[] = {red, green, blue, alpha};
639 return CGColorCreate(space, color);
640 }
641
642 public:
643 CYColor() :
644 color_(NULL)
645 {
646 }
647
648 CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) :
649 color_(Create_(space, red, green, blue, alpha))
650 {
651 Set(space, red, green, blue, alpha);
652 }
653
654 void Clear() {
655 if (color_ != NULL)
656 CGColorRelease(color_);
657 }
658
659 ~CYColor() {
660 Clear();
661 }
662
663 void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) {
664 Clear();
665 color_ = Create_(space, red, green, blue, alpha);
666 }
667
668 operator CGColorRef() {
669 return color_;
670 }
671 };
672 /* }}} */
673
674 /* Random Global Variables {{{ */
675 static int PulseInterval_ = 500000;
676
677 static const NSString *UI_;
678
679 static int Finish_;
680 static bool RestartSubstrate_;
681 static bool UpgradeCydia_;
682 static NSArray *Finishes_;
683
684 #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist"
685 #define NotifyConfig_ "/etc/notify.conf"
686
687 static bool Queuing_;
688
689 static CYColor Blue_;
690 static CYColor Blueish_;
691 static CYColor Black_;
692 static CYColor Folder_;
693 static CYColor Off_;
694 static CYColor White_;
695 static CYColor Gray_;
696 static CYColor Green_;
697 static CYColor Purple_;
698 static CYColor Purplish_;
699
700 static UIColor *InstallingColor_;
701 static UIColor *RemovingColor_;
702
703 static NSString *App_;
704
705 static BOOL Advanced_;
706 static BOOL Ignored_;
707
708 static _H<UIFont> Font12_;
709 static _H<UIFont> Font12Bold_;
710 static _H<UIFont> Font14_;
711 static _H<UIFont> Font18_;
712 static _H<UIFont> Font18Bold_;
713 static _H<UIFont> Font22Bold_;
714
715 static const char *Machine_ = NULL;
716 static _H<NSString> System_;
717 static NSString *SerialNumber_ = nil;
718 static NSString *ChipID_ = nil;
719 static NSString *BBSNum_ = nil;
720 static _H<NSString> UniqueID_;
721 static _H<NSString> UserAgent_;
722 static _H<NSString> Product_;
723 static _H<NSString> Safari_;
724
725 static _H<NSLocale> CollationLocale_;
726 static _H<NSArray> CollationThumbs_;
727 static std::vector<NSInteger> CollationOffset_;
728 static _H<NSArray> CollationTitles_;
729 static _H<NSArray> CollationStarts_;
730 static UTransliterator *CollationTransl_;
731 //static Function<NSString *, NSString *> CollationModify_;
732
733 typedef std::basic_string<UChar> ustring;
734 static ustring CollationString_;
735
736 #define CUC const ustring &str(*reinterpret_cast<const ustring *>(rep))
737 #define UC ustring &str(*reinterpret_cast<ustring *>(rep))
738 static struct UReplaceableCallbacks CollationUCalls_ = {
739 .length = [](const UReplaceable *rep) -> int32_t { CUC;
740 return str.size();
741 },
742
743 .charAt = [](const UReplaceable *rep, int32_t offset) -> UChar { CUC;
744 //fprintf(stderr, "charAt(%d) : %d\n", offset, str.size());
745 if (offset >= str.size())
746 return 0xffff;
747 return str[offset];
748 },
749
750 .char32At = [](const UReplaceable *rep, int32_t offset) -> UChar32 { CUC;
751 //fprintf(stderr, "char32At(%d) : %d\n", offset, str.size());
752 if (offset >= str.size())
753 return 0xffff;
754 UChar32 c;
755 U16_GET(str.data(), 0, offset, str.size(), c);
756 return c;
757 },
758
759 .replace = [](UReplaceable *rep, int32_t start, int32_t limit, const UChar *text, int32_t length) -> void { UC;
760 //fprintf(stderr, "replace(%d, %d, %d) : %d\n", start, limit, length, str.size());
761 str.replace(start, limit - start, text, length);
762 },
763
764 .extract = [](UReplaceable *rep, int32_t start, int32_t limit, UChar *dst) -> void { UC;
765 //fprintf(stderr, "extract(%d, %d) : %d\n", start, limit, str.size());
766 str.copy(dst, limit - start, start);
767 },
768
769 .copy = [](UReplaceable *rep, int32_t start, int32_t limit, int32_t dest) -> void { UC;
770 //fprintf(stderr, "copy(%d, %d, %d) : %d\n", start, limit, dest, str.size());
771 str.replace(dest, 0, str, start, limit - start);
772 },
773 };
774
775 static CFLocaleRef Locale_;
776 static NSArray *Languages_;
777 static CGColorSpaceRef space_;
778
779 #define CacheState_ "/var/mobile/Library/Caches/com.saurik.Cydia/CacheState.plist"
780 #define SavedState_ "/var/mobile/Library/Caches/com.saurik.Cydia/SavedState.plist"
781
782 static NSDictionary *SectionMap_;
783 static _H<NSDate> Backgrounded_;
784 static _transient NSMutableDictionary *Values_;
785 static _transient NSMutableDictionary *Sections_;
786 _H<NSMutableDictionary> Sources_;
787 static _transient NSNumber *Version_;
788 static time_t now_;
789
790 bool IsWildcat_;
791 CGFloat ScreenScale_;
792 static NSString *Idiom_;
793 static _H<NSString> Firmware_;
794 static NSString *Major_;
795
796 static _H<NSMutableDictionary> SessionData_;
797 static _H<NSObject> HostConfig_;
798 static _H<NSMutableSet> BridgedHosts_;
799 static _H<NSMutableSet> InsecureHosts_;
800 static _H<NSMutableSet> PipelinedHosts_;
801 static _H<NSMutableSet> CachedURLs_;
802
803 static NSString *kCydiaProgressEventTypeError = @"Error";
804 static NSString *kCydiaProgressEventTypeInformation = @"Information";
805 static NSString *kCydiaProgressEventTypeStatus = @"Status";
806 static NSString *kCydiaProgressEventTypeWarning = @"Warning";
807 /* }}} */
808
809 /* Display Helpers {{{ */
810 inline float Interpolate(float begin, float end, float fraction) {
811 return (end - begin) * fraction + begin;
812 }
813
814 static inline double Retina(double value) {
815 value *= ScreenScale_;
816 value = round(value);
817 value /= ScreenScale_;
818 return value;
819 }
820
821 static inline CGRect Retina(CGRect value) {
822 value.origin.x *= ScreenScale_;
823 value.origin.y *= ScreenScale_;
824 value.size.width *= ScreenScale_;
825 value.size.height *= ScreenScale_;
826 value = CGRectIntegral(value);
827 value.origin.x /= ScreenScale_;
828 value.origin.y /= ScreenScale_;
829 value.size.width /= ScreenScale_;
830 value.size.height /= ScreenScale_;
831 return value;
832 }
833
834 static _finline const char *StripVersion_(const char *version) {
835 const char *colon(strchr(version, ':'));
836 return colon == NULL ? version : colon + 1;
837 }
838
839 NSString *LocalizeSection(NSString *section) {
840 static RegEx title_r("(.*?) \\((.*)\\)");
841 if (title_r(section)) {
842 NSString *parent(title_r[1]);
843 NSString *child(title_r[2]);
844
845 return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"),
846 LocalizeSection(parent),
847 LocalizeSection(child)
848 ];
849 }
850
851 return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
852 }
853
854 NSString *Simplify(NSString *title) {
855 const char *data = [title UTF8String];
856 size_t size = [title lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
857
858 static RegEx square_r("\\[(.*)\\]");
859 if (square_r(data, size))
860 return Simplify(square_r[1]);
861
862 static RegEx paren_r("\\((.*)\\)");
863 if (paren_r(data, size))
864 return Simplify(paren_r[1]);
865
866 static RegEx title_r("(.*?) \\((.*)\\)");
867 if (title_r(data, size))
868 return Simplify(title_r[1]);
869
870 return title;
871 }
872 /* }}} */
873
874 bool isSectionVisible(NSString *section) {
875 NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]);
876 NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]);
877 return hidden == nil || ![hidden boolValue];
878 }
879
880 static NSObject *CYIOGetValue(const char *path, NSString *property) {
881 io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path));
882 if (entry == MACH_PORT_NULL)
883 return nil;
884
885 CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0));
886 IOObjectRelease(entry);
887
888 if (value == NULL)
889 return nil;
890 return [(id) value autorelease];
891 }
892
893 static NSString *CYHex(NSData *data, bool reverse = false) {
894 if (data == nil)
895 return nil;
896
897 size_t length([data length]);
898 uint8_t bytes[length];
899 [data getBytes:bytes];
900
901 char string[length * 2 + 1];
902 for (size_t i(0); i != length; ++i)
903 sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]);
904
905 return [NSString stringWithUTF8String:string];
906 }
907
908 @class Cydia;
909
910 /* Delegate Prototypes {{{ */
911 @class Package;
912 @class Source;
913 @class CydiaProgressEvent;
914
915 @protocol DatabaseDelegate
916 - (void) repairWithSelector:(SEL)selector;
917 - (void) setConfigurationData:(NSString *)data;
918 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task;
919 @end
920
921 @class CYPackageController;
922
923 @protocol SourceDelegate
924 - (void) setFetch:(NSNumber *)fetch;
925 @end
926
927 @protocol FetchDelegate
928 - (bool) isSourceCancelled;
929 - (void) startSourceFetch:(NSString *)uri;
930 - (void) stopSourceFetch:(NSString *)uri;
931 @end
932
933 @protocol CydiaDelegate
934 - (void) returnToCydia;
935 - (void) saveState;
936 - (void) retainNetworkActivityIndicator;
937 - (void) releaseNetworkActivityIndicator;
938 - (void) clearPackage:(Package *)package;
939 - (void) installPackage:(Package *)package;
940 - (void) installPackages:(NSArray *)packages;
941 - (void) removePackage:(Package *)package;
942 - (void) beginUpdate;
943 - (BOOL) updating;
944 - (bool) requestUpdate;
945 - (void) distUpgrade;
946 - (void) loadData;
947 - (void) updateData;
948 - (void) _saveConfig;
949 - (void) syncData;
950 - (void) addSource:(NSDictionary *)source;
951 - (void) addTrivialSource:(NSString *)href;
952 - (UIProgressHUD *) addProgressHUD;
953 - (void) removeProgressHUD:(UIProgressHUD *)hud;
954 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item;
955 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
956 @end
957 /* }}} */
958
959 /* CancelStatus {{{ */
960 class CancelStatus :
961 public pkgAcquireStatus
962 {
963 private:
964 bool cancelled_;
965
966 public:
967 CancelStatus() :
968 cancelled_(false)
969 {
970 }
971
972 virtual bool MediaChange(std::string media, std::string drive) {
973 return false;
974 }
975
976 virtual void IMSHit(pkgAcquire::ItemDesc &desc) {
977 Done(desc);
978 }
979
980 virtual bool Pulse_(pkgAcquire *Owner) = 0;
981
982 virtual bool Pulse(pkgAcquire *Owner) {
983 if (pkgAcquireStatus::Pulse(Owner) && Pulse_(Owner))
984 return true;
985 else {
986 cancelled_ = true;
987 return false;
988 }
989 }
990
991 _finline bool WasCancelled() const {
992 return cancelled_;
993 }
994 };
995 /* }}} */
996 /* DelegateStatus {{{ */
997 class CydiaStatus :
998 public CancelStatus
999 {
1000 private:
1001 _transient NSObject<ProgressDelegate> *delegate_;
1002
1003 public:
1004 CydiaStatus() :
1005 delegate_(nil)
1006 {
1007 }
1008
1009 void setDelegate(NSObject<ProgressDelegate> *delegate) {
1010 delegate_ = delegate;
1011 }
1012
1013 virtual void Fetch(pkgAcquire::ItemDesc &desc) {
1014 NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]);
1015 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]);
1016 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1017 }
1018
1019 virtual void Done(pkgAcquire::ItemDesc &desc) {
1020 NSString *name([NSString stringWithUTF8String:desc.ShortDesc.c_str()]);
1021 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItemDesc:desc]);
1022 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1023 }
1024
1025 virtual void Fail(pkgAcquire::ItemDesc &desc) {
1026 if (
1027 desc.Owner->Status == pkgAcquire::Item::StatIdle ||
1028 desc.Owner->Status == pkgAcquire::Item::StatDone
1029 )
1030 return;
1031
1032 std::string &error(desc.Owner->ErrorText);
1033 if (error.empty())
1034 return;
1035
1036 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItemDesc:desc]);
1037 [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
1038 }
1039
1040 virtual bool Pulse_(pkgAcquire *Owner) {
1041 double percent(
1042 double(CurrentBytes + CurrentItems) /
1043 double(TotalBytes + TotalItems)
1044 );
1045
1046 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:
1047 [NSNumber numberWithDouble:percent], @"Percent",
1048
1049 [NSNumber numberWithDouble:CurrentBytes], @"Current",
1050 [NSNumber numberWithDouble:TotalBytes], @"Total",
1051 [NSNumber numberWithDouble:CurrentCPS], @"Speed",
1052 nil] waitUntilDone:YES];
1053
1054 return ![delegate_ isProgressCancelled];
1055 }
1056
1057 virtual void Start() {
1058 pkgAcquireStatus::Start();
1059 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES];
1060 }
1061
1062 virtual void Stop() {
1063 pkgAcquireStatus::Stop();
1064 [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES];
1065 [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES];
1066 }
1067 };
1068 /* }}} */
1069 /* Database Interface {{{ */
1070 typedef std::map< unsigned long, _H<Source> > SourceMap;
1071
1072 @interface Database : NSObject {
1073 NSZone *zone_;
1074 CYPool pool_;
1075
1076 unsigned era_;
1077 _H<NSDate> delock_;
1078
1079 pkgCacheFile cache_;
1080 pkgDepCache::Policy *policy_;
1081 pkgRecords *records_;
1082 pkgProblemResolver *resolver_;
1083 pkgAcquire *fetcher_;
1084 FileFd *lock_;
1085 SPtr<pkgPackageManager> manager_;
1086 pkgSourceList *list_;
1087
1088 SourceMap sourceMap_;
1089 _H<NSMutableArray> sourceList_;
1090
1091 CFMutableArrayRef packages_;
1092
1093 _transient NSObject<DatabaseDelegate> *delegate_;
1094 _transient NSObject<ProgressDelegate> *progress_;
1095
1096 CydiaStatus status_;
1097
1098 int cydiafd_;
1099 int statusfd_;
1100 FILE *input_;
1101
1102 std::map<const char *, _H<NSString> > sections_;
1103 }
1104
1105 + (Database *) sharedInstance;
1106 - (unsigned) era;
1107
1108 - (void) _readCydia:(NSNumber *)fd;
1109 - (void) _readStatus:(NSNumber *)fd;
1110 - (void) _readOutput:(NSNumber *)fd;
1111
1112 - (FILE *) input;
1113
1114 - (Package *) packageWithName:(NSString *)name;
1115
1116 - (pkgCacheFile &) cache;
1117 - (pkgDepCache::Policy *) policy;
1118 - (pkgRecords *) records;
1119 - (pkgProblemResolver *) resolver;
1120 - (pkgAcquire &) fetcher;
1121 - (pkgSourceList &) list;
1122 - (NSArray *) packages;
1123 - (NSArray *) sources;
1124 - (Source *) sourceWithKey:(NSString *)key;
1125 - (void) reloadDataWithInvocation:(NSInvocation *)invocation;
1126
1127 - (void) configure;
1128 - (bool) prepare;
1129 - (void) perform;
1130 - (bool) upgrade;
1131 - (void) update;
1132
1133 - (void) updateWithStatus:(CancelStatus &)status;
1134
1135 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate;
1136
1137 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate;
1138 - (NSObject<ProgressDelegate> *) progressDelegate;
1139
1140 - (Source *) getSource:(pkgCache::PkgFileIterator)file;
1141 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1142 - (void) resetFetch;
1143
1144 - (NSString *) mappedSectionForPointer:(const char *)pointer;
1145
1146 @end
1147 /* }}} */
1148 /* SourceStatus {{{ */
1149 class SourceStatus :
1150 public CancelStatus
1151 {
1152 private:
1153 _transient NSObject<FetchDelegate> *delegate_;
1154 _transient Database *database_;
1155 std::set<std::string> fetches_;
1156
1157 public:
1158 SourceStatus(NSObject<FetchDelegate> *delegate, Database *database) :
1159 delegate_(delegate),
1160 database_(database)
1161 {
1162 }
1163
1164 void Set(bool fetch, const std::string &uri) {
1165 if (fetch) {
1166 if (!fetches_.insert(uri).second)
1167 return;
1168 } else {
1169 if (fetches_.erase(uri) == 0)
1170 return;
1171 }
1172
1173 //printf("Set(%s, %s)\n", fetch ? "true" : "false", uri.c_str());
1174 [database_ setFetch:fetch forURI:uri.c_str()];
1175 }
1176
1177 _finline void Set(bool fetch, pkgAcquire::Item *item) {
1178 /*unsigned long ID(fetch ? 1 : 0);
1179 if (item->ID == ID)
1180 return;
1181 item->ID = ID;*/
1182 Set(fetch, item->DescURI());
1183 }
1184
1185 void Log(const char *tag, pkgAcquire::Item *item) {
1186 //printf("%s(%s) S:%u Q:%u\n", tag, item->DescURI().c_str(), item->Status, item->QueueCounter);
1187 }
1188
1189 virtual void Fetch(pkgAcquire::ItemDesc &desc) {
1190 Log("Fetch", desc.Owner);
1191 Set(true, desc.Owner);
1192 }
1193
1194 virtual void Done(pkgAcquire::ItemDesc &desc) {
1195 Log("Done", desc.Owner);
1196 Set(false, desc.Owner);
1197 }
1198
1199 virtual void Fail(pkgAcquire::ItemDesc &desc) {
1200 Log("Fail", desc.Owner);
1201 Set(false, desc.Owner);
1202 }
1203
1204 virtual bool Pulse_(pkgAcquire *Owner) {
1205 std::set<std::string> fetches;
1206 for (pkgAcquire::ItemCIterator item(Owner->ItemsBegin()); item != Owner->ItemsEnd(); ++item) {
1207 bool fetch;
1208 if ((*item)->QueueCounter == 0)
1209 fetch = false;
1210 else switch ((*item)->Status) {
1211 case pkgAcquire::Item::StatFetching:
1212 fetches.insert((*item)->DescURI());
1213 fetch = true;
1214 break;
1215
1216 default:
1217 fetch = false;
1218 break;
1219 }
1220
1221 Log(fetch ? "Pulse<true>" : "Pulse<false>", *item);
1222 Set(fetch, *item);
1223 }
1224
1225 std::vector<std::string> stops;
1226 std::set_difference(fetches_.begin(), fetches_.end(), fetches.begin(), fetches.end(), std::back_insert_iterator<std::vector<std::string>>(stops));
1227 for (std::vector<std::string>::const_iterator stop(stops.begin()); stop != stops.end(); ++stop) {
1228 //printf("Stop(%s)\n", stop->c_str());
1229 Set(false, *stop);
1230 }
1231
1232 return ![delegate_ isSourceCancelled];
1233 }
1234
1235 virtual void Stop() {
1236 pkgAcquireStatus::Stop();
1237 [database_ resetFetch];
1238 }
1239 };
1240 /* }}} */
1241 /* ProgressEvent Implementation {{{ */
1242 @implementation CydiaProgressEvent
1243
1244 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type {
1245 return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease];
1246 }
1247
1248 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package {
1249 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1250 [event setPackage:package];
1251 return event;
1252 }
1253
1254 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc {
1255 CydiaProgressEvent *event([self eventWithMessage:message ofType:type]);
1256
1257 NSString *description([NSString stringWithUTF8String:desc.Description.c_str()]);
1258 NSArray *fields([description componentsSeparatedByString:@" "]);
1259 [event setItem:fields];
1260
1261 if ([fields count] > 3) {
1262 [event setPackage:[fields objectAtIndex:2]];
1263 [event setVersion:[fields objectAtIndex:3]];
1264 }
1265
1266 [event setURL:[NSString stringWithUTF8String:desc.URI.c_str()]];
1267
1268 return event;
1269 }
1270
1271 + (NSArray *) _attributeKeys {
1272 return [NSArray arrayWithObjects:
1273 @"item",
1274 @"message",
1275 @"package",
1276 @"type",
1277 @"url",
1278 @"version",
1279 nil];
1280 }
1281
1282 - (NSArray *) attributeKeys {
1283 return [[self class] _attributeKeys];
1284 }
1285
1286 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1287 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1288 }
1289
1290 - (id) initWithMessage:(NSString *)message ofType:(NSString *)type {
1291 if ((self = [super init]) != nil) {
1292 message_ = message;
1293 type_ = type;
1294 } return self;
1295 }
1296
1297 - (NSString *) message {
1298 return message_;
1299 }
1300
1301 - (NSString *) type {
1302 return type_;
1303 }
1304
1305 - (NSArray *) item {
1306 return (id) item_ ?: [NSNull null];
1307 }
1308
1309 - (void) setItem:(NSArray *)item {
1310 item_ = item;
1311 }
1312
1313 - (NSString *) package {
1314 return (id) package_ ?: [NSNull null];
1315 }
1316
1317 - (void) setPackage:(NSString *)package {
1318 package_ = package;
1319 }
1320
1321 - (NSString *) url {
1322 return (id) url_ ?: [NSNull null];
1323 }
1324
1325 - (void) setURL:(NSString *)url {
1326 url_ = url;
1327 }
1328
1329 - (void) setVersion:(NSString *)version {
1330 version_ = version;
1331 }
1332
1333 - (NSString *) version {
1334 return (id) version_ ?: [NSNull null];
1335 }
1336
1337 - (NSString *) compound:(NSString *)value {
1338 if (value != nil) {
1339 NSString *mode(nil); {
1340 NSString *type([self type]);
1341 if ([type isEqualToString:kCydiaProgressEventTypeError])
1342 mode = UCLocalize("ERROR");
1343 else if ([type isEqualToString:kCydiaProgressEventTypeWarning])
1344 mode = UCLocalize("WARNING");
1345 }
1346
1347 if (mode != nil)
1348 value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value];
1349 }
1350
1351 return value;
1352 }
1353
1354 - (NSString *) compoundMessage {
1355 return [self compound:[self message]];
1356 }
1357
1358 - (NSString *) compoundTitle {
1359 NSString *title;
1360
1361 if (package_ == nil)
1362 title = nil;
1363 else if (Package *package = [[Database sharedInstance] packageWithName:package_])
1364 title = [package name];
1365 else
1366 title = package_;
1367
1368 return [self compound:title];
1369 }
1370
1371 @end
1372 /* }}} */
1373
1374 // Cytore Definitions {{{
1375 struct PackageValue :
1376 Cytore::Block
1377 {
1378 Cytore::Offset<PackageValue> next_;
1379
1380 uint32_t index_ : 23;
1381 uint32_t subscribed_ : 1;
1382 uint32_t : 8;
1383
1384 int32_t first_;
1385 int32_t last_;
1386
1387 uint16_t vhash_;
1388 uint16_t nhash_;
1389
1390 char version_[8];
1391 char name_[];
1392 };
1393
1394 struct MetaValue :
1395 Cytore::Block
1396 {
1397 uint32_t active_;
1398 Cytore::Offset<PackageValue> packages_[1 << 16];
1399 };
1400
1401 static Cytore::File<MetaValue> MetaFile_;
1402 // }}}
1403 // Cytore Helper Functions {{{
1404 static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) {
1405 SplitHash nhash = { hashlittle(name, length) };
1406
1407 PackageValue *metadata;
1408
1409 Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]);
1410 for (;; offset = &metadata->next_) { if (offset->IsNull()) {
1411 *offset = MetaFile_.New<PackageValue>(length + 1);
1412 metadata = &MetaFile_.Get(*offset);
1413
1414 if (metadata == NULL) {
1415 if (fail != NULL)
1416 *fail = true;
1417
1418 metadata = new PackageValue();
1419 memset(metadata, 0, sizeof(*metadata));
1420 }
1421
1422 memcpy(metadata->name_, name, length);
1423 metadata->name_[length] = '\0';
1424 metadata->nhash_ = nhash.u16[1];
1425 } else {
1426 metadata = &MetaFile_.Get(*offset);
1427 if (metadata->nhash_ != nhash.u16[1])
1428 continue;
1429 if (strncmp(metadata->name_, name, length) != 0)
1430 continue;
1431 if (metadata->name_[length] != '\0')
1432 continue;
1433 } break; }
1434
1435 return metadata;
1436 }
1437
1438 static void PackageImport(const void *key, const void *value, void *context) {
1439 bool &fail(*reinterpret_cast<bool *>(context));
1440
1441 char buffer[1024];
1442 if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1443 NSLog(@"failed to import package %@", key);
1444 return;
1445 }
1446
1447 PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail));
1448 NSDictionary *package((NSDictionary *) value);
1449
1450 if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"])
1451 if ([subscribed boolValue] && !metadata->subscribed_)
1452 metadata->subscribed_ = true;
1453
1454 if (NSDate *date = [package objectForKey:@"FirstSeen"]) {
1455 time_t time([date timeIntervalSince1970]);
1456 if (metadata->first_ > time || metadata->first_ == 0)
1457 metadata->first_ = time;
1458 }
1459
1460 NSDate *date([package objectForKey:@"LastSeen"]);
1461 NSString *version([package objectForKey:@"LastVersion"]);
1462
1463 if (date != nil && version != nil) {
1464 time_t time([date timeIntervalSince1970]);
1465 if (metadata->last_ < time || metadata->last_ == 0)
1466 if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) {
1467 size_t length(strlen(buffer));
1468 uint16_t vhash(hashlittle(buffer, length));
1469
1470 size_t capped(std::min<size_t>(8, length));
1471 char *latest(buffer + length - capped);
1472
1473 strncpy(metadata->version_, latest, sizeof(metadata->version_));
1474 metadata->vhash_ = vhash;
1475
1476 metadata->last_ = time;
1477 }
1478 }
1479 }
1480 // }}}
1481
1482 static NSDate *GetStatusDate() {
1483 return [[[NSFileManager defaultManager] attributesOfItemAtPath:@"/var/lib/dpkg/status" error:NULL] fileModificationDate];
1484 }
1485
1486 static void SaveConfig(NSObject *lock) {
1487 @synchronized (lock) {
1488 _trace();
1489 MetaFile_.Sync();
1490 _trace();
1491 }
1492
1493 CFPreferencesSetMultiple((CFDictionaryRef) [NSDictionary dictionaryWithObjectsAndKeys:
1494 Values_, @"CydiaValues",
1495 Sections_, @"CydiaSections",
1496 (id) Sources_, @"CydiaSources",
1497 Version_, @"CydiaVersion",
1498 nil], NULL, CFSTR("com.saurik.Cydia"), kCFPreferencesCurrentUser, kCFPreferencesCurrentHost);
1499
1500 if (!CFPreferencesAppSynchronize(CFSTR("com.saurik.Cydia")))
1501 NSLog(@"CFPreferencesAppSynchronize(com.saurik.Cydia) == false");
1502
1503 CydiaWriteSources();
1504 }
1505
1506 /* Source Class {{{ */
1507 @interface Source : NSObject {
1508 unsigned era_;
1509 Database *database_;
1510 metaIndex *index_;
1511
1512 CYString depiction_;
1513 CYString description_;
1514 CYString label_;
1515 CYString origin_;
1516 CYString support_;
1517
1518 CYString uri_;
1519 CYString distribution_;
1520 CYString type_;
1521 CYString base_;
1522 CYString version_;
1523
1524 _H<NSString> host_;
1525 _H<NSString> authority_;
1526
1527 CYString defaultIcon_;
1528
1529 _H<NSMutableDictionary> record_;
1530 BOOL trusted_;
1531
1532 std::set<std::string> fetches_;
1533 std::set<std::string> files_;
1534 _transient NSObject<SourceDelegate> *delegate_;
1535 }
1536
1537 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool;
1538
1539 - (NSComparisonResult) compareByName:(Source *)source;
1540
1541 - (NSString *) depictionForPackage:(NSString *)package;
1542 - (NSString *) supportForPackage:(NSString *)package;
1543
1544 - (metaIndex *) metaIndex;
1545 - (NSDictionary *) record;
1546 - (BOOL) trusted;
1547
1548 - (NSString *) rooturi;
1549 - (NSString *) distribution;
1550 - (NSString *) type;
1551
1552 - (NSString *) key;
1553 - (NSString *) host;
1554
1555 - (NSString *) name;
1556 - (NSString *) shortDescription;
1557 - (NSString *) label;
1558 - (NSString *) origin;
1559 - (NSString *) version;
1560
1561 - (NSString *) defaultIcon;
1562 - (NSURL *) iconURL;
1563
1564 - (void) setFetch:(bool)fetch forURI:(const char *)uri;
1565 - (void) resetFetch;
1566
1567 @end
1568
1569 @implementation Source
1570
1571 + (NSString *) webScriptNameForSelector:(SEL)selector {
1572 if (false);
1573 else if (selector == @selector(addSection:))
1574 return @"addSection";
1575 else if (selector == @selector(getField:))
1576 return @"getField";
1577 else if (selector == @selector(removeSection:))
1578 return @"removeSection";
1579 else if (selector == @selector(remove))
1580 return @"remove";
1581 else
1582 return nil;
1583 }
1584
1585 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
1586 return [self webScriptNameForSelector:selector] == nil;
1587 }
1588
1589 + (NSArray *) _attributeKeys {
1590 return [NSArray arrayWithObjects:
1591 @"baseuri",
1592 @"distribution",
1593 @"host",
1594 @"key",
1595 @"iconuri",
1596 @"label",
1597 @"name",
1598 @"origin",
1599 @"rooturi",
1600 @"sections",
1601 @"shortDescription",
1602 @"trusted",
1603 @"type",
1604 @"version",
1605 nil];
1606 }
1607
1608 - (NSArray *) attributeKeys {
1609 return [[self class] _attributeKeys];
1610 }
1611
1612 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1613 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1614 }
1615
1616 - (metaIndex *) metaIndex {
1617 return index_;
1618 }
1619
1620 - (void) setMetaIndex:(metaIndex *)index inPool:(CYPool *)pool {
1621 trusted_ = index->IsTrusted();
1622
1623 uri_.set(pool, index->GetURI());
1624 distribution_.set(pool, index->GetDist());
1625 type_.set(pool, index->GetType());
1626
1627 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index));
1628 if (dindex != NULL) {
1629 std::string file(dindex->MetaIndexURI(""));
1630 base_.set(pool, file);
1631
1632 pkgAcquire acquire;
1633 _profile(Source$setMetaIndex$GetIndexes)
1634 dindex->GetIndexes(&acquire, true);
1635 _end
1636 _profile(Source$setMetaIndex$DescURI)
1637 for (pkgAcquire::ItemIterator item(acquire.ItemsBegin()); item != acquire.ItemsEnd(); item++) {
1638 std::string file((*item)->DescURI());
1639 files_.insert(file);
1640 if (file.length() < sizeof("Packages.bz2") || file.substr(file.length() - sizeof("Packages.bz2")) != "/Packages.bz2")
1641 continue;
1642 file = file.substr(0, file.length() - 4);
1643 files_.insert(file);
1644 files_.insert(file + ".gz");
1645 files_.insert(file + "Index");
1646 }
1647 _end
1648
1649 FileFd fd;
1650 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly))
1651 _error->Discard();
1652 else {
1653 pkgTagFile tags(&fd);
1654
1655 pkgTagSection section;
1656 tags.Step(section);
1657
1658 struct {
1659 const char *name_;
1660 CYString *value_;
1661 } names[] = {
1662 {"default-icon", &defaultIcon_},
1663 {"depiction", &depiction_},
1664 {"description", &description_},
1665 {"label", &label_},
1666 {"origin", &origin_},
1667 {"support", &support_},
1668 {"version", &version_},
1669 };
1670
1671 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
1672 const char *start, *end;
1673
1674 if (section.Find(names[i].name_, start, end)) {
1675 CYString &value(*names[i].value_);
1676 value.set(pool, start, end - start);
1677 }
1678 }
1679 }
1680 }
1681
1682 record_ = [Sources_ objectForKey:[self key]];
1683
1684 NSURL *url([NSURL URLWithString:uri_]);
1685
1686 host_ = [url host];
1687 if (host_ != nil)
1688 host_ = [host_ lowercaseString];
1689
1690 if (host_ != nil)
1691 authority_ = host_;
1692 else
1693 authority_ = [url path];
1694 }
1695
1696 - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(CYPool *)pool {
1697 if ((self = [super init]) != nil) {
1698 era_ = [database era];
1699 database_ = database;
1700 index_ = index;
1701
1702 _profile(Source$initWithMetaIndex$setMetaIndex)
1703 [self setMetaIndex:index inPool:pool];
1704 _end
1705 } return self;
1706 }
1707
1708 - (NSString *) getField:(NSString *)name {
1709 @synchronized (database_) {
1710 if ([database_ era] != era_ || index_ == NULL)
1711 return nil;
1712
1713 debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_));
1714 if (dindex == NULL)
1715 return nil;
1716
1717 FileFd fd;
1718 if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) {
1719 _error->Discard();
1720 return nil;
1721 }
1722
1723 pkgTagFile tags(&fd);
1724
1725 pkgTagSection section;
1726 tags.Step(section);
1727
1728 const char *start, *end;
1729 if (!section.Find([name UTF8String], start, end))
1730 return (NSString *) [NSNull null];
1731
1732 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
1733 } }
1734
1735 - (NSComparisonResult) compareByName:(Source *)source {
1736 NSString *lhs = [self name];
1737 NSString *rhs = [source name];
1738
1739 if ([lhs length] != 0 && [rhs length] != 0) {
1740 unichar lhc = [lhs characterAtIndex:0];
1741 unichar rhc = [rhs characterAtIndex:0];
1742
1743 if (isalpha(lhc) && !isalpha(rhc))
1744 return NSOrderedAscending;
1745 else if (!isalpha(lhc) && isalpha(rhc))
1746 return NSOrderedDescending;
1747 }
1748
1749 return [lhs compare:rhs options:LaxCompareOptions_];
1750 }
1751
1752 - (NSString *) depictionForPackage:(NSString *)package {
1753 return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1754 }
1755
1756 - (NSString *) supportForPackage:(NSString *)package {
1757 return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package];
1758 }
1759
1760 - (NSArray *) sections {
1761 return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array];
1762 }
1763
1764 - (void) _addSection:(NSString *)section {
1765 if (record_ == nil)
1766 return;
1767 else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) {
1768 if (![sections containsObject:section])
1769 [sections addObject:section];
1770 } else
1771 [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"];
1772 }
1773
1774 - (bool) addSection:(NSString *)section {
1775 if (record_ == nil)
1776 return false;
1777
1778 [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO];
1779 return true;
1780 }
1781
1782 - (void) _removeSection:(NSString *)section {
1783 if (record_ == nil)
1784 return;
1785
1786 if (NSMutableArray *sections = [record_ objectForKey:@"Sections"])
1787 if ([sections containsObject:section])
1788 [sections removeObject:section];
1789 }
1790
1791 - (bool) removeSection:(NSString *)section {
1792 if (record_ == nil)
1793 return false;
1794
1795 [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO];
1796 return true;
1797 }
1798
1799 - (void) _remove {
1800 [Sources_ removeObjectForKey:[self key]];
1801 }
1802
1803 - (bool) remove {
1804 bool value(record_ != nil);
1805 [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO];
1806 return value;
1807 }
1808
1809 - (NSDictionary *) record {
1810 return record_;
1811 }
1812
1813 - (BOOL) trusted {
1814 return trusted_;
1815 }
1816
1817 - (NSString *) rooturi {
1818 return uri_;
1819 }
1820
1821 - (NSString *) distribution {
1822 return distribution_;
1823 }
1824
1825 - (NSString *) type {
1826 return type_;
1827 }
1828
1829 - (NSString *) baseuri {
1830 return base_.empty() ? nil : (id) base_;
1831 }
1832
1833 - (NSString *) iconuri {
1834 if (NSString *base = [self baseuri])
1835 return [base stringByAppendingString:@"CydiaIcon.png"];
1836
1837 return nil;
1838 }
1839
1840 - (NSURL *) iconURL {
1841 if (NSString *uri = [self iconuri])
1842 return [NSURL URLWithString:uri];
1843 return nil;
1844 }
1845
1846 - (NSString *) key {
1847 return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_];
1848 }
1849
1850 - (NSString *) host {
1851 return host_;
1852 }
1853
1854 - (NSString *) name {
1855 return origin_.empty() ? (id) authority_ : origin_;
1856 }
1857
1858 - (NSString *) shortDescription {
1859 return description_;
1860 }
1861
1862 - (NSString *) label {
1863 return label_.empty() ? (id) authority_ : label_;
1864 }
1865
1866 - (NSString *) origin {
1867 return origin_;
1868 }
1869
1870 - (NSString *) version {
1871 return version_;
1872 }
1873
1874 - (NSString *) defaultIcon {
1875 return defaultIcon_;
1876 }
1877
1878 - (void) setDelegate:(NSObject<SourceDelegate> *)delegate {
1879 delegate_ = delegate;
1880 }
1881
1882 - (bool) fetch {
1883 return !fetches_.empty();
1884 }
1885
1886 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
1887 if (!fetch) {
1888 if (fetches_.erase(uri) == 0)
1889 return;
1890 } else if (files_.find(uri) == files_.end())
1891 return;
1892 else if (!fetches_.insert(uri).second)
1893 return;
1894
1895 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:[self fetch]] waitUntilDone:NO];
1896 }
1897
1898 - (void) resetFetch {
1899 fetches_.clear();
1900 [delegate_ performSelectorOnMainThread:@selector(setFetch:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:NO];
1901 }
1902
1903 @end
1904 /* }}} */
1905 /* CydiaOperation Class {{{ */
1906 @interface CydiaOperation : NSObject {
1907 _H<NSString> operator_;
1908 _H<NSString> value_;
1909 }
1910
1911 - (NSString *) operator;
1912 - (NSString *) value;
1913
1914 @end
1915
1916 @implementation CydiaOperation
1917
1918 - (id) initWithOperator:(const char *)_operator value:(const char *)value {
1919 if ((self = [super init]) != nil) {
1920 operator_ = [NSString stringWithUTF8String:_operator];
1921 value_ = [NSString stringWithUTF8String:value];
1922 } return self;
1923 }
1924
1925 + (NSArray *) _attributeKeys {
1926 return [NSArray arrayWithObjects:
1927 @"operator",
1928 @"value",
1929 nil];
1930 }
1931
1932 - (NSArray *) attributeKeys {
1933 return [[self class] _attributeKeys];
1934 }
1935
1936 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1937 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1938 }
1939
1940 - (NSString *) operator {
1941 return operator_;
1942 }
1943
1944 - (NSString *) value {
1945 return value_;
1946 }
1947
1948 @end
1949 /* }}} */
1950 /* CydiaClause Class {{{ */
1951 @interface CydiaClause : NSObject {
1952 _H<NSString> package_;
1953 _H<CydiaOperation> version_;
1954 }
1955
1956 - (NSString *) package;
1957 - (CydiaOperation *) version;
1958
1959 @end
1960
1961 @implementation CydiaClause
1962
1963 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
1964 if ((self = [super init]) != nil) {
1965 package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()];
1966
1967 if (const char *version = dep.TargetVer())
1968 version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease];
1969 else
1970 version_ = (id) [NSNull null];
1971 } return self;
1972 }
1973
1974 + (NSArray *) _attributeKeys {
1975 return [NSArray arrayWithObjects:
1976 @"package",
1977 @"version",
1978 nil];
1979 }
1980
1981 - (NSArray *) attributeKeys {
1982 return [[self class] _attributeKeys];
1983 }
1984
1985 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
1986 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
1987 }
1988
1989 - (NSString *) package {
1990 return package_;
1991 }
1992
1993 - (CydiaOperation *) version {
1994 return version_;
1995 }
1996
1997 @end
1998 /* }}} */
1999 /* CydiaRelation Class {{{ */
2000 @interface CydiaRelation : NSObject {
2001 _H<NSString> relationship_;
2002 _H<NSMutableArray> clauses_;
2003 }
2004
2005 - (NSString *) relationship;
2006 - (NSArray *) clauses;
2007
2008 @end
2009
2010 @implementation CydiaRelation
2011
2012 - (id) initWithIterator:(pkgCache::DepIterator &)dep {
2013 if ((self = [super init]) != nil) {
2014 relationship_ = [NSString stringWithUTF8String:dep.DepType()];
2015 clauses_ = [NSMutableArray arrayWithCapacity:8];
2016
2017 pkgCache::DepIterator start;
2018 pkgCache::DepIterator end;
2019 dep.GlobOr(start, end); // ++dep
2020
2021 _forever {
2022 [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]];
2023
2024 // yes, seriously. (wtf?)
2025 if (start == end)
2026 break;
2027 ++start;
2028 }
2029 } return self;
2030 }
2031
2032 + (NSArray *) _attributeKeys {
2033 return [NSArray arrayWithObjects:
2034 @"clauses",
2035 @"relationship",
2036 nil];
2037 }
2038
2039 - (NSArray *) attributeKeys {
2040 return [[self class] _attributeKeys];
2041 }
2042
2043 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2044 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2045 }
2046
2047 - (NSString *) relationship {
2048 return relationship_;
2049 }
2050
2051 - (NSArray *) clauses {
2052 return clauses_;
2053 }
2054
2055 - (void) addClause:(CydiaClause *)clause {
2056 [clauses_ addObject:clause];
2057 }
2058
2059 @end
2060 /* }}} */
2061 /* Package Class {{{ */
2062 struct ParsedPackage {
2063 CYString md5sum_;
2064 CYString tagline_;
2065
2066 CYString architecture_;
2067 CYString icon_;
2068
2069 CYString depiction_;
2070 CYString homepage_;
2071 CYString author_;
2072
2073 CYString support_;
2074 };
2075
2076 @interface Package : NSObject {
2077 uint32_t era_ : 25;
2078 @public uint32_t role_ : 3;
2079 uint32_t essential_ : 1;
2080 uint32_t obsolete_ : 1;
2081 uint32_t ignored_ : 1;
2082 uint32_t pooled_ : 1;
2083
2084 CYPool *pool_;
2085
2086 uint32_t rank_;
2087
2088 _transient Database *database_;
2089
2090 pkgCache::VerIterator version_;
2091 pkgCache::PkgIterator iterator_;
2092 pkgCache::VerFileIterator file_;
2093
2094 CYString id_;
2095 CYString name_;
2096 CYString transform_;
2097
2098 CYString latest_;
2099 CYString installed_;
2100 time_t upgraded_;
2101
2102 const char *section_;
2103 _transient NSString *section$_;
2104
2105 _H<Source> source_;
2106
2107 PackageValue *metadata_;
2108 ParsedPackage *parsed_;
2109
2110 _H<NSMutableArray> tags_;
2111 }
2112
2113 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database;
2114 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database;
2115
2116 - (pkgCache::PkgIterator) iterator;
2117 - (void) parse;
2118
2119 - (NSString *) section;
2120 - (NSString *) simpleSection;
2121
2122 - (NSString *) longSection;
2123 - (NSString *) shortSection;
2124
2125 - (NSString *) uri;
2126
2127 - (MIMEAddress *) maintainer;
2128 - (size_t) size;
2129 - (NSString *) longDescription;
2130 - (NSString *) shortDescription;
2131 - (unichar) index;
2132
2133 - (PackageValue *) metadata;
2134 - (time_t) seen;
2135
2136 - (bool) subscribed;
2137 - (bool) setSubscribed:(bool)subscribed;
2138
2139 - (BOOL) ignored;
2140
2141 - (NSString *) latest;
2142 - (NSString *) installed;
2143 - (BOOL) uninstalled;
2144
2145 - (BOOL) valid;
2146 - (BOOL) upgradableAndEssential:(BOOL)essential;
2147 - (BOOL) essential;
2148 - (BOOL) broken;
2149 - (BOOL) unfiltered;
2150 - (BOOL) visible;
2151
2152 - (BOOL) half;
2153 - (BOOL) halfConfigured;
2154 - (BOOL) halfInstalled;
2155 - (BOOL) hasMode;
2156 - (NSString *) mode;
2157
2158 - (NSString *) id;
2159 - (NSString *) name;
2160 - (UIImage *) icon;
2161 - (NSString *) homepage;
2162 - (NSString *) depiction;
2163 - (MIMEAddress *) author;
2164
2165 - (NSString *) support;
2166
2167 - (NSArray *) files;
2168 - (NSArray *) warnings;
2169 - (NSArray *) applications;
2170
2171 - (Source *) source;
2172
2173 - (uint32_t) rank;
2174 - (BOOL) matches:(NSArray *)query;
2175
2176 - (BOOL) hasTag:(NSString *)tag;
2177 - (NSString *) primaryPurpose;
2178 - (NSArray *) purposes;
2179 - (bool) isCommercial;
2180
2181 - (void) setIndex:(size_t)index;
2182
2183 - (CYString &) cyname;
2184
2185 - (uint32_t) compareBySection:(NSArray *)sections;
2186
2187 - (void) install;
2188 - (void) remove;
2189
2190 @end
2191
2192 uint32_t PackageChangesRadix(Package *self, void *) {
2193 union {
2194 uint32_t key;
2195
2196 struct {
2197 uint32_t timestamp : 30;
2198 uint32_t ignored : 1;
2199 uint32_t upgradable : 1;
2200 } bits;
2201 } value;
2202
2203 bool upgradable([self upgradableAndEssential:YES]);
2204 value.bits.upgradable = upgradable ? 1 : 0;
2205
2206 if (upgradable) {
2207 value.bits.timestamp = 0;
2208 value.bits.ignored = [self ignored] ? 0 : 1;
2209 value.bits.upgradable = 1;
2210 } else {
2211 value.bits.timestamp = [self seen] >> 2;
2212 value.bits.ignored = 0;
2213 value.bits.upgradable = 0;
2214 }
2215
2216 return _not(uint32_t) - value.key;
2217 }
2218
2219 CYString &(*PackageName)(Package *self, SEL sel);
2220
2221 uint32_t PackagePrefixRadix(Package *self, void *context) {
2222 size_t offset(reinterpret_cast<size_t>(context));
2223 CYString &name(PackageName(self, @selector(cyname)));
2224
2225 size_t size(name.size());
2226 if (size == 0)
2227 return 0;
2228 char *text(name.data());
2229
2230 size_t zeros;
2231 if (!isdigit(text[0]))
2232 zeros = 0;
2233 else {
2234 size_t digits(1);
2235 while (size != digits && isdigit(text[digits]))
2236 if (++digits == 4)
2237 break;
2238 zeros = 4 - digits;
2239 }
2240
2241 uint8_t data[4];
2242
2243 if (offset == 0 && zeros != 0) {
2244 memset(data, '0', zeros);
2245 memcpy(data + zeros, text, 4 - zeros);
2246 } else {
2247 /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */
2248 if (size <= offset - zeros)
2249 return 0;
2250
2251 text += offset - zeros;
2252 size -= offset - zeros;
2253
2254 if (size >= 4)
2255 memcpy(data, text, 4);
2256 else {
2257 memcpy(data, text, size);
2258 memset(data + size, 0, 4 - size);
2259 }
2260
2261 for (size_t i(0); i != 4; ++i)
2262 if (isalpha(data[i]))
2263 data[i] |= 0x20;
2264 }
2265
2266 if (offset == 0)
2267 if (data[0] == '@')
2268 data[0] = 0x7f;
2269 else
2270 data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6];
2271
2272 /* XXX: ntohl may be more honest */
2273 return OSSwapInt32(*reinterpret_cast<uint32_t *>(data));
2274 }
2275
2276 CFComparisonResult StringNameCompare(CFStringRef lhn, CFStringRef rhn, size_t length) {
2277 _profile(PackageNameCompare)
2278 if (lhn == NULL)
2279 return rhn == NULL ? kCFCompareEqualTo : kCFCompareLessThan;
2280 else if (rhn == NULL)
2281 return kCFCompareGreaterThan;
2282
2283 CFIndex length(CFStringGetLength(lhn));
2284
2285 _profile(PackageNameCompare$NumbersLast)
2286 if (length != 0 && CFStringGetLength(rhn) != 0) {
2287 UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0));
2288 UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0));
2289 bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet));
2290 if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet))
2291 return lha ? kCFCompareLessThan : kCFCompareGreaterThan;
2292 }
2293 _end
2294
2295 _profile(PackageNameCompare$Compare)
2296 return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, (CFLocaleRef) (id) CollationLocale_);
2297 _end
2298 _end
2299 }
2300
2301 _finline CFComparisonResult StringNameCompare(NSString *lhn, NSString*rhn, size_t length) {
2302 return StringNameCompare((CFStringRef) lhn, (CFStringRef) rhn, length);
2303 }
2304
2305 CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) {
2306 CYString &lhn(PackageName(lhs, @selector(cyname)));
2307 NSString *rhn(PackageName(rhs, @selector(cyname)));
2308 return StringNameCompare(lhn, rhn, lhn.size());
2309 }
2310
2311 CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *arg) {
2312 return PackageNameCompare(*lhs, *rhs, arg);
2313 }
2314
2315 struct PackageNameOrdering :
2316 std::binary_function<Package *, Package *, bool>
2317 {
2318 _finline bool operator ()(Package *lhs, Package *rhs) const {
2319 return PackageNameCompare(lhs, rhs, NULL) == kCFCompareLessThan;
2320 }
2321 };
2322
2323 @implementation Package
2324
2325 - (NSString *) description {
2326 return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)];
2327 }
2328
2329 - (void) dealloc {
2330 if (!pooled_)
2331 delete pool_;
2332 if (parsed_ != NULL)
2333 delete parsed_;
2334 [super dealloc];
2335 }
2336
2337 + (NSString *) webScriptNameForSelector:(SEL)selector {
2338 if (false);
2339 else if (selector == @selector(clear))
2340 return @"clear";
2341 else if (selector == @selector(getField:))
2342 return @"getField";
2343 else if (selector == @selector(getRecord))
2344 return @"getRecord";
2345 else if (selector == @selector(hasTag:))
2346 return @"hasTag";
2347 else if (selector == @selector(install))
2348 return @"install";
2349 else if (selector == @selector(remove))
2350 return @"remove";
2351 else
2352 return nil;
2353 }
2354
2355 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
2356 return [self webScriptNameForSelector:selector] == nil;
2357 }
2358
2359 + (NSArray *) _attributeKeys {
2360 return [NSArray arrayWithObjects:
2361 @"applications",
2362 @"architecture",
2363 @"author",
2364 @"depiction",
2365 @"essential",
2366 @"homepage",
2367 @"icon",
2368 @"id",
2369 @"installed",
2370 @"latest",
2371 @"longDescription",
2372 @"longSection",
2373 @"maintainer",
2374 @"md5sum",
2375 @"mode",
2376 @"name",
2377 @"purposes",
2378 @"relations",
2379 @"section",
2380 @"selection",
2381 @"shortDescription",
2382 @"shortSection",
2383 @"simpleSection",
2384 @"size",
2385 @"source",
2386 @"state",
2387 @"support",
2388 @"tags",
2389 @"upgraded",
2390 @"warnings",
2391 nil];
2392 }
2393
2394 - (NSArray *) attributeKeys {
2395 return [[self class] _attributeKeys];
2396 }
2397
2398 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
2399 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
2400 }
2401
2402 - (NSArray *) relations {
2403 @synchronized (database_) {
2404 NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]);
2405 for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep)
2406 [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]];
2407 return relations;
2408 } }
2409
2410 - (NSString *) architecture {
2411 [self parse];
2412 @synchronized (database_) {
2413 return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_;
2414 } }
2415
2416 - (NSString *) getField:(NSString *)name {
2417 @synchronized (database_) {
2418 if ([database_ era] != era_ || file_.end())
2419 return nil;
2420
2421 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2422
2423 const char *start, *end;
2424 if (!parser.Find([name UTF8String], start, end))
2425 return (NSString *) [NSNull null];
2426
2427 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2428 } }
2429
2430 - (NSString *) getRecord {
2431 @synchronized (database_) {
2432 if ([database_ era] != era_ || file_.end())
2433 return nil;
2434
2435 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2436
2437 const char *start, *end;
2438 parser.GetRec(start, end);
2439
2440 return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]];
2441 } }
2442
2443 - (void) parse {
2444 if (parsed_ != NULL)
2445 return;
2446 @synchronized (database_) {
2447 if ([database_ era] != era_ || file_.end())
2448 return;
2449
2450 ParsedPackage *parsed(new ParsedPackage);
2451 parsed_ = parsed;
2452
2453 _profile(Package$parse)
2454 pkgRecords::Parser *parser;
2455
2456 _profile(Package$parse$Lookup)
2457 parser = &[database_ records]->Lookup(file_);
2458 _end
2459
2460 CYString bugs;
2461 CYString website;
2462
2463 _profile(Package$parse$Find)
2464 struct {
2465 const char *name_;
2466 CYString *value_;
2467 } names[] = {
2468 {"architecture", &parsed->architecture_},
2469 {"icon", &parsed->icon_},
2470 {"depiction", &parsed->depiction_},
2471 {"homepage", &parsed->homepage_},
2472 {"website", &website},
2473 {"bugs", &bugs},
2474 {"support", &parsed->support_},
2475 {"author", &parsed->author_},
2476 {"md5sum", &parsed->md5sum_},
2477 };
2478
2479 for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) {
2480 const char *start, *end;
2481
2482 if (parser->Find(names[i].name_, start, end)) {
2483 CYString &value(*names[i].value_);
2484 _profile(Package$parse$Value)
2485 value.set(pool_, start, end - start);
2486 _end
2487 }
2488 }
2489 _end
2490
2491 _profile(Package$parse$Tagline)
2492 const char *start, *end;
2493 if (parser->ShortDesc(start, end)) {
2494 const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start)));
2495 if (stop == NULL)
2496 stop = end;
2497 while (stop != start && stop[-1] == '\r')
2498 --stop;
2499 parsed->tagline_.set(pool_, start, stop - start);
2500 }
2501 _end
2502
2503 _profile(Package$parse$Retain)
2504 if (parsed->homepage_.empty())
2505 parsed->homepage_ = website;
2506 if (parsed->homepage_ == parsed->depiction_)
2507 parsed->homepage_.clear();
2508 if (parsed->support_.empty())
2509 parsed->support_ = bugs;
2510 _end
2511 _end
2512 } }
2513
2514 - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database {
2515 if ((self = [super init]) != nil) {
2516 _profile(Package$initWithVersion)
2517 if (pool == NULL)
2518 pool_ = new CYPool();
2519 else {
2520 pool_ = pool;
2521 pooled_ = true;
2522 }
2523
2524 database_ = database;
2525 era_ = [database era];
2526
2527 version_ = version;
2528
2529 pkgCache::PkgIterator iterator(version.ParentPkg());
2530 iterator_ = iterator;
2531
2532 _profile(Package$initWithVersion$Version)
2533 if (!version_.end())
2534 file_ = version_.FileList();
2535 else {
2536 pkgCache &cache([database_ cache]);
2537 file_ = pkgCache::VerFileIterator(cache, cache.VerFileP);
2538 }
2539 _end
2540
2541 _profile(Package$initWithVersion$Cache)
2542 name_.set(NULL, iterator.Display());
2543
2544 latest_.set(NULL, StripVersion_(version_.VerStr()));
2545
2546 pkgCache::VerIterator current(iterator.CurrentVer());
2547 if (!current.end())
2548 installed_.set(NULL, StripVersion_(current.VerStr()));
2549 _end
2550
2551 _profile(Package$initWithVersion$Transliterate) do {
2552 if (CollationTransl_ == NULL)
2553 break;
2554 if (name_.empty())
2555 break;
2556
2557 _profile(Package$initWithVersion$Transliterate$utf8)
2558 const uint8_t *data(reinterpret_cast<const uint8_t *>(name_.data()));
2559 for (size_t i(0), e(name_.size()); i != e; ++i)
2560 if (data[i] >= 0x80)
2561 goto extended;
2562 break; extended:;
2563 _end
2564
2565 UErrorCode code(U_ZERO_ERROR);
2566 int32_t length;
2567
2568 _profile(Package$initWithVersion$Transliterate$u_strFromUTF8WithSub)
2569 CollationString_.resize(name_.size());
2570 u_strFromUTF8WithSub(&CollationString_[0], CollationString_.size(), &length, name_.data(), name_.size(), 0xfffd, NULL, &code);
2571 if (!U_SUCCESS(code))
2572 break;
2573 CollationString_.resize(length);
2574 _end
2575
2576 _profile(Package$initWithVersion$Transliterate$utrans_trans)
2577 length = CollationString_.size();
2578 utrans_trans(CollationTransl_, reinterpret_cast<UReplaceable *>(&CollationString_), &CollationUCalls_, 0, &length, &code);
2579 if (!U_SUCCESS(code))
2580 break;
2581 _assert(CollationString_.size() == length);
2582 _end
2583
2584 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$preflight)
2585 u_strToUTF8WithSub(NULL, 0, &length, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2586 if (code == U_BUFFER_OVERFLOW_ERROR)
2587 code = U_ZERO_ERROR;
2588 else if (!U_SUCCESS(code))
2589 break;
2590 _end
2591
2592 char *transform;
2593 _profile(Package$initWithVersion$Transliterate$apr_palloc)
2594 transform = pool_->malloc<char>(length);
2595 _end
2596 _profile(Package$initWithVersion$Transliterate$u_strToUTF8WithSub$transform)
2597 u_strToUTF8WithSub(transform, length, NULL, CollationString_.data(), CollationString_.size(), 0xfffd, NULL, &code);
2598 if (!U_SUCCESS(code))
2599 break;
2600 _end
2601
2602 transform_.set(NULL, transform, length);
2603 } while (false); _end
2604
2605 _profile(Package$initWithVersion$Tags)
2606 pkgCache::TagIterator tag(iterator.TagList());
2607 if (!tag.end()) {
2608 tags_ = [NSMutableArray arrayWithCapacity:8];
2609
2610 goto tag; for (; !tag.end(); ++tag) tag: {
2611 const char *name(tag.Name());
2612 NSString *string((NSString *) CYStringCreate(name));
2613 if (string == nil)
2614 continue;
2615
2616 [tags_ addObject:[string autorelease]];
2617
2618 if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) {
2619 if (strcmp(name + 6, "enduser") == 0)
2620 role_ = 1;
2621 else if (strcmp(name + 6, "hacker") == 0)
2622 role_ = 2;
2623 else if (strcmp(name + 6, "developer") == 0)
2624 role_ = 3;
2625 else if (strcmp(name + 6, "cydia") == 0)
2626 role_ = 7;
2627 else
2628 role_ = 4;
2629 }
2630
2631 if (strncmp(name, "cydia::", 7) == 0) {
2632 if (strcmp(name + 7, "essential") == 0)
2633 essential_ = true;
2634 else if (strcmp(name + 7, "obsolete") == 0)
2635 obsolete_ = true;
2636 }
2637 }
2638 }
2639 _end
2640
2641 _profile(Package$initWithVersion$Metadata)
2642 const char *mixed(iterator.Name());
2643 size_t size(strlen(mixed));
2644 static const size_t prefix(sizeof("/var/lib/dpkg/info/") - 1);
2645 char lower[prefix + size + 5 + 1];
2646
2647 for (size_t i(0); i != size; ++i)
2648 lower[prefix + i] = mixed[i] | 0x20;
2649
2650 if (!installed_.empty()) {
2651 memcpy(lower, "/var/lib/dpkg/info/", prefix);
2652 memcpy(lower + prefix + size, ".list", 6);
2653 struct stat info;
2654 if (stat(lower, &info) != -1)
2655 upgraded_ = info.st_birthtime;
2656 }
2657
2658 PackageValue *metadata(PackageFind(lower + prefix, size));
2659 metadata_ = metadata;
2660
2661 id_.set(NULL, metadata->name_, size);
2662
2663 const char *latest(version_.VerStr());
2664 size_t length(strlen(latest));
2665
2666 uint16_t vhash(hashlittle(latest, length));
2667
2668 size_t capped(std::min<size_t>(8, length));
2669 latest = latest + length - capped;
2670
2671 if (metadata->first_ == 0)
2672 metadata->first_ = now_;
2673
2674 if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) {
2675 strncpy(metadata->version_, latest, sizeof(metadata->version_));
2676 metadata->vhash_ = vhash;
2677 metadata->last_ = now_;
2678 } else if (metadata->last_ == 0)
2679 metadata->last_ = metadata->first_;
2680 _end
2681
2682 _profile(Package$initWithVersion$Section)
2683 section_ = version_.Section();
2684 _end
2685
2686 _profile(Package$initWithVersion$Flags)
2687 essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES);
2688 ignored_ = iterator->SelectedState == pkgCache::State::Hold;
2689 _end
2690 _end } return self;
2691 }
2692
2693 + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(CYPool *)pool database:(Database *)database {
2694 pkgCache::VerIterator version;
2695
2696 _profile(Package$packageWithIterator$GetCandidateVer)
2697 version = [database policy]->GetCandidateVer(iterator);
2698 _end
2699
2700 if (version.end())
2701 return nil;
2702
2703 Package *package;
2704
2705 _profile(Package$packageWithIterator$Allocate)
2706 package = [Package allocWithZone:zone];
2707 _end
2708
2709 _profile(Package$packageWithIterator$Initialize)
2710 package = [package
2711 initWithVersion:version
2712 withZone:zone
2713 inPool:pool
2714 database:database
2715 ];
2716 _end
2717
2718 _profile(Package$packageWithIterator$Autorelease)
2719 package = [package autorelease];
2720 _end
2721
2722 return package;
2723 }
2724
2725 - (pkgCache::PkgIterator) iterator {
2726 return iterator_;
2727 }
2728
2729 - (NSString *) section {
2730 if (section$_ == nil) {
2731 if (section_ == NULL)
2732 return nil;
2733
2734 _profile(Package$section$mappedSectionForPointer)
2735 section$_ = [database_ mappedSectionForPointer:section_];
2736 _end
2737 } return section$_;
2738 }
2739
2740 - (NSString *) simpleSection {
2741 if (NSString *section = [self section])
2742 return Simplify(section);
2743 else
2744 return nil;
2745 }
2746
2747 - (NSString *) longSection {
2748 return LocalizeSection([self section]);
2749 }
2750
2751 - (NSString *) shortSection {
2752 return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"];
2753 }
2754
2755 - (NSString *) uri {
2756 return nil;
2757 #if 0
2758 pkgIndexFile *index;
2759 pkgCache::PkgFileIterator file(file_.File());
2760 if (![database_ list].FindIndex(file, index))
2761 return nil;
2762 return [NSString stringWithUTF8String:iterator_->Path];
2763 //return [NSString stringWithUTF8String:file.Site()];
2764 //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()];
2765 #endif
2766 }
2767
2768 - (MIMEAddress *) maintainer {
2769 @synchronized (database_) {
2770 if ([database_ era] != era_ || file_.end())
2771 return nil;
2772
2773 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2774 const std::string &maintainer(parser->Maintainer());
2775 return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]];
2776 } }
2777
2778 - (NSString *) md5sum {
2779 return parsed_ == NULL ? nil : (id) parsed_->md5sum_;
2780 }
2781
2782 - (size_t) size {
2783 @synchronized (database_) {
2784 if ([database_ era] != era_ || version_.end())
2785 return 0;
2786
2787 return version_->InstalledSize;
2788 } }
2789
2790 - (NSString *) longDescription {
2791 @synchronized (database_) {
2792 if ([database_ era] != era_ || file_.end())
2793 return nil;
2794
2795 pkgRecords::Parser *parser = &[database_ records]->Lookup(file_);
2796 NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]);
2797
2798 NSArray *lines = [description componentsSeparatedByString:@"\n"];
2799 NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)];
2800 if ([lines count] < 2)
2801 return nil;
2802
2803 NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet];
2804 for (size_t i(1), e([lines count]); i != e; ++i) {
2805 NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace];
2806 [trimmed addObject:trim];
2807 }
2808
2809 return [trimmed componentsJoinedByString:@"\n"];
2810 } }
2811
2812 - (NSString *) shortDescription {
2813 if (parsed_ != NULL)
2814 return static_cast<NSString *>(parsed_->tagline_);
2815
2816 @synchronized (database_) {
2817 pkgRecords::Parser &parser([database_ records]->Lookup(file_));
2818
2819 const char *start, *end;
2820 if (!parser.ShortDesc(start, end))
2821 return nil;
2822
2823 if (end - start > 200)
2824 end = start + 200;
2825
2826 /*
2827 if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start)))
2828 end = stop;
2829
2830 while (end != start && end[-1] == '\r')
2831 --end;
2832 */
2833
2834 return [(id) CYStringCreate(start, end - start) autorelease];
2835 } }
2836
2837 - (unichar) index {
2838 _profile(Package$index)
2839 CFStringRef name((CFStringRef) [self name]);
2840 if (CFStringGetLength(name) == 0)
2841 return '#';
2842 UniChar character(CFStringGetCharacterAtIndex(name, 0));
2843 if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet))
2844 return '#';
2845 return toupper(character);
2846 _end
2847 }
2848
2849 - (PackageValue *) metadata {
2850 return metadata_;
2851 }
2852
2853 - (time_t) seen {
2854 PackageValue *metadata([self metadata]);
2855 return metadata->subscribed_ ? metadata->last_ : metadata->first_;
2856 }
2857
2858 - (bool) subscribed {
2859 return [self metadata]->subscribed_;
2860 }
2861
2862 - (bool) setSubscribed:(bool)subscribed {
2863 PackageValue *metadata([self metadata]);
2864 if (metadata->subscribed_ == subscribed)
2865 return false;
2866 metadata->subscribed_ = subscribed;
2867 return true;
2868 }
2869
2870 - (BOOL) ignored {
2871 return ignored_;
2872 }
2873
2874 - (NSString *) latest {
2875 return latest_;
2876 }
2877
2878 - (NSString *) installed {
2879 return installed_;
2880 }
2881
2882 - (BOOL) uninstalled {
2883 return installed_.empty();
2884 }
2885
2886 - (BOOL) valid {
2887 return !version_.end();
2888 }
2889
2890 - (BOOL) upgradableAndEssential:(BOOL)essential {
2891 _profile(Package$upgradableAndEssential)
2892 pkgCache::VerIterator current(iterator_.CurrentVer());
2893 if (current.end())
2894 return essential && essential_;
2895 else
2896 return !version_.end() && version_ != current;
2897 _end
2898 }
2899
2900 - (BOOL) essential {
2901 return essential_;
2902 }
2903
2904 - (BOOL) broken {
2905 return [database_ cache][iterator_].InstBroken();
2906 }
2907
2908 - (BOOL) unfiltered {
2909 _profile(Package$unfiltered$obsolete)
2910 if (_unlikely(obsolete_))
2911 return false;
2912 _end
2913
2914 _profile(Package$unfiltered$role)
2915 if (_unlikely(role_ > 3))
2916 return false;
2917 _end
2918
2919 return true;
2920 }
2921
2922 - (BOOL) visible {
2923 if (![self unfiltered])
2924 return false;
2925
2926 NSString *section;
2927
2928 _profile(Package$visible$section)
2929 section = [self section];
2930 _end
2931
2932 _profile(Package$visible$isSectionVisible)
2933 if (!isSectionVisible(section))
2934 return false;
2935 _end
2936
2937 return true;
2938 }
2939
2940 - (BOOL) half {
2941 unsigned char current(iterator_->CurrentState);
2942 return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
2943 }
2944
2945 - (BOOL) halfConfigured {
2946 return iterator_->CurrentState == pkgCache::State::HalfConfigured;
2947 }
2948
2949 - (BOOL) halfInstalled {
2950 return iterator_->CurrentState == pkgCache::State::HalfInstalled;
2951 }
2952
2953 - (BOOL) hasMode {
2954 @synchronized (database_) {
2955 if ([database_ era] != era_ || iterator_.end())
2956 return NO;
2957
2958 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2959 return state.Mode != pkgDepCache::ModeKeep;
2960 } }
2961
2962 - (NSString *) mode {
2963 @synchronized (database_) {
2964 if ([database_ era] != era_ || iterator_.end())
2965 return nil;
2966
2967 pkgDepCache::StateCache &state([database_ cache][iterator_]);
2968
2969 switch (state.Mode) {
2970 case pkgDepCache::ModeDelete:
2971 if ((state.iFlags & pkgDepCache::Purge) != 0)
2972 return @"PURGE";
2973 else
2974 return @"REMOVE";
2975 case pkgDepCache::ModeKeep:
2976 if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2977 return @"REINSTALL";
2978 /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0)
2979 return nil;*/
2980 else
2981 return nil;
2982 case pkgDepCache::ModeInstall:
2983 /*if ((state.iFlags & pkgDepCache::ReInstall) != 0)
2984 return @"REINSTALL";
2985 else*/ switch (state.Status) {
2986 case -1:
2987 return @"DOWNGRADE";
2988 case 0:
2989 return @"INSTALL";
2990 case 1:
2991 return @"UPGRADE";
2992 case 2:
2993 return @"NEW_INSTALL";
2994 _nodefault
2995 }
2996 _nodefault
2997 }
2998 } }
2999
3000 - (NSString *) id {
3001 return id_;
3002 }
3003
3004 - (NSString *) name {
3005 return name_.empty() ? id_ : name_;
3006 }
3007
3008 - (UIImage *) icon {
3009 NSString *section = [self simpleSection];
3010
3011 UIImage *icon(nil);
3012 if (parsed_ != NULL)
3013 if (NSString *href = parsed_->icon_)
3014 if ([href hasPrefix:@"file:///"])
3015 icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
3016 if (icon == nil) if (section != nil)
3017 icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
3018 if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon])
3019 if ([dicon hasPrefix:@"file:///"])
3020 icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
3021 if (icon == nil)
3022 icon = [UIImage imageNamed:@"unknown.png"];
3023 return icon;
3024 }
3025
3026 - (NSString *) homepage {
3027 return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_);
3028 }
3029
3030 - (NSString *) depiction {
3031 return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_];
3032 }
3033
3034 - (MIMEAddress *) author {
3035 return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_];
3036 }
3037
3038 - (NSString *) support {
3039 return parsed_ != NULL && !parsed_->support_.empty() ? parsed_->support_ : [[self source] supportForPackage:id_];
3040 }
3041
3042 - (NSArray *) files {
3043 NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)];
3044 NSMutableArray *files = [NSMutableArray arrayWithCapacity:128];
3045
3046 std::ifstream fin;
3047 fin.open([path UTF8String]);
3048 if (!fin.is_open())
3049 return nil;
3050
3051 std::string line;
3052 while (std::getline(fin, line))
3053 [files addObject:[NSString stringWithUTF8String:line.c_str()]];
3054
3055 return files;
3056 }
3057
3058 - (NSString *) state {
3059 @synchronized (database_) {
3060 if ([database_ era] != era_ || file_.end())
3061 return nil;
3062
3063 switch (iterator_->CurrentState) {
3064 case pkgCache::State::NotInstalled:
3065 return @"NotInstalled";
3066 case pkgCache::State::UnPacked:
3067 return @"UnPacked";
3068 case pkgCache::State::HalfConfigured:
3069 return @"HalfConfigured";
3070 case pkgCache::State::HalfInstalled:
3071 return @"HalfInstalled";
3072 case pkgCache::State::ConfigFiles:
3073 return @"ConfigFiles";
3074 case pkgCache::State::Installed:
3075 return @"Installed";
3076 case pkgCache::State::TriggersAwaited:
3077 return @"TriggersAwaited";
3078 case pkgCache::State::TriggersPending:
3079 return @"TriggersPending";
3080 }
3081
3082 return (NSString *) [NSNull null];
3083 } }
3084
3085 - (NSString *) selection {
3086 @synchronized (database_) {
3087 if ([database_ era] != era_ || file_.end())
3088 return nil;
3089
3090 switch (iterator_->SelectedState) {
3091 case pkgCache::State::Unknown:
3092 return @"Unknown";
3093 case pkgCache::State::Install:
3094 return @"Install";
3095 case pkgCache::State::Hold:
3096 return @"Hold";
3097 case pkgCache::State::DeInstall:
3098 return @"DeInstall";
3099 case pkgCache::State::Purge:
3100 return @"Purge";
3101 }
3102
3103 return (NSString *) [NSNull null];
3104 } }
3105
3106 - (NSArray *) warnings {
3107 @synchronized (database_) {
3108 if ([database_ era] != era_ || file_.end())
3109 return nil;
3110
3111 NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]);
3112 const char *name(iterator_.Name());
3113
3114 size_t length(strlen(name));
3115 if (length < 2) invalid:
3116 [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")];
3117 else for (size_t i(0); i != length; ++i)
3118 if (
3119 /* XXX: technically this is not allowed */
3120 (name[i] < 'A' || name[i] > 'Z') &&
3121 (name[i] < 'a' || name[i] > 'z') &&
3122 (name[i] < '0' || name[i] > '9') &&
3123 (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.')
3124 ) goto invalid;
3125
3126 if (strcmp(name, "cydia") != 0) {
3127 bool cydia = false;
3128 bool user = false;
3129 bool _private = false;
3130 bool stash = false;
3131 bool dbstash = false;
3132 bool dsstore = false;
3133
3134 bool repository = [[self section] isEqualToString:@"Repositories"];
3135
3136 if (NSArray *files = [self files])
3137 for (NSString *file in files)
3138 if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"])
3139 cydia = true;
3140 else if (!user && [file isEqualToString:@"/User"])
3141 user = true;
3142 else if (!_private && [file isEqualToString:@"/private"])
3143 _private = true;
3144 else if (!stash && [file isEqualToString:@"/var/stash"])
3145 stash = true;
3146 else if (!dbstash && [file isEqualToString:@"/var/db/stash"])
3147 dbstash = true;
3148 else if (!dsstore && [file hasSuffix:@"/.DS_Store"])
3149 dsstore = true;
3150
3151 /* XXX: this is not sensitive enough. only some folders are valid. */
3152 if (cydia && !repository)
3153 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]];
3154 if (user)
3155 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]];
3156 if (_private)
3157 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]];
3158 if (stash)
3159 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]];
3160 if (dbstash)
3161 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/db/stash"]];
3162 if (dsstore)
3163 [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @".DS_Store"]];
3164 }
3165
3166 return [warnings count] == 0 ? nil : warnings;
3167 } }
3168
3169 - (NSArray *) applications {
3170 NSString *me([[NSBundle mainBundle] bundleIdentifier]);
3171
3172 NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]);
3173
3174 static RegEx application_r("/Applications/(.*)\\.app/Info.plist");
3175 if (NSArray *files = [self files])
3176 for (NSString *file in files)
3177 if (application_r(file)) {
3178 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]);
3179 NSString *id([info objectForKey:@"CFBundleIdentifier"]);
3180 if ([id isEqualToString:me])
3181 continue;
3182
3183 NSString *display([info objectForKey:@"CFBundleDisplayName"]);
3184 if (display == nil)
3185 display = application_r[1];
3186
3187 NSString *bundle([file stringByDeletingLastPathComponent]);
3188 NSString *icon([info objectForKey:@"CFBundleIconFile"]);
3189 // XXX: maybe this should check if this is really a string, not just for length
3190 if (icon == nil || ![icon respondsToSelector:@selector(length)] || [icon length] == 0)
3191 icon = @"icon.png";
3192 NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]);
3193
3194 NSMutableArray *application([NSMutableArray arrayWithCapacity:2]);
3195 [applications addObject:application];
3196
3197 [application addObject:id];
3198 [application addObject:display];
3199 [application addObject:url];
3200 }
3201
3202 return [applications count] == 0 ? nil : applications;
3203 }
3204
3205 - (Source *) source {
3206 if (source_ == nil) {
3207 @synchronized (database_) {
3208 if ([database_ era] != era_ || file_.end())
3209 source_ = (Source *) [NSNull null];
3210 else
3211 source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null];
3212 }
3213 }
3214
3215 return source_ == (Source *) [NSNull null] ? nil : source_;
3216 }
3217
3218 - (time_t) upgraded {
3219 return upgraded_;
3220 }
3221
3222 - (uint32_t) recent {
3223 return std::numeric_limits<uint32_t>::max() - upgraded_;
3224 }
3225
3226 - (uint32_t) rank {
3227 return rank_;
3228 }
3229
3230 - (BOOL) matches:(NSArray *)query {
3231 if (query == nil || [query count] == 0)
3232 return NO;
3233
3234 rank_ = 0;
3235
3236 NSString *string;
3237 NSRange range;
3238 NSUInteger length;
3239
3240 string = [self name];
3241 length = [string length];
3242
3243 if (length != 0)
3244 for (NSString *term in query) {
3245 range = [string rangeOfString:term options:MatchCompareOptions_];
3246 if (range.location != NSNotFound)
3247 rank_ -= 6 * 1000000 / length;
3248 }
3249
3250 if (rank_ == 0) {
3251 string = [self id];
3252 length = [string length];
3253
3254 if (length != 0)
3255 for (NSString *term in query) {
3256 range = [string rangeOfString:term options:MatchCompareOptions_];
3257 if (range.location != NSNotFound)
3258 rank_ -= 6 * 1000000 / length;
3259 }
3260 }
3261
3262 string = [self shortDescription];
3263 length = [string length];
3264 NSUInteger stop(std::min<NSUInteger>(length, 200));
3265
3266 if (length != 0)
3267 for (NSString *term in query) {
3268 range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)];
3269 if (range.location != NSNotFound)
3270 rank_ -= 2 * 100000;
3271 }
3272
3273 return rank_ != 0;
3274 }
3275
3276 - (NSArray *) tags {
3277 return tags_;
3278 }
3279
3280 - (BOOL) hasTag:(NSString *)tag {
3281 return tags_ == nil ? NO : [tags_ containsObject:tag];
3282 }
3283
3284 - (NSString *) primaryPurpose {
3285 for (NSString *tag in (NSArray *) tags_)
3286 if ([tag hasPrefix:@"purpose::"])
3287 return [tag substringFromIndex:9];
3288 return nil;
3289 }
3290
3291 - (NSArray *) purposes {
3292 NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]);
3293 for (NSString *tag in (NSArray *) tags_)
3294 if ([tag hasPrefix:@"purpose::"])
3295 [purposes addObject:[tag substringFromIndex:9]];
3296 return [purposes count] == 0 ? nil : purposes;
3297 }
3298
3299 - (bool) isCommercial {
3300 return [self hasTag:@"cydia::commercial"];
3301 }
3302
3303 - (void) setIndex:(size_t)index {
3304 if (metadata_->index_ != index)
3305 metadata_->index_ = index;
3306 }
3307
3308 - (CYString &) cyname {
3309 return !transform_.empty() ? transform_ : !name_.empty() ? name_ : id_;
3310 }
3311
3312 - (uint32_t) compareBySection:(NSArray *)sections {
3313 NSString *section([self section]);
3314 for (size_t i(0), e([sections count]); i != e; ++i) {
3315 if ([section isEqualToString:[[sections objectAtIndex:i] name]])
3316 return i;
3317 }
3318
3319 return _not(uint32_t);
3320 }
3321
3322 - (void) clear {
3323 @synchronized (database_) {
3324 pkgProblemResolver *resolver = [database_ resolver];
3325 resolver->Clear(iterator_);
3326
3327 pkgCacheFile &cache([database_ cache]);
3328 cache->SetReInstall(iterator_, false);
3329 cache->MarkKeep(iterator_, false);
3330 } }
3331
3332 - (void) install {
3333 @synchronized (database_) {
3334 pkgProblemResolver *resolver = [database_ resolver];
3335 resolver->Clear(iterator_);
3336 resolver->Protect(iterator_);
3337
3338 pkgCacheFile &cache([database_ cache]);
3339 cache->SetReInstall(iterator_, false);
3340 cache->MarkInstall(iterator_, false);
3341
3342 pkgDepCache::StateCache &state((*cache)[iterator_]);
3343 if (!state.Install())
3344 cache->SetReInstall(iterator_, true);
3345 } }
3346
3347 - (void) remove {
3348 @synchronized (database_) {
3349 pkgProblemResolver *resolver = [database_ resolver];
3350 resolver->Clear(iterator_);
3351 resolver->Remove(iterator_);
3352 resolver->Protect(iterator_);
3353
3354 pkgCacheFile &cache([database_ cache]);
3355 cache->SetReInstall(iterator_, false);
3356 cache->MarkDelete(iterator_, true);
3357 } }
3358
3359 @end
3360 /* }}} */
3361 /* Section Class {{{ */
3362 @interface Section : NSObject {
3363 _H<NSString> name_;
3364 size_t row_;
3365 size_t count_;
3366 _H<NSString> localized_;
3367 }
3368
3369 - (NSComparisonResult) compareByLocalized:(Section *)section;
3370 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized;
3371 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize;
3372 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize;
3373
3374 - (NSString *) name;
3375 - (void) setName:(NSString *)name;
3376
3377 - (size_t) row;
3378 - (size_t) count;
3379
3380 - (void) addToRow;
3381 - (void) addToCount;
3382
3383 - (void) setCount:(size_t)count;
3384 - (NSString *) localized;
3385
3386 @end
3387
3388 @implementation Section
3389
3390 - (NSComparisonResult) compareByLocalized:(Section *)section {
3391 NSString *lhs(localized_);
3392 NSString *rhs([section localized]);
3393
3394 /*if ([lhs length] != 0 && [rhs length] != 0) {
3395 unichar lhc = [lhs characterAtIndex:0];
3396 unichar rhc = [rhs characterAtIndex:0];
3397
3398 if (isalpha(lhc) && !isalpha(rhc))
3399 return NSOrderedAscending;
3400 else if (!isalpha(lhc) && isalpha(rhc))
3401 return NSOrderedDescending;
3402 }*/
3403
3404 return [lhs compare:rhs options:LaxCompareOptions_];
3405 }
3406
3407 - (Section *) initWithName:(NSString *)name localized:(NSString *)localized {
3408 if ((self = [self initWithName:name localize:NO]) != nil) {
3409 if (localized != nil)
3410 localized_ = localized;
3411 } return self;
3412 }
3413
3414 - (Section *) initWithName:(NSString *)name localize:(BOOL)localize {
3415 return [self initWithName:name row:0 localize:localize];
3416 }
3417
3418 - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize {
3419 if ((self = [super init]) != nil) {
3420 name_ = name;
3421 row_ = row;
3422 if (localize)
3423 localized_ = LocalizeSection(name_);
3424 } return self;
3425 }
3426
3427 - (NSString *) name {
3428 return name_;
3429 }
3430
3431 - (void) setName:(NSString *)name {
3432 name_ = name;
3433 }
3434
3435 - (size_t) row {
3436 return row_;
3437 }
3438
3439 - (size_t) count {
3440 return count_;
3441 }
3442
3443 - (void) addToRow {
3444 ++row_;
3445 }
3446
3447 - (void) addToCount {
3448 ++count_;
3449 }
3450
3451 - (void) setCount:(size_t)count {
3452 count_ = count;
3453 }
3454
3455 - (NSString *) localized {
3456 return localized_;
3457 }
3458
3459 @end
3460 /* }}} */
3461
3462 class CydiaLogCleaner :
3463 public pkgArchiveCleaner
3464 {
3465 protected:
3466 virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
3467 unlink(File);
3468 }
3469 };
3470
3471 /* Database Implementation {{{ */
3472 @implementation Database
3473
3474 + (Database *) sharedInstance {
3475 static _H<Database> instance;
3476 if (instance == nil)
3477 instance = [[[Database alloc] init] autorelease];
3478 return instance;
3479 }
3480
3481 - (unsigned) era {
3482 return era_;
3483 }
3484
3485 - (void) releasePackages {
3486 CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL);
3487 CFArrayRemoveAllValues(packages_);
3488 }
3489
3490 - (void) dealloc {
3491 // XXX: actually implement this thing
3492 _assert(false);
3493 [self releasePackages];
3494 NSRecycleZone(zone_);
3495 [super dealloc];
3496 }
3497
3498 - (void) _readCydia:(NSNumber *)fd {
3499 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3500 std::istream is(&ib);
3501 std::string line;
3502
3503 static RegEx finish_r("finish:([^:]*)");
3504
3505 while (std::getline(is, line)) {
3506 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3507
3508 const char *data(line.c_str());
3509 size_t size = line.size();
3510 lprintf("C:%s\n", data);
3511
3512 if (finish_r(data, size)) {
3513 NSString *finish = finish_r[1];
3514 int index = [Finishes_ indexOfObject:finish];
3515 if (index != INT_MAX && index > Finish_)
3516 Finish_ = index;
3517 }
3518
3519 [pool release];
3520 }
3521
3522 _assume(false);
3523 }
3524
3525 - (void) _readStatus:(NSNumber *)fd {
3526 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3527 std::istream is(&ib);
3528 std::string line;
3529
3530 static RegEx conffile_r("status: [^ ]* : conffile-prompt : (.*?) *");
3531 static RegEx pmstatus_r("([^:]*):([^:]*):([^:]*):(.*)");
3532
3533 while (std::getline(is, line)) {
3534 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3535
3536 const char *data(line.c_str());
3537 size_t size(line.size());
3538 lprintf("S:%s\n", data);
3539
3540 if (conffile_r(data, size)) {
3541 // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1
3542 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES];
3543 } else if (strncmp(data, "status: ", 8) == 0) {
3544 // status: <package>: {unpacked,half-configured,installed}
3545 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]);
3546 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3547 } else if (strncmp(data, "processing: ", 12) == 0) {
3548 // processing: configure: config-test
3549 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]);
3550 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3551 } else if (pmstatus_r(data, size)) {
3552 std::string type([pmstatus_r[1] UTF8String]);
3553
3554 NSString *package = pmstatus_r[2];
3555 if ([package isEqualToString:@"dpkg-exec"])
3556 package = nil;
3557
3558 float percent([pmstatus_r[3] floatValue]);
3559 [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES];
3560
3561 NSString *string = pmstatus_r[4];
3562
3563 if (type == "pmerror") {
3564 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]);
3565 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3566 } else if (type == "pmstatus") {
3567 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]);
3568 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3569 } else if (type == "pmconffile")
3570 [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES];
3571 else
3572 lprintf("E:unknown pmstatus\n");
3573 } else
3574 lprintf("E:unknown status\n");
3575
3576 [pool release];
3577 }
3578
3579 _assume(false);
3580 }
3581
3582 - (void) _readOutput:(NSNumber *)fd {
3583 __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
3584 std::istream is(&ib);
3585 std::string line;
3586
3587 while (std::getline(is, line)) {
3588 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
3589
3590 lprintf("O:%s\n", line.c_str());
3591
3592 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]);
3593 [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES];
3594
3595 [pool release];
3596 }
3597
3598 _assume(false);
3599 }
3600
3601 - (FILE *) input {
3602 return input_;
3603 }
3604
3605 - (Package *) packageWithName:(NSString *)name {
3606 if (name == nil)
3607 return nil;
3608 @synchronized (self) {
3609 if (static_cast<pkgDepCache *>(cache_) == NULL)
3610 return nil;
3611 pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String]));
3612 return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self];
3613 } }
3614
3615 - (id) init {
3616 if ((self = [super init]) != nil) {
3617 policy_ = NULL;
3618 records_ = NULL;
3619 resolver_ = NULL;
3620 fetcher_ = NULL;
3621 lock_ = NULL;
3622
3623 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3624
3625 size_t capacity(MetaFile_->active_);
3626 if (capacity == 0)
3627 capacity = 16384;
3628 else
3629 capacity += 1024;
3630
3631 packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL);
3632 sourceList_ = [NSMutableArray arrayWithCapacity:16];
3633
3634 int fds[2];
3635
3636 _assert(pipe(fds) != -1);
3637 cydiafd_ = fds[1];
3638
3639 _config->Set("APT::Keep-Fds::", cydiafd_);
3640 setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int));
3641
3642 [NSThread
3643 detachNewThreadSelector:@selector(_readCydia:)
3644 toTarget:self
3645 withObject:[NSNumber numberWithInt:fds[0]]
3646 ];
3647
3648 _assert(pipe(fds) != -1);
3649 statusfd_ = fds[1];
3650
3651 [NSThread
3652 detachNewThreadSelector:@selector(_readStatus:)
3653 toTarget:self
3654 withObject:[NSNumber numberWithInt:fds[0]]
3655 ];
3656
3657 _assert(pipe(fds) != -1);
3658 _assert(dup2(fds[0], 0) != -1);
3659 _assert(close(fds[0]) != -1);
3660
3661 input_ = fdopen(fds[1], "a");
3662
3663 _assert(pipe(fds) != -1);
3664 _assert(dup2(fds[1], 1) != -1);
3665 _assert(close(fds[1]) != -1);
3666
3667 [NSThread
3668 detachNewThreadSelector:@selector(_readOutput:)
3669 toTarget:self
3670 withObject:[NSNumber numberWithInt:fds[0]]
3671 ];
3672 } return self;
3673 }
3674
3675 - (pkgCacheFile &) cache {
3676 return cache_;
3677 }
3678
3679 - (pkgDepCache::Policy *) policy {
3680 return policy_;
3681 }
3682
3683 - (pkgRecords *) records {
3684 return records_;
3685 }
3686
3687 - (pkgProblemResolver *) resolver {
3688 return resolver_;
3689 }
3690
3691 - (pkgAcquire &) fetcher {
3692 return *fetcher_;
3693 }
3694
3695 - (pkgSourceList &) list {
3696 return *list_;
3697 }
3698
3699 - (NSArray *) packages {
3700 return (NSArray *) packages_;
3701 }
3702
3703 - (NSArray *) sources {
3704 return sourceList_;
3705 }
3706
3707 - (Source *) sourceWithKey:(NSString *)key {
3708 for (Source *source in [self sources]) {
3709 if ([[source key] isEqualToString:key])
3710 return source;
3711 } return nil;
3712 }
3713
3714 - (bool) popErrorWithTitle:(NSString *)title {
3715 bool fatal(false);
3716
3717 while (!_error->empty()) {
3718 std::string error;
3719 bool warning(!_error->PopMessage(error));
3720 if (!warning)
3721 fatal = true;
3722
3723 for (;;) {
3724 size_t size(error.size());
3725 if (size == 0 || error[size - 1] != '\n')
3726 break;
3727 error.resize(size - 1);
3728 }
3729
3730 lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str());
3731
3732 static RegEx no_pubkey("GPG error:.* NO_PUBKEY .*");
3733 if (warning && no_pubkey(error.c_str()))
3734 continue;
3735
3736 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3737 }
3738
3739 return fatal;
3740 }
3741
3742 - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success {
3743 return [self popErrorWithTitle:title] || !success;
3744 }
3745
3746 - (bool) _isEtceteraAptSourcesListDirectoryCydiaListSymbolicallyLinkedToMobileCachesCydiaSourceList {
3747 char target[1024];
3748 ssize_t length(readlink("/etc/apt/sources.list.d/cydia.list", target, sizeof(target) - 1));
3749 if (length == -1)
3750 return false;
3751 if (length >= sizeof(target))
3752 return false;
3753 target[length] = '\0';
3754 return strcmp(target, "/var/mobile/Library/Caches/com.saurik.Cydia/sources.list") == 0;
3755 }
3756
3757 - (bool) popErrorWithTitle:(NSString *)title forReadList:(pkgSourceList &)list {
3758 if ([self popErrorWithTitle:title forOperation:list.ReadMainList()])
3759 return true;
3760 if (![self _isEtceteraAptSourcesListDirectoryCydiaListSymbolicallyLinkedToMobileCachesCydiaSourceList])
3761 if ([self popErrorWithTitle:title forOperation:list.Read(SOURCES_LIST)])
3762 return true;
3763 return false;
3764 }
3765
3766 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
3767 @synchronized (self) {
3768 ++era_;
3769
3770 [self releasePackages];
3771
3772 sourceMap_.clear();
3773 [sourceList_ removeAllObjects];
3774
3775 _error->Discard();
3776
3777 delete list_;
3778 list_ = NULL;
3779 manager_ = NULL;
3780 delete lock_;
3781 lock_ = NULL;
3782 delete fetcher_;
3783 fetcher_ = NULL;
3784 delete resolver_;
3785 resolver_ = NULL;
3786 delete records_;
3787 records_ = NULL;
3788 delete policy_;
3789 policy_ = NULL;
3790
3791 cache_.Close();
3792
3793 pool_.~CYPool();
3794 new (&pool_) CYPool();
3795
3796 NSRecycleZone(zone_);
3797 zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO);
3798
3799 int chk(creat("/tmp/cydia.chk", 0644));
3800 if (chk != -1)
3801 close(chk);
3802
3803 if (invocation != nil)
3804 [invocation invoke];
3805
3806 NSString *title(UCLocalize("DATABASE"));
3807
3808 list_ = new pkgSourceList();
3809 _profile(reloadDataWithInvocation$ReadMainList)
3810 if ([self popErrorWithTitle:title forReadList:*list_])
3811 return;
3812 _end
3813
3814 _profile(reloadDataWithInvocation$Source$initWithMetaIndex)
3815 for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
3816 Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:&pool_] autorelease]);
3817 [sourceList_ addObject:object];
3818 }
3819 _end
3820
3821 delock_ = GetStatusDate();
3822
3823 _trace();
3824 OpProgress progress;
3825 bool opened;
3826 open:
3827 _profile(reloadDataWithInvocation$pkgCacheFile)
3828 opened = cache_.Open(progress, false);
3829 _end
3830 if (!opened) {
3831 // XXX: what if there are errors, but Open() == true? this should be merged with popError:
3832 while (!_error->empty()) {
3833 std::string error;
3834 bool warning(!_error->PopMessage(error));
3835
3836 lprintf("cache_.Open():[%s]\n", error.c_str());
3837
3838 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title];
3839
3840 SEL repair(NULL);
3841 if (false);
3842 else if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ")
3843 repair = @selector(configure);
3844 //else if (error == "The package lists or status file could not be parsed or opened.")
3845 // repair = @selector(update);
3846 // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)")
3847 // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)")
3848 // else if (error == "Malformed Status line")
3849 // else if (error == "The list of sources could not be read.")
3850
3851 if (repair != NULL) {
3852 _error->Discard();
3853 [delegate_ repairWithSelector:repair];
3854 goto open;
3855 }
3856 }
3857
3858 return;
3859 }
3860 _trace();
3861
3862 unlink("/tmp/cydia.chk");
3863
3864 now_ = [[NSDate date] timeIntervalSince1970];
3865
3866 policy_ = new pkgDepCache::Policy();
3867 records_ = new pkgRecords(cache_);
3868 resolver_ = new pkgProblemResolver(cache_);
3869 fetcher_ = new pkgAcquire(&status_);
3870 lock_ = NULL;
3871
3872 if (cache_->DelCount() != 0 || cache_->InstCount() != 0) {
3873 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3874 return;
3875 }
3876
3877 _profile(reloadDataWithInvocation$pkgApplyStatus)
3878 if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)])
3879 return;
3880 _end
3881
3882 if (cache_->BrokenCount() != 0) {
3883 _profile(pkgApplyStatus$pkgFixBroken)
3884 if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)])
3885 return;
3886 _end
3887
3888 if (cache_->BrokenCount() != 0) {
3889 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title];
3890 return;
3891 }
3892
3893 _profile(pkgApplyStatus$pkgMinimizeUpgrade)
3894 if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)])
3895 return;
3896 _end
3897 }
3898
3899 for (Source *object in (id) sourceList_) {
3900 metaIndex *source([object metaIndex]);
3901 std::vector<pkgIndexFile *> *indices = source->GetIndexFiles();
3902 for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index)
3903 // XXX: this could be more intelligent
3904 if (dynamic_cast<debPackagesIndex *>(*index) != NULL) {
3905 pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_));
3906 if (!cached.end())
3907 sourceMap_[cached->ID] = object;
3908 }
3909 }
3910
3911 {
3912 /*std::vector<Package *> packages;
3913 packages.reserve(std::max(10000U, [packages_ count] + 1000));
3914 packages_ = nil;*/
3915
3916 _profile(reloadDataWithInvocation$packageWithIterator)
3917 for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator)
3918 if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:&pool_ database:self])
3919 //packages.push_back(package);
3920 CFArrayAppendValue(packages_, CFRetain(package));
3921 _end
3922
3923
3924 /*if (packages.empty())
3925 packages_ = [[NSArray alloc] init];
3926 else
3927 packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()];
3928 _trace();*/
3929
3930 _profile(reloadDataWithInvocation$radix$8)
3931 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(8)];
3932 _end
3933
3934 _profile(reloadDataWithInvocation$radix$4)
3935 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)];
3936 _end
3937
3938 _profile(reloadDataWithInvocation$radix$0)
3939 [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)];
3940 _end
3941
3942 _profile(reloadDataWithInvocation$insertion)
3943 CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3944 _end
3945
3946 /*_profile(reloadDataWithInvocation$CFQSortArray)
3947 CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);
3948 _end*/
3949
3950 /*_profile(reloadDataWithInvocation$stdsort)
3951 std::sort(packages.begin(), packages.end(), PackageNameOrdering());
3952 _end*/
3953
3954 /*_profile(reloadDataWithInvocation$CFArraySortValues)
3955 CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL);
3956 _end*/
3957
3958 /*_profile(reloadDataWithInvocation$sortUsingFunction)
3959 [packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL];
3960 _end*/
3961
3962
3963 size_t count(CFArrayGetCount(packages_));
3964 MetaFile_->active_ = count;
3965 for (size_t index(0); index != count; ++index)
3966 [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index];
3967 }
3968 } }
3969
3970 - (void) clear {
3971 @synchronized (self) {
3972 delete resolver_;
3973 resolver_ = new pkgProblemResolver(cache_);
3974
3975 for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator)
3976 if (!cache_[iterator].Keep())
3977 cache_->MarkKeep(iterator, false);
3978 else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0)
3979 cache_->SetReInstall(iterator, false);
3980 } }
3981
3982 - (void) configure {
3983 NSString *dpkg = [NSString stringWithFormat:@"/usr/libexec/cydo --configure -a --status-fd %u", statusfd_];
3984 _trace();
3985 system([dpkg UTF8String]);
3986 _trace();
3987 }
3988
3989 - (bool) clean {
3990 @synchronized (self) {
3991 // XXX: I don't remember this condition
3992 if (lock_ != NULL)
3993 return false;
3994
3995 FileFd Lock;
3996 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
3997
3998 NSString *title(UCLocalize("CLEAN_ARCHIVES"));
3999
4000 if ([self popErrorWithTitle:title])
4001 return false;
4002
4003 pkgAcquire fetcher;
4004 fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
4005
4006 CydiaLogCleaner cleaner;
4007 if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)])
4008 return false;
4009
4010 return true;
4011 } }
4012
4013 - (bool) prepare {
4014 fetcher_->Shutdown();
4015
4016 pkgRecords records(cache_);
4017
4018 lock_ = new FileFd();
4019 lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
4020
4021 NSString *title(UCLocalize("PREPARE_ARCHIVES"));
4022
4023 if ([self popErrorWithTitle:title])
4024 return false;
4025
4026 pkgSourceList list;
4027 if ([self popErrorWithTitle:title forReadList:list])
4028 return false;
4029
4030 manager_ = (_system->CreatePM(cache_));
4031 if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)])
4032 return false;
4033
4034 return true;
4035 }
4036
4037 - (void) perform {
4038 bool substrate(RestartSubstrate_);
4039 RestartSubstrate_ = false;
4040
4041 NSString *title(UCLocalize("PERFORM_SELECTIONS"));
4042
4043 NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; {
4044 pkgSourceList list;
4045 if ([self popErrorWithTitle:title forReadList:list])
4046 return;
4047 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
4048 [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
4049 }
4050
4051 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4052
4053 if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) {
4054 _trace();
4055 [self popErrorWithTitle:title];
4056 return;
4057 }
4058
4059 bool failed = false;
4060 for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) {
4061 if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete)
4062 continue;
4063 if ((*item)->Status == pkgAcquire::Item::StatIdle)
4064 continue;
4065
4066 std::string uri = (*item)->DescURI();
4067 std::string error = (*item)->ErrorText;
4068
4069 lprintf("pAf:%s:%s\n", uri.c_str(), error.c_str());
4070 failed = true;
4071
4072 CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError]);
4073 [delegate_ addProgressEventOnMainThread:event forTask:title];
4074 }
4075
4076 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4077
4078 if (failed) {
4079 _trace();
4080 return;
4081 }
4082
4083 if (substrate)
4084 RestartSubstrate_ = true;
4085
4086 if (![delock_ isEqual:GetStatusDate()]) {
4087 [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("DPKG_LOCKED") ofType:kCydiaProgressEventTypeError] forTask:title];
4088 return;
4089 }
4090
4091 delock_ = nil;
4092
4093 NSString *oextended(@"/var/lib/apt/extended_states");
4094 NSString *nextended(Cache("extended_states"));
4095 pkgPackageManager::OrderResult result(manager_->DoInstall(statusfd_));
4096 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/mv -f %@ %@", nextended, oextended] UTF8String]);
4097 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/chown 0:0 %@", oextended] UTF8String]);
4098 unlink([nextended UTF8String]);
4099 symlink([oextended UTF8String], [nextended UTF8String]);
4100
4101 if ([self popErrorWithTitle:title])
4102 return;
4103
4104 if (result == pkgPackageManager::Failed) {
4105 _trace();
4106 return;
4107 }
4108
4109 if (result != pkgPackageManager::Completed) {
4110 _trace();
4111 return;
4112 }
4113
4114 NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; {
4115 pkgSourceList list;
4116 if ([self popErrorWithTitle:title forReadList:list])
4117 return;
4118 for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source)
4119 [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]];
4120 }
4121
4122 if (![before isEqualToArray:after])
4123 [self update];
4124 }
4125
4126 - (bool) delocked {
4127 return ![delock_ isEqual:GetStatusDate()];
4128 }
4129
4130 - (bool) upgrade {
4131 NSString *title(UCLocalize("UPGRADE"));
4132 if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)])
4133 return false;
4134 return true;
4135 }
4136
4137 - (void) update {
4138 [self updateWithStatus:status_];
4139 }
4140
4141 - (void) updateWithStatus:(CancelStatus &)status {
4142 NSString *title(UCLocalize("REFRESHING_DATA"));
4143
4144 pkgSourceList list;
4145 if ([self popErrorWithTitle:title forReadList:list])
4146 return;
4147
4148 FileFd lock;
4149 lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
4150 if ([self popErrorWithTitle:title])
4151 return;
4152
4153 [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4154
4155 bool success(ListUpdate(status, list, PulseInterval_));
4156 if (status.WasCancelled())
4157 _error->Discard();
4158 else {
4159 [self popErrorWithTitle:title forOperation:success];
4160
4161 [[NSDictionary dictionaryWithObjectsAndKeys:
4162 [NSDate date], @"LastUpdate",
4163 nil] writeToFile:@ CacheState_ atomically:YES];
4164 }
4165
4166 [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES];
4167 }
4168
4169 - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate {
4170 delegate_ = delegate;
4171 }
4172
4173 - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate {
4174 progress_ = delegate;
4175 status_.setDelegate(delegate);
4176 }
4177
4178 - (NSObject<ProgressDelegate> *) progressDelegate {
4179 return progress_;
4180 }
4181
4182 - (Source *) getSource:(pkgCache::PkgFileIterator)file {
4183 SourceMap::const_iterator i(sourceMap_.find(file->ID));
4184 return i == sourceMap_.end() ? nil : i->second;
4185 }
4186
4187 - (void) setFetch:(bool)fetch forURI:(const char *)uri {
4188 for (Source *source in (id) sourceList_)
4189 [source setFetch:fetch forURI:uri];
4190 }
4191
4192 - (void) resetFetch {
4193 for (Source *source in (id) sourceList_)
4194 [source resetFetch];
4195 }
4196
4197 - (NSString *) mappedSectionForPointer:(const char *)section {
4198 _H<NSString> *mapped;
4199
4200 _profile(Database$mappedSectionForPointer$Cache)
4201 mapped = &sections_[section];
4202 _end
4203
4204 if (*mapped == NULL) {
4205 size_t length(strlen(section));
4206 char spaced[length + 1];
4207
4208 _profile(Database$mappedSectionForPointer$Replace)
4209 for (size_t index(0); index != length; ++index)
4210 spaced[index] = section[index] == '_' ? ' ' : section[index];
4211 spaced[length] = '\0';
4212 _end
4213
4214 NSString *string;
4215
4216 _profile(Database$mappedSectionForPointer$stringWithUTF8String)
4217 string = [NSString stringWithUTF8String:spaced];
4218 _end
4219
4220 _profile(Database$mappedSectionForPointer$Map)
4221 string = [SectionMap_ objectForKey:string] ?: string;
4222 _end
4223
4224 *mapped = string;
4225 } return *mapped;
4226 }
4227
4228 @end
4229 /* }}} */
4230
4231 static _H<NSMutableSet> Diversions_;
4232
4233 @interface Diversion : NSObject {
4234 RegEx pattern_;
4235 _H<NSString> key_;
4236 _H<NSString> format_;
4237 }
4238
4239 @end
4240
4241 @implementation Diversion
4242
4243 - (id) initWithFrom:(NSString *)from to:(NSString *)to {
4244 if ((self = [super init]) != nil) {
4245 pattern_ = [from UTF8String];
4246 key_ = from;
4247 format_ = to;
4248 } return self;
4249 }
4250
4251 - (NSString *) divert:(NSString *)url {
4252 return !pattern_(url) ? nil : pattern_->*format_;
4253 }
4254
4255 + (NSURL *) divertURL:(NSURL *)url {
4256 divert:
4257 NSString *href([url absoluteString]);
4258
4259 for (Diversion *diversion in (id) Diversions_)
4260 if (NSString *diverted = [diversion divert:href]) {
4261 #if !ForRelease
4262 NSLog(@"div: %@", diverted);
4263 #endif
4264 url = [NSURL URLWithString:diverted];
4265 goto divert;
4266 }
4267
4268 return url;
4269 }
4270
4271 - (NSString *) key {
4272 return key_;
4273 }
4274
4275 - (NSUInteger) hash {
4276 return [key_ hash];
4277 }
4278
4279 - (BOOL) isEqual:(Diversion *)object {
4280 return self == object || [self class] == [object class] && [key_ isEqual:[object key]];
4281 }
4282
4283 @end
4284
4285 @interface CydiaObject : NSObject {
4286 _H<CyteWebViewController> indirect_;
4287 _transient id delegate_;
4288 }
4289
4290 - (id) initWithDelegate:(IndirectDelegate *)indirect;
4291
4292 @end
4293
4294 @class CydiaObject;
4295
4296 @interface CydiaWebViewController : CyteWebViewController {
4297 _H<CydiaObject> cydia_;
4298 }
4299
4300 + (void) addDiversion:(Diversion *)diversion;
4301 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request;
4302 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia;
4303 - (void) setDelegate:(id)delegate;
4304
4305 @end
4306
4307 /* Web Scripting {{{ */
4308 @implementation CydiaObject
4309
4310 - (id) initWithDelegate:(IndirectDelegate *)indirect {
4311 if ((self = [super init]) != nil) {
4312 indirect_ = (CyteWebViewController *) indirect;
4313 } return self;
4314 }
4315
4316 - (void) setDelegate:(id)delegate {
4317 delegate_ = delegate;
4318 }
4319
4320 + (NSArray *) _attributeKeys {
4321 return [NSArray arrayWithObjects:
4322 @"bbsnum",
4323 @"build",
4324 @"coreFoundationVersionNumber",
4325 @"device",
4326 @"ecid",
4327 @"firmware",
4328 @"hostname",
4329 @"idiom",
4330 @"mcc",
4331 @"mnc",
4332 @"model",
4333 @"operator",
4334 @"role",
4335 @"serial",
4336 @"version",
4337 nil];
4338 }
4339
4340 - (NSArray *) attributeKeys {
4341 return [[self class] _attributeKeys];
4342 }
4343
4344 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
4345 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
4346 }
4347
4348 - (NSString *) version {
4349 return Cydia_;
4350 }
4351
4352 - (NSString *) build {
4353 return System_;
4354 }
4355
4356 - (NSString *) coreFoundationVersionNumber {
4357 return [NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber];
4358 }
4359
4360 - (NSString *) device {
4361 return UniqueIdentifier();
4362 }
4363
4364 - (NSString *) firmware {
4365 return [[UIDevice currentDevice] systemVersion];
4366 }
4367
4368 - (NSString *) hostname {
4369 return [[UIDevice currentDevice] name];
4370 }
4371
4372 - (NSString *) idiom {
4373 return (id) Idiom_ ?: [NSNull null];
4374 }
4375
4376 - (NSString *) mcc {
4377 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode")))
4378 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease];
4379 return nil;
4380 }
4381
4382 - (NSString *) mnc {
4383 if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode")))
4384 return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease];
4385 return nil;
4386 }
4387
4388 - (NSString *) operator {
4389 if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName")))
4390 return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease];
4391 return nil;
4392 }
4393
4394 - (NSString *) bbsnum {
4395 return (id) BBSNum_ ?: [NSNull null];
4396 }
4397
4398 - (NSString *) ecid {
4399 return (id) ChipID_ ?: [NSNull null];
4400 }
4401
4402 - (NSString *) serial {
4403 return SerialNumber_;
4404 }
4405
4406 - (NSString *) role {
4407 return (id) [NSNull null];
4408 }
4409
4410 - (NSString *) model {
4411 return [NSString stringWithUTF8String:Machine_];
4412 }
4413
4414 + (NSString *) webScriptNameForSelector:(SEL)selector {
4415 if (false);
4416 else if (selector == @selector(addBridgedHost:))
4417 return @"addBridgedHost";
4418 else if (selector == @selector(addInsecureHost:))
4419 return @"addInsecureHost";
4420 else if (selector == @selector(addInternalRedirect::))
4421 return @"addInternalRedirect";
4422 else if (selector == @selector(addPipelinedHost:scheme:))
4423 return @"addPipelinedHost";
4424 else if (selector == @selector(addSource:::))
4425 return @"addSource";
4426 else if (selector == @selector(addTrivialSource:))
4427 return @"addTrivialSource";
4428 else if (selector == @selector(close))
4429 return @"close";
4430 else if (selector == @selector(du:))
4431 return @"du";
4432 else if (selector == @selector(stringWithFormat:arguments:))
4433 return @"format";
4434 else if (selector == @selector(getAllSources))
4435 return @"getAllSources";
4436 else if (selector == @selector(getApplicationInfo:value:))
4437 return @"getApplicationInfoValue";
4438 else if (selector == @selector(getKernelNumber:))
4439 return @"getKernelNumber";
4440 else if (selector == @selector(getKernelString:))
4441 return @"getKernelString";
4442 else if (selector == @selector(getInstalledPackages))
4443 return @"getInstalledPackages";
4444 else if (selector == @selector(getIORegistryEntry::))
4445 return @"getIORegistryEntry";
4446 else if (selector == @selector(getLocaleIdentifier))
4447 return @"getLocaleIdentifier";
4448 else if (selector == @selector(getPreferredLanguages))
4449 return @"getPreferredLanguages";
4450 else if (selector == @selector(getPackageById:))
4451 return @"getPackageById";
4452 else if (selector == @selector(getMetadataKeys))
4453 return @"getMetadataKeys";
4454 else if (selector == @selector(getMetadataValue:))
4455 return @"getMetadataValue";
4456 else if (selector == @selector(getSessionValue:))
4457 return @"getSessionValue";
4458 else if (selector == @selector(installPackages:))
4459 return @"installPackages";
4460 else if (selector == @selector(isReachable:))
4461 return @"isReachable";
4462 else if (selector == @selector(localizedStringForKey:value:table:))
4463 return @"localize";
4464 else if (selector == @selector(popViewController:))
4465 return @"popViewController";
4466 else if (selector == @selector(refreshSources))
4467 return @"refreshSources";
4468 else if (selector == @selector(registerFrame:))
4469 return @"registerFrame";
4470 else if (selector == @selector(removeButton))
4471 return @"removeButton";
4472 else if (selector == @selector(saveConfig))
4473 return @"saveConfig";
4474 else if (selector == @selector(setMetadataValue::))
4475 return @"setMetadataValue";
4476 else if (selector == @selector(setSessionValue::))
4477 return @"setSessionValue";
4478 else if (selector == @selector(substitutePackageNames:))
4479 return @"substitutePackageNames";
4480 else if (selector == @selector(scrollToBottom:))
4481 return @"scrollToBottom";
4482 else if (selector == @selector(setAllowsNavigationAction:))
4483 return @"setAllowsNavigationAction";
4484 else if (selector == @selector(setBadgeValue:))
4485 return @"setBadgeValue";
4486 else if (selector == @selector(setButtonImage:withStyle:toFunction:))
4487 return @"setButtonImage";
4488 else if (selector == @selector(setButtonTitle:withStyle:toFunction:))
4489 return @"setButtonTitle";
4490 else if (selector == @selector(setHidesBackButton:))
4491 return @"setHidesBackButton";
4492 else if (selector == @selector(setHidesNavigationBar:))
4493 return @"setHidesNavigationBar";
4494 else if (selector == @selector(setNavigationBarStyle:))
4495 return @"setNavigationBarStyle";
4496 else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:))
4497 return @"setNavigationBarTintColor";
4498 else if (selector == @selector(setPasteboardString:))
4499 return @"setPasteboardString";
4500 else if (selector == @selector(setPasteboardURL:))
4501 return @"setPasteboardURL";
4502 else if (selector == @selector(setScrollAlwaysBounceVertical:))
4503 return @"setScrollAlwaysBounceVertical";
4504 else if (selector == @selector(setScrollIndicatorStyle:))
4505 return @"setScrollIndicatorStyle";
4506 else if (selector == @selector(setToken:))
4507 return @"setToken";
4508 else if (selector == @selector(setViewportWidth:))
4509 return @"setViewportWidth";
4510 else if (selector == @selector(statfs:))
4511 return @"statfs";
4512 else if (selector == @selector(supports:))
4513 return @"supports";
4514 else if (selector == @selector(unload))
4515 return @"unload";
4516 else
4517 return nil;
4518 }
4519
4520 + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector {
4521 return [self webScriptNameForSelector:selector] == nil;
4522 }
4523
4524 - (BOOL) supports:(NSString *)feature {
4525 return [feature isEqualToString:@"window.open"];
4526 }
4527
4528 - (void) unload {
4529 [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO];
4530 }
4531
4532 - (void) setScrollAlwaysBounceVertical:(NSNumber *)value {
4533 [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO];
4534 }
4535
4536 - (void) setScrollIndicatorStyle:(NSString *)style {
4537 [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO];
4538 }
4539
4540 - (void) addInternalRedirect:(NSString *)from :(NSString *)to {
4541 [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO];
4542 }
4543
4544 - (NSDictionary *) getApplicationInfo:(NSString *)display value:(NSString *)key {
4545 char path[1024];
4546 if (SBBundlePathForDisplayIdentifier(SBSSpringBoardServerPort(), [display UTF8String], path) != 0)
4547 return (id) [NSNull null];
4548 NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:[[NSString stringWithUTF8String:path] stringByAppendingString:@"/Info.plist"]]);
4549 if (info == nil)
4550 return (id) [NSNull null];
4551 return [info objectForKey:key];
4552 }
4553
4554 - (NSNumber *) getKernelNumber:(NSString *)name {
4555 const char *string([name UTF8String]);
4556
4557 size_t size;
4558 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4559 return (id) [NSNull null];
4560
4561 if (size != sizeof(int))
4562 return (id) [NSNull null];
4563
4564 int value;
4565 if (sysctlbyname(string, &value, &size, NULL, 0) == -1)
4566 return (id) [NSNull null];
4567
4568 return [NSNumber numberWithInt:value];
4569 }
4570
4571 - (NSString *) getKernelString:(NSString *)name {
4572 const char *string([name UTF8String]);
4573
4574 size_t size;
4575 if (sysctlbyname(string, NULL, &size, NULL, 0) == -1)
4576 return (id) [NSNull null];
4577
4578 char value[size + 1];
4579 if (sysctlbyname(string, value, &size, NULL, 0) == -1)
4580 return (id) [NSNull null];
4581
4582 // XXX: just in case you request something ludicrous
4583 value[size] = '\0';
4584
4585 return [NSString stringWithCString:value];
4586 }
4587
4588 - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry {
4589 NSObject *value(CYIOGetValue([path UTF8String], entry));
4590
4591 if (value != nil)
4592 if ([value isKindOfClass:[NSData class]])
4593 value = CYHex((NSData *) value);
4594
4595 return value;
4596 }
4597
4598 - (NSArray *) getMetadataKeys {
4599 @synchronized (Values_) {
4600 return [Values_ allKeys];
4601 } }
4602
4603 - (void) registerFrame:(DOMHTMLIFrameElement *)iframe {
4604 WebFrame *frame([iframe contentFrame]);
4605 [indirect_ registerFrame:frame];
4606 }
4607
4608 - (id) getMetadataValue:(NSString *)key {
4609 @synchronized (Values_) {
4610 return [Values_ objectForKey:key];
4611 } }
4612
4613 - (void) setMetadataValue:(NSString *)key :(NSString *)value {
4614 @synchronized (Values_) {
4615 if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null])
4616 [Values_ removeObjectForKey:key];
4617 else
4618 [Values_ setObject:value forKey:key];
4619 } }
4620
4621 - (id) getSessionValue:(NSString *)key {
4622 @synchronized (SessionData_) {
4623 return [SessionData_ objectForKey:key];
4624 } }
4625
4626 - (void) setSessionValue:(NSString *)key :(NSString *)value {
4627 @synchronized (SessionData_) {
4628 if (value == (id) [WebUndefined undefined])
4629 [SessionData_ removeObjectForKey:key];
4630 else
4631 [SessionData_ setObject:value forKey:key];
4632 } }
4633
4634 - (void) addBridgedHost:(NSString *)host {
4635 @synchronized (HostConfig_) {
4636 [BridgedHosts_ addObject:host];
4637 } }
4638
4639 - (void) addInsecureHost:(NSString *)host {
4640 @synchronized (HostConfig_) {
4641 [InsecureHosts_ addObject:host];
4642 } }
4643
4644 - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme {
4645 @synchronized (HostConfig_) {
4646 if (scheme != (id) [WebUndefined undefined])
4647 host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host];
4648
4649 [PipelinedHosts_ addObject:host];
4650 } }
4651
4652 - (void) popViewController:(NSNumber *)value {
4653 if (value == (id) [WebUndefined undefined])
4654 value = [NSNumber numberWithBool:YES];
4655 [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO];
4656 }
4657
4658 - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections {
4659 NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]);
4660
4661 for (NSString *section in sections)
4662 [array addObject:section];
4663
4664 [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys:
4665 @"deb", @"Type",
4666 href, @"URI",
4667 distribution, @"Distribution",
4668 array, @"Sections",
4669 nil] waitUntilDone:NO];
4670 }
4671
4672 - (void) addTrivialSource:(NSString *)href {
4673 [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO];
4674 }
4675
4676 - (void) refreshSources {
4677 [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO];
4678 }
4679
4680 - (void) saveConfig {
4681 [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO];
4682 }
4683
4684 - (NSArray *) getAllSources {
4685 return [[Database sharedInstance] sources];
4686 }
4687
4688 - (NSArray *) getInstalledPackages {
4689 Database *database([Database sharedInstance]);
4690 @synchronized (database) {
4691 NSArray *packages([database packages]);
4692 NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]);
4693 for (Package *package in packages)
4694 if (![package uninstalled])
4695 [installed addObject:package];
4696 return installed;
4697 } }
4698
4699 - (Package *) getPackageById:(NSString *)id {
4700 if (Package *package = [[Database sharedInstance] packageWithName:id]) {
4701 [package parse];
4702 return package;
4703 } else
4704 return (Package *) [NSNull null];
4705 }
4706
4707 - (NSString *) getLocaleIdentifier {
4708 return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_);
4709 }
4710
4711 - (NSArray *) getPreferredLanguages {
4712 return Languages_;
4713 }
4714
4715 - (NSArray *) statfs:(NSString *)path {
4716 struct statfs stat;
4717
4718 if (path == nil || statfs([path UTF8String], &stat) == -1)
4719 return nil;
4720
4721 return [NSArray arrayWithObjects:
4722 [NSNumber numberWithUnsignedLong:stat.f_bsize],
4723 [NSNumber numberWithUnsignedLong:stat.f_blocks],
4724 [NSNumber numberWithUnsignedLong:stat.f_bfree],
4725 nil];
4726 }
4727
4728 ssize_t DiskUsage(const char *path);
4729
4730 - (NSNumber *) du:(NSString *)path {
4731 ssize_t usage(DiskUsage([path UTF8String]));
4732 if (usage != -1)
4733 usage /= 1024;
4734 return [NSNumber numberWithUnsignedLong:usage];
4735 }
4736
4737 - (void) close {
4738 [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO];
4739 }
4740
4741 - (NSNumber *) isReachable:(NSString *)name {
4742 return [NSNumber numberWithBool:IsReachable([name UTF8String])];
4743 }
4744
4745 - (void) installPackages:(NSArray *)packages {
4746 [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO];
4747 }
4748
4749 - (NSString *) substitutePackageNames:(NSString *)message {
4750 NSMutableArray *words([[[message componentsSeparatedByString:@" "] mutableCopy] autorelease]);
4751 for (size_t i(0), e([words count]); i != e; ++i) {
4752 NSString *word([words objectAtIndex:i]);
4753 if (Package *package = [[Database sharedInstance] packageWithName:word])
4754 [words replaceObjectAtIndex:i withObject:[package name]];
4755 }
4756
4757 return [words componentsJoinedByString:@" "];
4758 }
4759
4760 - (void) removeButton {
4761 [indirect_ removeButton];
4762 }
4763
4764 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4765 [indirect_ setButtonImage:button withStyle:style toFunction:function];
4766 }
4767
4768 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function {
4769 [indirect_ setButtonTitle:button withStyle:style toFunction:function];
4770 }
4771
4772 - (void) setBadgeValue:(id)value {
4773 [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO];
4774 }
4775
4776 - (void) setAllowsNavigationAction:(NSString *)value {
4777 [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO];
4778 }
4779
4780 - (void) setHidesBackButton:(NSString *)value {
4781 [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO];
4782 }
4783
4784 - (void) setHidesNavigationBar:(NSString *)value {
4785 [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO];
4786 }
4787
4788 - (void) setNavigationBarStyle:(NSString *)value {
4789 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO];
4790 }
4791
4792 - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha {
4793 float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]);
4794 UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]);
4795 [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO];
4796 }
4797
4798 - (void) setPasteboardString:(NSString *)value {
4799 [[objc_getClass("UIPasteboard") generalPasteboard] setString:value];
4800 }
4801
4802 - (void) setPasteboardURL:(NSString *)value {
4803 [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]];
4804 }
4805
4806 - (void) setToken:(NSString *)token {
4807 // XXX: the website expects this :/
4808 }
4809
4810 - (void) scrollToBottom:(NSNumber *)animated {
4811 [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO];
4812 }
4813
4814 - (void) setViewportWidth:(float)width {
4815 [indirect_ setViewportWidthOnMainThread:width];
4816 }
4817
4818 - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments {
4819 //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]);
4820 unsigned count([arguments count]);
4821 id values[count];
4822 for (unsigned i(0); i != count; ++i)
4823 values[i] = [arguments objectAtIndex:i];
4824 return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease];
4825 }
4826
4827 - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table {
4828 if (reinterpret_cast<id>(value) == [WebUndefined undefined])
4829 value = nil;
4830 if (reinterpret_cast<id>(table) == [WebUndefined undefined])
4831 table = nil;
4832 return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table];
4833 }
4834
4835 @end
4836 /* }}} */
4837
4838 @interface NSURL (CydiaSecure)
4839 @end
4840
4841 @implementation NSURL (CydiaSecure)
4842
4843 - (bool) isCydiaSecure {
4844 if ([[[self scheme] lowercaseString] isEqualToString:@"https"])
4845 return true;
4846
4847 @synchronized (HostConfig_) {
4848 if ([InsecureHosts_ containsObject:[self host]])
4849 return true;
4850 }
4851
4852 return false;
4853 }
4854
4855 @end
4856
4857 /* Cydia Browser Controller {{{ */
4858 @implementation CydiaWebViewController
4859
4860 - (NSURL *) navigationURL {
4861 return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]];
4862 }
4863
4864 + (void) _initialize {
4865 [super _initialize];
4866
4867 Diversions_ = [NSMutableSet setWithCapacity:0];
4868 }
4869
4870 + (void) addDiversion:(Diversion *)diversion {
4871 [Diversions_ addObject:diversion];
4872 }
4873
4874 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
4875 [super webView:view didClearWindowObject:window forFrame:frame];
4876 [CydiaWebViewController didClearWindowObject:window forFrame:frame withCydia:cydia_];
4877 }
4878
4879 + (void) didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame withCydia:(CydiaObject *)cydia {
4880 WebDataSource *source([frame dataSource]);
4881 NSURLResponse *response([source response]);
4882 NSURL *url([response URL]);
4883 NSString *scheme([[url scheme] lowercaseString]);
4884
4885 bool bridged(false);
4886
4887 @synchronized (HostConfig_) {
4888 if ([scheme isEqualToString:@"file"])
4889 bridged = true;
4890 else if ([scheme isEqualToString:@"https"])
4891 if ([BridgedHosts_ containsObject:[url host]])
4892 bridged = true;
4893 }
4894
4895 if (bridged)
4896 [window setValue:cydia forKey:@"cydia"];
4897 }
4898
4899 - (void) _setupMail:(MFMailComposeViewController *)controller {
4900 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"];
4901
4902 system("/usr/bin/dpkg -l >/tmp/dpkgl.log");
4903 [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"];
4904 }
4905
4906 - (NSURL *) URLWithURL:(NSURL *)url {
4907 return [Diversion divertURL:url];
4908 }
4909
4910 - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4911 return [CydiaWebViewController requestWithHeaders:[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]];
4912 }
4913
4914 - (NSURLRequest *) webThreadWebView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source {
4915 return [CydiaWebViewController requestWithHeaders:[super webThreadWebView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source]];
4916 }
4917
4918 + (NSURLRequest *) requestWithHeaders:(NSURLRequest *)request {
4919 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
4920
4921 NSURL *url([copy URL]);
4922 NSString *href([url absoluteString]);
4923 NSString *host([url host]);
4924
4925 if ([href hasPrefix:@"https://cydia.saurik.com/TSS/"]) {
4926 if (NSString *agent = [copy valueForHTTPHeaderField:@"X-User-Agent"]) {
4927 [copy setValue:agent forHTTPHeaderField:@"User-Agent"];
4928 [copy setValue:nil forHTTPHeaderField:@"X-User-Agent"];
4929 }
4930
4931 [copy setValue:nil forHTTPHeaderField:@"Referer"];
4932 [copy setValue:nil forHTTPHeaderField:@"Origin"];
4933
4934 [copy setURL:[NSURL URLWithString:[@"http://gs.apple.com/TSS/" stringByAppendingString:[href substringFromIndex:29]]]];
4935 return copy;
4936 }
4937
4938 if ([copy valueForHTTPHeaderField:@"X-Cydia-Cf"] == nil)
4939 [copy setValue:[NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber] forHTTPHeaderField:@"X-Cydia-Cf"];
4940 if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil)
4941 [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
4942
4943 bool bridged; @synchronized (HostConfig_) {
4944 bridged = [BridgedHosts_ containsObject:host];
4945 }
4946
4947 if ([url isCydiaSecure] && bridged && UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil)
4948 [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
4949
4950 return copy;
4951 }
4952
4953 - (void) setDelegate:(id)delegate {
4954 [super setDelegate:delegate];
4955 [cydia_ setDelegate:delegate];
4956 }
4957
4958 - (NSString *) applicationNameForUserAgent {
4959 return UserAgent_;
4960 }
4961
4962 - (id) init {
4963 if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) {
4964 cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease];
4965 } return self;
4966 }
4967
4968 @end
4969
4970 @interface AppCacheController : CydiaWebViewController {
4971 }
4972
4973 @end
4974
4975 @implementation AppCacheController
4976
4977 - (void) didReceiveMemoryWarning {
4978 // XXX: this doesn't work
4979 }
4980
4981 - (bool) retainsNetworkActivityIndicator {
4982 return false;
4983 }
4984
4985 @end
4986 /* }}} */
4987
4988 // CydiaScript {{{
4989 @interface NSObject (CydiaScript)
4990 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context;
4991 @end
4992
4993 @implementation NSObject (CydiaScript)
4994
4995 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
4996 return self;
4997 }
4998
4999 @end
5000
5001 @implementation NSArray (CydiaScript)
5002
5003 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
5004 WebScriptObject *object([context evaluateWebScript:@"[]"]);
5005 for (size_t i(0), e([self count]); i != e; ++i)
5006 [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]];
5007 return object;
5008 }
5009
5010 @end
5011
5012 @implementation NSDictionary (CydiaScript)
5013
5014 - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context {
5015 WebScriptObject *object([context evaluateWebScript:@"({})"]);
5016 for (id i in self)
5017 [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i];
5018 return object;
5019 }
5020
5021 @end
5022 // }}}
5023
5024 /* Confirmation Controller {{{ */
5025 bool DepSubstrate(const pkgCache::VerIterator &iterator) {
5026 if (!iterator.end())
5027 for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) {
5028 if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends)
5029 continue;
5030 pkgCache::PkgIterator package(dep.TargetPkg());
5031 if (package.end())
5032 continue;
5033 if (strcmp(package.Name(), "mobilesubstrate") == 0)
5034 return true;
5035 }
5036
5037 return false;
5038 }
5039
5040 @protocol ConfirmationControllerDelegate
5041 - (void) cancelAndClear:(bool)clear;
5042 - (void) confirmWithNavigationController:(UINavigationController *)navigation;
5043 - (void) queue;
5044 @end
5045
5046 @interface ConfirmationController : CydiaWebViewController {
5047 _transient Database *database_;
5048
5049 _H<UIAlertView> essential_;
5050
5051 _H<NSDictionary> changes_;
5052 _H<NSMutableArray> issues_;
5053 _H<NSDictionary> sizes_;
5054
5055 BOOL substrate_;
5056 }
5057
5058 - (id) initWithDatabase:(Database *)database;
5059
5060 @end
5061
5062 @implementation ConfirmationController
5063
5064 - (void) complete {
5065 if (substrate_)
5066 RestartSubstrate_ = true;
5067 [delegate_ confirmWithNavigationController:[self navigationController]];
5068 }
5069
5070 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
5071 NSString *context([alert context]);
5072
5073 if ([context isEqualToString:@"remove"]) {
5074 if (button == [alert cancelButtonIndex])
5075 [self _doContinue];
5076 else if (button == [alert firstOtherButtonIndex]) {
5077 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
5078 }
5079
5080 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5081 } else if ([context isEqualToString:@"unable"]) {
5082 [self dismissModalViewControllerAnimated:YES];
5083 [alert dismissWithClickedButtonIndex:-1 animated:YES];
5084 } else {
5085 [super alertView:alert clickedButtonAtIndex:button];
5086 }
5087 }
5088
5089 - (void) _doContinue {
5090 [delegate_ cancelAndClear:NO];
5091 [self dismissModalViewControllerAnimated:YES];
5092 }
5093
5094 - (id) invokeDefaultMethodWithArguments:(NSArray *)args {
5095 [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO];
5096 return nil;
5097 }
5098
5099 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5100 [super webView:view didClearWindowObject:window forFrame:frame];
5101
5102 [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys:
5103 (id) changes_, @"changes",
5104 (id) issues_, @"issues",
5105 (id) sizes_, @"sizes",
5106 self, @"queue",
5107 nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"];
5108 }
5109
5110 - (id) initWithDatabase:(Database *)database {
5111 if ((self = [super init]) != nil) {
5112 database_ = database;
5113
5114 NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]);
5115 NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]);
5116 NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]);
5117 NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]);
5118 NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]);
5119
5120 bool remove(false);
5121
5122 pkgCacheFile &cache([database_ cache]);
5123 NSArray *packages([database_ packages]);
5124 pkgDepCache::Policy *policy([database_ policy]);
5125
5126 issues_ = [NSMutableArray arrayWithCapacity:4];
5127
5128 UpgradeCydia_ = false;
5129
5130 for (Package *package in packages) {
5131 pkgCache::PkgIterator iterator([package iterator]);
5132 NSString *name([package id]);
5133
5134 if ([package broken]) {
5135 NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]);
5136
5137 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5138 name, @"package",
5139 reasons, @"reasons",
5140 nil]];
5141
5142 pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache));
5143 if (ver.end())
5144 continue;
5145
5146 for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) {
5147 pkgCache::DepIterator start;
5148 pkgCache::DepIterator end;
5149 dep.GlobOr(start, end); // ++dep
5150
5151 if (!cache->IsImportantDep(end))
5152 continue;
5153 if ((cache[end] & pkgDepCache::DepGInstall) != 0)
5154 continue;
5155
5156 NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]);
5157
5158 [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5159 [NSString stringWithUTF8String:start.DepType()], @"relationship",
5160 clauses, @"clauses",
5161 nil]];
5162
5163 _forever {
5164 NSString *reason, *installed((NSString *) [WebUndefined undefined]);
5165
5166 pkgCache::PkgIterator target(start.TargetPkg());
5167 if (target->ProvidesList != 0)
5168 reason = @"missing";
5169 else {
5170 pkgCache::VerIterator ver(cache[target].InstVerIter(cache));
5171 if (!ver.end()) {
5172 reason = @"installed";
5173 installed = [NSString stringWithUTF8String:ver.VerStr()];
5174 } else if (!cache[target].CandidateVerIter(cache).end())
5175 reason = @"uninstalled";
5176 else if (target->ProvidesList == 0)
5177 reason = @"uninstallable";
5178 else
5179 reason = @"virtual";
5180 }
5181
5182 NSDictionary *version(start.TargetVer() == 0 ? (NSDictionary *) [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys:
5183 [NSString stringWithUTF8String:start.CompType()], @"operator",
5184 [NSString stringWithUTF8String:start.TargetVer()], @"value",
5185 nil]);
5186
5187 [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5188 [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package",
5189 version, @"version",
5190 reason, @"reason",
5191 installed, @"installed",
5192 nil]];
5193
5194 // yes, seriously. (wtf?)
5195 if (start == end)
5196 break;
5197 ++start;
5198 }
5199 }
5200 }
5201
5202 pkgDepCache::StateCache &state(cache[iterator]);
5203
5204 static RegEx special_r("(firmware|gsc\\..*|cy\\+.*)");
5205
5206 if (state.NewInstall())
5207 [installs addObject:name];
5208 // XXX: else if (state.Install())
5209 else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
5210 [reinstalls addObject:name];
5211 // XXX: move before previous if
5212 else if (state.Upgrade())
5213 [upgrades addObject:name];
5214 else if (state.Downgrade())
5215 [downgrades addObject:name];
5216 else if (!state.Delete())
5217 // XXX: _assert(state.Keep());
5218 continue;
5219 else if (special_r(name))
5220 [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys:
5221 [NSNull null], @"package",
5222 [NSArray arrayWithObjects:
5223 [NSDictionary dictionaryWithObjectsAndKeys:
5224 @"Conflicts", @"relationship",
5225 [NSArray arrayWithObjects:
5226 [NSDictionary dictionaryWithObjectsAndKeys:
5227 name, @"package",
5228 [NSNull null], @"version",
5229 @"installed", @"reason",
5230 nil],
5231 nil], @"clauses",
5232 nil],
5233 nil], @"reasons",
5234 nil]];
5235 else {
5236 if ([package essential])
5237 remove = true;
5238 [removes addObject:name];
5239 }
5240
5241 if ([name isEqualToString:@"cydia"])
5242 UpgradeCydia_ = true;
5243
5244 substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator));
5245 substrate_ |= DepSubstrate(iterator.CurrentVer());
5246 }
5247
5248 if (!remove)
5249 essential_ = nil;
5250 else if (Advanced_) {
5251 NSString *parenthetical(UCLocalize("PARENTHETICAL"));
5252
5253 essential_ = [[[UIAlertView alloc]
5254 initWithTitle:UCLocalize("REMOVING_ESSENTIALS")
5255 message:UCLocalize("REMOVING_ESSENTIALS_EX")
5256 delegate:self
5257 cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")]
5258 otherButtonTitles:
5259 [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")],
5260 nil
5261 ] autorelease];
5262
5263 [essential_ setContext:@"remove"];
5264 [essential_ setNumberOfRows:2];
5265 } else {
5266 essential_ = [[[UIAlertView alloc]
5267 initWithTitle:UCLocalize("UNABLE_TO_COMPLY")
5268 message:UCLocalize("UNABLE_TO_COMPLY_EX")
5269 delegate:self
5270 cancelButtonTitle:UCLocalize("OKAY")
5271 otherButtonTitles:nil
5272 ] autorelease];
5273
5274 [essential_ setContext:@"unable"];
5275 }
5276
5277 changes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5278 installs, @"installs",
5279 reinstalls, @"reinstalls",
5280 upgrades, @"upgrades",
5281 downgrades, @"downgrades",
5282 removes, @"removes",
5283 nil];
5284
5285 sizes_ = [NSDictionary dictionaryWithObjectsAndKeys:
5286 [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading",
5287 [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming",
5288 nil];
5289
5290 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]];
5291 } return self;
5292 }
5293
5294 - (UIBarButtonItem *) leftButton {
5295 return [[[UIBarButtonItem alloc]
5296 initWithTitle:UCLocalize("CANCEL")
5297 style:UIBarButtonItemStylePlain
5298 target:self
5299 action:@selector(cancelButtonClicked)
5300 ] autorelease];
5301 }
5302
5303 #if !AlwaysReload
5304 - (void) applyRightButton {
5305 if ([issues_ count] == 0 && ![self isLoading])
5306 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
5307 initWithTitle:UCLocalize("CONFIRM")
5308 style:UIBarButtonItemStyleDone
5309 target:self
5310 action:@selector(confirmButtonClicked)
5311 ] autorelease]];
5312 else
5313 [[self navigationItem] setRightBarButtonItem:nil];
5314 }
5315 #endif
5316
5317 - (void) cancelButtonClicked {
5318 [delegate_ cancelAndClear:YES];
5319 [self dismissModalViewControllerAnimated:YES];
5320 }
5321
5322 #if !AlwaysReload
5323 - (void) confirmButtonClicked {
5324 if (essential_ != nil)
5325 [essential_ show];
5326 else
5327 [self complete];
5328 }
5329 #endif
5330
5331 @end
5332 /* }}} */
5333
5334 /* Progress Data {{{ */
5335 @interface CydiaProgressData : NSObject {
5336 _transient id delegate_;
5337
5338 bool running_;
5339 float percent_;
5340
5341 float current_;
5342 float total_;
5343 float speed_;
5344
5345 _H<NSMutableArray> events_;
5346 _H<NSString> title_;
5347
5348 _H<NSString> status_;
5349 _H<NSString> finish_;
5350 }
5351
5352 @end
5353
5354 @implementation CydiaProgressData
5355
5356 + (NSArray *) _attributeKeys {
5357 return [NSArray arrayWithObjects:
5358 @"current",
5359 @"events",
5360 @"finish",
5361 @"percent",
5362 @"running",
5363 @"speed",
5364 @"title",
5365 @"total",
5366 nil];
5367 }
5368
5369 - (NSArray *) attributeKeys {
5370 return [[self class] _attributeKeys];
5371 }
5372
5373 + (BOOL) isKeyExcludedFromWebScript:(const char *)name {
5374 return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name];
5375 }
5376
5377 - (id) init {
5378 if ((self = [super init]) != nil) {
5379 events_ = [NSMutableArray arrayWithCapacity:32];
5380 } return self;
5381 }
5382
5383 - (id) delegate {
5384 return delegate_;
5385 }
5386
5387 - (void) setDelegate:(id)delegate {
5388 delegate_ = delegate;
5389 }
5390
5391 - (void) setPercent:(float)value {
5392 percent_ = value;
5393 }
5394
5395 - (NSNumber *) percent {
5396 return [NSNumber numberWithFloat:percent_];
5397 }
5398
5399 - (void) setCurrent:(float)value {
5400 current_ = value;
5401 }
5402
5403 - (NSNumber *) current {
5404 return [NSNumber numberWithFloat:current_];
5405 }
5406
5407 - (void) setTotal:(float)value {
5408 total_ = value;
5409 }
5410
5411 - (NSNumber *) total {
5412 return [NSNumber numberWithFloat:total_];
5413 }
5414
5415 - (void) setSpeed:(float)value {
5416 speed_ = value;
5417 }
5418
5419 - (NSNumber *) speed {
5420 return [NSNumber numberWithFloat:speed_];
5421 }
5422
5423 - (NSArray *) events {
5424 return events_;
5425 }
5426
5427 - (void) removeAllEvents {
5428 [events_ removeAllObjects];
5429 }
5430
5431 - (void) addEvent:(CydiaProgressEvent *)event {
5432 [events_ addObject:event];
5433 }
5434
5435 - (void) setTitle:(NSString *)text {
5436 title_ = text;
5437 }
5438
5439 - (NSString *) title {
5440 return title_;
5441 }
5442
5443 - (void) setFinish:(NSString *)text {
5444 finish_ = text;
5445 }
5446
5447 - (NSString *) finish {
5448 return (id) finish_ ?: [NSNull null];
5449 }
5450
5451 - (void) setRunning:(bool)running {
5452 running_ = running;
5453 }
5454
5455 - (NSNumber *) running {
5456 return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse;
5457 }
5458
5459 @end
5460 /* }}} */
5461 /* Progress Controller {{{ */
5462 @interface ProgressController : CydiaWebViewController <
5463 ProgressDelegate
5464 > {
5465 _transient Database *database_;
5466 _H<CydiaProgressData, 1> progress_;
5467 unsigned cancel_;
5468 }
5469
5470 - (id) initWithDatabase:(Database *)database delegate:(id)delegate;
5471
5472 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title;
5473
5474 - (void) setTitle:(NSString *)title;
5475 - (void) setCancellable:(bool)cancellable;
5476
5477 @end
5478
5479 @implementation ProgressController
5480
5481 - (void) dealloc {
5482 [database_ setProgressDelegate:nil];
5483 [super dealloc];
5484 }
5485
5486 - (UIBarButtonItem *) leftButton {
5487 return cancel_ == 1 ? [[[UIBarButtonItem alloc]
5488 initWithTitle:UCLocalize("CANCEL")
5489 style:UIBarButtonItemStylePlain
5490 target:self
5491 action:@selector(cancel)
5492 ] autorelease] : nil;
5493 }
5494
5495 - (void) updateCancel {
5496 [super applyLeftButton];
5497 }
5498
5499 - (id) initWithDatabase:(Database *)database delegate:(id)delegate {
5500 if ((self = [super init]) != nil) {
5501 database_ = database;
5502 delegate_ = delegate;
5503
5504 [database_ setProgressDelegate:self];
5505
5506 progress_ = [[[CydiaProgressData alloc] init] autorelease];
5507 [progress_ setDelegate:self];
5508
5509 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]];
5510
5511 [scroller_ setBackgroundColor:[UIColor blackColor]];
5512
5513 [[self navigationItem] setHidesBackButton:YES];
5514
5515 [self updateCancel];
5516 } return self;
5517 }
5518
5519 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
5520 [super webView:view didClearWindowObject:window forFrame:frame];
5521 [window setValue:progress_ forKey:@"cydiaProgress"];
5522 }
5523
5524 - (void) updateProgress {
5525 [self dispatchEvent:@"CydiaProgressUpdate"];
5526 }
5527
5528 - (void) viewWillAppear:(BOOL)animated {
5529 [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack];
5530 [super viewWillAppear:animated];
5531 }
5532
5533 - (void) reloadSpringBoard {
5534 if (kCFCoreFoundationVersionNumber >= 700) // XXX: iOS 6.x
5535 system("/bin/launchctl stop com.apple.backboardd");
5536 else
5537 system("/bin/launchctl stop com.apple.SpringBoard");
5538 sleep(15);
5539 system("/usr/bin/killall backboardd SpringBoard");
5540 }
5541
5542 - (void) close {
5543 UpdateExternalStatus(0);
5544
5545 if (Finish_ > 1)
5546 [delegate_ saveState];
5547
5548 switch (Finish_) {
5549 case 0:
5550 [delegate_ returnToCydia];
5551 break;
5552
5553 case 1:
5554 [delegate_ terminateWithSuccess];
5555 /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)])
5556 [delegate_ suspendWithAnimation:YES];
5557 else
5558 [delegate_ suspend];*/
5559 break;
5560
5561 case 2:
5562 _trace();
5563 goto reload;
5564
5565 case 3:
5566 _trace();
5567 goto reload;
5568
5569 reload: {
5570 UIProgressHUD *hud([delegate_ addProgressHUD]);
5571 [hud setText:UCLocalize("LOADING")];
5572 [self performSelector:@selector(reloadSpringBoard) withObject:nil afterDelay:0.5];
5573 return;
5574 }
5575
5576 case 4:
5577 _trace();
5578 if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot")))
5579 SBReboot(SBSSpringBoardServerPort());
5580 else
5581 reboot2(RB_AUTOBOOT);
5582 break;
5583 }
5584
5585 [super close];
5586 }
5587
5588 - (void) setTitle:(NSString *)title {
5589 [progress_ setTitle:title];
5590 [self updateProgress];
5591 }
5592
5593 - (UIBarButtonItem *) rightButton {
5594 return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc]
5595 initWithTitle:UCLocalize("CLOSE")
5596 style:UIBarButtonItemStylePlain
5597 target:self
5598 action:@selector(close)
5599 ] autorelease];
5600 }
5601
5602 - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title {
5603 UpdateExternalStatus(1);
5604
5605 [progress_ setRunning:true];
5606 [self setTitle:title];
5607 // implicit updateProgress
5608
5609 SHA1SumValue notifyconf; {
5610 FileFd file;
5611 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5612 _error->Discard();
5613 else {
5614 MMap mmap(file, MMap::ReadOnly);
5615 SHA1Summation sha1;
5616 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5617 notifyconf = sha1.Result();
5618 }
5619 }
5620
5621 SHA1SumValue springlist; {
5622 FileFd file;
5623 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5624 _error->Discard();
5625 else {
5626 MMap mmap(file, MMap::ReadOnly);
5627 SHA1Summation sha1;
5628 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5629 springlist = sha1.Result();
5630 }
5631 }
5632
5633 if (invocation != nil) {
5634 [invocation yieldToSelector:@selector(invoke)];
5635 [self setTitle:@"COMPLETE"];
5636 }
5637
5638 if (Finish_ < 4) {
5639 FileFd file;
5640 if (!file.Open(NotifyConfig_, FileFd::ReadOnly))
5641 _error->Discard();
5642 else {
5643 MMap mmap(file, MMap::ReadOnly);
5644 SHA1Summation sha1;
5645 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5646 if (!(notifyconf == sha1.Result()))
5647 Finish_ = 4;
5648 }
5649 }
5650
5651 if (Finish_ < 3) {
5652 FileFd file;
5653 if (!file.Open(SpringBoard_, FileFd::ReadOnly))
5654 _error->Discard();
5655 else {
5656 MMap mmap(file, MMap::ReadOnly);
5657 SHA1Summation sha1;
5658 sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size());
5659 if (!(springlist == sha1.Result()))
5660 Finish_ = 3;
5661 }
5662 }
5663
5664 if (Finish_ < 2) {
5665 if (RestartSubstrate_)
5666 Finish_ = 2;
5667 }
5668
5669 RestartSubstrate_ = false;
5670
5671 switch (Finish_) {
5672 case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */
5673 case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break;
5674 case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break;
5675 case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break;
5676 case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break;
5677 }
5678
5679 UpdateExternalStatus(Finish_ == 0 ? 0 : 2);
5680
5681 [progress_ setRunning:false];
5682 [self updateProgress];
5683
5684 [self applyRightButton];
5685 }
5686
5687 - (void) addProgressEvent:(CydiaProgressEvent *)event {
5688 [progress_ addEvent:event];
5689 [self updateProgress];
5690 }
5691
5692 - (bool) isProgressCancelled {
5693 return cancel_ == 2;
5694 }
5695
5696 - (void) cancel {
5697 cancel_ = 2;
5698 [self updateCancel];
5699 }
5700
5701 - (void) setCancellable:(bool)cancellable {
5702 unsigned cancel(cancel_);
5703
5704 if (!cancellable)
5705 cancel_ = 0;
5706 else if (cancel_ == 0)
5707 cancel_ = 1;
5708
5709 if (cancel != cancel_)
5710 [self updateCancel];
5711 }
5712
5713 - (void) setProgressCancellable:(NSNumber *)cancellable {
5714 [self setCancellable:[cancellable boolValue]];
5715 }
5716
5717 - (void) setProgressPercent:(NSNumber *)percent {
5718 [progress_ setPercent:[percent floatValue]];
5719 [self updateProgress];
5720 }
5721
5722 - (void) setProgressStatus:(NSDictionary *)status {
5723 if (status == nil) {
5724 [progress_ setCurrent:0];
5725 [progress_ setTotal:0];
5726 [progress_ setSpeed:0];
5727 } else {
5728 [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]];
5729
5730 [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]];
5731 [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]];
5732 [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]];
5733 }
5734
5735 [self updateProgress];
5736 }
5737
5738 @end
5739 /* }}} */
5740
5741 /* Package Cell {{{ */
5742 @interface PackageCell : CyteTableViewCell <
5743 CyteTableViewCellDelegate
5744 > {
5745 _H<UIImage> icon_;
5746 _H<NSString> name_;
5747 _H<NSString> description_;
5748 bool commercial_;
5749 _H<NSString> source_;
5750 _H<UIImage> badge_;
5751 _H<UIImage> placard_;
5752 bool summarized_;
5753 }
5754
5755 - (PackageCell *) init;
5756 - (void) setPackage:(Package *)package asSummary:(bool)summary;
5757
5758 - (void) drawContentRect:(CGRect)rect;
5759
5760 @end
5761
5762 @implementation PackageCell
5763
5764 - (PackageCell *) init {
5765 CGRect frame(CGRectMake(0, 0, 320, 74));
5766 if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) {
5767 UIView *content([self contentView]);
5768 CGRect bounds([content bounds]);
5769
5770 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5771 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5772 [content addSubview:content_];
5773
5774 [content_ setDelegate:self];
5775 [content_ setOpaque:YES];
5776 } return self;
5777 }
5778
5779 - (NSString *) accessibilityLabel {
5780 return name_;
5781 }
5782
5783 - (void) setPackage:(Package *)package asSummary:(bool)summary {
5784 summarized_ = summary;
5785
5786 icon_ = nil;
5787 name_ = nil;
5788 description_ = nil;
5789 source_ = nil;
5790 badge_ = nil;
5791 placard_ = nil;
5792
5793 if (package == nil)
5794 [content_ setBackgroundColor:[UIColor whiteColor]];
5795 else {
5796 [package parse];
5797
5798 Source *source = [package source];
5799
5800 icon_ = [package icon];
5801
5802 if (NSString *name = [package name])
5803 name_ = [NSString stringWithString:name];
5804
5805 if (NSString *description = [package shortDescription])
5806 description_ = [NSString stringWithString:description];
5807
5808 commercial_ = [package isCommercial];
5809
5810 NSString *label = nil;
5811 bool trusted = false;
5812
5813 if (source != nil) {
5814 label = [source label];
5815 trusted = [source trusted];
5816 } else if ([[package id] isEqualToString:@"firmware"])
5817 label = UCLocalize("APPLE");
5818 else
5819 label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")];
5820
5821 NSString *from(label);
5822
5823 NSString *section = [package simpleSection];
5824 if (section != nil && ![section isEqualToString:label]) {
5825 section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"];
5826 from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section];
5827 }
5828
5829 source_ = [NSString stringWithFormat:UCLocalize("FROM"), from];
5830
5831 if (NSString *purpose = [package primaryPurpose])
5832 badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]];
5833
5834 UIColor *color;
5835 NSString *placard;
5836
5837 if (NSString *mode = [package mode]) {
5838 if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) {
5839 color = RemovingColor_;
5840 placard = @"removing";
5841 } else {
5842 color = InstallingColor_;
5843 placard = @"installing";
5844 }
5845 } else {
5846 color = [UIColor whiteColor];
5847
5848 if ([package installed] != nil)
5849 placard = @"installed";
5850 else
5851 placard = nil;
5852 }
5853
5854 [content_ setBackgroundColor:color];
5855
5856 if (placard != nil)
5857 placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]];
5858 }
5859
5860 [self setNeedsDisplay];
5861 [content_ setNeedsDisplay];
5862 }
5863
5864 - (void) drawSummaryContentRect:(CGRect)rect {
5865 bool highlighted(highlighted_);
5866 float width([self bounds].size.width);
5867
5868 if (icon_ != nil) {
5869 CGRect rect;
5870 rect.size = [(UIImage *) icon_ size];
5871
5872 while (rect.size.width > 16 || rect.size.height > 16) {
5873 rect.size.width /= 2;
5874 rect.size.height /= 2;
5875 }
5876
5877 rect.origin.x = 19 - rect.size.width / 2;
5878 rect.origin.y = 19 - rect.size.height / 2;
5879
5880 [icon_ drawInRect:Retina(rect)];
5881 }
5882
5883 if (badge_ != nil) {
5884 CGRect rect;
5885 rect.size = [(UIImage *) badge_ size];
5886
5887 rect.size.width /= 4;
5888 rect.size.height /= 4;
5889
5890 rect.origin.x = 25 - rect.size.width / 2;
5891 rect.origin.y = 25 - rect.size.height / 2;
5892
5893 [badge_ drawInRect:Retina(rect)];
5894 }
5895
5896 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5897 UISetColor(White_);
5898
5899 if (!highlighted)
5900 UISetColor(commercial_ ? Purple_ : Black_);
5901 [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5902
5903 if (placard_ != nil)
5904 [placard_ drawAtPoint:CGPointMake(width - 52, 11)];
5905 }
5906
5907 - (void) drawNormalContentRect:(CGRect)rect {
5908 bool highlighted(highlighted_);
5909 float width([self bounds].size.width);
5910
5911 if (icon_ != nil) {
5912 CGRect rect;
5913 rect.size = [(UIImage *) icon_ size];
5914
5915 while (rect.size.width > 32 || rect.size.height > 32) {
5916 rect.size.width /= 2;
5917 rect.size.height /= 2;
5918 }
5919
5920 rect.origin.x = 25 - rect.size.width / 2;
5921 rect.origin.y = 25 - rect.size.height / 2;
5922
5923 [icon_ drawInRect:Retina(rect)];
5924 }
5925
5926 if (badge_ != nil) {
5927 CGRect rect;
5928 rect.size = [(UIImage *) badge_ size];
5929
5930 rect.size.width /= 2;
5931 rect.size.height /= 2;
5932
5933 rect.origin.x = 36 - rect.size.width / 2;
5934 rect.origin.y = 36 - rect.size.height / 2;
5935
5936 [badge_ drawInRect:Retina(rect)];
5937 }
5938
5939 if (highlighted && kCFCoreFoundationVersionNumber < 800)
5940 UISetColor(White_);
5941
5942 if (!highlighted)
5943 UISetColor(commercial_ ? Purple_ : Black_);
5944 [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
5945 [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
5946
5947 if (!highlighted)
5948 UISetColor(commercial_ ? Purplish_ : Gray_);
5949 [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:NSLineBreakByTruncatingTail];
5950
5951 if (placard_ != nil)
5952 [placard_ drawAtPoint:CGPointMake(width - 52, 9)];
5953 }
5954
5955 - (void) drawContentRect:(CGRect)rect {
5956 if (summarized_)
5957 [self drawSummaryContentRect:rect];
5958 else
5959 [self drawNormalContentRect:rect];
5960 }
5961
5962 @end
5963 /* }}} */
5964 /* Section Cell {{{ */
5965 @interface SectionCell : CyteTableViewCell <
5966 CyteTableViewCellDelegate
5967 > {
5968 _H<NSString> basic_;
5969 _H<NSString> section_;
5970 _H<NSString> name_;
5971 _H<NSString> count_;
5972 _H<UIImage> icon_;
5973 _H<UISwitch> switch_;
5974 BOOL editing_;
5975 }
5976
5977 - (void) setSection:(Section *)section editing:(BOOL)editing;
5978
5979 @end
5980
5981 @implementation SectionCell
5982
5983 - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
5984 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
5985 icon_ = [UIImage imageNamed:@"folder.png"];
5986 // XXX: this initial frame is wrong, but is fixed later
5987 switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease];
5988 [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged];
5989
5990 UIView *content([self contentView]);
5991 CGRect bounds([content bounds]);
5992
5993 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
5994 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
5995 [content addSubview:content_];
5996 [content_ setBackgroundColor:[UIColor whiteColor]];
5997
5998 [content_ setDelegate:self];
5999 } return self;
6000 }
6001
6002 - (void) onSwitch:(id)sender {
6003 NSMutableDictionary *metadata([Sections_ objectForKey:basic_]);
6004 if (metadata == nil) {
6005 metadata = [NSMutableDictionary dictionaryWithCapacity:2];
6006 [Sections_ setObject:metadata forKey:basic_];
6007 }
6008
6009 [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"];
6010 }
6011
6012 - (void) setSection:(Section *)section editing:(BOOL)editing {
6013 if (editing != editing_) {
6014 if (editing_)
6015 [switch_ removeFromSuperview];
6016 else
6017 [self addSubview:switch_];
6018 editing_ = editing;
6019 }
6020
6021 basic_ = nil;
6022 section_ = nil;
6023 name_ = nil;
6024 count_ = nil;
6025
6026 if (section == nil) {
6027 name_ = UCLocalize("ALL_PACKAGES");
6028 count_ = nil;
6029 } else {
6030 basic_ = [section name];
6031 section_ = [section localized];
6032
6033 name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_;
6034 count_ = [NSString stringWithFormat:@"%zd", [section count]];
6035
6036 if (editing_)
6037 [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO];
6038 }
6039
6040 [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator];
6041 [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue];
6042
6043 [content_ setNeedsDisplay];
6044 }
6045
6046 - (void) setFrame:(CGRect)frame {
6047 [super setFrame:frame];
6048
6049 CGRect rect([switch_ frame]);
6050 [switch_ setFrame:CGRectMake(frame.size.width - rect.size.width - 9, 9, rect.size.width, rect.size.height)];
6051 }
6052
6053 - (NSString *) accessibilityLabel {
6054 return name_;
6055 }
6056
6057 - (void) drawContentRect:(CGRect)rect {
6058 bool highlighted(highlighted_ && !editing_);
6059
6060 [icon_ drawInRect:CGRectMake(7, 7, 32, 32)];
6061
6062 if (highlighted && kCFCoreFoundationVersionNumber < 800)
6063 UISetColor(White_);
6064
6065 float width(rect.size.width);
6066 if (editing_)
6067 width -= 9 + [switch_ frame].size.width;
6068
6069 if (!highlighted)
6070 UISetColor(Black_);
6071 [name_ drawAtPoint:CGPointMake(48, 12) forWidth:(width - 58) withFont:Font18_ lineBreakMode:NSLineBreakByTruncatingTail];
6072
6073 CGSize size = [count_ sizeWithFont:Font14_];
6074
6075 UISetColor(Folder_);
6076 if (count_ != nil)
6077 [count_ drawAtPoint:CGPointMake(Retina(10 + (30 - size.width) / 2), 18) withFont:Font12Bold_];
6078 }
6079
6080 @end
6081 /* }}} */
6082
6083 /* File Table {{{ */
6084 @interface FileTable : CyteViewController <
6085 UITableViewDataSource,
6086 UITableViewDelegate
6087 > {
6088 _transient Database *database_;
6089 _H<Package> package_;
6090 _H<NSString> name_;
6091 _H<NSMutableArray> files_;
6092 _H<UITableView, 2> list_;
6093 }
6094
6095 - (id) initWithDatabase:(Database *)database;
6096 - (void) setPackage:(Package *)package;
6097
6098 @end
6099
6100 @implementation FileTable
6101
6102 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6103 return files_ == nil ? 0 : [files_ count];
6104 }
6105
6106 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
6107 return 24.0f;
6108 }*/
6109
6110 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6111 static NSString *reuseIdentifier = @"Cell";
6112
6113 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
6114 if (cell == nil) {
6115 cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
6116 [cell setFont:[UIFont systemFontOfSize:16]];
6117 }
6118 [cell setText:[files_ objectAtIndex:indexPath.row]];
6119 [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
6120
6121 return cell;
6122 }
6123
6124 - (NSURL *) navigationURL {
6125 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]];
6126 }
6127
6128 - (void) loadView {
6129 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
6130 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6131 [list_ setRowHeight:24.0f];
6132 [(UITableView *) list_ setDataSource:self];
6133 [list_ setDelegate:self];
6134 [self setView:list_];
6135 }
6136
6137 - (void) viewDidLoad {
6138 [super viewDidLoad];
6139
6140 [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")];
6141 }
6142
6143 - (void) releaseSubviews {
6144 list_ = nil;
6145
6146 package_ = nil;
6147 files_ = nil;
6148
6149 [super releaseSubviews];
6150 }
6151
6152 - (id) initWithDatabase:(Database *)database {
6153 if ((self = [super init]) != nil) {
6154 database_ = database;
6155 } return self;
6156 }
6157
6158 - (void) setPackage:(Package *)package {
6159 package_ = nil;
6160 name_ = nil;
6161
6162 files_ = [NSMutableArray arrayWithCapacity:32];
6163
6164 if (package != nil) {
6165 package_ = package;
6166 name_ = [package id];
6167
6168 if (NSArray *files = [package files])
6169 [files_ addObjectsFromArray:files];
6170
6171 if ([files_ count] != 0) {
6172 if ([[files_ objectAtIndex:0] isEqualToString:@"/."])
6173 [files_ removeObjectAtIndex:0];
6174 [files_ sortUsingSelector:@selector(compareByPath:)];
6175
6176 NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8];
6177 [stack addObject:@"/"];
6178
6179 for (int i(0), e([files_ count]); i != e; ++i) {
6180 NSString *file = [files_ objectAtIndex:i];
6181 while (![file hasPrefix:[stack lastObject]])
6182 [stack removeLastObject];
6183 NSString *directory = [stack lastObject];
6184 [stack addObject:[file stringByAppendingString:@"/"]];
6185 [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@",
6186 ([stack count] - 2) * 3, "",
6187 [file substringFromIndex:[directory length]]
6188 ]];
6189 }
6190 }
6191 }
6192
6193 [list_ reloadData];
6194 }
6195
6196 - (void) reloadData {
6197 [super reloadData];
6198
6199 [self setPackage:[database_ packageWithName:name_]];
6200 }
6201
6202 @end
6203 /* }}} */
6204 /* Package Controller {{{ */
6205 @interface CYPackageController : CydiaWebViewController <
6206 UIActionSheetDelegate
6207 > {
6208 _transient Database *database_;
6209 _H<Package> package_;
6210 _H<NSString> name_;
6211 bool commercial_;
6212 std::vector<std::pair<_H<NSString>, _H<NSString>>> buttons_;
6213 _H<UIBarButtonItem> button_;
6214 }
6215
6216 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer;
6217
6218 @end
6219
6220 @implementation CYPackageController
6221
6222 - (NSURL *) navigationURL {
6223 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]];
6224 }
6225
6226 - (void) _clickButtonWithName:(NSString *)name {
6227 if ([name isEqualToString:@"CLEAR"])
6228 [delegate_ clearPackage:package_];
6229 else if ([name isEqualToString:@"INSTALL"])
6230 [delegate_ installPackage:package_];
6231 else if ([name isEqualToString:@"REINSTALL"])
6232 [delegate_ installPackage:package_];
6233 else if ([name isEqualToString:@"REMOVE"])
6234 [delegate_ removePackage:package_];
6235 else if ([name isEqualToString:@"UPGRADE"])
6236 [delegate_ installPackage:package_];
6237 else _assert(false);
6238 }
6239
6240 - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button {
6241 NSString *context([sheet context]);
6242
6243 if ([context isEqualToString:@"modify"]) {
6244 if (button != [sheet cancelButtonIndex]) {
6245 if (IsWildcat_)
6246 [self performSelector:@selector(_clickButtonWithName:) withObject:buttons_[button].first afterDelay:0];
6247 else
6248 [self _clickButtonWithName:buttons_[button].first];
6249 }
6250
6251 [sheet dismissWithClickedButtonIndex:button animated:YES];
6252 }
6253 }
6254
6255 - (bool) _allowJavaScriptPanel {
6256 return commercial_;
6257 }
6258
6259 #if !AlwaysReload
6260 - (void) _customButtonClicked {
6261 size_t count(buttons_.size());
6262 if (count == 0)
6263 return;
6264
6265 if (count == 1)
6266 [self _clickButtonWithName:buttons_[0].first];
6267 else {
6268 NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count];
6269 for (const auto &button : buttons_)
6270 [buttons addObject:button.second];
6271
6272 UIActionSheet *sheet = [[[UIActionSheet alloc]
6273 initWithTitle:nil
6274 delegate:self
6275 cancelButtonTitle:nil
6276 destructiveButtonTitle:nil
6277 otherButtonTitles:nil
6278 ] autorelease];
6279
6280 for (NSString *button in buttons) [sheet addButtonWithTitle:button];
6281 if (!IsWildcat_) {
6282 [sheet addButtonWithTitle:UCLocalize("CANCEL")];
6283 [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1];
6284 }
6285 [sheet setContext:@"modify"];
6286
6287 [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]];
6288 }
6289 }
6290
6291 - (void) reloadButtonClicked {
6292 if (commercial_ && function_ == nil && [package_ uninstalled])
6293 return;
6294 [self customButtonClicked];
6295 }
6296
6297 - (void) applyLoadingTitle {
6298 // Don't show "Loading" as the title. Ever.
6299 }
6300
6301 - (UIBarButtonItem *) rightButton {
6302 return button_;
6303 }
6304 #endif
6305
6306 - (void) setPageColor:(UIColor *)color {
6307 return [super setPageColor:nil];
6308 }
6309
6310 - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer {
6311 if ((self = [super init]) != nil) {
6312 database_ = database;
6313 name_ = name == nil ? @"" : [NSString stringWithString:name];
6314 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]] withReferrer:referrer];
6315 } return self;
6316 }
6317
6318 - (void) reloadData {
6319 [super reloadData];
6320
6321 package_ = [database_ packageWithName:name_];
6322
6323 buttons_.clear();
6324
6325 if (package_ != nil) {
6326 [(Package *) package_ parse];
6327
6328 commercial_ = [package_ isCommercial];
6329
6330 if ([package_ mode] != nil)
6331 buttons_.push_back(std::make_pair(@"CLEAR", UCLocalize("CLEAR")));
6332 if ([package_ source] == nil);
6333 else if ([package_ upgradableAndEssential:NO])
6334 buttons_.push_back(std::make_pair(@"UPGRADE", UCLocalize("UPGRADE")));
6335 else if ([package_ uninstalled])
6336 buttons_.push_back(std::make_pair(@"INSTALL", UCLocalize("INSTALL")));
6337 else
6338 buttons_.push_back(std::make_pair(@"REINSTALL", UCLocalize("REINSTALL")));
6339 if (![package_ uninstalled])
6340 buttons_.push_back(std::make_pair(@"REMOVE", UCLocalize("REMOVE")));
6341 }
6342
6343 NSString *title;
6344 switch (buttons_.size()) {
6345 case 0: title = nil; break;
6346 case 1: title = buttons_[0].second; break;
6347 default: title = UCLocalize("MODIFY"); break;
6348 }
6349
6350 button_ = [[[UIBarButtonItem alloc]
6351 initWithTitle:title
6352 style:UIBarButtonItemStylePlain
6353 target:self
6354 action:@selector(customButtonClicked)
6355 ] autorelease];
6356 }
6357
6358 - (bool) isLoading {
6359 return commercial_ ? [super isLoading] : false;
6360 }
6361
6362 @end
6363 /* }}} */
6364
6365 /* Package List Controller {{{ */
6366 @interface PackageListController : CyteViewController <
6367 UITableViewDataSource,
6368 UITableViewDelegate
6369 > {
6370 _transient Database *database_;
6371 unsigned era_;
6372 _H<NSArray> packages_;
6373 _H<NSArray> sections_;
6374 _H<UITableView, 2> list_;
6375
6376 _H<NSArray> thumbs_;
6377 std::vector<NSInteger> offset_;
6378
6379 _H<NSString> title_;
6380 unsigned reloading_;
6381 }
6382
6383 - (id) initWithDatabase:(Database *)database title:(NSString *)title;
6384 - (void) setDelegate:(id)delegate;
6385 - (void) resetCursor;
6386 - (void) clearData;
6387
6388 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages;
6389
6390 @end
6391
6392 @implementation PackageListController
6393
6394 - (NSURL *) referrerURL {
6395 return [self navigationURL];
6396 }
6397
6398 - (bool) isSummarized {
6399 return false;
6400 }
6401
6402 - (bool) showsSections {
6403 return true;
6404 }
6405
6406 - (void) deselectWithAnimation:(BOOL)animated {
6407 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
6408 }
6409
6410 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve {
6411 CGRect base = [[self view] bounds];
6412 base.size.height -= bounds.size.height;
6413 base.origin = [list_ frame].origin;
6414
6415 [UIView beginAnimations:nil context:NULL];
6416 [UIView setAnimationBeginsFromCurrentState:YES];
6417 [UIView setAnimationCurve:curve];
6418 [UIView setAnimationDuration:duration];
6419 [list_ setFrame:base];
6420 [UIView commitAnimations];
6421 }
6422
6423 - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration {
6424 [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear];
6425 }
6426
6427 - (void) resizeForKeyboardBounds:(CGRect)bounds {
6428 [self resizeForKeyboardBounds:bounds duration:0];
6429 }
6430
6431 - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification {
6432 if (&UIKeyboardAnimationCurveUserInfoKey == NULL)
6433 *curve = UIViewAnimationCurveEaseInOut;
6434 else
6435 [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve];
6436
6437 if (&UIKeyboardAnimationDurationUserInfoKey == NULL)
6438 *duration = 0.3;
6439 else
6440 [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration];
6441 }
6442
6443 - (void) keyboardWillShow:(NSNotification *)notification {
6444 CGRect bounds;
6445 CGPoint center;
6446 [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds];
6447 [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:&center];
6448
6449 NSTimeInterval duration;
6450 UIViewAnimationCurve curve;
6451 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6452
6453 CGRect kbframe = CGRectMake(Retina(center.x - bounds.size.width / 2), Retina(center.y - bounds.size.height / 2), bounds.size.width, bounds.size.height);
6454 UIViewController *base = self;
6455 while ([base parentOrPresentingViewController] != nil)
6456 base = [base parentOrPresentingViewController];
6457 CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]];
6458 CGRect intersection = CGRectIntersection(viewframe, kbframe);
6459
6460 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4)
6461 intersection.size.height += CYStatusBarHeight();
6462
6463 [self resizeForKeyboardBounds:intersection duration:duration curve:curve];
6464 }
6465
6466 - (void) keyboardWillHide:(NSNotification *)notification {
6467 NSTimeInterval duration;
6468 UIViewAnimationCurve curve;
6469 [self getKeyboardCurve:&curve duration:&duration forNotification:notification];
6470
6471 [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve];
6472 }
6473
6474 - (void) viewWillAppear:(BOOL)animated {
6475 [super viewWillAppear:animated];
6476
6477 [self resizeForKeyboardBounds:CGRectZero];
6478 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
6479 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
6480 }
6481
6482 - (void) viewWillDisappear:(BOOL)animated {
6483 [super viewWillDisappear:animated];
6484
6485 [self resizeForKeyboardBounds:CGRectZero];
6486 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
6487 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
6488 }
6489
6490 - (void) viewDidAppear:(BOOL)animated {
6491 [super viewDidAppear:animated];
6492 [self deselectWithAnimation:animated];
6493 }
6494
6495 - (void) didSelectPackage:(Package *)package {
6496 CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id] withReferrer:[[self referrerURL] absoluteString]] autorelease]);
6497 [view setDelegate:delegate_];
6498 [[self navigationController] pushViewController:view animated:YES];
6499 }
6500
6501 - (NSInteger) numberOfSectionsInTableView:(UITableView *)list {
6502 NSInteger count([sections_ count]);
6503 return count == 0 ? 1 : count;
6504 }
6505
6506 - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section {
6507 if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0)
6508 return nil;
6509 return [[sections_ objectAtIndex:section] name];
6510 }
6511
6512 - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section {
6513 if ([sections_ count] == 0)
6514 return 0;
6515 return [[sections_ objectAtIndex:section] count];
6516 }
6517
6518 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
6519 @synchronized (database_) {
6520 if ([database_ era] != era_)
6521 return nil;
6522
6523 Section *section([sections_ objectAtIndex:[path section]]);
6524 NSInteger row([path row]);
6525 Package *package([packages_ objectAtIndex:([section row] + row)]);
6526 return [[package retain] autorelease];
6527 } }
6528
6529 - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path {
6530 PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]);
6531 if (cell == nil)
6532 cell = [[[PackageCell alloc] init] autorelease];
6533
6534 Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]);
6535 [cell setPackage:package asSummary:[self isSummarized]];
6536 return cell;
6537 }
6538
6539 - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path {
6540 Package *package([self packageAtIndexPath:path]);
6541 package = [database_ packageWithName:[package id]];
6542 [self didSelectPackage:package];
6543 }
6544
6545 - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView {
6546 return thumbs_;
6547 }
6548
6549 - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
6550 return offset_[index];
6551 }
6552
6553 - (void) updateHeight {
6554 [list_ setRowHeight:([self isSummarized] ? 38 : 73)];
6555 }
6556
6557 - (id) initWithDatabase:(Database *)database title:(NSString *)title {
6558 if ((self = [super init]) != nil) {
6559 database_ = database;
6560 title_ = [title copy];
6561 [[self navigationItem] setTitle:title_];
6562 } return self;
6563 }
6564
6565 - (void) loadView {
6566 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
6567 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
6568 [self setView:view];
6569
6570 list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease];
6571 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6572 [view addSubview:list_];
6573
6574 // XXX: is 20 the most optimal number here?
6575 [list_ setSectionIndexMinimumDisplayRowCount:20];
6576
6577 [(UITableView *) list_ setDataSource:self];
6578 [list_ setDelegate:self];
6579
6580 [self updateHeight];
6581 }
6582
6583 - (void) releaseSubviews {
6584 list_ = nil;
6585
6586 packages_ = nil;
6587 sections_ = nil;
6588
6589 thumbs_ = nil;
6590 offset_.clear();
6591
6592 [super releaseSubviews];
6593 }
6594
6595 - (void) setDelegate:(id)delegate {
6596 delegate_ = delegate;
6597 }
6598
6599 - (bool) shouldYield {
6600 return false;
6601 }
6602
6603 - (bool) shouldBlock {
6604 return false;
6605 }
6606
6607 - (NSMutableArray *) _reloadPackages {
6608 @synchronized (database_) {
6609 era_ = [database_ era];
6610 NSArray *packages([database_ packages]);
6611
6612 return [NSMutableArray arrayWithArray:packages];
6613 } }
6614
6615 - (void) _reloadData {
6616 if (reloading_ != 0) {
6617 reloading_ = 2;
6618 return;
6619 }
6620
6621 NSMutableArray *packages;
6622
6623 reload:
6624 if ([self shouldYield]) {
6625 do {
6626 UIProgressHUD *hud;
6627
6628 if (![self shouldBlock])
6629 hud = nil;
6630 else {
6631 hud = [delegate_ addProgressHUD];
6632 [hud setText:UCLocalize("LOADING")];
6633 }
6634
6635 reloading_ = 1;
6636 packages = [self yieldToSelector:@selector(_reloadPackages)];
6637
6638 if (hud != nil)
6639 [delegate_ removeProgressHUD:hud];
6640 } while (reloading_ == 2);
6641 } else {
6642 packages = [self _reloadPackages];
6643 }
6644
6645 @synchronized (database_) {
6646 if (era_ != [database_ era])
6647 goto reload;
6648 reloading_ = 0;
6649
6650 thumbs_ = nil;
6651 offset_.clear();
6652
6653 packages_ = packages;
6654
6655 if ([self showsSections])
6656 sections_ = [self sectionsForPackages:packages];
6657 else {
6658 Section *section([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6659 [section setCount:[packages_ count]];
6660 sections_ = [NSArray arrayWithObject:section];
6661 }
6662
6663 [self updateHeight];
6664
6665 _profile(PackageTable$reloadData$List)
6666 [(UITableView *) list_ setDataSource:self];
6667 [list_ reloadData];
6668 _end
6669 }
6670
6671 PrintTimes();
6672 }
6673
6674 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
6675 Section *prefix([[[Section alloc] initWithName:nil row:0 localize:NO] autorelease]);
6676 size_t end([packages count]);
6677
6678 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
6679 Section *section(prefix);
6680
6681 thumbs_ = CollationThumbs_;
6682 offset_ = CollationOffset_;
6683
6684 size_t offset(0);
6685 size_t offsets([CollationStarts_ count]);
6686
6687 NSString *start([CollationStarts_ objectAtIndex:offset]);
6688 size_t length([start length]);
6689
6690 for (size_t index(0); index != end; ++index) {
6691 if (start != nil) {
6692 Package *package([packages objectAtIndex:index]);
6693 NSString *name(PackageName(package, @selector(cyname)));
6694
6695 //while ([start compare:name options:NSNumericSearch range:NSMakeRange(0, length) locale:CollationLocale_] != NSOrderedDescending) {
6696 while (StringNameCompare(start, name, length) != kCFCompareGreaterThan) {
6697 NSString *title([CollationTitles_ objectAtIndex:offset]);
6698 section = [[[Section alloc] initWithName:title row:index localize:NO] autorelease];
6699 [sections addObject:section];
6700
6701 start = ++offset == offsets ? nil : [CollationStarts_ objectAtIndex:offset];
6702 if (start == nil)
6703 break;
6704 length = [start length];
6705 }
6706 }
6707
6708 [section addToCount];
6709 }
6710
6711 for (; offset != offsets; ++offset) {
6712 NSString *title([CollationTitles_ objectAtIndex:offset]);
6713 Section *section([[[Section alloc] initWithName:title row:end localize:NO] autorelease]);
6714 [sections addObject:section];
6715 }
6716
6717 if ([prefix count] != 0) {
6718 Section *suffix([sections lastObject]);
6719 [prefix setName:[suffix name]];
6720 [suffix setName:nil];
6721 [sections insertObject:prefix atIndex:(offsets - 1)];
6722 }
6723
6724 return sections;
6725 }
6726
6727 - (void) reloadData {
6728 [super reloadData];
6729
6730 if ([self shouldYield])
6731 [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0];
6732 else
6733 [self _reloadData];
6734 }
6735
6736 - (void) resetCursor {
6737 [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
6738 }
6739
6740 - (void) clearData {
6741 [self updateHeight];
6742
6743 [list_ setDataSource:nil];
6744 [list_ reloadData];
6745
6746 [self resetCursor];
6747 }
6748
6749 @end
6750 /* }}} */
6751 /* Filtered Package List Controller {{{ */
6752 typedef Function<bool, Package *> PackageFilter;
6753 typedef Function<void, NSMutableArray *> PackageSorter;
6754 @interface FilteredPackageListController : PackageListController {
6755 PackageFilter filter_;
6756 PackageSorter sorter_;
6757 }
6758
6759 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter;
6760
6761 - (void) setFilter:(PackageFilter)filter;
6762 - (void) setSorter:(PackageSorter)sorter;
6763
6764 @end
6765
6766 @implementation FilteredPackageListController
6767
6768 - (void) setFilter:(PackageFilter)filter {
6769 @synchronized (self) {
6770 filter_ = filter;
6771 } }
6772
6773 - (void) setSorter:(PackageSorter)sorter {
6774 @synchronized (self) {
6775 sorter_ = sorter;
6776 } }
6777
6778 - (NSMutableArray *) _reloadPackages {
6779 @synchronized (database_) {
6780 era_ = [database_ era];
6781
6782 NSArray *packages([database_ packages]);
6783 NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]);
6784
6785 PackageFilter filter;
6786 PackageSorter sorter;
6787
6788 @synchronized (self) {
6789 filter = filter_;
6790 sorter = sorter_;
6791 }
6792
6793 _profile(PackageTable$reloadData$Filter)
6794 for (Package *package in packages)
6795 if ([package valid] && filter(package))
6796 [filtered addObject:package];
6797 _end
6798
6799 if (sorter)
6800 sorter(filtered);
6801 return filtered;
6802 } }
6803
6804 - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(PackageFilter)filter {
6805 if ((self = [super initWithDatabase:database title:title]) != nil) {
6806 [self setFilter:filter];
6807 } return self;
6808 }
6809
6810 @end
6811 /* }}} */
6812
6813 /* Home Controller {{{ */
6814 @interface HomeController : CydiaWebViewController {
6815 CFRunLoopRef runloop_;
6816 SCNetworkReachabilityRef reachability_;
6817 }
6818
6819 @end
6820
6821 @implementation HomeController
6822
6823 static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachability, SCNetworkReachabilityFlags flags, void *info) {
6824 [(HomeController *) info dispatchEvent:@"CydiaReachabilityCallback"];
6825 }
6826
6827 - (id) init {
6828 if ((self = [super init]) != nil) {
6829 [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]];
6830 [self reloadData];
6831
6832 reachability_ = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "cydia.saurik.com");
6833 if (reachability_ != NULL) {
6834 SCNetworkReachabilityContext context = {0, self, NULL, NULL, NULL};
6835 SCNetworkReachabilitySetCallback(reachability_, HomeControllerReachabilityCallback, &context);
6836
6837 CFRunLoopRef runloop(CFRunLoopGetCurrent());
6838 if (SCNetworkReachabilityScheduleWithRunLoop(reachability_, runloop, kCFRunLoopDefaultMode))
6839 runloop_ = runloop;
6840 }
6841 } return self;
6842 }
6843
6844 - (void) dealloc {
6845 if (reachability_ != NULL && runloop_ != NULL)
6846 SCNetworkReachabilityUnscheduleFromRunLoop(reachability_, runloop_, kCFRunLoopDefaultMode);
6847 [super dealloc];
6848 }
6849
6850 - (NSURL *) navigationURL {
6851 return [NSURL URLWithString:@"cydia://home"];
6852 }
6853
6854 - (void) aboutButtonClicked {
6855 UIAlertView *alert([[[UIAlertView alloc] init] autorelease]);
6856
6857 [alert setTitle:UCLocalize("ABOUT_CYDIA")];
6858 [alert addButtonWithTitle:UCLocalize("CLOSE")];
6859 [alert setCancelButtonIndex:0];
6860
6861 [alert setMessage:
6862 @"Copyright \u00a9 2008-2015\n"
6863 "SaurikIT, LLC\n"
6864 "\n"
6865 "Jay Freeman (saurik)\n"
6866 "saurik@saurik.com\n"
6867 "http://www.saurik.com/"
6868 ];
6869
6870 [alert show];
6871 }
6872
6873 - (UIBarButtonItem *) leftButton {
6874 return [[[UIBarButtonItem alloc]
6875 initWithTitle:UCLocalize("ABOUT")
6876 style:UIBarButtonItemStylePlain
6877 target:self
6878 action:@selector(aboutButtonClicked)
6879 ] autorelease];
6880 }
6881
6882 @end
6883 /* }}} */
6884
6885 /* Cydia Navigation Controller Interface {{{ */
6886 @interface UINavigationController (Cydia)
6887
6888 - (NSArray *) navigationURLCollection;
6889 - (void) unloadData;
6890
6891 @end
6892 /* }}} */
6893
6894 /* Cydia Tab Bar Controller {{{ */
6895 @interface CydiaTabBarController : CyteTabBarController <
6896 UITabBarControllerDelegate,
6897 FetchDelegate
6898 > {
6899 _transient Database *database_;
6900
6901 _H<UIActivityIndicatorView> indicator_;
6902
6903 bool updating_;
6904 // XXX: ok, "updatedelegate_"?...
6905 _transient NSObject<CydiaDelegate> *updatedelegate_;
6906 }
6907
6908 - (NSArray *) navigationURLCollection;
6909 - (void) beginUpdate;
6910 - (BOOL) updating;
6911
6912 @end
6913
6914 @implementation CydiaTabBarController
6915
6916 - (NSArray *) navigationURLCollection {
6917 NSMutableArray *items([NSMutableArray array]);
6918
6919 // XXX: Should this deal with transient view controllers?
6920 for (id navigation in [self viewControllers]) {
6921 NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)];
6922 if (stack != nil)
6923 [items addObject:stack];
6924 }
6925
6926 return items;
6927 }
6928
6929 - (id) initWithDatabase:(Database *)database {
6930 if ((self = [super init]) != nil) {
6931 database_ = database;
6932 [self setDelegate:self];
6933
6934 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteTiny] autorelease];
6935 [indicator_ setOrigin:CGPointMake(kCFCoreFoundationVersionNumber >= 800 ? 2 : 4, 2)];
6936
6937 [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
6938 } return self;
6939 }
6940
6941 - (void) beginUpdate {
6942 if (updating_)
6943 return;
6944
6945 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6946 UITabBarItem *item([controller tabBarItem]);
6947
6948 [item setBadgeValue:@""];
6949 UIView *badge(MSHookIvar<UIView *>([item view], "_badge"));
6950
6951 [indicator_ startAnimating];
6952 [badge addSubview:indicator_];
6953
6954 [updatedelegate_ retainNetworkActivityIndicator];
6955 updating_ = true;
6956
6957 [NSThread
6958 detachNewThreadSelector:@selector(performUpdate)
6959 toTarget:self
6960 withObject:nil
6961 ];
6962 }
6963
6964 - (void) performUpdate {
6965 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
6966
6967 SourceStatus status(self, database_);
6968 [database_ updateWithStatus:status];
6969
6970 [self
6971 performSelectorOnMainThread:@selector(completeUpdate)
6972 withObject:nil
6973 waitUntilDone:NO
6974 ];
6975
6976 [pool release];
6977 }
6978
6979 - (void) stopUpdateWithSelector:(SEL)selector {
6980 updating_ = false;
6981 [updatedelegate_ releaseNetworkActivityIndicator];
6982
6983 UIViewController *controller([[self viewControllers] objectAtIndex:1]);
6984 [[controller tabBarItem] setBadgeValue:nil];
6985
6986 [indicator_ removeFromSuperview];
6987 [indicator_ stopAnimating];
6988
6989 [updatedelegate_ performSelector:selector withObject:nil afterDelay:0];
6990 }
6991
6992 - (void) completeUpdate {
6993 if (!updating_)
6994 return;
6995 [self stopUpdateWithSelector:@selector(reloadData)];
6996 }
6997
6998 - (void) cancelUpdate {
6999 [self stopUpdateWithSelector:@selector(updateDataAndLoad)];
7000 }
7001
7002 - (void) cancelPressed {
7003 [self cancelUpdate];
7004 }
7005
7006 - (BOOL) updating {
7007 return updating_;
7008 }
7009
7010 - (bool) isSourceCancelled {
7011 return !updating_;
7012 }
7013
7014 - (void) startSourceFetch:(NSString *)uri {
7015 }
7016
7017 - (void) stopSourceFetch:(NSString *)uri {
7018 }
7019
7020 - (void) setUpdateDelegate:(id)delegate {
7021 updatedelegate_ = delegate;
7022 }
7023
7024 @end
7025 /* }}} */
7026
7027 /* Cydia Navigation Controller Implementation {{{ */
7028 @implementation UINavigationController (Cydia)
7029
7030 - (NSArray *) navigationURLCollection {
7031 NSMutableArray *stack([NSMutableArray array]);
7032
7033 for (CyteViewController *controller in [self viewControllers]) {
7034 NSString *url = [[controller navigationURL] absoluteString];
7035 if (url != nil)
7036 [stack addObject:url];
7037 }
7038
7039 return stack;
7040 }
7041
7042 - (void) reloadData {
7043 [super reloadData];
7044
7045 UIViewController *visible([self visibleViewController]);
7046 if (visible != nil)
7047 [visible reloadData];
7048
7049 // on the iPad, this view controller is ALSO visible. :(
7050 if (IsWildcat_)
7051 if (UIViewController *modal = [self modalViewController])
7052 if ([modal modalPresentationStyle] == UIModalPresentationFormSheet)
7053 if (UIViewController *top = [self topViewController])
7054 if (top != visible)
7055 [top reloadData];
7056 }
7057
7058 - (void) unloadData {
7059 for (CyteViewController *page in [self viewControllers])
7060 [page unloadData];
7061
7062 [super unloadData];
7063 }
7064
7065 @end
7066 /* }}} */
7067
7068 /* Cydia:// Protocol {{{ */
7069 @interface CydiaURLProtocol : NSURLProtocol {
7070 }
7071
7072 @end
7073
7074 @implementation CydiaURLProtocol
7075
7076 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
7077 NSURL *url([request URL]);
7078 if (url == nil)
7079 return NO;
7080
7081 NSString *scheme([[url scheme] lowercaseString]);
7082 if (scheme != nil && [scheme isEqualToString:@"cydia"])
7083 return YES;
7084 if ([[url absoluteString] hasPrefix:@"about:cydia-"])
7085 return YES;
7086
7087 return NO;
7088 }
7089
7090 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
7091 return request;
7092 }
7093
7094 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
7095 id<NSURLProtocolClient> client([self client]);
7096 if (icon == nil)
7097 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
7098 else {
7099 NSData *data(UIImagePNGRepresentation(icon));
7100
7101 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
7102 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
7103 [client URLProtocol:self didLoadData:data];
7104 [client URLProtocolDidFinishLoading:self];
7105 }
7106 }
7107
7108 - (void) startLoading {
7109 id<NSURLProtocolClient> client([self client]);
7110 NSURLRequest *request([self request]);
7111
7112 NSURL *url([request URL]);
7113 NSString *href([url absoluteString]);
7114 NSString *scheme([[url scheme] lowercaseString]);
7115
7116 NSString *path;
7117
7118 if ([scheme isEqualToString:@"cydia"])
7119 path = [href substringFromIndex:8];
7120 else if ([scheme isEqualToString:@"about"])
7121 path = [href substringFromIndex:12];
7122 else _assert(false);
7123
7124 NSRange slash([path rangeOfString:@"/"]);
7125
7126 NSString *command;
7127 if (slash.location == NSNotFound) {
7128 command = path;
7129 path = nil;
7130 } else {
7131 command = [path substringToIndex:slash.location];
7132 path = [path substringFromIndex:(slash.location + 1)];
7133 }
7134
7135 Database *database([Database sharedInstance]);
7136
7137 if ([command isEqualToString:@"package-icon"]) {
7138 if (path == nil)
7139 goto fail;
7140 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7141 Package *package([database packageWithName:path]);
7142 if (package == nil)
7143 goto fail;
7144 [package parse];
7145 UIImage *icon([package icon]);
7146 [self _returnPNGWithImage:icon forRequest:request];
7147 } else if ([command isEqualToString:@"uikit-image"]) {
7148 if (path == nil)
7149 goto fail;
7150 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7151 UIImage *icon(_UIImageWithName(path));
7152 [self _returnPNGWithImage:icon forRequest:request];
7153 } else if ([command isEqualToString:@"section-icon"]) {
7154 if (path == nil)
7155 goto fail;
7156 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
7157 UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]);
7158 if (icon == nil)
7159 icon = [UIImage imageNamed:@"unknown.png"];
7160 [self _returnPNGWithImage:icon forRequest:request];
7161 } else fail: {
7162 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
7163 }
7164 }
7165
7166 - (void) stopLoading {
7167 }
7168
7169 @end
7170 /* }}} */
7171
7172 /* Section Controller {{{ */
7173 @interface SectionController : FilteredPackageListController {
7174 _H<NSString> key_;
7175 _H<NSString> section_;
7176 }
7177
7178 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section;
7179
7180 @end
7181
7182 @implementation SectionController
7183
7184 - (NSURL *) referrerURL {
7185 NSString *name(section_);
7186 name = name ?: @"*";
7187 NSString *key(key_);
7188 key = key ?: @"*";
7189 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/sections/%@/%@", UI_, [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7190 }
7191
7192 - (NSURL *) navigationURL {
7193 NSString *name(section_);
7194 name = name ?: @"*";
7195 NSString *key(key_);
7196 key = key ?: @"*";
7197 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@/%@", [key stringByAddingPercentEscapesIncludingReserved], [name stringByAddingPercentEscapesIncludingReserved]]];
7198 }
7199
7200 - (id) initWithDatabase:(Database *)database source:(Source *)source section:(NSString *)section {
7201 NSString *title;
7202 if (section == nil)
7203 title = UCLocalize("ALL_PACKAGES");
7204 else if (![section isEqual:@""])
7205 title = [[NSBundle mainBundle] localizedStringForKey:Simplify(section) value:nil table:@"Sections"];
7206 else
7207 title = UCLocalize("NO_SECTION");
7208
7209 if ((self = [super initWithDatabase:database title:title]) != nil) {
7210 key_ = [source key];
7211 section_ = section;
7212 } return self;
7213 }
7214
7215 - (void) reloadData {
7216 Source *source([database_ sourceWithKey:key_]);
7217 _H<NSString> name(section_);
7218
7219 [self setFilter:[=](Package *package) {
7220 NSString *section([package section]);
7221
7222 return (
7223 name == nil ||
7224 section == nil && [name length] == 0 ||
7225 [name isEqualToString:section]
7226 ) && (
7227 source == nil ||
7228 [package source] == source
7229 ) && [package visible];
7230 }];
7231
7232 [super reloadData];
7233 }
7234
7235 @end
7236 /* }}} */
7237 /* Sections Controller {{{ */
7238 @interface SectionsController : CyteViewController <
7239 UITableViewDataSource,
7240 UITableViewDelegate
7241 > {
7242 _transient Database *database_;
7243 _H<NSString> key_;
7244 _H<NSMutableArray> sections_;
7245 _H<NSMutableArray> filtered_;
7246 _H<UITableView, 2> list_;
7247 }
7248
7249 - (id) initWithDatabase:(Database *)database source:(Source *)source;
7250 - (void) editButtonClicked;
7251
7252 @end
7253
7254 @implementation SectionsController
7255
7256 - (NSURL *) navigationURL {
7257 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]];
7258 }
7259
7260 - (Source *) source {
7261 if (key_ == nil)
7262 return nil;
7263 return [database_ sourceWithKey:key_];
7264 }
7265
7266 - (void) updateNavigationItem {
7267 [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")];
7268 if ([sections_ count] == 0) {
7269 [[self navigationItem] setRightBarButtonItem:nil];
7270 } else {
7271 [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc]
7272 initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit)
7273 target:self
7274 action:@selector(editButtonClicked)
7275 ] animated:([[self navigationItem] rightBarButtonItem] != nil)];
7276 }
7277 }
7278
7279 - (void) setEditing:(BOOL)editing animated:(BOOL)animated {
7280 [super setEditing:editing animated:animated];
7281
7282 if (editing)
7283 [list_ reloadData];
7284 else
7285 [delegate_ updateData];
7286
7287 [self updateNavigationItem];
7288 }
7289
7290 - (void) viewDidAppear:(BOOL)animated {
7291 [super viewDidAppear:animated];
7292 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
7293 }
7294
7295 - (void) viewWillDisappear:(BOOL)animated {
7296 [super viewWillDisappear:animated];
7297 [self setEditing:NO];
7298 }
7299
7300 - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath {
7301 Section *section = nil;
7302 int index = [indexPath row];
7303 if (![self isEditing]) {
7304 index -= 1;
7305 if (index >= 0)
7306 section = [filtered_ objectAtIndex:index];
7307 } else {
7308 section = [sections_ objectAtIndex:index];
7309 }
7310 return section;
7311 }
7312
7313 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7314 if ([self isEditing])
7315 return [sections_ count];
7316 else
7317 return [filtered_ count] + 1;
7318 }
7319
7320 /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
7321 return 45.0f;
7322 }*/
7323
7324 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7325 static NSString *reuseIdentifier = @"SectionCell";
7326
7327 SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
7328 if (cell == nil)
7329 cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease];
7330
7331 [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]];
7332
7333 return cell;
7334 }
7335
7336 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
7337 if ([self isEditing])
7338 return;
7339
7340 Section *section = [self sectionAtIndexPath:indexPath];
7341
7342 SectionController *controller = [[[SectionController alloc]
7343 initWithDatabase:database_
7344 source:[self source]
7345 section:[section name]
7346 ] autorelease];
7347 [controller setDelegate:delegate_];
7348
7349 [[self navigationController] pushViewController:controller animated:YES];
7350 }
7351
7352 - (void) loadView {
7353 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
7354 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7355 [list_ setRowHeight:46];
7356 [(UITableView *) list_ setDataSource:self];
7357 [list_ setDelegate:self];
7358 [self setView:list_];
7359 }
7360
7361 - (void) viewDidLoad {
7362 [super viewDidLoad];
7363
7364 [[self navigationItem] setTitle:UCLocalize("SECTIONS")];
7365 }
7366
7367 - (void) releaseSubviews {
7368 list_ = nil;
7369
7370 sections_ = nil;
7371 filtered_ = nil;
7372
7373 [super releaseSubviews];
7374 }
7375
7376 - (id) initWithDatabase:(Database *)database source:(Source *)source {
7377 if ((self = [super init]) != nil) {
7378 database_ = database;
7379 key_ = [source key];
7380 } return self;
7381 }
7382
7383 - (void) reloadData {
7384 [super reloadData];
7385
7386 NSArray *packages = [database_ packages];
7387
7388 sections_ = [NSMutableArray arrayWithCapacity:16];
7389 filtered_ = [NSMutableArray arrayWithCapacity:16];
7390
7391 NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]);
7392
7393 Source *source([self source]);
7394
7395 _trace();
7396 for (Package *package in packages) {
7397 if (source != nil && [package source] != source)
7398 continue;
7399
7400 NSString *name([package section]);
7401 NSString *key(name == nil ? @"" : name);
7402
7403 Section *section;
7404
7405 _profile(SectionsView$reloadData$Section)
7406 section = [sections objectForKey:key];
7407 if (section == nil) {
7408 _profile(SectionsView$reloadData$Section$Allocate)
7409 section = [[[Section alloc] initWithName:key localize:YES] autorelease];
7410 [sections setObject:section forKey:key];
7411 _end
7412 }
7413 _end
7414
7415 [section addToCount];
7416
7417 _profile(SectionsView$reloadData$Filter)
7418 if (![package valid] || ![package visible])
7419 continue;
7420 _end
7421
7422 [section addToRow];
7423 }
7424 _trace();
7425
7426 [sections_ addObjectsFromArray:[sections allValues]];
7427
7428 [sections_ sortUsingSelector:@selector(compareByLocalized:)];
7429
7430 for (Section *section in (id) sections_) {
7431 size_t count([section row]);
7432 if (count == 0)
7433 continue;
7434
7435 section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease];
7436 [section setCount:count];
7437 [filtered_ addObject:section];
7438 }
7439
7440 [self updateNavigationItem];
7441 [list_ reloadData];
7442 _trace();
7443 }
7444
7445 - (void) editButtonClicked {
7446 [self setEditing:![self isEditing] animated:YES];
7447 }
7448
7449 @end
7450 /* }}} */
7451
7452 /* Changes Controller {{{ */
7453 @interface ChangesController : FilteredPackageListController {
7454 unsigned upgrades_;
7455 }
7456
7457 - (id) initWithDatabase:(Database *)database;
7458
7459 @end
7460
7461 @implementation ChangesController
7462
7463 - (NSURL *) referrerURL {
7464 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/changes/", UI_]];
7465 }
7466
7467 - (NSURL *) navigationURL {
7468 return [NSURL URLWithString:@"cydia://changes"];
7469 }
7470
7471 - (Package *) packageAtIndexPath:(NSIndexPath *)path {
7472 @synchronized (database_) {
7473 if ([database_ era] != era_)
7474 return nil;
7475
7476 NSUInteger sectionIndex([path section]);
7477 if (sectionIndex >= [sections_ count])
7478 return nil;
7479 Section *section([sections_ objectAtIndex:sectionIndex]);
7480 NSInteger row([path row]);
7481 return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease];
7482 } }
7483
7484 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
7485 NSString *context([alert context]);
7486
7487 if ([context isEqualToString:@"norefresh"])
7488 [alert dismissWithClickedButtonIndex:-1 animated:YES];
7489 }
7490
7491 - (void) setLeftBarButtonItem {
7492 if ([delegate_ updating])
7493 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7494 initWithTitle:UCLocalize("CANCEL")
7495 style:UIBarButtonItemStyleDone
7496 target:self
7497 action:@selector(cancelButtonClicked)
7498 ] autorelease] animated:YES];
7499 else
7500 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
7501 initWithTitle:UCLocalize("REFRESH")
7502 style:UIBarButtonItemStylePlain
7503 target:self
7504 action:@selector(refreshButtonClicked)
7505 ] autorelease] animated:YES];
7506 }
7507
7508 - (void) refreshButtonClicked {
7509 if ([delegate_ requestUpdate])
7510 [self setLeftBarButtonItem];
7511 }
7512
7513 - (void) cancelButtonClicked {
7514 [delegate_ cancelUpdate];
7515 }
7516
7517 - (void) upgradeButtonClicked {
7518 [delegate_ distUpgrade];
7519 [[self navigationItem] setRightBarButtonItem:nil animated:YES];
7520 }
7521
7522 - (bool) shouldYield {
7523 return true;
7524 }
7525
7526 - (bool) shouldBlock {
7527 return true;
7528 }
7529
7530 - (void) useFilter {
7531 @synchronized (self) {
7532 [self setFilter:[](Package *package) {
7533 return [package upgradableAndEssential:YES] || [package visible];
7534 }];
7535
7536 [self setSorter:[](NSMutableArray *packages) {
7537 [packages radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL];
7538 }];
7539 } }
7540
7541 - (id) initWithDatabase:(Database *)database {
7542 if ((self = [super initWithDatabase:database title:UCLocalize("CHANGES")]) != nil) {
7543 [self useFilter];
7544 } return self;
7545 }
7546
7547 - (void) viewDidLoad {
7548 [super viewDidLoad];
7549 [self setLeftBarButtonItem];
7550 }
7551
7552 - (void) viewWillAppear:(BOOL)animated {
7553 [super viewWillAppear:animated];
7554 [self setLeftBarButtonItem];
7555 }
7556
7557 - (void) reloadData {
7558 [self setLeftBarButtonItem];
7559 [super reloadData];
7560 }
7561
7562 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
7563 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
7564
7565 Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease];
7566 Section *ignored = nil;
7567 Section *section = nil;
7568 time_t last = 0;
7569
7570 upgrades_ = 0;
7571 bool unseens = false;
7572
7573 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle));
7574
7575 for (size_t offset = 0, count = [packages count]; offset != count; ++offset) {
7576 Package *package = [packages objectAtIndex:offset];
7577
7578 BOOL uae = [package upgradableAndEssential:YES];
7579
7580 if (!uae) {
7581 unseens = true;
7582 time_t seen([package seen]);
7583
7584 if (section == nil || last != seen) {
7585 last = seen;
7586
7587 NSString *name;
7588 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]);
7589 [name autorelease];
7590
7591 _profile(ChangesController$reloadData$Allocate)
7592 name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name];
7593 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
7594 [sections addObject:section];
7595 _end
7596 }
7597
7598 [section addToCount];
7599 } else if ([package ignored]) {
7600 if (ignored == nil) {
7601 ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease];
7602 }
7603 [ignored addToCount];
7604 } else {
7605 ++upgrades_;
7606 [upgradable addToCount];
7607 }
7608 }
7609 _trace();
7610
7611 CFRelease(formatter);
7612
7613 if (unseens) {
7614 Section *last = [sections lastObject];
7615 size_t count = [last count];
7616 [packages removeObjectsInRange:NSMakeRange([packages count] - count, count)];
7617 [sections removeLastObject];
7618 }
7619
7620 if ([ignored count] != 0)
7621 [sections insertObject:ignored atIndex:0];
7622 if (upgrades_ != 0)
7623 [sections insertObject:upgradable atIndex:0];
7624
7625 [list_ reloadData];
7626
7627 [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc]
7628 initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]]
7629 style:UIBarButtonItemStylePlain
7630 target:self
7631 action:@selector(upgradeButtonClicked)
7632 ] autorelease]) animated:YES];
7633
7634 return sections;
7635 }
7636
7637 @end
7638 /* }}} */
7639 /* Search Controller {{{ */
7640 @interface SearchController : FilteredPackageListController <
7641 UISearchBarDelegate
7642 > {
7643 _H<UISearchBar, 1> search_;
7644 BOOL searchloaded_;
7645 bool summary_;
7646 }
7647
7648 - (id) initWithDatabase:(Database *)database query:(NSString *)query;
7649 - (void) reloadData;
7650
7651 @end
7652
7653 @implementation SearchController
7654
7655 - (NSURL *) referrerURL {
7656 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/search?q=%@", UI_, [([search_ text] ?: @"") stringByAddingPercentEscapesIncludingReserved]]];
7657 }
7658
7659 - (NSURL *) navigationURL {
7660 if ([search_ text] == nil || [[search_ text] isEqualToString:@""])
7661 return [NSURL URLWithString:@"cydia://search"];
7662 else
7663 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [[search_ text] stringByAddingPercentEscapesIncludingReserved]]];
7664 }
7665
7666 - (NSArray *) termsForQuery:(NSString *)query {
7667 NSMutableArray *terms([NSMutableArray arrayWithCapacity:2]);
7668 for (NSString *component in [query componentsSeparatedByString:@" "])
7669 if ([component length] != 0)
7670 [terms addObject:component];
7671
7672 return terms;
7673 }
7674
7675 - (void) useSearch {
7676 _H<NSArray> query([self termsForQuery:[search_ text]]);
7677 summary_ = false;
7678
7679 @synchronized (self) {
7680 [self setFilter:[=](Package *package) {
7681 if (![package unfiltered])
7682 return false;
7683 if (![package matches:query])
7684 return false;
7685 return true;
7686 }];
7687
7688 [self setSorter:[](NSMutableArray *packages) {
7689 [packages radixSortUsingSelector:@selector(rank)];
7690 }];
7691 }
7692
7693 [self clearData];
7694 [self reloadData];
7695 }
7696
7697 - (void) usePrefix:(NSString *)prefix {
7698 _H<NSString> query(prefix);
7699 summary_ = true;
7700
7701 @synchronized (self) {
7702 [self setFilter:[=](Package *package) {
7703 if ([query length] == 0)
7704 return false;
7705 if (![package unfiltered])
7706 return false;
7707 if ([[package name] compare:query options:MatchCompareOptions_ range:NSMakeRange(0, [query length])] != NSOrderedSame)
7708 return false;
7709 return true;
7710 }];
7711
7712 [self setSorter:nullptr];
7713 }
7714
7715 [self reloadData];
7716 }
7717
7718 - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
7719 [self clearData];
7720 [self usePrefix:[search_ text]];
7721 }
7722
7723 - (void) searchBarButtonClicked:(UISearchBar *)searchBar {
7724 [search_ resignFirstResponder];
7725 [self useSearch];
7726 }
7727
7728 - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar {
7729 [search_ setText:@""];
7730 [self searchBarButtonClicked:searchBar];
7731 }
7732
7733 - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar {
7734 [self searchBarButtonClicked:searchBar];
7735 }
7736
7737 - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text {
7738 [self usePrefix:text];
7739 }
7740
7741 - (bool) shouldYield {
7742 return YES;
7743 }
7744
7745 - (bool) shouldBlock {
7746 return !summary_;
7747 }
7748
7749 - (bool) isSummarized {
7750 return summary_;
7751 }
7752
7753 - (bool) showsSections {
7754 return false;
7755 }
7756
7757 - (id) initWithDatabase:(Database *)database query:(NSString *)query {
7758 if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH")])) {
7759 search_ = [[[UISearchBar alloc] init] autorelease];
7760 [search_ setPlaceholder:UCLocalize("SEARCH_EX")];
7761 [search_ setDelegate:self];
7762
7763 UITextField *textField;
7764 if ([search_ respondsToSelector:@selector(searchField)])
7765 textField = [search_ searchField];
7766 else
7767 textField = MSHookIvar<UITextField *>(search_, "_searchField");
7768
7769 [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
7770 [textField setEnablesReturnKeyAutomatically:NO];
7771 [[self navigationItem] setTitleView:textField];
7772
7773 if (query != nil)
7774 [search_ setText:query];
7775 [self useSearch];
7776 } return self;
7777 }
7778
7779 - (void) viewDidAppear:(BOOL)animated {
7780 [super viewDidAppear:animated];
7781
7782 if (!searchloaded_) {
7783 searchloaded_ = YES;
7784 [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)];
7785 [search_ layoutSubviews];
7786 }
7787
7788 if ([self isSummarized])
7789 [search_ becomeFirstResponder];
7790 }
7791
7792 - (void) reloadData {
7793 [self resetCursor];
7794 [super reloadData];
7795 }
7796
7797 - (void) didSelectPackage:(Package *)package {
7798 [search_ resignFirstResponder];
7799 [super didSelectPackage:package];
7800 }
7801
7802 @end
7803 /* }}} */
7804 /* Package Settings Controller {{{ */
7805 @interface PackageSettingsController : CyteViewController <
7806 UITableViewDataSource,
7807 UITableViewDelegate
7808 > {
7809 _transient Database *database_;
7810 _H<NSString> name_;
7811 _H<Package> package_;
7812 _H<UITableView, 2> table_;
7813 _H<UISwitch> subscribedSwitch_;
7814 _H<UISwitch> ignoredSwitch_;
7815 _H<UITableViewCell> subscribedCell_;
7816 _H<UITableViewCell> ignoredCell_;
7817 }
7818
7819 - (id) initWithDatabase:(Database *)database package:(NSString *)package;
7820
7821 @end
7822
7823 @implementation PackageSettingsController
7824
7825 - (NSURL *) navigationURL {
7826 return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]];
7827 }
7828
7829 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
7830 if (package_ == nil)
7831 return 0;
7832
7833 if ([package_ installed] == nil)
7834 return 1;
7835 else
7836 return 2;
7837 }
7838
7839 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
7840 if (package_ == nil)
7841 return 0;
7842
7843 // both sections contain just one item right now.
7844 return 1;
7845 }
7846
7847 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
7848 return nil;
7849 }
7850
7851 - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
7852 if (section == 0)
7853 return UCLocalize("SHOW_ALL_CHANGES_EX");
7854 else
7855 return UCLocalize("IGNORE_UPGRADES_EX");
7856 }
7857
7858 - (void) onSubscribed:(id)control {
7859 bool value([control isOn]);
7860 if (package_ == nil)
7861 return;
7862 if ([package_ setSubscribed:value])
7863 [delegate_ updateData];
7864 }
7865
7866 - (void) _updateIgnored {
7867 const char *package([name_ UTF8String]);
7868 bool on([ignoredSwitch_ isOn]);
7869
7870 pid_t pid(ExecFork());
7871 if (pid == 0) {
7872 FILE *dpkg(popen("/usr/libexec/cydo --set-selections", "w"));
7873 fwrite(package, strlen(package), 1, dpkg);
7874
7875 if (on)
7876 fwrite(" hold\n", 6, 1, dpkg);
7877 else
7878 fwrite(" install\n", 9, 1, dpkg);
7879
7880 pclose(dpkg);
7881
7882 exit(0);
7883 } ReapZombie(pid);
7884 }
7885
7886 - (void) onIgnored:(id)control {
7887 NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]);
7888 [invocation setTarget:self];
7889 [invocation setSelector:@selector(_updateIgnored)];
7890
7891 [delegate_ reloadDataWithInvocation:invocation];
7892 }
7893
7894 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
7895 if (package_ == nil)
7896 return nil;
7897
7898 switch ([indexPath section]) {
7899 case 0: return subscribedCell_;
7900 case 1: return ignoredCell_;
7901
7902 _nodefault
7903 }
7904
7905 return nil;
7906 }
7907
7908 - (void) loadView {
7909 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
7910 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
7911 [self setView:view];
7912
7913 table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease];
7914 [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
7915 [(UITableView *) table_ setDataSource:self];
7916 [table_ setDelegate:self];
7917 [view addSubview:table_];
7918
7919 subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7920 [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7921 [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged];
7922
7923 ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease];
7924 [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
7925 [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged];
7926
7927 subscribedCell_ = [[[UITableViewCell alloc] init] autorelease];
7928 [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")];
7929 [subscribedCell_ setAccessoryView:subscribedSwitch_];
7930 [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7931
7932 ignoredCell_ = [[[UITableViewCell alloc] init] autorelease];
7933 [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")];
7934 [ignoredCell_ setAccessoryView:ignoredSwitch_];
7935 [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone];
7936 }
7937
7938 - (void) viewDidLoad {
7939 [super viewDidLoad];
7940
7941 [[self navigationItem] setTitle:UCLocalize("SETTINGS")];
7942 }
7943
7944 - (void) releaseSubviews {
7945 ignoredCell_ = nil;
7946 subscribedCell_ = nil;
7947 table_ = nil;
7948 ignoredSwitch_ = nil;
7949 subscribedSwitch_ = nil;
7950
7951 [super releaseSubviews];
7952 }
7953
7954 - (id) initWithDatabase:(Database *)database package:(NSString *)package {
7955 if ((self = [super init]) != nil) {
7956 database_ = database;
7957 name_ = package;
7958 } return self;
7959 }
7960
7961 - (void) reloadData {
7962 [super reloadData];
7963
7964 package_ = [database_ packageWithName:name_];
7965
7966 if (package_ != nil) {
7967 [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO];
7968 [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO];
7969 } // XXX: what now, G?
7970
7971 [table_ reloadData];
7972 }
7973
7974 @end
7975 /* }}} */
7976
7977 /* Installed Controller {{{ */
7978 @interface InstalledController : FilteredPackageListController {
7979 bool sectioned_;
7980 }
7981
7982 - (id) initWithDatabase:(Database *)database;
7983 - (void) queueStatusDidChange;
7984
7985 @end
7986
7987 @implementation InstalledController
7988
7989 - (NSURL *) referrerURL {
7990 return [NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/installed/", UI_]];
7991 }
7992
7993 - (NSURL *) navigationURL {
7994 return [NSURL URLWithString:@"cydia://installed"];
7995 }
7996
7997 - (void) useRecent {
7998 sectioned_ = false;
7999
8000 @synchronized (self) {
8001 [self setFilter:[](Package *package) {
8002 return ![package uninstalled] && package->role_ < 7;
8003 }];
8004
8005 [self setSorter:[](NSMutableArray *packages) {
8006 [packages radixSortUsingSelector:@selector(recent)];
8007 }];
8008 } }
8009
8010 - (void) useFilter:(UISegmentedControl *)segmented {
8011 NSInteger selected([segmented selectedSegmentIndex]);
8012 if (selected == 2)
8013 return [self useRecent];
8014 bool simple(selected == 0);
8015 sectioned_ = true;
8016
8017 @synchronized (self) {
8018 [self setFilter:[=](Package *package) {
8019 return ![package uninstalled] && package->role_ <= (simple ? 1 : 3);
8020 }];
8021
8022 [self setSorter:nullptr];
8023 } }
8024
8025 - (NSArray *) sectionsForPackages:(NSMutableArray *)packages {
8026 if (sectioned_)
8027 return [super sectionsForPackages:packages];
8028
8029 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterLongStyle, kCFDateFormatterNoStyle));
8030
8031 NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
8032 Section *section(nil);
8033 time_t last(0);
8034
8035 for (size_t offset(0), count([packages count]); offset != count; ++offset) {
8036 Package *package([packages objectAtIndex:offset]);
8037
8038 time_t upgraded([package upgraded]);
8039 if (upgraded < 1168364520)
8040 upgraded = 0;
8041 else
8042 upgraded -= upgraded % (60 * 60 * 24);
8043
8044 if (section == nil || upgraded != last) {
8045 last = upgraded;
8046
8047 NSString *name;
8048 if (upgraded == 0)
8049 continue; // XXX: name = UCLocalize("...");
8050 else {
8051 name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:upgraded]);
8052 [name autorelease];
8053 }
8054
8055 section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease];
8056 [sections addObject:section];
8057 }
8058
8059 [section addToCount];
8060 }
8061
8062 CFRelease(formatter);
8063 return sections;
8064 }
8065
8066 - (id) initWithDatabase:(Database *)database {
8067 if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED")]) != nil) {
8068 UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("USER"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]);
8069 [segmented setSelectedSegmentIndex:0];
8070 [segmented setSegmentedControlStyle:UISegmentedControlStyleBar];
8071 [[self navigationItem] setTitleView:segmented];
8072
8073 [segmented addTarget:self action:@selector(modeChanged:) forEvents:UIControlEventValueChanged];
8074 [self useFilter:segmented];
8075
8076 [self queueStatusDidChange];
8077 } return self;
8078 }
8079
8080 #if !AlwaysReload
8081 - (void) queueButtonClicked {
8082 [delegate_ queue];
8083 }
8084 #endif
8085
8086 - (void) queueStatusDidChange {
8087 #if !AlwaysReload
8088 if (Queuing_) {
8089 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8090 initWithTitle:UCLocalize("QUEUE")
8091 style:UIBarButtonItemStyleDone
8092 target:self
8093 action:@selector(queueButtonClicked)
8094 ] autorelease]];
8095 } else {
8096 [[self navigationItem] setRightBarButtonItem:nil];
8097 }
8098 #endif
8099 }
8100
8101 - (void) modeChanged:(UISegmentedControl *)segmented {
8102 [self useFilter:segmented];
8103 [self reloadData];
8104 }
8105
8106 @end
8107 /* }}} */
8108
8109 /* Source Cell {{{ */
8110 @interface SourceCell : CyteTableViewCell <
8111 CyteTableViewCellDelegate,
8112 SourceDelegate
8113 > {
8114 _H<Source, 1> source_;
8115 _H<NSURL> url_;
8116 _H<UIImage> icon_;
8117 _H<NSString> origin_;
8118 _H<NSString> label_;
8119 _H<UIActivityIndicatorView> indicator_;
8120 }
8121
8122 - (void) setSource:(Source *)source;
8123 - (void) setFetch:(NSNumber *)fetch;
8124
8125 @end
8126
8127 @implementation SourceCell
8128
8129 - (void) _setImage:(NSArray *)data {
8130 if ([url_ isEqual:[data objectAtIndex:0]]) {
8131 icon_ = [data objectAtIndex:1];
8132 [content_ setNeedsDisplay];
8133 }
8134 }
8135
8136 - (void) _setSource:(NSURL *) url {
8137 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
8138
8139 if (NSData *data = [NSURLConnection
8140 sendSynchronousRequest:[NSURLRequest
8141 requestWithURL:url
8142 cachePolicy:NSURLRequestUseProtocolCachePolicy
8143 timeoutInterval:10
8144 ]
8145
8146 returningResponse:NULL
8147 error:NULL
8148 ])
8149 if (UIImage *image = [UIImage imageWithData:data])
8150 [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO];
8151
8152 [pool release];
8153 }
8154
8155 - (void) setSource:(Source *)source {
8156 source_ = source;
8157 [source_ setDelegate:self];
8158
8159 [self setFetch:[NSNumber numberWithBool:[source_ fetch]]];
8160
8161 icon_ = [UIImage imageNamed:@"unknown.png"];
8162
8163 origin_ = [source name];
8164 label_ = [source rooturi];
8165
8166 [content_ setNeedsDisplay];
8167
8168 url_ = [source iconURL];
8169 [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_];
8170 }
8171
8172 - (void) setAllSource {
8173 source_ = nil;
8174 [indicator_ stopAnimating];
8175
8176 icon_ = [UIImage imageNamed:@"folder.png"];
8177 origin_ = UCLocalize("ALL_SOURCES");
8178 label_ = UCLocalize("ALL_SOURCES_EX");
8179 [content_ setNeedsDisplay];
8180 }
8181
8182 - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
8183 if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) {
8184 UIView *content([self contentView]);
8185 CGRect bounds([content bounds]);
8186
8187 content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
8188 [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8189 [content_ setBackgroundColor:[UIColor whiteColor]];
8190 [content addSubview:content_];
8191
8192 [content_ setDelegate:self];
8193 [content_ setOpaque:YES];
8194
8195 indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGraySmall] autorelease];
8196 [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin];// | UIViewAutoresizingFlexibleBottomMargin];
8197 [content addSubview:indicator_];
8198
8199 [[content_ layer] setContentsGravity:kCAGravityTopLeft];
8200 } return self;
8201 }
8202
8203 - (void) layoutSubviews {
8204 [super layoutSubviews];
8205
8206 UIView *content([self contentView]);
8207 CGRect bounds([content bounds]);
8208
8209 CGRect frame([indicator_ frame]);
8210 frame.origin.x = bounds.size.width - frame.size.width;
8211 frame.origin.y = Retina((bounds.size.height - frame.size.height) / 2);
8212
8213 if (kCFCoreFoundationVersionNumber < 800)
8214 frame.origin.x -= 8;
8215 [indicator_ setFrame:frame];
8216 }
8217
8218 - (NSString *) accessibilityLabel {
8219 return origin_;
8220 }
8221
8222 - (void) drawContentRect:(CGRect)rect {
8223 bool highlighted(highlighted_);
8224 float width(rect.size.width);
8225
8226 if (icon_ != nil) {
8227 CGRect rect;
8228 rect.size = [(UIImage *) icon_ size];
8229
8230 while (rect.size.width > 32 || rect.size.height > 32) {
8231 rect.size.width /= 2;
8232 rect.size.height /= 2;
8233 }
8234
8235 rect.origin.x = 26 - rect.size.width / 2;
8236 rect.origin.y = 26 - rect.size.height / 2;
8237
8238 [icon_ drawInRect:Retina(rect)];
8239 }
8240
8241 if (highlighted && kCFCoreFoundationVersionNumber < 800)
8242 UISetColor(White_);
8243
8244 if (!highlighted)
8245 UISetColor(Black_);
8246 [origin_ drawAtPoint:CGPointMake(52, 8) forWidth:(width - 49) withFont:Font18Bold_ lineBreakMode:NSLineBreakByTruncatingTail];
8247
8248 if (!highlighted)
8249 UISetColor(Gray_);
8250 [label_ drawAtPoint:CGPointMake(52, 29) forWidth:(width - 49) withFont:Font12_ lineBreakMode:NSLineBreakByTruncatingTail];
8251 }
8252
8253 - (void) setFetch:(NSNumber *)fetch {
8254 if ([fetch boolValue])
8255 [indicator_ startAnimating];
8256 else
8257 [indicator_ stopAnimating];
8258 }
8259
8260 @end
8261 /* }}} */
8262 /* Sources Controller {{{ */
8263 @interface SourcesController : CyteViewController <
8264 UITableViewDataSource,
8265 UITableViewDelegate
8266 > {
8267 _transient Database *database_;
8268 unsigned era_;
8269
8270 _H<UITableView, 2> list_;
8271 _H<NSMutableArray> sources_;
8272 int offset_;
8273
8274 _H<NSString> href_;
8275 _H<UIProgressHUD> hud_;
8276 _H<NSError> error_;
8277
8278 NSURLConnection *trivial_bz2_;
8279 NSURLConnection *trivial_gz_;
8280
8281 BOOL cydia_;
8282 }
8283
8284 - (id) initWithDatabase:(Database *)database;
8285 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated;
8286
8287 @end
8288
8289 @implementation SourcesController
8290
8291 - (void) _releaseConnection:(NSURLConnection *)connection {
8292 if (connection != nil) {
8293 [connection cancel];
8294 //[connection setDelegate:nil];
8295 [connection release];
8296 }
8297 }
8298
8299 - (void) dealloc {
8300 [self _releaseConnection:trivial_gz_];
8301 [self _releaseConnection:trivial_bz2_];
8302
8303 [super dealloc];
8304 }
8305
8306 - (NSURL *) navigationURL {
8307 return [NSURL URLWithString:@"cydia://sources"];
8308 }
8309
8310 - (void) viewDidAppear:(BOOL)animated {
8311 [super viewDidAppear:animated];
8312 [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated];
8313 }
8314
8315 - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
8316 return 2;
8317 }
8318
8319 - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
8320 if (section == 1)
8321 return UCLocalize("INDIVIDUAL_SOURCES");
8322 return nil;
8323 }
8324
8325 - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
8326 switch (section) {
8327 case 0: return 1;
8328 case 1: return [sources_ count];
8329 default: return 0;
8330 }
8331 }
8332
8333 - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath {
8334 @synchronized (database_) {
8335 if ([database_ era] != era_)
8336 return nil;
8337 if ([indexPath section] != 1)
8338 return nil;
8339 NSUInteger index([indexPath row]);
8340 if (index >= [sources_ count])
8341 return nil;
8342 return [sources_ objectAtIndex:index];
8343 } }
8344
8345 - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
8346 static NSString *cellIdentifier = @"SourceCell";
8347
8348 SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
8349 if (cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
8350 [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
8351
8352 Source *source([self sourceAtIndexPath:indexPath]);
8353 if (source == nil)
8354 [cell setAllSource];
8355 else
8356 [cell setSource:source];
8357
8358 return cell;
8359 }
8360
8361 - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
8362 SectionsController *controller([[[SectionsController alloc]
8363 initWithDatabase:database_
8364 source:[self sourceAtIndexPath:indexPath]
8365 ] autorelease]);
8366
8367 [controller setDelegate:delegate_];
8368 [[self navigationController] pushViewController:controller animated:YES];
8369 }
8370
8371 - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
8372 if ([indexPath section] != 1)
8373 return false;
8374 Source *source = [self sourceAtIndexPath:indexPath];
8375 return [source record] != nil;
8376 }
8377
8378 - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
8379 _assert([indexPath section] == 1);
8380 if (editingStyle == UITableViewCellEditingStyleDelete) {
8381 Source *source = [self sourceAtIndexPath:indexPath];
8382 if (source == nil) return;
8383
8384 [Sources_ removeObjectForKey:[source key]];
8385
8386 [delegate_ _saveConfig];
8387 [delegate_ reloadDataWithInvocation:nil];
8388 }
8389 }
8390
8391 - (void) tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
8392 [self updateButtonsForEditingStatusAnimated:YES];
8393 }
8394
8395 - (void) complete {
8396 [delegate_ addTrivialSource:href_];
8397 href_ = nil;
8398
8399 [delegate_ syncData];
8400 }
8401
8402 - (NSString *) getWarning {
8403 NSString *href(href_);
8404 NSRange colon([href rangeOfString:@"://"]);
8405 if (colon.location != NSNotFound)
8406 href = [href substringFromIndex:(colon.location + 3)];
8407 href = [href stringByAddingPercentEscapes];
8408 href = [CydiaURL(@"api/repotag/") stringByAppendingString:href];
8409
8410 NSURL *url([NSURL URLWithString:href]);
8411
8412 NSStringEncoding encoding;
8413 NSError *error(nil);
8414
8415 if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error])
8416 return [warning length] == 0 ? nil : warning;
8417 return nil;
8418 }
8419
8420 - (void) _endConnection:(NSURLConnection *)connection {
8421 // XXX: the memory management in this method is horribly awkward
8422
8423 NSURLConnection **field = NULL;
8424 if (connection == trivial_bz2_)
8425 field = &trivial_bz2_;
8426 else if (connection == trivial_gz_)
8427 field = &trivial_gz_;
8428 _assert(field != NULL);
8429 [connection release];
8430 *field = nil;
8431
8432 if (
8433 trivial_bz2_ == nil &&
8434 trivial_gz_ == nil
8435 ) {
8436 NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil);
8437
8438 [delegate_ releaseNetworkActivityIndicator];
8439
8440 [delegate_ removeProgressHUD:hud_];
8441 hud_ = nil;
8442
8443 if (cydia_) {
8444 if (warning != nil) {
8445 UIAlertView *alert = [[[UIAlertView alloc]
8446 initWithTitle:UCLocalize("SOURCE_WARNING")
8447 message:warning
8448 delegate:self
8449 cancelButtonTitle:UCLocalize("CANCEL")
8450 otherButtonTitles:
8451 UCLocalize("ADD_ANYWAY"),
8452 nil
8453 ] autorelease];
8454
8455 [alert setContext:@"warning"];
8456 [alert setNumberOfRows:1];
8457 [alert show];
8458
8459 // XXX: there used to be this great mechanism called yieldToPopup... who deleted it?
8460 error_ = nil;
8461 return;
8462 }
8463
8464 [self complete];
8465 } else if (error_ != nil) {
8466 UIAlertView *alert = [[[UIAlertView alloc]
8467 initWithTitle:UCLocalize("VERIFICATION_ERROR")
8468 message:[error_ localizedDescription]
8469 delegate:self
8470 cancelButtonTitle:UCLocalize("OK")
8471 otherButtonTitles:nil
8472 ] autorelease];
8473
8474 [alert setContext:@"urlerror"];
8475 [alert show];
8476
8477 href_ = nil;
8478 } else {
8479 UIAlertView *alert = [[[UIAlertView alloc]
8480 initWithTitle:UCLocalize("NOT_REPOSITORY")
8481 message:UCLocalize("NOT_REPOSITORY_EX")
8482 delegate:self
8483 cancelButtonTitle:UCLocalize("OK")
8484 otherButtonTitles:nil
8485 ] autorelease];
8486
8487 [alert setContext:@"trivial"];
8488 [alert show];
8489
8490 href_ = nil;
8491 }
8492
8493 error_ = nil;
8494 }
8495 }
8496
8497 - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response {
8498 switch ([response statusCode]) {
8499 case 200:
8500 cydia_ = YES;
8501 }
8502 }
8503
8504 - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
8505 lprintf("connection:\"%s\" didFailWithError:\"%s\"\n", [href_ UTF8String], [[error localizedDescription] UTF8String]);
8506 error_ = error;
8507 [self _endConnection:connection];
8508 }
8509
8510 - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
8511 [self _endConnection:connection];
8512 }
8513
8514 - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method {
8515 NSURL *url([NSURL URLWithString:href]);
8516
8517 NSMutableURLRequest *request = [NSMutableURLRequest
8518 requestWithURL:url
8519 cachePolicy:NSURLRequestUseProtocolCachePolicy
8520 timeoutInterval:10
8521 ];
8522
8523 [request setHTTPMethod:method];
8524
8525 if (Machine_ != NULL)
8526 [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"];
8527
8528 if (UniqueID_ != nil)
8529 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"];
8530
8531 if ([url isCydiaSecure]) {
8532 if (UniqueID_ != nil)
8533 [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"];
8534 }
8535
8536 return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
8537 }
8538
8539 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
8540 NSString *context([alert context]);
8541
8542 if ([context isEqualToString:@"source"]) {
8543 switch (button) {
8544 case 1: {
8545 NSString *href = [[alert textField] text];
8546
8547 static RegEx href_r("(http(s?)://|file:///)[^# ]*");
8548 if (!href_r(href)) {
8549 UIAlertView *alert = [[[UIAlertView alloc]
8550 initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("INVALID_URL")]
8551 message:UCLocalize("INVALID_URL_EX")
8552 delegate:self
8553 cancelButtonTitle:UCLocalize("OK")
8554 otherButtonTitles:nil
8555 ] autorelease];
8556
8557 [alert setContext:@"badurl"];
8558 [alert show];
8559
8560 break;
8561 }
8562
8563 if (![href hasSuffix:@"/"])
8564 href_ = [href stringByAppendingString:@"/"];
8565 else
8566 href_ = href;
8567
8568 trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain];
8569 trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain];
8570
8571 cydia_ = false;
8572
8573 // XXX: this is stupid
8574 hud_ = [delegate_ addProgressHUD];
8575 [hud_ setText:UCLocalize("VERIFYING_URL")];
8576 [delegate_ retainNetworkActivityIndicator];
8577 } break;
8578
8579 case 0:
8580 break;
8581
8582 _nodefault
8583 }
8584
8585 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8586 } else if ([context isEqualToString:@"trivial"])
8587 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8588 else if ([context isEqualToString:@"urlerror"])
8589 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8590 else if ([context isEqualToString:@"warning"]) {
8591 switch (button) {
8592 case 1:
8593 [self performSelector:@selector(complete) withObject:nil afterDelay:0];
8594 break;
8595
8596 case 0:
8597 break;
8598
8599 _nodefault
8600 }
8601
8602 [alert dismissWithClickedButtonIndex:-1 animated:YES];
8603 }
8604 }
8605
8606 - (void) updateButtonsForEditingStatusAnimated:(BOOL)animated {
8607 BOOL editing([list_ isEditing]);
8608
8609 if (editing)
8610 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8611 initWithTitle:UCLocalize("ADD")
8612 style:UIBarButtonItemStylePlain
8613 target:self
8614 action:@selector(addButtonClicked)
8615 ] autorelease] animated:animated];
8616 else if ([delegate_ updating])
8617 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8618 initWithTitle:UCLocalize("CANCEL")
8619 style:UIBarButtonItemStyleDone
8620 target:self
8621 action:@selector(cancelButtonClicked)
8622 ] autorelease] animated:animated];
8623 else
8624 [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc]
8625 initWithTitle:UCLocalize("REFRESH")
8626 style:UIBarButtonItemStylePlain
8627 target:self
8628 action:@selector(refreshButtonClicked)
8629 ] autorelease] animated:animated];
8630
8631 [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc]
8632 initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT"))
8633 style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain)
8634 target:self
8635 action:@selector(editButtonClicked)
8636 ] autorelease] animated:animated];
8637 }
8638
8639 - (void) loadView {
8640 list_ = [[[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain] autorelease];
8641 [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
8642 [list_ setRowHeight:53];
8643 [(UITableView *) list_ setDataSource:self];
8644 [list_ setDelegate:self];
8645 [self setView:list_];
8646 }
8647
8648 - (void) viewDidLoad {
8649 [super viewDidLoad];
8650
8651 [[self navigationItem] setTitle:UCLocalize("SOURCES")];
8652 [self updateButtonsForEditingStatusAnimated:NO];
8653 }
8654
8655 - (void) viewWillAppear:(BOOL)animated {
8656 [super viewWillAppear:animated];
8657
8658 [list_ setEditing:NO];
8659 [self updateButtonsForEditingStatusAnimated:NO];
8660 }
8661
8662 - (void) releaseSubviews {
8663 list_ = nil;
8664
8665 sources_ = nil;
8666
8667 [super releaseSubviews];
8668 }
8669
8670 - (id) initWithDatabase:(Database *)database {
8671 if ((self = [super init]) != nil) {
8672 database_ = database;
8673 } return self;
8674 }
8675
8676 - (void) reloadData {
8677 [super reloadData];
8678 [self updateButtonsForEditingStatusAnimated:YES];
8679
8680 @synchronized (database_) {
8681 era_ = [database_ era];
8682
8683 sources_ = [NSMutableArray arrayWithCapacity:16];
8684 [sources_ addObjectsFromArray:[database_ sources]];
8685 _trace();
8686 [sources_ sortUsingSelector:@selector(compareByName:)];
8687 _trace();
8688
8689 int count([sources_ count]);
8690 offset_ = 0;
8691 for (int i = 0; i != count; i++) {
8692 if ([[sources_ objectAtIndex:i] record] == nil)
8693 break;
8694 offset_++;
8695 }
8696
8697 [list_ reloadData];
8698 } }
8699
8700 - (void) showAddSourcePrompt {
8701 UIAlertView *alert = [[[UIAlertView alloc]
8702 initWithTitle:UCLocalize("ENTER_APT_URL")
8703 message:nil
8704 delegate:self
8705 cancelButtonTitle:UCLocalize("CANCEL")
8706 otherButtonTitles:
8707 UCLocalize("ADD_SOURCE"),
8708 nil
8709 ] autorelease];
8710
8711 [alert setContext:@"source"];
8712
8713 [alert setNumberOfRows:1];
8714 [alert addTextFieldWithValue:@"http://" label:@""];
8715
8716 UITextInputTraits *traits = [[alert textField] textInputTraits];
8717 [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone];
8718 [traits setAutocorrectionType:UITextAutocorrectionTypeNo];
8719 [traits setKeyboardType:UIKeyboardTypeURL];
8720 // XXX: UIReturnKeyDone
8721 [traits setReturnKeyType:UIReturnKeyNext];
8722
8723 [alert show];
8724 }
8725
8726 - (void) addButtonClicked {
8727 [self showAddSourcePrompt];
8728 }
8729
8730 - (void) refreshButtonClicked {
8731 if ([delegate_ requestUpdate])
8732 [self updateButtonsForEditingStatusAnimated:YES];
8733 }
8734
8735 - (void) cancelButtonClicked {
8736 [delegate_ cancelUpdate];
8737 }
8738
8739 - (void) editButtonClicked {
8740 [list_ setEditing:![list_ isEditing] animated:YES];
8741 [self updateButtonsForEditingStatusAnimated:YES];
8742 }
8743
8744 @end
8745 /* }}} */
8746
8747 /* Stash Controller {{{ */
8748 @interface StashController : CyteViewController {
8749 _H<UIActivityIndicatorView> spinner_;
8750 _H<UILabel> status_;
8751 _H<UILabel> caption_;
8752 }
8753
8754 @end
8755
8756 @implementation StashController
8757
8758 - (void) loadView {
8759 UIView *view([[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]);
8760 [view setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
8761 [self setView:view];
8762
8763 [view setBackgroundColor:[UIColor viewFlipsideBackgroundColor]];
8764
8765 spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
8766 CGRect spinrect = [spinner_ frame];
8767 spinrect.origin.x = Retina([[self view] frame].size.width / 2 - spinrect.size.width / 2);
8768 spinrect.origin.y = [[self view] frame].size.height - 80.0f;
8769 [spinner_ setFrame:spinrect];
8770 [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
8771 [view addSubview:spinner_];
8772 [spinner_ startAnimating];
8773
8774 CGRect captrect;
8775 captrect.size.width = [[self view] frame].size.width;
8776 captrect.size.height = 40.0f;
8777 captrect.origin.x = 0;
8778 captrect.origin.y = Retina([[self view] frame].size.height / 2 - captrect.size.height * 2);
8779 caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease];
8780 [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")];
8781 [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8782 [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]];
8783 [caption_ setTextColor:[UIColor whiteColor]];
8784 [caption_ setBackgroundColor:[UIColor clearColor]];
8785 [caption_ setShadowColor:[UIColor blackColor]];
8786 [caption_ setTextAlignment:NSTextAlignmentCenter];
8787 [view addSubview:caption_];
8788
8789 CGRect statusrect;
8790 statusrect.size.width = [[self view] frame].size.width;
8791 statusrect.size.height = 30.0f;
8792 statusrect.origin.x = 0;
8793 statusrect.origin.y = Retina([[self view] frame].size.height / 2 - statusrect.size.height);
8794 status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease];
8795 [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin];
8796 [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")];
8797 [status_ setFont:[UIFont systemFontOfSize:16.0f]];
8798 [status_ setTextColor:[UIColor whiteColor]];
8799 [status_ setBackgroundColor:[UIColor clearColor]];
8800 [status_ setShadowColor:[UIColor blackColor]];
8801 [status_ setTextAlignment:NSTextAlignmentCenter];
8802 [view addSubview:status_];
8803 }
8804
8805 - (void) releaseSubviews {
8806 spinner_ = nil;
8807 status_ = nil;
8808 caption_ = nil;
8809
8810 [super releaseSubviews];
8811 }
8812
8813 @end
8814 /* }}} */
8815
8816 @interface CYURLCache : SDURLCache {
8817 }
8818
8819 @end
8820
8821 @implementation CYURLCache
8822
8823 - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request {
8824 #if !ForRelease
8825 if (false);
8826 else if ([event isEqualToString:@"no-cache"])
8827 event = @"!!!";
8828 else if ([event isEqualToString:@"store"])
8829 event = @">>>";
8830 else if ([event isEqualToString:@"invalid"])
8831 event = @"???";
8832 else if ([event isEqualToString:@"memory"])
8833 event = @"mem";
8834 else if ([event isEqualToString:@"disk"])
8835 event = @"ssd";
8836 else if ([event isEqualToString:@"miss"])
8837 event = @"---";
8838
8839 NSLog(@"%@: %@", event, [[request URL] absoluteString]);
8840 #endif
8841 }
8842
8843 - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request {
8844 if (NSURLResponse *response = [cached response])
8845 if (NSString *mime = [response MIMEType])
8846 if ([mime isEqualToString:@"text/cache-manifest"]) {
8847 NSURL *url([response URL]);
8848
8849 #if !ForRelease
8850 NSLog(@"###: %@", [url absoluteString]);
8851 #endif
8852
8853 @synchronized (HostConfig_) {
8854 [CachedURLs_ addObject:url];
8855 }
8856 }
8857
8858 [super storeCachedResponse:cached forRequest:request];
8859 }
8860
8861 - (void) createDiskCachePath {
8862 [super createDiskCachePath];
8863 }
8864
8865 @end
8866
8867 @interface Cydia : UIApplication <
8868 ConfirmationControllerDelegate,
8869 DatabaseDelegate,
8870 CydiaDelegate
8871 > {
8872 _H<UIWindow> window_;
8873 _H<CydiaTabBarController> tabbar_;
8874 _H<CyteTabBarController> emulated_;
8875 _H<AppCacheController> appcache_;
8876
8877 _H<NSMutableArray> essential_;
8878 _H<NSMutableArray> broken_;
8879
8880 Database *database_;
8881
8882 _H<NSURL> starturl_;
8883
8884 unsigned locked_;
8885 unsigned activity_;
8886
8887 _H<StashController> stash_;
8888
8889 bool loaded_;
8890 }
8891
8892 - (void) loadData;
8893
8894 @end
8895
8896 @implementation Cydia
8897
8898 - (void) lockSuspend {
8899 if (locked_++ == 0) {
8900 if ($SBSSetInterceptsMenuButtonForever != NULL)
8901 (*$SBSSetInterceptsMenuButtonForever)(true);
8902
8903 [self setIdleTimerDisabled:YES];
8904 }
8905 }
8906
8907 - (void) unlockSuspend {
8908 if (--locked_ == 0) {
8909 [self setIdleTimerDisabled:NO];
8910
8911 if ($SBSSetInterceptsMenuButtonForever != NULL)
8912 (*$SBSSetInterceptsMenuButtonForever)(false);
8913 }
8914 }
8915
8916 - (void) beginUpdate {
8917 [tabbar_ beginUpdate];
8918 }
8919
8920 - (void) cancelUpdate {
8921 [tabbar_ cancelUpdate];
8922 }
8923
8924 - (bool) requestUpdate {
8925 if (IsReachable("cydia.saurik.com")) {
8926 [self beginUpdate];
8927 return true;
8928 } else {
8929 UIAlertView *alert = [[[UIAlertView alloc]
8930 initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("REFRESH")]
8931 message:@"Host Unreachable" // XXX: Localize
8932 delegate:self
8933 cancelButtonTitle:UCLocalize("OK")
8934 otherButtonTitles:nil
8935 ] autorelease];
8936
8937 [alert setContext:@"norefresh"];
8938 [alert show];
8939
8940 return false;
8941 }
8942 }
8943
8944 - (BOOL) updating {
8945 return [tabbar_ updating];
8946 }
8947
8948 - (void) _loaded {
8949 if ([broken_ count] != 0) {
8950 int count = [broken_ count];
8951
8952 UIAlertView *alert = [[[UIAlertView alloc]
8953 initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count])
8954 message:UCLocalize("HALFINSTALLED_PACKAGE_EX")
8955 delegate:self
8956 cancelButtonTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("FORCIBLY_CLEAR"), UCLocalize("UNSAFE")]
8957 otherButtonTitles:
8958 UCLocalize("TEMPORARY_IGNORE"),
8959 nil
8960 ] autorelease];
8961
8962 [alert setContext:@"fixhalf"];
8963 [alert setNumberOfRows:2];
8964 [alert show];
8965 } else if (!Ignored_ && [essential_ count] != 0) {
8966 int count = [essential_ count];
8967
8968 UIAlertView *alert = [[[UIAlertView alloc]
8969 initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count])
8970 message:UCLocalize("ESSENTIAL_UPGRADE_EX")
8971 delegate:self
8972 cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE")
8973 otherButtonTitles:
8974 UCLocalize("UPGRADE_ESSENTIAL"),
8975 UCLocalize("COMPLETE_UPGRADE"),
8976 nil
8977 ] autorelease];
8978
8979 [alert setContext:@"upgrade"];
8980 [alert show];
8981 }
8982 }
8983
8984 - (void) returnToCydia {
8985 [self _loaded];
8986 }
8987
8988 - (void) _saveConfig {
8989 SaveConfig(database_);
8990 }
8991
8992 // Navigation controller for the queuing badge.
8993 - (UINavigationController *) queueNavigationController {
8994 NSArray *controllers = [tabbar_ viewControllers];
8995 return [controllers objectAtIndex:3];
8996 }
8997
8998 - (void) unloadData {
8999 [tabbar_ unloadData];
9000 }
9001
9002 - (void) _updateData {
9003 [self _saveConfig];
9004 [self unloadData];
9005
9006 UINavigationController *navigation = [self queueNavigationController];
9007
9008 id queuedelegate = nil;
9009 if ([[navigation viewControllers] count] > 0)
9010 queuedelegate = [[navigation viewControllers] objectAtIndex:0];
9011
9012 [queuedelegate queueStatusDidChange];
9013 [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)];
9014 }
9015
9016 - (void) _refreshIfPossible {
9017 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9018
9019 NSDate *update([[NSDictionary dictionaryWithContentsOfFile:@ CacheState_] objectForKey:@"LastUpdate"]);
9020
9021 bool recently = false;
9022 if (update != nil) {
9023 NSTimeInterval interval([update timeIntervalSinceNow]);
9024 if (interval > -(15*60))
9025 recently = true;
9026 }
9027
9028 // Don't automatic refresh if:
9029 // - We already refreshed recently.
9030 // - We already auto-refreshed this launch.
9031 // - Auto-refresh is disabled.
9032 // - Cydia's server is not reachable
9033 if (recently || loaded_ || ManualRefresh || !IsReachable("cydia.saurik.com")) {
9034 // If we are cancelling, we need to make sure it knows it's already loaded.
9035 loaded_ = true;
9036
9037 [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO];
9038 } else {
9039 // We are going to load, so remember that.
9040 loaded_ = true;
9041
9042 [tabbar_ performSelectorOnMainThread:@selector(beginUpdate) withObject:nil waitUntilDone:NO];
9043 }
9044
9045 [pool release];
9046 }
9047
9048 - (void) refreshIfPossible {
9049 [NSThread detachNewThreadSelector:@selector(_refreshIfPossible) toTarget:self withObject:nil];
9050 }
9051
9052 - (void) reloadDataWithInvocation:(NSInvocation *)invocation {
9053 _profile(reloadDataWithInvocation)
9054 @synchronized (self) {
9055 UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil);
9056 if (hud != nil)
9057 [hud setText:UCLocalize("RELOADING_DATA")];
9058
9059 [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation];
9060
9061 size_t changes(0);
9062
9063 [essential_ removeAllObjects];
9064 [broken_ removeAllObjects];
9065
9066 _profile(reloadDataWithInvocation$Essential)
9067 NSArray *packages([database_ packages]);
9068 for (Package *package in packages) {
9069 if ([package half])
9070 [broken_ addObject:package];
9071 if ([package upgradableAndEssential:YES] && ![package ignored]) {
9072 if ([package essential] && [package installed] != nil)
9073 [essential_ addObject:package];
9074 ++changes;
9075 }
9076 }
9077 _end
9078
9079 UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem];
9080 if (changes != 0) {
9081 _trace();
9082 NSString *badge([[NSNumber numberWithInt:changes] stringValue]);
9083 [changesItem setBadgeValue:badge];
9084 [changesItem setAnimatedBadge:([essential_ count] > 0)];
9085 [self setApplicationIconBadgeNumber:changes];
9086 } else {
9087 _trace();
9088 [changesItem setBadgeValue:nil];
9089 [changesItem setAnimatedBadge:NO];
9090 [self setApplicationIconBadgeNumber:0];
9091 }
9092
9093 Queuing_ = false;
9094 [self _updateData];
9095
9096 if (hud != nil)
9097 [self removeProgressHUD:hud];
9098 }
9099 _end
9100
9101 PrintTimes();
9102 }
9103
9104 - (void) updateData {
9105 [self _updateData];
9106 }
9107
9108 - (void) updateDataAndLoad {
9109 [self _updateData];
9110 if ([database_ progressDelegate] == nil)
9111 [self _loaded];
9112 }
9113
9114 - (void) update_ {
9115 [database_ update];
9116 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9117 }
9118
9119 - (void) disemulate {
9120 if (emulated_ == nil)
9121 return;
9122
9123 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9124 [window_ setRootViewController:tabbar_];
9125 else {
9126 [window_ addSubview:[tabbar_ view]];
9127 [[emulated_ view] removeFromSuperview];
9128 }
9129
9130 emulated_ = nil;
9131 [window_ setUserInteractionEnabled:YES];
9132 }
9133
9134 - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force {
9135 UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]);
9136
9137 UIViewController *parent;
9138 if (emulated_ == nil)
9139 parent = tabbar_;
9140 else if (!force)
9141 parent = emulated_;
9142 else {
9143 [self disemulate];
9144 parent = tabbar_;
9145 }
9146
9147 if (IsWildcat_)
9148 [navigation setModalPresentationStyle:UIModalPresentationFormSheet];
9149 [parent presentModalViewController:navigation animated:YES];
9150 }
9151
9152 - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title {
9153 ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]);
9154
9155 if (navigation != nil)
9156 [navigation pushViewController:progress animated:YES];
9157 else
9158 [self presentModalViewController:progress force:YES];
9159
9160 [progress invoke:invocation withTitle:title];
9161 return progress;
9162 }
9163
9164 - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title {
9165 [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title];
9166 }
9167
9168 - (void) repairWithInvocation:(NSInvocation *)invocation {
9169 _trace();
9170 [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
9171 _trace();
9172 }
9173
9174 - (void) repairWithSelector:(SEL)selector {
9175 [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES];
9176 }
9177
9178 - (void) reloadData {
9179 [self reloadDataWithInvocation:nil];
9180 if ([database_ progressDelegate] == nil)
9181 [self _loaded];
9182 }
9183
9184 - (void) syncData {
9185 [self _saveConfig];
9186 [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
9187 }
9188
9189 - (void) addSource:(NSDictionary *) source {
9190 CydiaAddSource(source);
9191 }
9192
9193 - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections {
9194 CydiaAddSource(href, distribution, sections);
9195 }
9196
9197 - (void) addTrivialSource:(NSString *)href {
9198 CydiaAddSource(href, @"./");
9199 }
9200
9201 - (void) resolve {
9202 pkgProblemResolver *resolver = [database_ resolver];
9203
9204 resolver->InstallProtect();
9205 if (!resolver->Resolve(true))
9206 _error->Discard();
9207 }
9208
9209 - (bool) perform {
9210 // XXX: this is a really crappy way of doing this.
9211 // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that.
9212 // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid
9213 // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing.
9214 if ([tabbar_ updating])
9215 [tabbar_ cancelUpdate];
9216
9217 if (![database_ prepare])
9218 return false;
9219
9220 ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]);
9221 [page setDelegate:self];
9222 UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]);
9223
9224 if (IsWildcat_)
9225 [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];
9226 [tabbar_ presentModalViewController:confirm_ animated:YES];
9227
9228 return true;
9229 }
9230
9231 - (void) queue {
9232 @synchronized (self) {
9233 [self perform];
9234 }
9235 }
9236
9237 - (void) clearPackage:(Package *)package {
9238 @synchronized (self) {
9239 [package clear];
9240 [self resolve];
9241 [self perform];
9242 }
9243 }
9244
9245 - (void) installPackages:(NSArray *)packages {
9246 @synchronized (self) {
9247 for (Package *package in packages)
9248 [package install];
9249 [self resolve];
9250 [self perform];
9251 }
9252 }
9253
9254 - (void) installPackage:(Package *)package {
9255 @synchronized (self) {
9256 [package install];
9257 [self resolve];
9258 [self perform];
9259 }
9260 }
9261
9262 - (void) removePackage:(Package *)package {
9263 @synchronized (self) {
9264 [package remove];
9265 [self resolve];
9266 [self perform];
9267 }
9268 }
9269
9270 - (void) distUpgrade {
9271 @synchronized (self) {
9272 if (![database_ upgrade])
9273 return;
9274 [self perform];
9275 }
9276 }
9277
9278 - (void) _uicache {
9279 _trace();
9280
9281 if (UpgradeCydia_ && Finish_ > 0)
9282 system("/usr/libexec/cydia/cydo /bin/su -c /usr/bin/uicache mobile");
9283 else
9284 system("/usr/bin/uicache");
9285
9286 _trace();
9287 }
9288
9289 - (void) uicache {
9290 UIProgressHUD *hud([self addProgressHUD]);
9291 [hud setText:UCLocalize("LOADING")];
9292 [self yieldToSelector:@selector(_uicache)];
9293 [self removeProgressHUD:hud];
9294 }
9295
9296 - (void) perform_ {
9297 [database_ perform];
9298 [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
9299 [self performSelectorOnMainThread:@selector(uicache) withObject:nil waitUntilDone:YES];
9300 }
9301
9302 - (void) confirmWithNavigationController:(UINavigationController *)navigation {
9303 Queuing_ = false;
9304 [self lockSuspend];
9305 [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"];
9306 [self unlockSuspend];
9307 }
9308
9309 - (void) retainNetworkActivityIndicator {
9310 if (activity_++ == 0)
9311 [self setNetworkActivityIndicatorVisible:YES];
9312
9313 #if TraceLogging
9314 NSLog(@"retainNetworkActivityIndicator->%d", activity_);
9315 #endif
9316 }
9317
9318 - (void) releaseNetworkActivityIndicator {
9319 if (--activity_ == 0)
9320 [self setNetworkActivityIndicatorVisible:NO];
9321
9322 #if TraceLogging
9323 NSLog(@"releaseNetworkActivityIndicator->%d", activity_);
9324 #endif
9325
9326 }
9327
9328 - (void) cancelAndClear:(bool)clear {
9329 @synchronized (self) {
9330 if (clear) {
9331 [database_ clear];
9332 Queuing_ = false;
9333 } else {
9334 Queuing_ = true;
9335 }
9336
9337 [self _updateData];
9338 }
9339 }
9340
9341 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button {
9342 NSString *context([alert context]);
9343
9344 if ([context isEqualToString:@"conffile"]) {
9345 FILE *input = [database_ input];
9346 if (button == [alert cancelButtonIndex])
9347 fprintf(input, "N\n");
9348 else if (button == [alert firstOtherButtonIndex])
9349 fprintf(input, "Y\n");
9350 fflush(input);
9351
9352 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9353 } else if ([context isEqualToString:@"fixhalf"]) {
9354 if (button == [alert cancelButtonIndex]) {
9355 @synchronized (self) {
9356 for (Package *broken in (id) broken_) {
9357 [broken remove];
9358 NSString *id = [broken id];
9359
9360 system([[NSString stringWithFormat:@"/usr/libexec/cydia/cydo /bin/rm -f"
9361 " /var/lib/dpkg/info/%@.prerm"
9362 " /var/lib/dpkg/info/%@.postrm"
9363 " /var/lib/dpkg/info/%@.preinst"
9364 " /var/lib/dpkg/info/%@.postinst"
9365 " /var/lib/dpkg/info/%@.extrainst_"
9366 , id, id, id, id, id] UTF8String]);
9367 }
9368
9369 [self resolve];
9370 [self perform];
9371 }
9372 } else if (button == [alert firstOtherButtonIndex]) {
9373 [broken_ removeAllObjects];
9374 [self _loaded];
9375 }
9376
9377 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9378 } else if ([context isEqualToString:@"upgrade"]) {
9379 if (button == [alert firstOtherButtonIndex]) {
9380 @synchronized (self) {
9381 for (Package *essential in (id) essential_)
9382 [essential install];
9383
9384 [self resolve];
9385 [self perform];
9386 }
9387 } else if (button == [alert firstOtherButtonIndex] + 1) {
9388 [self distUpgrade];
9389 } else if (button == [alert cancelButtonIndex]) {
9390 Ignored_ = YES;
9391 }
9392
9393 [alert dismissWithClickedButtonIndex:-1 animated:YES];
9394 }
9395 }
9396
9397 - (void) system:(NSString *)command {
9398 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
9399
9400 _trace();
9401 system([command UTF8String]);
9402 _trace();
9403
9404 [pool release];
9405 }
9406
9407 - (void) applicationWillSuspend {
9408 [database_ clean];
9409 [super applicationWillSuspend];
9410 }
9411
9412 - (BOOL) isSafeToSuspend {
9413 if (locked_ != 0) {
9414 #if !ForRelease
9415 NSLog(@"isSafeToSuspend: locked_ != 0");
9416 #endif
9417 return false;
9418 }
9419
9420 if ([tabbar_ modalViewController] != nil)
9421 return false;
9422
9423 // Use external process status API internally.
9424 // This is probably a really bad idea.
9425 // XXX: what is the point of this? does this solve anything at all?
9426 uint64_t status = 0;
9427 int notify_token;
9428 if (notify_register_check("com.saurik.Cydia.status", &notify_token) == NOTIFY_STATUS_OK) {
9429 notify_get_state(notify_token, &status);
9430 notify_cancel(notify_token);
9431 }
9432
9433 if (status != 0) {
9434 #if !ForRelease
9435 NSLog(@"isSafeToSuspend: status != 0");
9436 #endif
9437 return false;
9438 }
9439
9440 #if !ForRelease
9441 NSLog(@"isSafeToSuspend: -> true");
9442 #endif
9443 return true;
9444 }
9445
9446 - (void) suspendReturningToLastApp:(BOOL)returning {
9447 if ([self isSafeToSuspend])
9448 [super suspendReturningToLastApp:returning];
9449 }
9450
9451 - (void) suspend {
9452 if ([self isSafeToSuspend])
9453 [super suspend];
9454 }
9455
9456 - (void) applicationSuspend {
9457 if ([self isSafeToSuspend])
9458 [super applicationSuspend];
9459 }
9460
9461 - (void) applicationSuspend:(__GSEvent *)event {
9462 if ([self isSafeToSuspend])
9463 [super applicationSuspend:event];
9464 }
9465
9466 - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 {
9467 if ([self isSafeToSuspend])
9468 [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3];
9469 }
9470
9471 - (void) _setSuspended:(BOOL)value {
9472 if ([self isSafeToSuspend])
9473 [super _setSuspended:value];
9474 }
9475
9476 - (UIProgressHUD *) addProgressHUD {
9477 UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]);
9478 [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth];
9479
9480 [window_ setUserInteractionEnabled:NO];
9481
9482 UIViewController *target(tabbar_);
9483 if (UIViewController *modal = [target modalViewController])
9484 target = modal;
9485
9486 [hud showInView:[target view]];
9487
9488 [self lockSuspend];
9489 return hud;
9490 }
9491
9492 - (void) removeProgressHUD:(UIProgressHUD *)hud {
9493 [self unlockSuspend];
9494 [hud hide];
9495 [hud removeFromSuperview];
9496 [window_ setUserInteractionEnabled:YES];
9497 }
9498
9499 - (CyteViewController *) pageForPackage:(NSString *)name withReferrer:(NSString *)referrer {
9500 return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name withReferrer:referrer] autorelease];
9501 }
9502
9503 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external withReferrer:(NSString *)referrer {
9504 NSString *scheme([[url scheme] lowercaseString]);
9505 if ([[url absoluteString] length] <= [scheme length] + 3)
9506 return nil;
9507 NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]);
9508 NSArray *components([path componentsSeparatedByString:@"/"]);
9509
9510 if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"]) {
9511 CyteViewController *controller([self pageForPackage:[components objectAtIndex:1] withReferrer:referrer]);
9512 if (controller != nil)
9513 [controller setDelegate:self];
9514 return controller;
9515 }
9516
9517 if ([components count] < 1 || ![scheme isEqualToString:@"cydia"])
9518 return nil;
9519
9520 NSString *base([components objectAtIndex:0]);
9521
9522 CyteViewController *controller = nil;
9523
9524 if ([base isEqualToString:@"url"]) {
9525 // This kind of URL can contain slashes in the argument, so we can't parse them below.
9526 NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])];
9527 controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease];
9528 } else if (!external && [components count] == 1) {
9529 if ([base isEqualToString:@"sources"]) {
9530 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9531 }
9532
9533 if ([base isEqualToString:@"home"]) {
9534 controller = [[[HomeController alloc] init] autorelease];
9535 }
9536
9537 if ([base isEqualToString:@"sections"]) {
9538 controller = [[[SectionsController alloc] initWithDatabase:database_ source:nil] autorelease];
9539 }
9540
9541 if ([base isEqualToString:@"search"]) {
9542 controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease];
9543 }
9544
9545 if ([base isEqualToString:@"changes"]) {
9546 controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease];
9547 }
9548
9549 if ([base isEqualToString:@"installed"]) {
9550 controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease];
9551 }
9552 } else if ([components count] == 2) {
9553 NSString *argument = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9554
9555 if ([base isEqualToString:@"package"]) {
9556 controller = [self pageForPackage:argument withReferrer:referrer];
9557 }
9558
9559 if (!external && [base isEqualToString:@"search"]) {
9560 controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease];
9561 }
9562
9563 if (!external && [base isEqualToString:@"sections"]) {
9564 if ([argument isEqualToString:@"all"] || [argument isEqualToString:@"*"])
9565 argument = nil;
9566 controller = [[[SectionController alloc] initWithDatabase:database_ source:nil section:argument] autorelease];
9567 }
9568
9569 if (!external && [base isEqualToString:@"sources"]) {
9570 if ([argument isEqualToString:@"add"]) {
9571 controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease];
9572 [(SourcesController *)controller showAddSourcePrompt];
9573 } else {
9574 Source *source([database_ sourceWithKey:argument]);
9575 controller = [[[SectionsController alloc] initWithDatabase:database_ source:source] autorelease];
9576 }
9577 }
9578
9579 if (!external && [base isEqualToString:@"launch"]) {
9580 [self launchApplicationWithIdentifier:argument suspended:NO];
9581 return nil;
9582 }
9583 } else if (!external && [components count] == 3) {
9584 NSString *arg1 = [[components objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9585 NSString *arg2 = [[components objectAtIndex:2] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
9586
9587 if ([base isEqualToString:@"package"]) {
9588 if ([arg2 isEqualToString:@"settings"]) {
9589 controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease];
9590 } else if ([arg2 isEqualToString:@"files"]) {
9591 if (Package *package = [database_ packageWithName:arg1]) {
9592 controller = [[[FileTable alloc] initWithDatabase:database_] autorelease];
9593 [(FileTable *)controller setPackage:package];
9594 }
9595 }
9596 }
9597
9598 if ([base isEqualToString:@"sections"]) {
9599 Source *source([arg1 isEqualToString:@"*"] ? nil : [database_ sourceWithKey:arg1]);
9600 NSString *section([arg2 isEqualToString:@"*"] ? nil : arg2);
9601 controller = [[[SectionController alloc] initWithDatabase:database_ source:source section:section] autorelease];
9602 }
9603 }
9604
9605 [controller setDelegate:self];
9606 return controller;
9607 }
9608
9609 - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external {
9610 CyteViewController *page([self pageForURL:url forExternal:external withReferrer:nil]);
9611
9612 if (page != nil)
9613 [tabbar_ setUnselectedViewController:page];
9614
9615 return page != nil;
9616 }
9617
9618 - (void) applicationOpenURL:(NSURL *)url {
9619 [super applicationOpenURL:url];
9620
9621 if (!loaded_)
9622 starturl_ = url;
9623 else
9624 [self openCydiaURL:url forExternal:YES];
9625 }
9626
9627 - (void) applicationWillResignActive:(UIApplication *)application {
9628 // Stop refreshing if you get a phone call or lock the device.
9629 if ([tabbar_ updating])
9630 [tabbar_ cancelUpdate];
9631
9632 if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)])
9633 [super applicationWillResignActive:application];
9634 }
9635
9636 - (void) saveState {
9637 [[NSDictionary dictionaryWithObjectsAndKeys:
9638 @"InterfaceState", [tabbar_ navigationURLCollection],
9639 @"LastClosed", [NSDate date],
9640 @"InterfaceIndex", [NSNumber numberWithInt:[tabbar_ selectedIndex]],
9641 nil] writeToFile:@ SavedState_ atomically:YES];
9642
9643 [self _saveConfig];
9644 }
9645
9646 - (void) applicationWillTerminate:(UIApplication *)application {
9647 [self saveState];
9648 }
9649
9650 - (void) applicationDidEnterBackground:(UIApplication *)application {
9651 if (kCFCoreFoundationVersionNumber < 1000 && [self isSafeToSuspend])
9652 return [self terminateWithSuccess];
9653 Backgrounded_ = [NSDate date];
9654 [self saveState];
9655 }
9656
9657 - (void) applicationWillEnterForeground:(UIApplication *)application {
9658 if (Backgrounded_ == nil)
9659 return;
9660
9661 NSTimeInterval interval([Backgrounded_ timeIntervalSinceNow]);
9662
9663 if (interval <= -(30*60)) {
9664 [tabbar_ setSelectedIndex:0];
9665 [[[tabbar_ viewControllers] objectAtIndex:0] popToRootViewControllerAnimated:NO];
9666 }
9667
9668 if (interval <= -(15*60)) {
9669 if (IsReachable("cydia.saurik.com")) {
9670 [tabbar_ beginUpdate];
9671 [appcache_ reloadURLWithCache:YES];
9672 }
9673 }
9674
9675 if ([database_ delocked])
9676 [self reloadData];
9677 }
9678
9679 - (void) setConfigurationData:(NSString *)data {
9680 static RegEx conffile_r("'(.*)' '(.*)' ([01]) ([01])");
9681
9682 if (!conffile_r(data)) {
9683 lprintf("E:invalid conffile\n");
9684 return;
9685 }
9686
9687 NSString *ofile = conffile_r[1];
9688 //NSString *nfile = conffile_r[2];
9689
9690 UIAlertView *alert = [[[UIAlertView alloc]
9691 initWithTitle:UCLocalize("CONFIGURATION_UPGRADE")
9692 message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile]
9693 delegate:self
9694 cancelButtonTitle:UCLocalize("KEEP_OLD_COPY")
9695 otherButtonTitles:
9696 UCLocalize("ACCEPT_NEW_COPY"),
9697 // XXX: UCLocalize("SEE_WHAT_CHANGED"),
9698 nil
9699 ] autorelease];
9700
9701 [alert setContext:@"conffile"];
9702 [alert setNumberOfRows:2];
9703 [alert show];
9704 }
9705
9706 - (void) addStashController {
9707 [self lockSuspend];
9708 stash_ = [[[StashController alloc] init] autorelease];
9709 [window_ addSubview:[stash_ view]];
9710 }
9711
9712 - (void) removeStashController {
9713 [[stash_ view] removeFromSuperview];
9714 stash_ = nil;
9715 [self unlockSuspend];
9716 }
9717
9718 - (void) stash {
9719 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
9720 UpdateExternalStatus(1);
9721 [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/cydo /usr/libexec/cydia/free.sh"];
9722 UpdateExternalStatus(0);
9723
9724 [self removeStashController];
9725
9726 pid_t pid(ExecFork());
9727 if (pid == 0) {
9728 execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
9729 perror("launchctl stop");
9730
9731 exit(0);
9732 } ReapZombie(pid);
9733 }
9734
9735 - (void) setupViewControllers {
9736 tabbar_ = [[[CydiaTabBarController alloc] initWithDatabase:database_] autorelease];
9737
9738 NSMutableArray *items;
9739 if (kCFCoreFoundationVersionNumber < 800) {
9740 items = [NSMutableArray arrayWithObjects:
9741 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home.png"] tag:0] autorelease],
9742 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install.png"] tag:0] autorelease],
9743 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes.png"] tag:0] autorelease],
9744 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage.png"] tag:0] autorelease],
9745 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search.png"] tag:0] autorelease],
9746 nil];
9747 } else {
9748 items = [NSMutableArray arrayWithObjects:
9749 [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage imageNamed:@"home7.png"] selectedImage:[UIImage imageNamed:@"home7s.png"]] autorelease],
9750 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage imageNamed:@"install7.png"] selectedImage:[UIImage imageNamed:@"install7s.png"]] autorelease],
9751 [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage imageNamed:@"changes7.png"] selectedImage:[UIImage imageNamed:@"changes7s.png"]] autorelease],
9752 [[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage imageNamed:@"manage7.png"] selectedImage:[UIImage imageNamed:@"manage7s.png"]] autorelease],
9753 [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage imageNamed:@"search7.png"] selectedImage:[UIImage imageNamed:@"search7s.png"]] autorelease],
9754 nil];
9755 }
9756
9757 NSMutableArray *controllers([NSMutableArray array]);
9758 for (UITabBarItem *item in items) {
9759 UINavigationController *controller([[[UINavigationController alloc] init] autorelease]);
9760 [controller setTabBarItem:item];
9761 [controllers addObject:controller];
9762 }
9763 [tabbar_ setViewControllers:controllers];
9764
9765 [tabbar_ setUpdateDelegate:self];
9766 }
9767
9768 - (void) _sendMemoryWarningNotification {
9769 if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: maybe 4_0?
9770 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationMemoryWarningNotification" object:[UIApplication sharedApplication]];
9771 else
9772 [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]];
9773 }
9774
9775 - (void) _sendMemoryWarningNotifications {
9776 while (true) {
9777 [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO];
9778 sleep(2);
9779 //usleep(2000000);
9780 }
9781 }
9782
9783 - (void) applicationDidReceiveMemoryWarning:(UIApplication *)application {
9784 NSLog(@"--");
9785 [[NSURLCache sharedURLCache] removeAllCachedResponses];
9786 }
9787
9788 - (void) applicationDidFinishLaunching:(id)unused {
9789 //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil];
9790
9791 _trace();
9792 if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)])
9793 [self setApplicationSupportsShakeToEdit:NO];
9794
9795 @synchronized (HostConfig_) {
9796 [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]];
9797 }
9798
9799 [NSURLCache setSharedURLCache:[[[CYURLCache alloc]
9800 initWithMemoryCapacity:524288
9801 diskCapacity:10485760
9802 diskPath:Cache("SDURLCache")
9803 ] autorelease]];
9804
9805 [CydiaWebViewController _initialize];
9806
9807 [NSURLProtocol registerClass:[CydiaURLProtocol class]];
9808
9809 // this would disallow http{,s} URLs from accessing this data
9810 //[WebView registerURLSchemeAsLocal:@"cydia"];
9811
9812 Font12_ = [UIFont systemFontOfSize:12];
9813 Font12Bold_ = [UIFont boldSystemFontOfSize:12];
9814 Font14_ = [UIFont systemFontOfSize:14];
9815 Font18_ = [UIFont systemFontOfSize:18];
9816 Font18Bold_ = [UIFont boldSystemFontOfSize:18];
9817 Font22Bold_ = [UIFont boldSystemFontOfSize:22];
9818
9819 essential_ = [NSMutableArray arrayWithCapacity:4];
9820 broken_ = [NSMutableArray arrayWithCapacity:4];
9821
9822 // XXX: I really need this thing... like, seriously... I'm sorry
9823 appcache_ = [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] autorelease];
9824 [appcache_ reloadData];
9825
9826 window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
9827 [window_ orderFront:self];
9828 [window_ makeKey:self];
9829 [window_ setHidden:NO];
9830
9831 if (false) stash: {
9832 [self addStashController];
9833 // XXX: this would be much cleaner as a yieldToSelector:
9834 // that way the removeStashController could happen right here inline
9835 // we also could no longer require the useless stash_ field anymore
9836 [self performSelector:@selector(stash) withObject:nil afterDelay:0];
9837 return;
9838 }
9839
9840 struct stat root;
9841 int error(stat("/", &root));
9842 _assert(error != -1);
9843
9844 #define Stash_(path) do { \
9845 struct stat folder; \
9846 int error(lstat((path), &folder)); \
9847 if (error != -1 && ( \
9848 folder.st_dev == root.st_dev && \
9849 S_ISDIR(folder.st_mode) \
9850 ) || error == -1 && ( \
9851 errno == ENOENT || \
9852 errno == ENOTDIR \
9853 )) goto stash; \
9854 } while (false)
9855
9856 Stash_("/Applications");
9857 Stash_("/Library/Ringtones");
9858 Stash_("/Library/Wallpaper");
9859 //Stash_("/usr/bin");
9860 Stash_("/usr/include");
9861 Stash_("/usr/share");
9862 //Stash_("/var/lib");
9863
9864 database_ = [Database sharedInstance];
9865 [database_ setDelegate:self];
9866
9867 [window_ setUserInteractionEnabled:NO];
9868 [self setupViewControllers];
9869
9870 CydiaLoadingViewController *loading([[[CydiaLoadingViewController alloc] init] autorelease]);
9871 UINavigationController *navigation([[[UINavigationController alloc] init] autorelease]);
9872 [navigation setViewControllers:[NSArray arrayWithObject:loading]];
9873
9874 emulated_ = [[[CyteTabBarController alloc] init] autorelease];
9875 [emulated_ setViewControllers:[NSArray arrayWithObject:navigation]];
9876 [emulated_ setSelectedIndex:0];
9877
9878 if ([emulated_ respondsToSelector:@selector(concealTabBarSelection)])
9879 [emulated_ concealTabBarSelection];
9880
9881 if ([window_ respondsToSelector:@selector(setRootViewController:)])
9882 [window_ setRootViewController:emulated_];
9883 else
9884 [window_ addSubview:[emulated_ view]];
9885
9886 [self performSelector:@selector(loadData) withObject:nil afterDelay:0];
9887 _trace();
9888 }
9889
9890 - (NSArray *) defaultStartPages {
9891 NSMutableArray *standard = [NSMutableArray array];
9892 [standard addObject:[NSArray arrayWithObject:@"cydia://home"]];
9893 [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]];
9894 [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]];
9895 [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]];
9896 [standard addObject:[NSArray arrayWithObject:@"cydia://search"]];
9897 return standard;
9898 }
9899
9900 - (void) loadData {
9901 _trace();
9902 if ([emulated_ modalViewController] != nil)
9903 [emulated_ dismissModalViewControllerAnimated:YES];
9904 [window_ setUserInteractionEnabled:NO];
9905
9906 [self reloadDataWithInvocation:nil];
9907 [self refreshIfPossible];
9908 [self disemulate];
9909
9910 NSDictionary *state([NSDictionary dictionaryWithContentsOfFile:@ SavedState_]);
9911
9912 int savedIndex = [[state objectForKey:@"InterfaceIndex"] intValue];
9913 NSArray *saved = [[[state objectForKey:@"InterfaceState"] mutableCopy] autorelease];
9914 int standardIndex = 0;
9915 NSArray *standard = [self defaultStartPages];
9916
9917 BOOL valid = YES;
9918
9919 if (saved == nil)
9920 valid = NO;
9921
9922 NSDate *closed = [state objectForKey:@"LastClosed"];
9923 if (valid && closed != nil) {
9924 NSTimeInterval interval([closed timeIntervalSinceNow]);
9925 if (interval <= -(30*60))
9926 valid = NO;
9927 }
9928
9929 if (valid && [saved count] != [standard count])
9930 valid = NO;
9931
9932 if (valid) {
9933 for (unsigned int i = 0; i < [standard count]; i++) {
9934 NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i];
9935 // XXX: The "hasPrefix" sanity check here could be, in theory, fooled,
9936 // but it's good enough for now.
9937 if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) {
9938 valid = NO;
9939 break;
9940 }
9941 }
9942 }
9943
9944 NSArray *items = nil;
9945 if (valid) {
9946 [tabbar_ setSelectedIndex:savedIndex];
9947 items = saved;
9948 } else {
9949 [tabbar_ setSelectedIndex:standardIndex];
9950 items = standard;
9951 }
9952
9953 for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) {
9954 NSArray *stack = [items objectAtIndex:tab];
9955 UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab];
9956 NSMutableArray *current = [NSMutableArray array];
9957
9958 for (unsigned int nav = 0; nav < [stack count]; nav++) {
9959 NSString *addr = [stack objectAtIndex:nav];
9960 NSURL *url = [NSURL URLWithString:addr];
9961 CyteViewController *page = [self pageForURL:url forExternal:NO withReferrer:nil];
9962 if (page != nil)
9963 [current addObject:page];
9964 }
9965
9966 [navigation setViewControllers:current];
9967 }
9968
9969 // (Try to) show the startup URL.
9970 if (starturl_ != nil) {
9971 [self openCydiaURL:starturl_ forExternal:YES];
9972 starturl_ = nil;
9973 }
9974 }
9975
9976 - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {
9977 if (item != nil && IsWildcat_) {
9978 [sheet showFromBarButtonItem:item animated:YES];
9979 } else {
9980 [sheet showInView:window_];
9981 }
9982 }
9983
9984 - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task {
9985 id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]);
9986 [progress setTitle:task];
9987 [progress addProgressEvent:event];
9988 }
9989
9990 - (void) addProgressEventForTask:(NSArray *)data {
9991 CydiaProgressEvent *event([data objectAtIndex:0]);
9992 NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]);
9993 [self addProgressEvent:event forTask:task];
9994 }
9995
9996 - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task {
9997 [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES];
9998 }
9999
10000 @end
10001
10002 /*IMP alloc_;
10003 id Alloc_(id self, SEL selector) {
10004 id object = alloc_(self, selector);
10005 lprintf("[%s]A-%p\n", self->isa->name, object);
10006 return object;
10007 }*/
10008
10009 /*IMP dealloc_;
10010 id Dealloc_(id self, SEL selector) {
10011 id object = dealloc_(self, selector);
10012 lprintf("[%s]D-%p\n", self->isa->name, object);
10013 return object;
10014 }*/
10015
10016 Class $NSURLConnection;
10017
10018 MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) {
10019 NSMutableURLRequest *copy([[request mutableCopy] autorelease]);
10020
10021 NSURL *url([copy URL]);
10022
10023 NSString *host([url host]);
10024 NSString *scheme([[url scheme] lowercaseString]);
10025
10026 NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]);
10027
10028 @synchronized (HostConfig_) {
10029 if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)])
10030 if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound])
10031 [copy setHTTPShouldUsePipelining:YES];
10032
10033 if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"])
10034 if ([control isEqualToString:@"max-age=0"])
10035 if ([CachedURLs_ containsObject:url]) {
10036 #if !ForRelease
10037 NSLog(@"~~~: %@", url);
10038 #endif
10039
10040 [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad];
10041
10042 [copy setValue:nil forHTTPHeaderField:@"Cache-Control"];
10043 [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"];
10044 [copy setValue:nil forHTTPHeaderField:@"If-None-Match"];
10045 }
10046 }
10047
10048 if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) {
10049 } return self;
10050 }
10051
10052 Class $WAKWindow;
10053
10054 static CGSize $WAKWindow$screenSize(WAKWindow *self, SEL _cmd) {
10055 CGSize size([[UIScreen mainScreen] bounds].size);
10056 /*if ([$WAKWindow respondsToSelector:@selector(hasLandscapeOrientation)])
10057 if ([$WAKWindow hasLandscapeOrientation])
10058 std::swap(size.width, size.height);*/
10059 return size;
10060 }
10061
10062 Class $NSUserDefaults;
10063
10064 MSHook(id, NSUserDefaults$objectForKey$, NSUserDefaults *self, SEL _cmd, NSString *key) {
10065 if ([key respondsToSelector:@selector(isEqualToString:)] && [key isEqualToString:@"WebKitLocalStorageDatabasePathPreferenceKey"])
10066 return Cache("LocalStorage");
10067 return _NSUserDefaults$objectForKey$(self, _cmd, key);
10068 }
10069
10070 int main(int argc, char *argv[]) {
10071 int fd(open("/tmp/cydia.log", O_WRONLY | O_APPEND | O_CREAT, 0644));
10072 dup2(fd, 2);
10073 close(fd);
10074
10075 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
10076
10077 _trace();
10078
10079 UpdateExternalStatus(0);
10080
10081 UIScreen *screen([UIScreen mainScreen]);
10082 if ([screen respondsToSelector:@selector(scale)])
10083 ScreenScale_ = [screen scale];
10084 else
10085 ScreenScale_ = 1;
10086
10087 UIDevice *device([UIDevice currentDevice]);
10088 if ([device respondsToSelector:@selector(userInterfaceIdiom)]) {
10089 UIUserInterfaceIdiom idiom([device userInterfaceIdiom]);
10090 if (idiom == UIUserInterfaceIdiomPad)
10091 IsWildcat_ = true;
10092 }
10093
10094 Idiom_ = IsWildcat_ ? @"ipad" : @"iphone";
10095
10096 RegEx pattern("([0-9]+\\.[0-9]+).*");
10097
10098 if (pattern([device systemVersion]))
10099 Firmware_ = pattern[1];
10100 if (pattern(Cydia_))
10101 Major_ = pattern[1];
10102
10103 SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4];
10104
10105 HostConfig_ = [[[NSObject alloc] init] autorelease];
10106 @synchronized (HostConfig_) {
10107 BridgedHosts_ = [NSMutableSet setWithCapacity:4];
10108 InsecureHosts_ = [NSMutableSet setWithCapacity:4];
10109 PipelinedHosts_ = [NSMutableSet setWithCapacity:4];
10110 CachedURLs_ = [NSMutableSet setWithCapacity:32];
10111 }
10112
10113 NSString *ui(@"ui/ios");
10114 if (Idiom_ != nil)
10115 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]];
10116 ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]];
10117 UI_ = CydiaURL(ui);
10118
10119 PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname))));
10120
10121 /* Library Hacks {{{ */
10122 class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16");
10123
10124 $WAKWindow = objc_getClass("WAKWindow");
10125 if ($WAKWindow != NULL)
10126 if (Method method = class_getInstanceMethod($WAKWindow, @selector(screenSize)))
10127 method_setImplementation(method, (IMP) &$WAKWindow$screenSize);
10128
10129 $NSURLConnection = objc_getClass("NSURLConnection");
10130 Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:)));
10131 if (NSURLConnection$init$ != NULL) {
10132 _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$));
10133 method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$));
10134 }
10135
10136 $NSUserDefaults = objc_getClass("NSUserDefaults");
10137 Method NSUserDefaults$objectForKey$(class_getInstanceMethod($NSUserDefaults, @selector(objectForKey:)));
10138 if (NSUserDefaults$objectForKey$ != NULL) {
10139 _NSUserDefaults$objectForKey$ = reinterpret_cast<id (*)(NSUserDefaults *, SEL, NSString *)>(method_getImplementation(NSUserDefaults$objectForKey$));
10140 method_setImplementation(NSUserDefaults$objectForKey$, reinterpret_cast<IMP>(&$NSUserDefaults$objectForKey$));
10141 }
10142 /* }}} */
10143 /* Set Locale {{{ */
10144 Locale_ = CFLocaleCopyCurrent();
10145 Languages_ = [NSLocale preferredLanguages];
10146
10147 //CFStringRef locale(CFLocaleGetIdentifier(Locale_));
10148 //NSLog(@"%@", [Languages_ description]);
10149
10150 const char *lang;
10151 if (Locale_ != NULL)
10152 lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String];
10153 else if (Languages_ != nil && [Languages_ count] != 0)
10154 lang = [[Languages_ objectAtIndex:0] UTF8String];
10155 else
10156 // XXX: consider just setting to C and then falling through?
10157 lang = NULL;
10158
10159 if (lang != NULL) {
10160 RegEx pattern("([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?");
10161 lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String];
10162 }
10163
10164 NSLog(@"Setting Language: %s", lang);
10165
10166 if (lang != NULL) {
10167 setenv("LANG", lang, true);
10168 std::setlocale(LC_ALL, lang);
10169 }
10170 /* }}} */
10171 /* Index Collation {{{ */
10172 if (Class $UILocalizedIndexedCollation = objc_getClass("UILocalizedIndexedCollation")) { @try {
10173 NSBundle *bundle([NSBundle bundleForClass:$UILocalizedIndexedCollation]);
10174 NSString *path([bundle pathForResource:@"UITableViewLocalizedSectionIndex" ofType:@"plist"]);
10175 //path = @"/System/Library/Frameworks/UIKit.framework/.lproj/UITableViewLocalizedSectionIndex.plist";
10176 NSDictionary *dictionary([NSDictionary dictionaryWithContentsOfFile:path]);
10177 _H<UILocalizedIndexedCollation> collation([[[$UILocalizedIndexedCollation alloc] initWithDictionary:dictionary] autorelease]);
10178
10179 CollationLocale_ = MSHookIvar<NSLocale *>(collation, "_locale");
10180
10181 if (kCFCoreFoundationVersionNumber >= 800 && [[CollationLocale_ localeIdentifier] isEqualToString:@"zh@collation=stroke"]) {
10182 CollationThumbs_ = [NSArray arrayWithObjects:@"1",@"•",@"4",@"•",@"7",@"•",@"10",@"•",@"13",@"•",@"16",@"•",@"19",@"A",@"•",@"E",@"•",@"I",@"•",@"M",@"•",@"R",@"•",@"V",@"•",@"Z",@"#",nil];
10183 for (NSInteger offset : (NSInteger[]) {0,1,3,4,6,7,9,10,12,13,15,16,18,25,26,29,30,33,34,37,38,42,43,46,47,50,51})
10184 CollationOffset_.push_back(offset);
10185 CollationTitles_ = [NSArray arrayWithObjects:@"1 畫",@"2 畫",@"3 畫",@"4 畫",@"5 畫",@"6 畫",@"7 畫",@"8 畫",@"9 畫",@"10 畫",@"11 畫",@"12 畫",@"13 畫",@"14 畫",@"15 畫",@"16 畫",@"17 畫",@"18 畫",@"19 畫",@"20 畫",@"21 畫",@"22 畫",@"23 畫",@"24 畫",@"25 畫以上",@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil];
10186 CollationStarts_ = [NSArray arrayWithObjects:@"一",@"丁",@"丈",@"不",@"且",@"丞",@"串",@"並",@"亭",@"乘",@"乾",@"傀",@"亂",@"僎",@"僵",@"儐",@"償",@"叢",@"儳",@"嚴",@"儷",@"儻",@"囌",@"囑",@"廳",@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"ʒ",nil];
10187 } else {
10188
10189 CollationThumbs_ = [collation sectionIndexTitles];
10190 for (size_t index(0), end([CollationThumbs_ count]); index != end; ++index)
10191 CollationOffset_.push_back([collation sectionForSectionIndexTitleAtIndex:index]);
10192
10193 CollationTitles_ = [collation sectionTitles];
10194 CollationStarts_ = MSHookIvar<NSArray *>(collation, "_sectionStartStrings");
10195
10196 NSString *&transform(MSHookIvar<NSString *>(collation, "_transform"));
10197 if (&transform != NULL && transform != nil) {
10198 /*if ([collation respondsToSelector:@selector(transformedCollationStringForString:)])
10199 CollationModify_ = [=](NSString *value) { return [collation transformedCollationStringForString:value]; };*/
10200 const UChar *uid(reinterpret_cast<const UChar *>([transform cStringUsingEncoding:NSUnicodeStringEncoding]));
10201 UErrorCode code(U_ZERO_ERROR);
10202 CollationTransl_ = utrans_openU(uid, -1, UTRANS_FORWARD, NULL, 0, NULL, &code);
10203 if (!U_SUCCESS(code))
10204 NSLog(@"%s", u_errorName(code));
10205 }
10206
10207 }
10208 } @catch (NSException *e) {
10209 NSLog(@"%@", e);
10210 goto hard;
10211 } } else hard: {
10212 CollationLocale_ = [[[NSLocale alloc] initWithLocaleIdentifier:@"en@collation=dictionary"] autorelease];
10213
10214 CollationThumbs_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil];
10215 for (NSInteger offset(0); offset != 28; ++offset)
10216 CollationOffset_.push_back(offset);
10217
10218 CollationTitles_ = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"#",nil];
10219 CollationStarts_ = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"ʒ",nil];
10220 }
10221 /* }}} */
10222 /* Parse Arguments {{{ */
10223 bool substrate(false);
10224
10225 if (argc != 0) {
10226 char **args(argv);
10227 int arge(1);
10228
10229 for (int argi(1); argi != argc; ++argi)
10230 if (strcmp(argv[argi], "--") == 0) {
10231 arge = argi;
10232 argv[argi] = argv[0];
10233 argv += argi;
10234 argc -= argi;
10235 break;
10236 }
10237
10238 for (int argi(1); argi != arge; ++argi)
10239 if (strcmp(args[argi], "--substrate") == 0)
10240 substrate = true;
10241 else
10242 fprintf(stderr, "unknown argument: %s\n", args[argi]);
10243 }
10244 /* }}} */
10245
10246 App_ = [[NSBundle mainBundle] bundlePath];
10247 Advanced_ = YES;
10248
10249 Cache_ = [[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia", @"/var/mobile"] retain];
10250
10251 /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc));
10252 alloc_ = alloc->method_imp;
10253 alloc->method_imp = (IMP) &Alloc_;*/
10254
10255 /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc));
10256 dealloc_ = dealloc->method_imp;
10257 dealloc->method_imp = (IMP) &Dealloc_;*/
10258
10259 void *gestalt(dlopen("/usr/lib/libMobileGestalt.dylib", RTLD_GLOBAL | RTLD_LAZY));
10260 $MGCopyAnswer = reinterpret_cast<CFStringRef (*)(CFStringRef)>(dlsym(gestalt, "MGCopyAnswer"));
10261
10262 /* System Information {{{ */
10263 size_t size;
10264
10265 int maxproc;
10266 size = sizeof(maxproc);
10267 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
10268 perror("sysctlbyname(\"kern.maxproc\", ?)");
10269 else if (maxproc < 64) {
10270 maxproc = 64;
10271 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
10272 perror("sysctlbyname(\"kern.maxproc\", #)");
10273 }
10274
10275 sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
10276 char *osversion = new char[size];
10277 if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1)
10278 perror("sysctlbyname(\"kern.osversion\", ?)");
10279 else
10280 System_ = [NSString stringWithUTF8String:osversion];
10281
10282 sysctlbyname("hw.machine", NULL, &size, NULL, 0);
10283 char *machine = new char[size];
10284 if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1)
10285 perror("sysctlbyname(\"hw.machine\", ?)");
10286 else
10287 Machine_ = machine;
10288
10289 int64_t usermem(0);
10290 size = sizeof(usermem);
10291 if (sysctlbyname("hw.usermem", &usermem, &size, NULL, 0) == -1)
10292 usermem = 0;
10293
10294 SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber");
10295 ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString];
10296 BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false);
10297
10298 UniqueID_ = UniqueIdentifier(device);
10299
10300 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) {
10301 Product_ = [info objectForKey:@"SafariProductVersion"];
10302 Safari_ = [info objectForKey:@"CFBundleVersion"];
10303 }
10304
10305 NSString *agent([NSString stringWithFormat:@"Cydia/%@ CyF/%.2f", Cydia_, kCFCoreFoundationVersionNumber]);
10306
10307 if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Safari_))
10308 agent = [NSString stringWithFormat:@"Safari/%@ %@", match[1], agent];
10309 if (RegEx match = RegEx("([0-9]+[A-Z][0-9]+[a-z]?).*", System_))
10310 agent = [NSString stringWithFormat:@"Mobile/%@ %@", match[1], agent];
10311 if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", Product_))
10312 agent = [NSString stringWithFormat:@"Version/%@ %@", match[1], agent];
10313
10314 UserAgent_ = agent;
10315 /* }}} */
10316 /* Load Database {{{ */
10317 SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease];
10318
10319 _trace();
10320 mkdir("/var/mobile/Library/Cydia", 0755);
10321 MetaFile_.Open("/var/mobile/Library/Cydia/metadata.cb0");
10322 _trace();
10323
10324 // XXX: port this to NSUserDefaults when you aren't in such a rush
10325 Values_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaValues"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10326 Sections_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaSections"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10327 Sources_ = [[[(NSDictionary *) CFPreferencesCopyAppValue(CFSTR("CydiaSources"), CFSTR("com.saurik.Cydia")) autorelease] mutableCopy] autorelease];
10328 Version_ = [(NSNumber *) CFPreferencesCopyAppValue(CFSTR("CydiaVersion"), CFSTR("com.saurik.Cydia")) autorelease];
10329
10330 _trace();
10331 NSDictionary *metadata([[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease]);
10332
10333 if (Values_ == nil)
10334 Values_ = [metadata objectForKey:@"Values"];
10335 if (Values_ == nil)
10336 Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease];
10337
10338 if (Sections_ == nil)
10339 Sections_ = [metadata objectForKey:@"Sections"];
10340 if (Sections_ == nil)
10341 Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease];
10342
10343 if (Sources_ == nil)
10344 Sources_ = [metadata objectForKey:@"Sources"];
10345 if (Sources_ == nil)
10346 Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease];
10347
10348 // XXX: this wrong, but in a way that doesn't matter :/
10349 if (Version_ == nil)
10350 Version_ = [metadata objectForKey:@"Version"];
10351 if (Version_ == nil)
10352 Version_ = [NSNumber numberWithUnsignedInt:0];
10353
10354 if (NSDictionary *packages = [metadata objectForKey:@"Packages"]) {
10355 bool fail(false);
10356 CFDictionaryApplyFunction((CFDictionaryRef) packages, &PackageImport, &fail);
10357 _trace();
10358 if (fail)
10359 NSLog(@"unable to import package preferences... from 2010? oh well :/");
10360 }
10361
10362 if ([Version_ unsignedIntValue] == 0) {
10363 CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10364 CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10365 CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
10366 CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
10367
10368 Version_ = [NSNumber numberWithUnsignedInt:1];
10369
10370 if (NSMutableDictionary *cache = [NSMutableDictionary dictionaryWithContentsOfFile:@ CacheState_]) {
10371 [cache removeObjectForKey:@"LastUpdate"];
10372 [cache writeToFile:@ CacheState_ atomically:YES];
10373 }
10374 }
10375
10376 _H<NSMutableArray> broken([NSMutableArray array]);
10377 for (NSString *key in (id) Sources_)
10378 if ([key rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"# "]].location != NSNotFound)
10379 [broken addObject:key];
10380 if ([broken count] != 0)
10381 for (NSString *key in (id) broken)
10382 [Sources_ removeObjectForKey:key];
10383 broken = nil;
10384
10385 SaveConfig(nil);
10386 system("/usr/libexec/cydia/cydo /bin/rm -f /var/lib/cydia/metadata.plist");
10387 /* }}} */
10388
10389 Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil];
10390
10391 if (kCFCoreFoundationVersionNumber > 1000)
10392 system("/usr/libexec/cydia/cydo /usr/libexec/cydia/setnsfpn /var/lib");
10393
10394 int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]);
10395
10396 if (access("/User", F_OK) != 0 || version != 6) {
10397 _trace();
10398 system("/usr/libexec/cydia/cydo /usr/libexec/cydia/firmware.sh");
10399 _trace();
10400 }
10401
10402 if (access("/tmp/cydia.chk", F_OK) == 0) {
10403 if (unlink([Cache("pkgcache.bin") UTF8String]) == -1)
10404 _assert(errno == ENOENT);
10405 if (unlink([Cache("srcpkgcache.bin") UTF8String]) == -1)
10406 _assert(errno == ENOENT);
10407 }
10408
10409 /* APT Initialization {{{ */
10410 _assert(pkgInitConfig(*_config));
10411 _assert(pkgInitSystem(*_config, _system));
10412
10413 if (lang != NULL)
10414 _config->Set("APT::Acquire::Translation", lang);
10415
10416 // XXX: this timeout might be important :(
10417 //_config->Set("Acquire::http::Timeout", 15);
10418
10419 _config->Set("Acquire::http::MaxParallel", usermem >= 384 * 1024 * 1024 ? 16 : 3);
10420
10421 mkdir([Cache_ UTF8String], 0755);
10422 mkdir([Cache("archives") UTF8String], 0755);
10423 mkdir([Cache("archives/partial") UTF8String], 0755);
10424 _config->Set("Dir::Cache", [Cache_ UTF8String]);
10425
10426 symlink("/var/lib/apt/extended_states", [Cache("extended_states") UTF8String]);
10427 _config->Set("Dir::State", [Cache_ UTF8String]);
10428
10429 mkdir([Cache("lists") UTF8String], 0755);
10430 mkdir([Cache("lists/partial") UTF8String], 0755);
10431 mkdir([Cache("periodic") UTF8String], 0755);
10432 _config->Set("Dir::State::Lists", [Cache("lists") UTF8String]);
10433
10434 std::string logs("/var/mobile/Library/Logs/Cydia");
10435 mkdir(logs.c_str(), 0755);
10436 _config->Set("Dir::Log::Terminal", logs + "/apt.log");
10437
10438 _config->Set("Dir::Bin::dpkg", "/usr/libexec/cydia/cydo");
10439 /* }}} */
10440 /* Color Choices {{{ */
10441 space_ = CGColorSpaceCreateDeviceRGB();
10442
10443 Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0);
10444 Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
10445 Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
10446 Folder_.Set(space_, 0x8e/255.f, 0x8e/255.f, 0x93/255.f, 1.0);
10447 Off_.Set(space_, 0.9, 0.9, 0.9, 1.0);
10448 White_.Set(space_, 1.0, 1.0, 1.0, 1.0);
10449 Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0);
10450 Green_.Set(space_, 0.0, 0.5, 0.0, 1.0);
10451 Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0);
10452 Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0);
10453
10454 InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f];
10455 RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f];
10456 /* }}}*/
10457 /* UIKit Configuration {{{ */
10458 // XXX: I have a feeling this was important
10459 //UIKeyboardDisableAutomaticAppearance();
10460 /* }}} */
10461
10462 $SBSSetInterceptsMenuButtonForever = reinterpret_cast<void (*)(bool)>(dlsym(RTLD_DEFAULT, "SBSSetInterceptsMenuButtonForever"));
10463
10464 const char *symbol(kCFCoreFoundationVersionNumber >= 800 ? "MGGetBoolAnswer" : "GSSystemHasCapability");
10465 BOOL (*GSSystemHasCapability)(CFStringRef) = reinterpret_cast<BOOL (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, symbol));
10466 bool fast = GSSystemHasCapability != NULL && GSSystemHasCapability(CFSTR("armv7"));
10467
10468 PulseInterval_ = fast ? 50000 : 500000;
10469
10470 Colon_ = UCLocalize("COLON_DELIMITED");
10471 Elision_ = UCLocalize("ELISION");
10472 Error_ = UCLocalize("ERROR");
10473 Warning_ = UCLocalize("WARNING");
10474
10475 _trace();
10476 int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia"));
10477
10478 CGColorSpaceRelease(space_);
10479 CFRelease(Locale_);
10480
10481 [pool release];
10482 return value;
10483 }