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