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