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