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