]>
Commit | Line | Data |
---|---|---|
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 {{{ */ |
819a0ab1 | 44 | #include "CyteKit/UCPlatform.h" |
d458596e | 45 | #include "CyteKit/Localize.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 | |
53db9999 JF |
69 | #include <QuartzCore/CALayer.h> |
70 | ||
f79a4512 | 71 | #include <WebCore/WebCoreThread.h> |
7e9a36b6 | 72 | |
677b8415 | 73 | #include <algorithm> |
808c6eb6 | 74 | #include <iomanip> |
2367a917 | 75 | #include <sstream> |
a0be02eb JF |
76 | #include <string> |
77 | ||
2367a917 JF |
78 | #include <ext/stdio_filebuf.h> |
79 | ||
e59669fd JF |
80 | #undef ABS |
81 | ||
dc5812ec JF |
82 | #include <apt-pkg/acquire.h> |
83 | #include <apt-pkg/acquire-item.h> | |
84 | #include <apt-pkg/algorithms.h> | |
85 | #include <apt-pkg/cachefile.h> | |
77fcccaf | 86 | #include <apt-pkg/clean.h> |
dc5812ec | 87 | #include <apt-pkg/configuration.h> |
7376b55c | 88 | #include <apt-pkg/debindexfile.h> |
3178d79b | 89 | #include <apt-pkg/debmetaindex.h> |
dc5812ec JF |
90 | #include <apt-pkg/error.h> |
91 | #include <apt-pkg/init.h> | |
dddbc481 | 92 | #include <apt-pkg/mmap.h> |
dc5812ec | 93 | #include <apt-pkg/pkgrecords.h> |
dddbc481 | 94 | #include <apt-pkg/sha1.h> |
dc5812ec | 95 | #include <apt-pkg/sourcelist.h> |
2367a917 | 96 | #include <apt-pkg/sptr.h> |
affeffc7 | 97 | #include <apt-pkg/strutl.h> |
f9f6d9e8 | 98 | #include <apt-pkg/tagfile.h> |
dc5812ec | 99 | |
f79a4512 JF |
100 | #include <apr-1/apr_pools.h> |
101 | ||
87f46a96 JF |
102 | #include <sys/types.h> |
103 | #include <sys/stat.h> | |
3178d79b | 104 | #include <sys/sysctl.h> |
59c011d8 JF |
105 | #include <sys/param.h> |
106 | #include <sys/mount.h> | |
bb0fe3c9 | 107 | #include <sys/reboot.h> |
87f46a96 | 108 | |
c21004b9 | 109 | #include <fcntl.h> |
2a8d9add | 110 | #include <notify.h> |
dddbc481 | 111 | #include <dlfcn.h> |
3178d79b | 112 | |
b4d89997 JF |
113 | extern "C" { |
114 | #include <mach-o/nlist.h> | |
115 | } | |
116 | ||
a0be02eb JF |
117 | #include <cstdio> |
118 | #include <cstdlib> | |
119 | #include <cstring> | |
b4d89997 | 120 | |
2367a917 | 121 | #include <errno.h> |
a9543575 | 122 | |
94b0b3e5 | 123 | #include <Cytore.hpp> |
25c1dafb | 124 | #include "Sources.h" |
94b0b3e5 | 125 | |
86cf87e2 | 126 | #include <CydiaSubstrate/CydiaSubstrate.h> |
cb218676 JF |
127 | #include "Menes/Menes.h" |
128 | ||
819a0ab1 | 129 | #include "CyteKit/PerlCompatibleRegEx.hpp" |
b97fcfc6 | 130 | #include "CyteKit/TableViewCell.h" |
f172aa8f | 131 | #include "CyteKit/WebScriptObject-Cyte.h" |
d458596e JF |
132 | #include "CyteKit/WebViewController.h" |
133 | #include "CyteKit/stringWithUTF8Bytes.h" | |
449ef9d5 | 134 | |
7aa82ca2 | 135 | #include "Cydia/MIMEAddress.h" |
70750ab3 | 136 | #include "Cydia/LoadingViewController.h" |
cb218676 | 137 | #include "Cydia/ProgressEvent.h" |
28b8b687 | 138 | |
71cc7be1 | 139 | #include "SDURLCache/SDURLCache.h" |
b5e7eebb GP |
140 | /* }}} */ |
141 | ||
bfc87a4d | 142 | /* Profiler {{{ */ |
807ae6d7 JF |
143 | struct timeval _ltv; |
144 | bool _itv; | |
145 | ||
2083b866 JF |
146 | #define _timestamp ({ \ |
147 | struct timeval tv; \ | |
148 | gettimeofday(&tv, NULL); \ | |
149 | tv.tv_sec * 1000000 + tv.tv_usec; \ | |
150 | }) | |
151 | ||
808c6eb6 JF |
152 | typedef std::vector<class ProfileTime *> TimeList; |
153 | TimeList times_; | |
154 | ||
155 | class ProfileTime { | |
156 | private: | |
157 | const char *name_; | |
158 | uint64_t total_; | |
76933519 | 159 | uint64_t count_; |
808c6eb6 JF |
160 | |
161 | public: | |
162 | ProfileTime(const char *name) : | |
163 | name_(name), | |
164 | total_(0) | |
165 | { | |
166 | times_.push_back(this); | |
167 | } | |
168 | ||
169 | void AddTime(uint64_t time) { | |
170 | total_ += time; | |
76933519 | 171 | ++count_; |
808c6eb6 JF |
172 | } |
173 | ||
174 | void Print() { | |
175 | if (total_ != 0) | |
76933519 | 176 | std::cerr << std::setw(5) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl; |
808c6eb6 | 177 | total_ = 0; |
76933519 | 178 | count_ = 0; |
808c6eb6 JF |
179 | } |
180 | }; | |
181 | ||
182 | class ProfileTimer { | |
183 | private: | |
184 | ProfileTime &time_; | |
185 | uint64_t start_; | |
186 | ||
187 | public: | |
188 | ProfileTimer(ProfileTime &time) : | |
189 | time_(time), | |
190 | start_(_timestamp) | |
191 | { | |
192 | } | |
193 | ||
194 | ~ProfileTimer() { | |
195 | time_.AddTime(_timestamp - start_); | |
196 | } | |
197 | }; | |
198 | ||
199 | void PrintTimes() { | |
200 | for (TimeList::const_iterator i(times_.begin()); i != times_.end(); ++i) | |
201 | (*i)->Print(); | |
202 | std::cerr << "========" << std::endl; | |
203 | } | |
204 | ||
205 | #define _profile(name) { \ | |
206 | static ProfileTime name(#name); \ | |
207 | ProfileTimer _ ## name(name); | |
208 | ||
209 | #define _end } | |
f79a4512 | 210 | /* }}} */ |
affeffc7 | 211 | |
3d45bad1 | 212 | extern NSString *Cydia_; |
f9ba524a | 213 | |
43c5d1cb JF |
214 | #define lprintf(args...) fprintf(stderr, args) |
215 | ||
216 | #define ForRelease 1 | |
217 | #define TraceLogging (1 && !ForRelease) | |
218 | #define HistogramInsertionSort (!ForRelease ? 0 : 0) | |
219 | #define ProfileTimes (0 && !ForRelease) | |
220 | #define ForSaurik (0 && !ForRelease) | |
221 | #define LogBrowser (0 && !ForRelease) | |
222 | #define TrackResize (0 && !ForRelease) | |
223 | #define ManualRefresh (1 && !ForRelease) | |
224 | #define ShowInternals (0 && !ForRelease) | |
225 | #define AlwaysReload (0 && !ForRelease) | |
226 | #define TryIndexedCollation (0 && !ForRelease) | |
227 | ||
228 | #if !TraceLogging | |
229 | #undef _trace | |
230 | #define _trace(args...) | |
231 | #endif | |
232 | ||
233 | #if !ProfileTimes | |
234 | #undef _profile | |
235 | #define _profile(name) { | |
236 | #undef _end | |
237 | #define _end } | |
238 | #define PrintTimes() do {} while (false) | |
239 | #endif | |
240 | ||
94b0b3e5 JF |
241 | // Hash Functions/Structures {{{ |
242 | extern "C" uint32_t hashlittle(const void *key, size_t length, uint32_t initval = 0); | |
243 | ||
244 | union SplitHash { | |
245 | uint32_t u32; | |
246 | uint16_t u16[2]; | |
247 | }; | |
248 | // }}} | |
249 | ||
5db5891a JF |
250 | static NSString *Colon_; |
251 | NSString *Elision_; | |
252 | static NSString *Error_; | |
253 | static NSString *Warning_; | |
254 | ||
04fe1349 JF |
255 | static const NSUInteger UIViewAutoresizingFlexibleBoth(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight); |
256 | ||
670a0494 | 257 | static _finline NSString *CydiaURL(NSString *path) { |
e3d2a2f5 JF |
258 | char page[26]; |
259 | page[0] = 'h'; page[1] = 't'; page[2] = 't'; page[3] = 'p'; page[4] = 's'; | |
260 | page[5] = ':'; page[6] = '/'; page[7] = '/'; page[8] = 'c'; page[9] = 'y'; | |
261 | page[10] = 'd'; page[11] = 'i'; page[12] = 'a'; page[13] = '.'; page[14] = 's'; | |
262 | page[15] = 'a'; page[16] = 'u'; page[17] = 'r'; page[18] = 'i'; page[19] = 'k'; | |
263 | page[20] = '.'; page[21] = 'c'; page[22] = 'o'; page[23] = 'm'; page[24] = '/'; | |
264 | page[25] = '\0'; | |
670a0494 JF |
265 | return [[NSString stringWithUTF8String:page] stringByAppendingString:path]; |
266 | } | |
267 | ||
d99e3659 JF |
268 | static void ReapZombie(pid_t pid) { |
269 | int status; | |
270 | wait: | |
271 | if (waitpid(pid, &status, 0) == -1) | |
272 | if (errno == EINTR) | |
273 | goto wait; | |
274 | else _assert(false); | |
275 | } | |
276 | ||
ef494bd8 RP |
277 | static _finline void UpdateExternalStatus(uint64_t newStatus) { |
278 | int notify_token; | |
279 | if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) { | |
280 | notify_set_state(notify_token, newStatus); | |
281 | notify_cancel(notify_token); | |
282 | } | |
283 | notify_post("com.saurik.Cydia.status"); | |
284 | } | |
285 | ||
0b7516cf | 286 | static CGFloat CYStatusBarHeight() { |
57daa971 | 287 | CGSize size([[UIApplication sharedApplication] statusBarFrame].size); |
0b7516cf | 288 | return UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) ? size.height : size.width; |
57daa971 JF |
289 | } |
290 | ||
68f1828e | 291 | /* NSForcedOrderingSearch doesn't work on the iPhone */ |
808c6eb6 | 292 | static const NSStringCompareOptions MatchCompareOptions_ = NSLiteralSearch | NSCaseInsensitiveSearch; |
677b8415 JF |
293 | static const NSStringCompareOptions LaxCompareOptions_ = NSNumericSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch | NSCaseInsensitiveSearch; |
294 | static const CFStringCompareFlags LaxCompareFlags_ = kCFCompareCaseInsensitive | kCFCompareNonliteral | kCFCompareLocalized | kCFCompareNumerically | kCFCompareWidthInsensitive | kCFCompareForcedOrdering; | |
1e7a90f5 | 295 | |
eef4ccaf JF |
296 | /* Insertion Sort {{{ */ |
297 | ||
df213583 JF |
298 | CFIndex SKBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) { |
299 | const char *ptr = (const char *)list; | |
300 | while (0 < count) { | |
301 | CFIndex half = count / 2; | |
302 | const char *probe = ptr + elementSize * half; | |
303 | CFComparisonResult cr = comparator(element, probe, context); | |
b5e7eebb | 304 | if (0 == cr) return (probe - (const char *)list) / elementSize; |
df213583 JF |
305 | ptr = (cr < 0) ? ptr : probe + elementSize; |
306 | count = (cr < 0) ? half : (half + (count & 1) - 1); | |
307 | } | |
308 | return (ptr - (const char *)list) / elementSize; | |
309 | } | |
310 | ||
eef4ccaf JF |
311 | CFIndex CFBSearch_(const void *element, CFIndex elementSize, const void *list, CFIndex count, CFComparatorFunction comparator, void *context) { |
312 | const char *ptr = (const char *)list; | |
313 | while (0 < count) { | |
314 | CFIndex half = count / 2; | |
315 | const char *probe = ptr + elementSize * half; | |
316 | CFComparisonResult cr = comparator(element, probe, context); | |
b5e7eebb | 317 | if (0 == cr) return (probe - (const char *)list) / elementSize; |
eef4ccaf JF |
318 | ptr = (cr < 0) ? ptr : probe + elementSize; |
319 | count = (cr < 0) ? half : (half + (count & 1) - 1); | |
320 | } | |
321 | return (ptr - (const char *)list) / elementSize; | |
322 | } | |
323 | ||
324 | void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFComparatorFunction comparator, void *context) { | |
325 | if (range.length == 0) | |
326 | return; | |
327 | const void **values(new const void *[range.length]); | |
328 | CFArrayGetValues(array, range, values); | |
329 | ||
1539387a | 330 | #if HistogramInsertionSort > 0 |
df213583 JF |
331 | uint32_t total(0), *offsets(new uint32_t[range.length]); |
332 | #endif | |
333 | ||
eef4ccaf JF |
334 | for (CFIndex index(1); index != range.length; ++index) { |
335 | const void *value(values[index]); | |
df213583 JF |
336 | //CFIndex correct(SKBSearch_(&value, sizeof(const void *), values, index, comparator, context)); |
337 | CFIndex correct(index); | |
1539387a JF |
338 | while (comparator(value, values[correct - 1], context) == kCFCompareLessThan) { |
339 | #if HistogramInsertionSort > 1 | |
340 | NSLog(@"%@ < %@", value, values[correct - 1]); | |
341 | #endif | |
df213583 JF |
342 | if (--correct == 0) |
343 | break; | |
1539387a | 344 | } |
eef4ccaf | 345 | if (correct != index) { |
df213583 JF |
346 | size_t offset(index - correct); |
347 | #if HistogramInsertionSort | |
348 | total += offset; | |
349 | ++offsets[offset]; | |
350 | if (offset > 10) | |
351 | NSLog(@"Heavy Insertion Displacement: %u = %@", offset, value); | |
352 | #endif | |
353 | memmove(values + correct + 1, values + correct, sizeof(const void *) * offset); | |
eef4ccaf JF |
354 | values[correct] = value; |
355 | } | |
356 | } | |
357 | ||
358 | CFArrayReplaceValues(array, range, values, range.length); | |
359 | delete [] values; | |
df213583 | 360 | |
1539387a | 361 | #if HistogramInsertionSort > 0 |
df213583 JF |
362 | for (CFIndex index(0); index != range.length; ++index) |
363 | if (offsets[index] != 0) | |
364 | NSLog(@"Insertion Displacement [%u]: %u", index, offsets[index]); | |
365 | NSLog(@"Average Insertion Displacement: %f", double(total) / range.length); | |
366 | delete [] offsets; | |
367 | #endif | |
eef4ccaf JF |
368 | } |
369 | ||
807ae6d7 JF |
370 | /* }}} */ |
371 | ||
bf8476c8 JF |
372 | /* Apple Bug Fixes {{{ */ |
373 | @implementation UIWebDocumentView (Cydia) | |
374 | ||
375 | - (void) _setScrollerOffset:(CGPoint)offset { | |
376 | UIScroller *scroller([self _scroller]); | |
377 | ||
378 | CGSize size([scroller contentSize]); | |
379 | CGSize bounds([scroller bounds].size); | |
380 | ||
381 | CGPoint max; | |
382 | max.x = size.width - bounds.width; | |
383 | max.y = size.height - bounds.height; | |
384 | ||
385 | // wtf Apple?! | |
386 | if (max.x < 0) | |
387 | max.x = 0; | |
388 | if (max.y < 0) | |
389 | max.y = 0; | |
390 | ||
391 | offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x; | |
392 | offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y; | |
393 | ||
394 | [scroller setOffset:offset]; | |
395 | } | |
396 | ||
397 | @end | |
398 | /* }}} */ | |
399 | ||
680eb135 JF |
400 | NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) { |
401 | size_t length([self length] - state->state); | |
402 | if (length <= 0) | |
403 | return 0; | |
404 | else if (length > count) | |
405 | length = count; | |
406 | for (size_t i(0); i != length; ++i) | |
407 | objects[i] = [self item:state->state++]; | |
408 | state->itemsPtr = objects; | |
409 | state->mutationsPtr = (unsigned long *) self; | |
410 | return length; | |
411 | } | |
412 | ||
bfc87a4d | 413 | /* Cydia NSString Additions {{{ */ |
2388b078 | 414 | @interface NSString (Cydia) |
a54b1c10 | 415 | - (NSComparisonResult) compareByPath:(NSString *)other; |
2fc76a2d | 416 | - (NSString *) stringByAddingPercentEscapesIncludingReserved; |
2388b078 JF |
417 | @end |
418 | ||
449ef9d5 JF |
419 | @implementation NSString (Cydia) |
420 | ||
a54b1c10 JF |
421 | - (NSComparisonResult) compareByPath:(NSString *)other { |
422 | NSString *prefix = [self commonPrefixWithString:other options:0]; | |
423 | size_t length = [prefix length]; | |
424 | ||
425 | NSRange lrange = NSMakeRange(length, [self length] - length); | |
426 | NSRange rrange = NSMakeRange(length, [other length] - length); | |
427 | ||
428 | lrange = [self rangeOfString:@"/" options:0 range:lrange]; | |
429 | rrange = [other rangeOfString:@"/" options:0 range:rrange]; | |
430 | ||
431 | NSComparisonResult value; | |
432 | ||
433 | if (lrange.location == NSNotFound && rrange.location == NSNotFound) | |
434 | value = NSOrderedSame; | |
435 | else if (lrange.location == NSNotFound) | |
436 | value = NSOrderedAscending; | |
437 | else if (rrange.location == NSNotFound) | |
438 | value = NSOrderedDescending; | |
439 | else | |
440 | value = NSOrderedSame; | |
441 | ||
442 | NSString *lpath = lrange.location == NSNotFound ? [self substringFromIndex:length] : | |
443 | [self substringWithRange:NSMakeRange(length, lrange.location - length)]; | |
444 | NSString *rpath = rrange.location == NSNotFound ? [other substringFromIndex:length] : | |
445 | [other substringWithRange:NSMakeRange(length, rrange.location - length)]; | |
446 | ||
447 | NSComparisonResult result = [lpath compare:rpath]; | |
448 | return result == NSOrderedSame ? value : result; | |
449 | } | |
450 | ||
2fc76a2d JF |
451 | - (NSString *) stringByAddingPercentEscapesIncludingReserved { |
452 | return [(id)CFURLCreateStringByAddingPercentEscapes( | |
bc11cf5b | 453 | kCFAllocatorDefault, |
2fc76a2d JF |
454 | (CFStringRef) self, |
455 | NULL, | |
456 | CFSTR(";/?:@&=+$,"), | |
457 | kCFStringEncodingUTF8 | |
458 | ) autorelease]; | |
459 | } | |
460 | ||
2388b078 | 461 | @end |
bfc87a4d | 462 | /* }}} */ |
2388b078 | 463 | |
bfc87a4d | 464 | /* C++ NSString Wrapper Cache {{{ */ |
8e8fca7f JF |
465 | static _finline CFStringRef CYStringCreate(const char *data, size_t size) { |
466 | return size == 0 ? NULL : | |
467 | CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingUTF8, NO, kCFAllocatorNull) ?: | |
468 | CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const uint8_t *>(data), size, kCFStringEncodingISOLatin1, NO, kCFAllocatorNull); | |
469 | } | |
470 | ||
471 | static _finline CFStringRef CYStringCreate(const char *data) { | |
472 | return CYStringCreate(data, strlen(data)); | |
473 | } | |
474 | ||
f79a4512 JF |
475 | class CYString { |
476 | private: | |
477 | char *data_; | |
478 | size_t size_; | |
479 | CFStringRef cache_; | |
480 | ||
481 | _finline void clear_() { | |
18873623 | 482 | if (cache_ != NULL) { |
f79a4512 | 483 | CFRelease(cache_); |
18873623 JF |
484 | cache_ = NULL; |
485 | } | |
f79a4512 JF |
486 | } |
487 | ||
488 | public: | |
489 | _finline bool empty() const { | |
490 | return size_ == 0; | |
491 | } | |
492 | ||
493 | _finline size_t size() const { | |
494 | return size_; | |
495 | } | |
496 | ||
497 | _finline char *data() const { | |
498 | return data_; | |
499 | } | |
500 | ||
501 | _finline void clear() { | |
502 | size_ = 0; | |
503 | clear_(); | |
504 | } | |
505 | ||
506 | _finline CYString() : | |
507 | data_(0), | |
508 | size_(0), | |
18873623 | 509 | cache_(NULL) |
f79a4512 JF |
510 | { |
511 | } | |
512 | ||
513 | _finline ~CYString() { | |
514 | clear_(); | |
515 | } | |
516 | ||
517 | void operator =(const CYString &rhs) { | |
518 | data_ = rhs.data_; | |
519 | size_ = rhs.size_; | |
520 | ||
521 | if (rhs.cache_ == nil) | |
522 | cache_ = NULL; | |
523 | else | |
524 | cache_ = reinterpret_cast<CFStringRef>(CFRetain(rhs.cache_)); | |
525 | } | |
526 | ||
97814287 JF |
527 | void copy(apr_pool_t *pool) { |
528 | char *temp(reinterpret_cast<char *>(apr_palloc(pool, size_ + 1))); | |
529 | memcpy(temp, data_, size_); | |
530 | temp[size_] = '\0'; | |
531 | data_ = temp; | |
532 | } | |
533 | ||
f79a4512 JF |
534 | void set(apr_pool_t *pool, const char *data, size_t size) { |
535 | if (size == 0) | |
536 | clear(); | |
537 | else { | |
538 | clear_(); | |
539 | ||
97814287 | 540 | data_ = const_cast<char *>(data); |
f79a4512 | 541 | size_ = size; |
97814287 JF |
542 | |
543 | if (pool != NULL) | |
544 | copy(pool); | |
f79a4512 JF |
545 | } |
546 | } | |
547 | ||
548 | _finline void set(apr_pool_t *pool, const char *data) { | |
549 | set(pool, data, data == NULL ? 0 : strlen(data)); | |
550 | } | |
551 | ||
552 | _finline void set(apr_pool_t *pool, const std::string &rhs) { | |
553 | set(pool, rhs.data(), rhs.size()); | |
554 | } | |
555 | ||
556 | bool operator ==(const CYString &rhs) const { | |
557 | return size_ == rhs.size_ && memcmp(data_, rhs.data_, size_) == 0; | |
558 | } | |
559 | ||
8e8fca7f JF |
560 | _finline operator CFStringRef() { |
561 | if (cache_ == NULL) | |
562 | cache_ = CYStringCreate(data_, size_); | |
563 | return cache_; | |
df213583 JF |
564 | } |
565 | ||
566 | _finline operator id() { | |
567 | return (NSString *) static_cast<CFStringRef>(*this); | |
f79a4512 | 568 | } |
4c0ed943 JF |
569 | |
570 | _finline operator const char *() { | |
571 | return reinterpret_cast<const char *>(data_); | |
572 | } | |
f79a4512 | 573 | }; |
bfc87a4d JF |
574 | /* }}} */ |
575 | /* C++ NSString Algorithm Adapters {{{ */ | |
f79a4512 JF |
576 | extern "C" { |
577 | CF_EXPORT CFHashCode CFStringHashNSString(CFStringRef str); | |
578 | } | |
579 | ||
580 | struct NSStringMapHash : | |
581 | std::unary_function<NSString *, size_t> | |
582 | { | |
583 | _finline size_t operator ()(NSString *value) const { | |
584 | return CFStringHashNSString((CFStringRef) value); | |
585 | } | |
586 | }; | |
587 | ||
588 | struct NSStringMapLess : | |
589 | std::binary_function<NSString *, NSString *, bool> | |
590 | { | |
591 | _finline bool operator ()(NSString *lhs, NSString *rhs) const { | |
592 | return [lhs compare:rhs] == NSOrderedAscending; | |
593 | } | |
594 | }; | |
595 | ||
596 | struct NSStringMapEqual : | |
597 | std::binary_function<NSString *, NSString *, bool> | |
598 | { | |
599 | _finline bool operator ()(NSString *lhs, NSString *rhs) const { | |
600 | return CFStringCompare((CFStringRef) lhs, (CFStringRef) rhs, 0) == kCFCompareEqualTo; | |
601 | //CFEqual((CFTypeRef) lhs, (CFTypeRef) rhs); | |
602 | //[lhs isEqualToString:rhs]; | |
603 | } | |
604 | }; | |
bfc87a4d | 605 | /* }}} */ |
f79a4512 | 606 | |
5f6bff8c | 607 | /* CoreGraphics Primitives {{{ */ |
02012733 | 608 | class CYColor { |
b4d89997 JF |
609 | private: |
610 | CGColorRef color_; | |
611 | ||
6a575b5e JF |
612 | static CGColorRef Create_(CGColorSpaceRef space, float red, float green, float blue, float alpha) { |
613 | CGFloat color[] = {red, green, blue, alpha}; | |
614 | return CGColorCreate(space, color); | |
615 | } | |
616 | ||
b4d89997 | 617 | public: |
02012733 | 618 | CYColor() : |
36bb2ca2 JF |
619 | color_(NULL) |
620 | { | |
621 | } | |
622 | ||
02012733 | 623 | CYColor(CGColorSpaceRef space, float red, float green, float blue, float alpha) : |
6a575b5e | 624 | color_(Create_(space, red, green, blue, alpha)) |
36bb2ca2 JF |
625 | { |
626 | Set(space, red, green, blue, alpha); | |
627 | } | |
628 | ||
629 | void Clear() { | |
630 | if (color_ != NULL) | |
631 | CGColorRelease(color_); | |
b4d89997 JF |
632 | } |
633 | ||
02012733 | 634 | ~CYColor() { |
36bb2ca2 JF |
635 | Clear(); |
636 | } | |
637 | ||
638 | void Set(CGColorSpaceRef space, float red, float green, float blue, float alpha) { | |
639 | Clear(); | |
6a575b5e | 640 | color_ = Create_(space, red, green, blue, alpha); |
b4d89997 JF |
641 | } |
642 | ||
643 | operator CGColorRef() { | |
644 | return color_; | |
645 | } | |
646 | }; | |
b4d89997 JF |
647 | /* }}} */ |
648 | ||
36bb2ca2 | 649 | /* Random Global Variables {{{ */ |
3178d79b | 650 | static const int PulseInterval_ = 50000; |
affeffc7 | 651 | |
57e8b225 JF |
652 | static const NSString *UI_; |
653 | ||
d791dce4 | 654 | static int Finish_; |
be860cc8 | 655 | static bool RestartSubstrate_; |
d791dce4 JF |
656 | static NSArray *Finishes_; |
657 | ||
affeffc7 | 658 | #define SpringBoard_ "/System/Library/LaunchDaemons/com.apple.SpringBoard.plist" |
22f8bed9 | 659 | #define NotifyConfig_ "/etc/notify.conf" |
2a8d9add | 660 | |
dc63e78f JF |
661 | static bool Queuing_; |
662 | ||
02012733 JF |
663 | static CYColor Blue_; |
664 | static CYColor Blueish_; | |
665 | static CYColor Black_; | |
666 | static CYColor Off_; | |
667 | static CYColor White_; | |
668 | static CYColor Gray_; | |
669 | static CYColor Green_; | |
670 | static CYColor Purple_; | |
671 | static CYColor Purplish_; | |
3bd1c2a2 | 672 | |
dc63e78f JF |
673 | static UIColor *InstallingColor_; |
674 | static UIColor *RemovingColor_; | |
36bb2ca2 | 675 | |
7d2ac47f | 676 | static NSString *App_; |
d73cede2 | 677 | |
2388b078 | 678 | static BOOL Advanced_; |
a54b1c10 | 679 | static BOOL Ignored_; |
2388b078 | 680 | |
7b33d201 JF |
681 | static _H<UIFont> Font12_; |
682 | static _H<UIFont> Font12Bold_; | |
683 | static _H<UIFont> Font14_; | |
684 | static _H<UIFont> Font18Bold_; | |
685 | static _H<UIFont> Font22Bold_; | |
f641a0e5 | 686 | |
87f46a96 | 687 | static const char *Machine_ = NULL; |
e967efd5 | 688 | static _H<NSString> System_; |
56127854 JF |
689 | static NSString *SerialNumber_ = nil; |
690 | static NSString *ChipID_ = nil; | |
6ffdaae3 | 691 | static NSString *BBSNum_ = nil; |
9737d93e | 692 | static _H<NSString> Token_; |
56127854 | 693 | static NSString *UniqueID_ = nil; |
e967efd5 JF |
694 | static _H<NSString> UserAgent_; |
695 | static _H<NSString> Product_; | |
696 | static _H<NSString> Safari_; | |
2a8d9add | 697 | |
d791dce4 JF |
698 | static CFLocaleRef Locale_; |
699 | static NSArray *Languages_; | |
700 | static CGColorSpaceRef space_; | |
36bb2ca2 | 701 | |
46dbfd32 | 702 | static NSDictionary *SectionMap_; |
b4d89997 | 703 | static NSMutableDictionary *Metadata_; |
7b0ce2da JF |
704 | static _transient NSMutableDictionary *Settings_; |
705 | static _transient NSString *Role_; | |
706 | static _transient NSMutableDictionary *Packages_; | |
b3c8e69c | 707 | static _transient NSMutableDictionary *Values_; |
7b0ce2da | 708 | static _transient NSMutableDictionary *Sections_; |
25c1dafb | 709 | _H<NSMutableDictionary> Sources_; |
33e30380 | 710 | static _transient NSNumber *Version_; |
25c1dafb | 711 | bool Changed_; |
31bc18a7 | 712 | static time_t now_; |
8da60fb7 | 713 | |
f333f6c5 | 714 | bool IsWildcat_; |
57e8b225 | 715 | static CGFloat ScreenScale_; |
c138614d | 716 | static NSString *Idiom_; |
407564b5 | 717 | static _H<NSString> Firmware_; |
fd825a2d | 718 | static NSString *Major_; |
5df7ecfb | 719 | |
7b33d201 JF |
720 | static _H<NSMutableDictionary> SessionData_; |
721 | static _H<NSObject> HostConfig_; | |
722 | static _H<NSMutableSet> BridgedHosts_; | |
247bedb6 | 723 | static _H<NSMutableSet> TokenHosts_; |
2e1652a9 | 724 | static _H<NSMutableSet> InsecureHosts_; |
7b33d201 | 725 | static _H<NSMutableSet> PipelinedHosts_; |
5e845121 | 726 | static _H<NSMutableSet> CachedURLs_; |
389133be | 727 | |
e4123ce0 JF |
728 | static NSString *kCydiaProgressEventTypeError = @"Error"; |
729 | static NSString *kCydiaProgressEventTypeInformation = @"Information"; | |
730 | static NSString *kCydiaProgressEventTypeStatus = @"Status"; | |
731 | static NSString *kCydiaProgressEventTypeWarning = @"Warning"; | |
36bb2ca2 | 732 | /* }}} */ |
d791dce4 | 733 | |
36bb2ca2 JF |
734 | /* Display Helpers {{{ */ |
735 | inline float Interpolate(float begin, float end, float fraction) { | |
736 | return (end - begin) * fraction + begin; | |
737 | } | |
2367a917 | 738 | |
1c1dfc2d | 739 | static _finline const char *StripVersion_(const char *version) { |
6a155117 | 740 | const char *colon(strchr(version, ':')); |
673ad3c3 | 741 | return colon == NULL ? version : colon + 1; |
6a155117 JF |
742 | } |
743 | ||
f79a4512 | 744 | NSString *LocalizeSection(NSString *section) { |
b1ce61ec | 745 | static Pcre title_r("^(.*?) \\((.*)\\)$"); |
9fcbca29 JF |
746 | if (title_r(section)) { |
747 | NSString *parent(title_r[1]); | |
748 | NSString *child(title_r[2]); | |
749 | ||
43f3d7f6 | 750 | return [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), |
9fcbca29 JF |
751 | LocalizeSection(parent), |
752 | LocalizeSection(child) | |
b1ce61ec | 753 | ]; |
9fcbca29 | 754 | } |
b1ce61ec JF |
755 | |
756 | return [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"]; | |
f79a4512 JF |
757 | } |
758 | ||
4cf4165e JF |
759 | NSString *Simplify(NSString *title) { |
760 | const char *data = [title UTF8String]; | |
761 | size_t size = [title length]; | |
762 | ||
7b0ce2da JF |
763 | static Pcre square_r("^\\[(.*)\\]$"); |
764 | if (square_r(data, size)) | |
765 | return Simplify(square_r[1]); | |
766 | ||
767 | static Pcre paren_r("^\\((.*)\\)$"); | |
768 | if (paren_r(data, size)) | |
769 | return Simplify(paren_r[1]); | |
770 | ||
b1ce61ec | 771 | static Pcre title_r("^(.*?) \\((.*)\\)$"); |
4cf4165e | 772 | if (title_r(data, size)) |
7b0ce2da JF |
773 | return Simplify(title_r[1]); |
774 | ||
775 | return title; | |
4cf4165e | 776 | } |
36bb2ca2 JF |
777 | /* }}} */ |
778 | ||
d791dce4 JF |
779 | NSString *GetLastUpdate() { |
780 | NSDate *update = [Metadata_ objectForKey:@"LastUpdate"]; | |
781 | ||
782 | if (update == nil) | |
783 | return UCLocalize("NEVER_OR_UNKNOWN"); | |
784 | ||
785 | CFDateFormatterRef formatter = CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle); | |
786 | CFStringRef formatted = CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) update); | |
787 | ||
788 | CFRelease(formatter); | |
789 | ||
790 | return [(NSString *) formatted autorelease]; | |
791 | } | |
792 | ||
6d9712c4 | 793 | bool isSectionVisible(NSString *section) { |
45447dc3 | 794 | NSDictionary *metadata([Sections_ objectForKey:(section ?: @"")]); |
677b8415 | 795 | NSNumber *hidden(metadata == nil ? nil : [metadata objectForKey:@"Hidden"]); |
6d9712c4 JF |
796 | return hidden == nil || ![hidden boolValue]; |
797 | } | |
798 | ||
c31d7cdc | 799 | static NSObject *CYIOGetValue(const char *path, NSString *property) { |
947a8eef JF |
800 | io_registry_entry_t entry(IORegistryEntryFromPath(kIOMasterPortDefault, path)); |
801 | if (entry == MACH_PORT_NULL) | |
802 | return nil; | |
803 | ||
804 | CFTypeRef value(IORegistryEntryCreateCFProperty(entry, (CFStringRef) property, kCFAllocatorDefault, 0)); | |
805 | IOObjectRelease(entry); | |
806 | ||
807 | if (value == NULL) | |
808 | return nil; | |
809 | return [(id) value autorelease]; | |
810 | } | |
811 | ||
c31d7cdc | 812 | static NSString *CYHex(NSData *data, bool reverse = false) { |
947a8eef JF |
813 | if (data == nil) |
814 | return nil; | |
815 | ||
816 | size_t length([data length]); | |
817 | uint8_t bytes[length]; | |
818 | [data getBytes:bytes]; | |
819 | ||
820 | char string[length * 2 + 1]; | |
821 | for (size_t i(0); i != length; ++i) | |
be45a862 | 822 | sprintf(string + i * 2, "%.2x", bytes[reverse ? length - i - 1 : i]); |
947a8eef JF |
823 | |
824 | return [NSString stringWithUTF8String:string]; | |
825 | } | |
826 | ||
9cb0bff2 GP |
827 | @class Cydia; |
828 | ||
d36e83a3 | 829 | /* Delegate Prototypes {{{ */ |
36bb2ca2 JF |
830 | @class Package; |
831 | @class Source; | |
6915b806 | 832 | @class CydiaProgressEvent; |
36bb2ca2 | 833 | |
6915b806 | 834 | @protocol DatabaseDelegate |
5a09ae08 | 835 | - (void) repairWithSelector:(SEL)selector; |
8b29f8e6 | 836 | - (void) setConfigurationData:(NSString *)data; |
6915b806 | 837 | - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task; |
8b29f8e6 JF |
838 | @end |
839 | ||
f6e13561 | 840 | @class CYPackageController; |
f79a4512 | 841 | |
36bb2ca2 | 842 | @protocol CydiaDelegate |
2925cbba | 843 | - (void) returnToCydia; |
9dd3045d | 844 | - (void) saveState; |
54043703 JF |
845 | - (void) retainNetworkActivityIndicator; |
846 | - (void) releaseNetworkActivityIndicator; | |
dc63e78f | 847 | - (void) clearPackage:(Package *)package; |
36bb2ca2 | 848 | - (void) installPackage:(Package *)package; |
77801ff1 | 849 | - (void) installPackages:(NSArray *)packages; |
36bb2ca2 | 850 | - (void) removePackage:(Package *)package; |
c21004b9 JF |
851 | - (void) beginUpdate; |
852 | - (BOOL) updating; | |
36bb2ca2 | 853 | - (void) distUpgrade; |
fed0d010 | 854 | - (void) loadData; |
6d9712c4 | 855 | - (void) updateData; |
7b0ce2da | 856 | - (void) syncData; |
33e30380 | 857 | - (void) addSource:(NSDictionary *)source; |
93460555 | 858 | - (void) addTrivialSource:(NSString *)href; |
21c6da4b | 859 | - (void) showSettings; |
7b0ce2da | 860 | - (UIProgressHUD *) addProgressHUD; |
d061f4ba | 861 | - (void) removeProgressHUD:(UIProgressHUD *)hud; |
cd79e8cf | 862 | - (CyteViewController *) pageForPackage:(NSString *)name; |
9daa7f25 | 863 | - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item; |
4ba8f30a | 864 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation; |
36bb2ca2 | 865 | @end |
d36e83a3 | 866 | /* }}} */ |
b4d89997 | 867 | |
dc5812ec JF |
868 | /* Status Delegation {{{ */ |
869 | class Status : | |
870 | public pkgAcquireStatus | |
871 | { | |
872 | private: | |
31f3cfff | 873 | _transient NSObject<ProgressDelegate> *delegate_; |
fc470c15 | 874 | bool cancelled_; |
dc5812ec JF |
875 | |
876 | public: | |
877 | Status() : | |
fc470c15 JF |
878 | delegate_(nil), |
879 | cancelled_(false) | |
dc5812ec JF |
880 | { |
881 | } | |
882 | ||
6915b806 | 883 | void setDelegate(NSObject<ProgressDelegate> *delegate) { |
dc5812ec JF |
884 | delegate_ = delegate; |
885 | } | |
886 | ||
670a0494 JF |
887 | NSObject<ProgressDelegate> *getDelegate() const { |
888 | return delegate_; | |
889 | } | |
890 | ||
dc5812ec JF |
891 | virtual bool MediaChange(std::string media, std::string drive) { |
892 | return false; | |
893 | } | |
894 | ||
895 | virtual void IMSHit(pkgAcquire::ItemDesc &item) { | |
d35bcbbf | 896 | Done(item); |
dc5812ec JF |
897 | } |
898 | ||
899 | virtual void Fetch(pkgAcquire::ItemDesc &item) { | |
6915b806 | 900 | NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]); |
389133be | 901 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:UCLocalize("DOWNLOADING_"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]); |
6915b806 | 902 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
dc5812ec JF |
903 | } |
904 | ||
905 | virtual void Done(pkgAcquire::ItemDesc &item) { | |
d35bcbbf JF |
906 | NSString *name([NSString stringWithUTF8String:item.ShortDesc.c_str()]); |
907 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithFormat:Colon_, UCLocalize("DONE"), name] ofType:kCydiaProgressEventTypeStatus forItem:item]); | |
908 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; | |
dc5812ec JF |
909 | } |
910 | ||
911 | virtual void Fail(pkgAcquire::ItemDesc &item) { | |
1d80f6b9 JF |
912 | if ( |
913 | item.Owner->Status == pkgAcquire::Item::StatIdle || | |
914 | item.Owner->Status == pkgAcquire::Item::StatDone | |
915 | ) | |
916 | return; | |
917 | ||
affeffc7 JF |
918 | std::string &error(item.Owner->ErrorText); |
919 | if (error.empty()) | |
920 | return; | |
921 | ||
389133be | 922 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:kCydiaProgressEventTypeError forItem:item]); |
6915b806 | 923 | [delegate_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
dc5812ec JF |
924 | } |
925 | ||
926 | virtual bool Pulse(pkgAcquire *Owner) { | |
2367a917 JF |
927 | bool value = pkgAcquireStatus::Pulse(Owner); |
928 | ||
bcbac8f7 | 929 | double percent( |
2367a917 JF |
930 | double(CurrentBytes + CurrentItems) / |
931 | double(TotalBytes + TotalItems) | |
932 | ); | |
933 | ||
bcbac8f7 JF |
934 | [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:[NSDictionary dictionaryWithObjectsAndKeys: |
935 | [NSNumber numberWithDouble:percent], @"Percent", | |
936 | ||
937 | [NSNumber numberWithDouble:CurrentBytes], @"Current", | |
938 | [NSNumber numberWithDouble:TotalBytes], @"Total", | |
939 | [NSNumber numberWithDouble:CurrentCPS], @"Speed", | |
940 | nil] waitUntilDone:YES]; | |
941 | ||
fc470c15 JF |
942 | if (value && ![delegate_ isProgressCancelled]) |
943 | return true; | |
944 | else { | |
945 | cancelled_ = true; | |
946 | return false; | |
947 | } | |
948 | } | |
949 | ||
950 | _finline bool WasCancelled() const { | |
951 | return cancelled_; | |
dc5812ec JF |
952 | } |
953 | ||
954 | virtual void Start() { | |
0210c2b5 | 955 | pkgAcquireStatus::Start(); |
aaae308d | 956 | [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:YES] waitUntilDone:YES]; |
dc5812ec JF |
957 | } |
958 | ||
959 | virtual void Stop() { | |
0210c2b5 | 960 | pkgAcquireStatus::Stop(); |
aaae308d | 961 | [delegate_ performSelectorOnMainThread:@selector(setProgressCancellable:) withObject:[NSNumber numberWithBool:NO] waitUntilDone:YES]; |
bcbac8f7 | 962 | [delegate_ performSelectorOnMainThread:@selector(setProgressStatus:) withObject:nil waitUntilDone:YES]; |
dc5812ec JF |
963 | } |
964 | }; | |
965 | /* }}} */ | |
36bb2ca2 | 966 | /* Database Interface {{{ */ |
68d927e2 JF |
967 | typedef std::map< unsigned long, _H<Source> > SourceMap; |
968 | ||
36bb2ca2 | 969 | @interface Database : NSObject { |
f79a4512 JF |
970 | NSZone *zone_; |
971 | apr_pool_t *pool_; | |
972 | ||
a1440b10 JF |
973 | unsigned era_; |
974 | ||
36bb2ca2 | 975 | pkgCacheFile cache_; |
5a09ae08 | 976 | pkgDepCache::Policy *policy_; |
36bb2ca2 JF |
977 | pkgRecords *records_; |
978 | pkgProblemResolver *resolver_; | |
979 | pkgAcquire *fetcher_; | |
980 | FileFd *lock_; | |
981 | SPtr<pkgPackageManager> manager_; | |
982 | pkgSourceList *list_; | |
5f6bff8c | 983 | |
34f70f5d | 984 | SourceMap sourceMap_; |
7b33d201 | 985 | _H<NSMutableArray> sourceList_; |
34f70f5d | 986 | |
077e9d90 | 987 | CFMutableArrayRef packages_; |
b4d89997 | 988 | |
6915b806 JF |
989 | _transient NSObject<DatabaseDelegate> *delegate_; |
990 | _transient NSObject<ProgressDelegate> *progress_; | |
991 | ||
36bb2ca2 | 992 | Status status_; |
8b29f8e6 | 993 | |
77fcccaf | 994 | int cydiafd_; |
36bb2ca2 | 995 | int statusfd_; |
8b29f8e6 | 996 | FILE *input_; |
fe33a23e JF |
997 | |
998 | std::map<const char *, _H<NSString> > sections_; | |
dc5812ec JF |
999 | } |
1000 | ||
770f2a8e | 1001 | + (Database *) sharedInstance; |
a1440b10 | 1002 | - (unsigned) era; |
770f2a8e | 1003 | |
77fcccaf | 1004 | - (void) _readCydia:(NSNumber *)fd; |
36bb2ca2 JF |
1005 | - (void) _readStatus:(NSNumber *)fd; |
1006 | - (void) _readOutput:(NSNumber *)fd; | |
2367a917 | 1007 | |
8b29f8e6 JF |
1008 | - (FILE *) input; |
1009 | ||
36bb2ca2 | 1010 | - (Package *) packageWithName:(NSString *)name; |
dc5812ec | 1011 | |
36bb2ca2 | 1012 | - (pkgCacheFile &) cache; |
5a09ae08 | 1013 | - (pkgDepCache::Policy *) policy; |
36bb2ca2 JF |
1014 | - (pkgRecords *) records; |
1015 | - (pkgProblemResolver *) resolver; | |
1016 | - (pkgAcquire &) fetcher; | |
a3328c28 | 1017 | - (pkgSourceList &) list; |
36bb2ca2 | 1018 | - (NSArray *) packages; |
7b0ce2da | 1019 | - (NSArray *) sources; |
d669236d | 1020 | - (Source *) sourceWithKey:(NSString *)key; |
4ba8f30a | 1021 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation; |
36bb2ca2 | 1022 | |
5a09ae08 | 1023 | - (void) configure; |
670a0494 | 1024 | - (bool) prepare; |
36bb2ca2 | 1025 | - (void) perform; |
670a0494 | 1026 | - (bool) upgrade; |
36bb2ca2 JF |
1027 | - (void) update; |
1028 | ||
670a0494 | 1029 | - (void) updateWithStatus:(Status &)status; |
36bb2ca2 | 1030 | |
6915b806 JF |
1031 | - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate; |
1032 | ||
1033 | - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate; | |
1034 | - (NSObject<ProgressDelegate> *) progressDelegate; | |
1035 | ||
7376b55c | 1036 | - (Source *) getSource:(pkgCache::PkgFileIterator)file; |
fe33a23e JF |
1037 | |
1038 | - (NSString *) mappedSectionForPointer:(const char *)pointer; | |
1039 | ||
670a0494 JF |
1040 | @end |
1041 | /* }}} */ | |
6915b806 JF |
1042 | /* ProgressEvent Implementation {{{ */ |
1043 | @implementation CydiaProgressEvent | |
670a0494 | 1044 | |
6915b806 JF |
1045 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type { |
1046 | return [[[CydiaProgressEvent alloc] initWithMessage:message ofType:type] autorelease]; | |
670a0494 JF |
1047 | } |
1048 | ||
6915b806 JF |
1049 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package { |
1050 | CydiaProgressEvent *event([self eventWithMessage:message ofType:type]); | |
1051 | [event setPackage:package]; | |
1052 | return event; | |
670a0494 JF |
1053 | } |
1054 | ||
c57867ea JF |
1055 | + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item { |
1056 | CydiaProgressEvent *event([self eventWithMessage:message ofType:type]); | |
1057 | ||
1058 | NSString *description([NSString stringWithUTF8String:item.Description.c_str()]); | |
1059 | NSArray *fields([description componentsSeparatedByString:@" "]); | |
1060 | [event setItem:fields]; | |
1061 | ||
1062 | if ([fields count] > 3) { | |
1063 | [event setPackage:[fields objectAtIndex:2]]; | |
1064 | [event setVersion:[fields objectAtIndex:3]]; | |
1065 | } | |
1066 | ||
1067 | [event setURL:[NSString stringWithUTF8String:item.URI.c_str()]]; | |
1068 | ||
1069 | return event; | |
1070 | } | |
1071 | ||
4ede7a3f JF |
1072 | + (NSArray *) _attributeKeys { |
1073 | return [NSArray arrayWithObjects: | |
c57867ea | 1074 | @"item", |
4ede7a3f JF |
1075 | @"message", |
1076 | @"package", | |
1077 | @"type", | |
c57867ea JF |
1078 | @"url", |
1079 | @"version", | |
4ede7a3f JF |
1080 | nil]; |
1081 | } | |
1082 | ||
1083 | - (NSArray *) attributeKeys { | |
1084 | return [[self class] _attributeKeys]; | |
1085 | } | |
1086 | ||
1087 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1088 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1089 | } | |
1090 | ||
6915b806 JF |
1091 | - (id) initWithMessage:(NSString *)message ofType:(NSString *)type { |
1092 | if ((self = [super init]) != nil) { | |
1093 | message_ = message; | |
1094 | type_ = type; | |
1095 | } return self; | |
670a0494 JF |
1096 | } |
1097 | ||
6915b806 JF |
1098 | - (NSString *) message { |
1099 | return message_; | |
1100 | } | |
6067f1b8 | 1101 | |
6915b806 JF |
1102 | - (NSString *) type { |
1103 | return type_; | |
1104 | } | |
1105 | ||
c57867ea JF |
1106 | - (NSArray *) item { |
1107 | return (id) item_ ?: [NSNull null]; | |
1108 | } | |
1109 | ||
1110 | - (void) setItem:(NSArray *)item { | |
1111 | item_ = item; | |
6915b806 JF |
1112 | } |
1113 | ||
c57867ea JF |
1114 | - (NSString *) package { |
1115 | return (id) package_ ?: [NSNull null]; | |
6915b806 JF |
1116 | } |
1117 | ||
1118 | - (void) setPackage:(NSString *)package { | |
1119 | package_ = package; | |
1120 | } | |
1121 | ||
c57867ea JF |
1122 | - (NSString *) url { |
1123 | return (id) url_ ?: [NSNull null]; | |
1124 | } | |
1125 | ||
1126 | - (void) setURL:(NSString *)url { | |
1127 | url_ = url; | |
1128 | } | |
1129 | ||
1130 | - (void) setVersion:(NSString *)version { | |
1131 | version_ = version; | |
1132 | } | |
1133 | ||
1134 | - (NSString *) version { | |
1135 | return (id) version_ ?: [NSNull null]; | |
1136 | } | |
1137 | ||
6915b806 JF |
1138 | - (NSString *) compound:(NSString *)value { |
1139 | if (value != nil) { | |
1140 | NSString *mode(nil); { | |
1141 | NSString *type([self type]); | |
389133be | 1142 | if ([type isEqualToString:kCydiaProgressEventTypeError]) |
6915b806 | 1143 | mode = UCLocalize("ERROR"); |
389133be | 1144 | else if ([type isEqualToString:kCydiaProgressEventTypeWarning]) |
6915b806 JF |
1145 | mode = UCLocalize("WARNING"); |
1146 | } | |
1147 | ||
1148 | if (mode != nil) | |
1149 | value = [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), mode, value]; | |
1150 | } | |
1151 | ||
1152 | return value; | |
1153 | } | |
1154 | ||
1155 | - (NSString *) compoundMessage { | |
1156 | return [self compound:[self message]]; | |
1157 | } | |
1158 | ||
1159 | - (NSString *) compoundTitle { | |
1160 | NSString *title; | |
1161 | ||
83b78e5f | 1162 | if (package_ == nil) |
6915b806 | 1163 | title = nil; |
83b78e5f JF |
1164 | else if (Package *package = [[Database sharedInstance] packageWithName:package_]) |
1165 | title = [package name]; | |
1166 | else | |
1167 | title = package_; | |
6915b806 JF |
1168 | |
1169 | return [self compound:title]; | |
670a0494 JF |
1170 | } |
1171 | ||
dc5812ec | 1172 | @end |
36bb2ca2 | 1173 | /* }}} */ |
dc5812ec | 1174 | |
94b0b3e5 JF |
1175 | // Cytore Definitions {{{ |
1176 | struct PackageValue : | |
1177 | Cytore::Block | |
1178 | { | |
94b0b3e5 JF |
1179 | Cytore::Offset<PackageValue> next_; |
1180 | ||
1181 | uint32_t index_ : 23; | |
1182 | uint32_t subscribed_ : 1; | |
1183 | uint32_t : 8; | |
1184 | ||
1185 | int32_t first_; | |
1186 | int32_t last_; | |
1187 | ||
1188 | uint16_t vhash_; | |
1189 | uint16_t nhash_; | |
1190 | ||
1191 | char version_[8]; | |
1192 | char name_[]; | |
1193 | }; | |
1194 | ||
1195 | struct MetaValue : | |
1196 | Cytore::Block | |
1197 | { | |
9f357d11 | 1198 | uint32_t active_; |
94b0b3e5 JF |
1199 | Cytore::Offset<PackageValue> packages_[1 << 16]; |
1200 | }; | |
1201 | ||
1202 | static Cytore::File<MetaValue> MetaFile_; | |
1203 | // }}} | |
1204 | // Cytore Helper Functions {{{ | |
c65611b9 | 1205 | static PackageValue *PackageFind(const char *name, size_t length, bool *fail = NULL) { |
94b0b3e5 JF |
1206 | SplitHash nhash = { hashlittle(name, length) }; |
1207 | ||
1208 | PackageValue *metadata; | |
1209 | ||
1210 | Cytore::Offset<PackageValue> *offset(&MetaFile_->packages_[nhash.u16[0]]); | |
1211 | offset: if (offset->IsNull()) { | |
1212 | *offset = MetaFile_.New<PackageValue>(length + 1); | |
1213 | metadata = &MetaFile_.Get(*offset); | |
1214 | ||
c65611b9 JF |
1215 | if (metadata == NULL) { |
1216 | if (fail != NULL) | |
1217 | *fail = true; | |
1218 | ||
1219 | metadata = new PackageValue(); | |
1220 | memset(metadata, 0, sizeof(*metadata)); | |
1221 | } | |
1222 | ||
94b0b3e5 JF |
1223 | memcpy(metadata->name_, name, length + 1); |
1224 | metadata->nhash_ = nhash.u16[1]; | |
1225 | } else { | |
1226 | metadata = &MetaFile_.Get(*offset); | |
1227 | ||
1228 | if (metadata->nhash_ != nhash.u16[1] || strncmp(metadata->name_, name, length + 1) != 0) { | |
1229 | offset = &metadata->next_; | |
1230 | goto offset; | |
1231 | } | |
1232 | } | |
1233 | ||
94b0b3e5 JF |
1234 | return metadata; |
1235 | } | |
1236 | ||
1237 | static void PackageImport(const void *key, const void *value, void *context) { | |
c65611b9 JF |
1238 | bool &fail(*reinterpret_cast<bool *>(context)); |
1239 | ||
94b0b3e5 JF |
1240 | char buffer[1024]; |
1241 | if (!CFStringGetCString((CFStringRef) key, buffer, sizeof(buffer), kCFStringEncodingUTF8)) { | |
1242 | NSLog(@"failed to import package %@", key); | |
1243 | return; | |
1244 | } | |
1245 | ||
c65611b9 | 1246 | PackageValue *metadata(PackageFind(buffer, strlen(buffer), &fail)); |
94b0b3e5 JF |
1247 | NSDictionary *package((NSDictionary *) value); |
1248 | ||
1249 | if (NSNumber *subscribed = [package objectForKey:@"IsSubscribed"]) | |
2f856365 | 1250 | if ([subscribed boolValue] && !metadata->subscribed_) |
94b0b3e5 JF |
1251 | metadata->subscribed_ = true; |
1252 | ||
1253 | if (NSDate *date = [package objectForKey:@"FirstSeen"]) { | |
1254 | time_t time([date timeIntervalSince1970]); | |
1255 | if (metadata->first_ > time || metadata->first_ == 0) | |
1256 | metadata->first_ = time; | |
1257 | } | |
1258 | ||
2f856365 JF |
1259 | NSDate *date([package objectForKey:@"LastSeen"]); |
1260 | NSString *version([package objectForKey:@"LastVersion"]); | |
5a933937 | 1261 | |
2f856365 | 1262 | if (date != nil && version != nil) { |
94b0b3e5 | 1263 | time_t time([date timeIntervalSince1970]); |
2f856365 | 1264 | if (metadata->last_ < time || metadata->last_ == 0) |
5a933937 JF |
1265 | if (CFStringGetCString((CFStringRef) version, buffer, sizeof(buffer), kCFStringEncodingUTF8)) { |
1266 | size_t length(strlen(buffer)); | |
1267 | uint16_t vhash(hashlittle(buffer, length)); | |
94b0b3e5 | 1268 | |
5a933937 JF |
1269 | size_t capped(std::min<size_t>(8, length)); |
1270 | char *latest(buffer + length - capped); | |
1271 | ||
1272 | strncpy(metadata->version_, latest, sizeof(metadata->version_)); | |
1273 | metadata->vhash_ = vhash; | |
2f856365 JF |
1274 | |
1275 | metadata->last_ = time; | |
5a933937 | 1276 | } |
2f856365 | 1277 | } |
94b0b3e5 JF |
1278 | } |
1279 | // }}} | |
1280 | ||
36bb2ca2 JF |
1281 | /* Source Class {{{ */ |
1282 | @interface Source : NSObject { | |
aec64d46 JF |
1283 | unsigned era_; |
1284 | Database *database_; | |
1285 | metaIndex *index_; | |
1286 | ||
6204f56a | 1287 | CYString depiction_; |
f9f6d9e8 JF |
1288 | CYString description_; |
1289 | CYString label_; | |
1290 | CYString origin_; | |
1291 | CYString support_; | |
dc5812ec | 1292 | |
f9f6d9e8 JF |
1293 | CYString uri_; |
1294 | CYString distribution_; | |
1295 | CYString type_; | |
8252b666 | 1296 | CYString base_; |
f9f6d9e8 | 1297 | CYString version_; |
2367a917 | 1298 | |
c08c8943 JF |
1299 | _H<NSString> host_; |
1300 | _H<NSString> authority_; | |
f9f6d9e8 JF |
1301 | |
1302 | CYString defaultIcon_; | |
dc5812ec | 1303 | |
c08c8943 | 1304 | _H<NSDictionary> record_; |
36bb2ca2 | 1305 | BOOL trusted_; |
dc5812ec JF |
1306 | } |
1307 | ||
aec64d46 | 1308 | - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool; |
dc5812ec | 1309 | |
90ba4f86 | 1310 | - (NSComparisonResult) compareByName:(Source *)source; |
7b0ce2da | 1311 | |
6204f56a | 1312 | - (NSString *) depictionForPackage:(NSString *)package; |
dc63e78f JF |
1313 | - (NSString *) supportForPackage:(NSString *)package; |
1314 | ||
7b0ce2da | 1315 | - (NSDictionary *) record; |
36bb2ca2 | 1316 | - (BOOL) trusted; |
dc5812ec | 1317 | |
7bd76e97 | 1318 | - (NSString *) rooturi; |
36bb2ca2 JF |
1319 | - (NSString *) distribution; |
1320 | - (NSString *) type; | |
8252b666 | 1321 | |
7b0ce2da JF |
1322 | - (NSString *) key; |
1323 | - (NSString *) host; | |
36bb2ca2 | 1324 | |
7b0ce2da | 1325 | - (NSString *) name; |
8d262908 | 1326 | - (NSString *) shortDescription; |
36bb2ca2 JF |
1327 | - (NSString *) label; |
1328 | - (NSString *) origin; | |
1329 | - (NSString *) version; | |
dc5812ec | 1330 | |
36bb2ca2 | 1331 | - (NSString *) defaultIcon; |
7bd76e97 | 1332 | - (NSURL *) iconURL; |
7b0ce2da | 1333 | |
dc5812ec | 1334 | @end |
dc5812ec | 1335 | |
36bb2ca2 | 1336 | @implementation Source |
dc5812ec | 1337 | |
a3328c28 | 1338 | - (void) _clear { |
f9f6d9e8 JF |
1339 | uri_.clear(); |
1340 | distribution_.clear(); | |
1341 | type_.clear(); | |
a3328c28 | 1342 | |
8252b666 JF |
1343 | base_.clear(); |
1344 | ||
f9f6d9e8 JF |
1345 | description_.clear(); |
1346 | label_.clear(); | |
1347 | origin_.clear(); | |
6204f56a | 1348 | depiction_.clear(); |
f9f6d9e8 JF |
1349 | support_.clear(); |
1350 | version_.clear(); | |
1351 | defaultIcon_.clear(); | |
1352 | ||
c08c8943 JF |
1353 | record_ = nil; |
1354 | host_ = nil; | |
1355 | authority_ = nil; | |
a3328c28 | 1356 | } |
dc5812ec | 1357 | |
33e30380 JF |
1358 | + (NSString *) webScriptNameForSelector:(SEL)selector { |
1359 | if (false); | |
1360 | else if (selector == @selector(addSection:)) | |
1361 | return @"addSection"; | |
aec64d46 JF |
1362 | else if (selector == @selector(getField:)) |
1363 | return @"getField"; | |
33e30380 JF |
1364 | else if (selector == @selector(removeSection:)) |
1365 | return @"removeSection"; | |
1366 | else if (selector == @selector(remove)) | |
1367 | return @"remove"; | |
1368 | else | |
1369 | return nil; | |
1370 | } | |
1371 | ||
1372 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
1373 | return [self webScriptNameForSelector:selector] == nil; | |
1374 | } | |
1375 | ||
6f1a15d9 | 1376 | + (NSArray *) _attributeKeys { |
e58ff941 | 1377 | return [NSArray arrayWithObjects: |
7bd76e97 | 1378 | @"baseuri", |
e58ff941 JF |
1379 | @"distribution", |
1380 | @"host", | |
1381 | @"key", | |
7bd76e97 | 1382 | @"iconuri", |
e58ff941 JF |
1383 | @"label", |
1384 | @"name", | |
1385 | @"origin", | |
7bd76e97 | 1386 | @"rooturi", |
33e30380 | 1387 | @"sections", |
8d262908 | 1388 | @"shortDescription", |
e58ff941 JF |
1389 | @"trusted", |
1390 | @"type", | |
e58ff941 JF |
1391 | @"version", |
1392 | nil]; | |
6f1a15d9 JF |
1393 | } |
1394 | ||
1395 | - (NSArray *) attributeKeys { | |
1396 | return [[self class] _attributeKeys]; | |
1397 | } | |
1398 | ||
1399 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1400 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1401 | } | |
1402 | ||
f9f6d9e8 | 1403 | - (void) setMetaIndex:(metaIndex *)index inPool:(apr_pool_t *)pool { |
a3328c28 | 1404 | [self _clear]; |
dc5812ec | 1405 | |
a3328c28 JF |
1406 | trusted_ = index->IsTrusted(); |
1407 | ||
f9f6d9e8 JF |
1408 | uri_.set(pool, index->GetURI()); |
1409 | distribution_.set(pool, index->GetDist()); | |
1410 | type_.set(pool, index->GetType()); | |
a3328c28 JF |
1411 | |
1412 | debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index)); | |
1413 | if (dindex != NULL) { | |
8252b666 JF |
1414 | base_.set(pool, dindex->MetaIndexURI("")); |
1415 | ||
18873623 JF |
1416 | FileFd fd; |
1417 | if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) | |
1418 | _error->Discard(); | |
1419 | else { | |
1420 | pkgTagFile tags(&fd); | |
f9f6d9e8 | 1421 | |
18873623 JF |
1422 | pkgTagSection section; |
1423 | tags.Step(section); | |
a3328c28 | 1424 | |
18873623 JF |
1425 | struct { |
1426 | const char *name_; | |
1427 | CYString *value_; | |
1428 | } names[] = { | |
1429 | {"default-icon", &defaultIcon_}, | |
6204f56a | 1430 | {"depiction", &depiction_}, |
18873623 JF |
1431 | {"description", &description_}, |
1432 | {"label", &label_}, | |
1433 | {"origin", &origin_}, | |
1434 | {"support", &support_}, | |
1435 | {"version", &version_}, | |
1436 | }; | |
f9f6d9e8 | 1437 | |
18873623 JF |
1438 | for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) { |
1439 | const char *start, *end; | |
1440 | ||
1441 | if (section.Find(names[i].name_, start, end)) { | |
1442 | CYString &value(*names[i].value_); | |
1443 | value.set(pool, start, end - start); | |
1444 | } | |
f9f6d9e8 | 1445 | } |
36bb2ca2 | 1446 | } |
a3328c28 | 1447 | } |
7b0ce2da | 1448 | |
a3328c28 | 1449 | record_ = [Sources_ objectForKey:[self key]]; |
f9f6d9e8 | 1450 | |
7623f855 JF |
1451 | NSURL *url([NSURL URLWithString:uri_]); |
1452 | ||
1453 | host_ = [url host]; | |
1454 | if (host_ != nil) | |
c08c8943 | 1455 | host_ = [host_ lowercaseString]; |
7623f855 JF |
1456 | |
1457 | if (host_ != nil) | |
dfdb9ae0 | 1458 | authority_ = host_; |
7623f855 JF |
1459 | else |
1460 | authority_ = [url path]; | |
a3328c28 JF |
1461 | } |
1462 | ||
aec64d46 | 1463 | - (Source *) initWithMetaIndex:(metaIndex *)index forDatabase:(Database *)database inPool:(apr_pool_t *)pool { |
a3328c28 | 1464 | if ((self = [super init]) != nil) { |
aec64d46 JF |
1465 | era_ = [database era]; |
1466 | database_ = database; | |
1467 | index_ = index; | |
1468 | ||
f9f6d9e8 | 1469 | [self setMetaIndex:index inPool:pool]; |
36bb2ca2 | 1470 | } return self; |
2367a917 | 1471 | } |
dc5812ec | 1472 | |
aec64d46 JF |
1473 | - (NSString *) getField:(NSString *)name { |
1474 | @synchronized (database_) { | |
1475 | if ([database_ era] != era_ || index_ == NULL) | |
1476 | return nil; | |
1477 | ||
1478 | debReleaseIndex *dindex(dynamic_cast<debReleaseIndex *>(index_)); | |
1479 | if (dindex == NULL) | |
1480 | return nil; | |
1481 | ||
1482 | FileFd fd; | |
1483 | if (!fd.Open(dindex->MetaIndexFile("Release"), FileFd::ReadOnly)) { | |
1484 | _error->Discard(); | |
1485 | return nil; | |
1486 | } | |
1487 | ||
1488 | pkgTagFile tags(&fd); | |
1489 | ||
1490 | pkgTagSection section; | |
1491 | tags.Step(section); | |
1492 | ||
1493 | const char *start, *end; | |
1494 | if (!section.Find([name UTF8String], start, end)) | |
1495 | return (NSString *) [NSNull null]; | |
1496 | ||
1497 | return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]]; | |
1498 | } } | |
1499 | ||
90ba4f86 | 1500 | - (NSComparisonResult) compareByName:(Source *)source { |
7b0ce2da JF |
1501 | NSString *lhs = [self name]; |
1502 | NSString *rhs = [source name]; | |
1503 | ||
1504 | if ([lhs length] != 0 && [rhs length] != 0) { | |
1505 | unichar lhc = [lhs characterAtIndex:0]; | |
1506 | unichar rhc = [rhs characterAtIndex:0]; | |
1507 | ||
1508 | if (isalpha(lhc) && !isalpha(rhc)) | |
1509 | return NSOrderedAscending; | |
1510 | else if (!isalpha(lhc) && isalpha(rhc)) | |
1511 | return NSOrderedDescending; | |
1512 | } | |
1513 | ||
68f1828e | 1514 | return [lhs compare:rhs options:LaxCompareOptions_]; |
7b0ce2da JF |
1515 | } |
1516 | ||
6204f56a | 1517 | - (NSString *) depictionForPackage:(NSString *)package { |
89b0ea4a | 1518 | return depiction_.empty() ? nil : [static_cast<id>(depiction_) stringByReplacingOccurrencesOfString:@"*" withString:package]; |
6204f56a JF |
1519 | } |
1520 | ||
dc63e78f | 1521 | - (NSString *) supportForPackage:(NSString *)package { |
89b0ea4a | 1522 | return support_.empty() ? nil : [static_cast<id>(support_) stringByReplacingOccurrencesOfString:@"*" withString:package]; |
dc63e78f JF |
1523 | } |
1524 | ||
33e30380 JF |
1525 | - (NSArray *) sections { |
1526 | return record_ == nil ? (id) [NSNull null] : [record_ objectForKey:@"Sections"] ?: [NSArray array]; | |
1527 | } | |
1528 | ||
1529 | - (void) _addSection:(NSString *)section { | |
1530 | if (record_ == nil) | |
1531 | return; | |
1532 | else if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) { | |
1533 | if (![sections containsObject:section]) { | |
1534 | [sections addObject:section]; | |
1535 | Changed_ = true; | |
1536 | } | |
1537 | } else { | |
1538 | [record_ setObject:[NSMutableArray arrayWithObject:section] forKey:@"Sections"]; | |
1539 | Changed_ = true; | |
1540 | } | |
1541 | } | |
1542 | ||
1543 | - (bool) addSection:(NSString *)section { | |
1544 | if (record_ == nil) | |
1545 | return false; | |
1546 | ||
1547 | [self performSelectorOnMainThread:@selector(_addSection:) withObject:section waitUntilDone:NO]; | |
1548 | return true; | |
1549 | } | |
1550 | ||
1551 | - (void) _removeSection:(NSString *)section { | |
1552 | if (record_ == nil) | |
1553 | return; | |
1554 | ||
1555 | if (NSMutableArray *sections = [record_ objectForKey:@"Sections"]) | |
1556 | if ([sections containsObject:section]) { | |
1557 | [sections removeObject:section]; | |
1558 | Changed_ = true; | |
1559 | } | |
1560 | } | |
1561 | ||
1562 | - (bool) removeSection:(NSString *)section { | |
1563 | if (record_ == nil) | |
1564 | return false; | |
1565 | ||
1566 | [self performSelectorOnMainThread:@selector(_removeSection:) withObject:section waitUntilDone:NO]; | |
1567 | return true; | |
1568 | } | |
1569 | ||
1570 | - (void) _remove { | |
1571 | [Sources_ removeObjectForKey:[self key]]; | |
1572 | Changed_ = true; | |
1573 | } | |
1574 | ||
1575 | - (bool) remove { | |
1576 | bool value(record_ != nil); | |
1577 | [self performSelectorOnMainThread:@selector(_remove) withObject:nil waitUntilDone:NO]; | |
1578 | return value; | |
1579 | } | |
1580 | ||
7b0ce2da JF |
1581 | - (NSDictionary *) record { |
1582 | return record_; | |
1583 | } | |
1584 | ||
36bb2ca2 JF |
1585 | - (BOOL) trusted { |
1586 | return trusted_; | |
1587 | } | |
3178d79b | 1588 | |
7bd76e97 | 1589 | - (NSString *) rooturi { |
36bb2ca2 JF |
1590 | return uri_; |
1591 | } | |
ec97ef06 | 1592 | |
36bb2ca2 JF |
1593 | - (NSString *) distribution { |
1594 | return distribution_; | |
1595 | } | |
dc5812ec | 1596 | |
36bb2ca2 JF |
1597 | - (NSString *) type { |
1598 | return type_; | |
dc5812ec JF |
1599 | } |
1600 | ||
7bd76e97 JF |
1601 | - (NSString *) baseuri { |
1602 | return base_.empty() ? nil : (id) base_; | |
1603 | } | |
1604 | ||
1605 | - (NSString *) iconuri { | |
1606 | if (NSString *base = [self baseuri]) | |
1607 | return [base stringByAppendingString:@"CydiaIcon.png"]; | |
1608 | ||
1609 | return nil; | |
1610 | } | |
1611 | ||
1612 | - (NSURL *) iconURL { | |
1613 | if (NSString *uri = [self iconuri]) | |
1614 | return [NSURL URLWithString:uri]; | |
1615 | return nil; | |
8252b666 JF |
1616 | } |
1617 | ||
7b0ce2da | 1618 | - (NSString *) key { |
f9f6d9e8 | 1619 | return [NSString stringWithFormat:@"%@:%@:%@", (NSString *) type_, (NSString *) uri_, (NSString *) distribution_]; |
7b0ce2da JF |
1620 | } |
1621 | ||
1622 | - (NSString *) host { | |
f9f6d9e8 | 1623 | return host_; |
7b0ce2da JF |
1624 | } |
1625 | ||
1626 | - (NSString *) name { | |
c08c8943 | 1627 | return origin_.empty() ? (id) authority_ : origin_; |
7b0ce2da JF |
1628 | } |
1629 | ||
8d262908 | 1630 | - (NSString *) shortDescription { |
36bb2ca2 JF |
1631 | return description_; |
1632 | } | |
b4d89997 | 1633 | |
36bb2ca2 | 1634 | - (NSString *) label { |
c08c8943 | 1635 | return label_.empty() ? (id) authority_ : label_; |
36bb2ca2 | 1636 | } |
3178d79b | 1637 | |
36bb2ca2 JF |
1638 | - (NSString *) origin { |
1639 | return origin_; | |
1640 | } | |
3178d79b | 1641 | |
36bb2ca2 JF |
1642 | - (NSString *) version { |
1643 | return version_; | |
1644 | } | |
2367a917 | 1645 | |
36bb2ca2 JF |
1646 | - (NSString *) defaultIcon { |
1647 | return defaultIcon_; | |
1648 | } | |
2367a917 | 1649 | |
2388b078 JF |
1650 | @end |
1651 | /* }}} */ | |
83682c75 JF |
1652 | /* CydiaOperation Class {{{ */ |
1653 | @interface CydiaOperation : NSObject { | |
7b33d201 JF |
1654 | _H<NSString> operator_; |
1655 | _H<NSString> value_; | |
2388b078 JF |
1656 | } |
1657 | ||
83682c75 JF |
1658 | - (NSString *) operator; |
1659 | - (NSString *) value; | |
2388b078 JF |
1660 | |
1661 | @end | |
1662 | ||
83682c75 | 1663 | @implementation CydiaOperation |
2388b078 | 1664 | |
83682c75 JF |
1665 | - (id) initWithOperator:(const char *)_operator value:(const char *)value { |
1666 | if ((self = [super init]) != nil) { | |
7b33d201 JF |
1667 | operator_ = [NSString stringWithUTF8String:_operator]; |
1668 | value_ = [NSString stringWithUTF8String:value]; | |
83682c75 JF |
1669 | } return self; |
1670 | } | |
1671 | ||
1672 | + (NSArray *) _attributeKeys { | |
1673 | return [NSArray arrayWithObjects: | |
1674 | @"operator", | |
1675 | @"value", | |
1676 | nil]; | |
2388b078 JF |
1677 | } |
1678 | ||
83682c75 JF |
1679 | - (NSArray *) attributeKeys { |
1680 | return [[self class] _attributeKeys]; | |
2388b078 JF |
1681 | } |
1682 | ||
83682c75 JF |
1683 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { |
1684 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1685 | } | |
1686 | ||
1687 | - (NSString *) operator { | |
1688 | return operator_; | |
1689 | } | |
1690 | ||
1691 | - (NSString *) value { | |
1692 | return value_; | |
1693 | } | |
1694 | ||
1695 | @end | |
1696 | /* }}} */ | |
810c9763 JF |
1697 | /* CydiaClause Class {{{ */ |
1698 | @interface CydiaClause : NSObject { | |
7b33d201 JF |
1699 | _H<NSString> package_; |
1700 | _H<CydiaOperation> version_; | |
83682c75 JF |
1701 | } |
1702 | ||
83682c75 JF |
1703 | - (NSString *) package; |
1704 | - (CydiaOperation *) version; | |
1705 | ||
1706 | @end | |
1707 | ||
810c9763 | 1708 | @implementation CydiaClause |
83682c75 | 1709 | |
83682c75 JF |
1710 | - (id) initWithIterator:(pkgCache::DepIterator &)dep { |
1711 | if ((self = [super init]) != nil) { | |
7b33d201 | 1712 | package_ = [NSString stringWithUTF8String:dep.TargetPkg().Name()]; |
83682c75 JF |
1713 | |
1714 | if (const char *version = dep.TargetVer()) | |
7b33d201 | 1715 | version_ = [[[CydiaOperation alloc] initWithOperator:dep.CompType() value:version] autorelease]; |
83682c75 | 1716 | else |
7b33d201 | 1717 | version_ = (id) [NSNull null]; |
83682c75 JF |
1718 | } return self; |
1719 | } | |
1720 | ||
1721 | + (NSArray *) _attributeKeys { | |
1722 | return [NSArray arrayWithObjects: | |
1723 | @"package", | |
83682c75 JF |
1724 | @"version", |
1725 | nil]; | |
1726 | } | |
1727 | ||
1728 | - (NSArray *) attributeKeys { | |
1729 | return [[self class] _attributeKeys]; | |
1730 | } | |
1731 | ||
1732 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1733 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1734 | } | |
1735 | ||
83682c75 JF |
1736 | - (NSString *) package { |
1737 | return package_; | |
1738 | } | |
1739 | ||
1740 | - (CydiaOperation *) version { | |
1741 | return version_; | |
2388b078 JF |
1742 | } |
1743 | ||
810c9763 JF |
1744 | @end |
1745 | /* }}} */ | |
1746 | /* CydiaRelation Class {{{ */ | |
1747 | @interface CydiaRelation : NSObject { | |
7b33d201 JF |
1748 | _H<NSString> relationship_; |
1749 | _H<NSMutableArray> clauses_; | |
810c9763 JF |
1750 | } |
1751 | ||
1752 | - (NSString *) relationship; | |
1753 | - (NSArray *) clauses; | |
1754 | ||
1755 | @end | |
1756 | ||
1757 | @implementation CydiaRelation | |
1758 | ||
810c9763 JF |
1759 | - (id) initWithIterator:(pkgCache::DepIterator &)dep { |
1760 | if ((self = [super init]) != nil) { | |
7b33d201 JF |
1761 | relationship_ = [NSString stringWithUTF8String:dep.DepType()]; |
1762 | clauses_ = [NSMutableArray arrayWithCapacity:8]; | |
810c9763 JF |
1763 | |
1764 | pkgCache::DepIterator start; | |
1765 | pkgCache::DepIterator end; | |
1766 | dep.GlobOr(start, end); // ++dep | |
1767 | ||
1768 | _forever { | |
1769 | [clauses_ addObject:[[[CydiaClause alloc] initWithIterator:start] autorelease]]; | |
1770 | ||
1771 | // yes, seriously. (wtf?) | |
1772 | if (start == end) | |
1773 | break; | |
1774 | ++start; | |
1775 | } | |
1776 | } return self; | |
1777 | } | |
1778 | ||
1779 | + (NSArray *) _attributeKeys { | |
1780 | return [NSArray arrayWithObjects: | |
1781 | @"clauses", | |
1782 | @"relationship", | |
1783 | nil]; | |
1784 | } | |
1785 | ||
1786 | - (NSArray *) attributeKeys { | |
1787 | return [[self class] _attributeKeys]; | |
1788 | } | |
1789 | ||
1790 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
1791 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
1792 | } | |
1793 | ||
1794 | - (NSString *) relationship { | |
1795 | return relationship_; | |
1796 | } | |
1797 | ||
1798 | - (NSArray *) clauses { | |
1799 | return clauses_; | |
1800 | } | |
1801 | ||
1802 | - (void) addClause:(CydiaClause *)clause { | |
1803 | [clauses_ addObject:clause]; | |
1804 | } | |
1805 | ||
dc5812ec | 1806 | @end |
b4d89997 | 1807 | /* }}} */ |
36bb2ca2 | 1808 | /* Package Class {{{ */ |
12016ee5 | 1809 | struct ParsedPackage { |
974742b2 | 1810 | CYString md5sum_; |
12016ee5 JF |
1811 | CYString tagline_; |
1812 | ||
a412f357 | 1813 | CYString architecture_; |
12016ee5 JF |
1814 | CYString icon_; |
1815 | ||
1816 | CYString depiction_; | |
1817 | CYString homepage_; | |
1818 | ||
1819 | CYString sponsor_; | |
1820 | CYString author_; | |
1821 | ||
1822 | CYString bugs_; | |
1823 | CYString support_; | |
1824 | }; | |
1825 | ||
36bb2ca2 | 1826 | @interface Package : NSObject { |
13902177 | 1827 | uint32_t era_ : 25; |
97a3d89e | 1828 | uint32_t role_ : 3; |
aab28f8b JF |
1829 | uint32_t essential_ : 1; |
1830 | uint32_t obsolete_ : 1; | |
1831 | uint32_t ignored_ : 1; | |
13902177 | 1832 | uint32_t pooled_ : 1; |
aab28f8b | 1833 | |
68d927e2 | 1834 | apr_pool_t *pool_; |
a1440b10 | 1835 | |
9c5737d5 JF |
1836 | uint32_t rank_; |
1837 | ||
aab28f8b JF |
1838 | _transient Database *database_; |
1839 | ||
7376b55c | 1840 | pkgCache::VerIterator version_; |
36bb2ca2 | 1841 | pkgCache::PkgIterator iterator_; |
36bb2ca2 | 1842 | pkgCache::VerFileIterator file_; |
bbb879fb | 1843 | |
aab28f8b JF |
1844 | CYString id_; |
1845 | CYString name_; | |
807ae6d7 | 1846 | |
4c0ed943 | 1847 | CYString latest_; |
6a155117 | 1848 | CYString installed_; |
dc5812ec | 1849 | |
fe33a23e | 1850 | const char *section_; |
aab28f8b | 1851 | _transient NSString *section$_; |
f79a4512 | 1852 | |
7b33d201 | 1853 | _H<Source> source_; |
2388b078 | 1854 | |
bb6bb6d6 | 1855 | PackageValue *metadata_; |
aab28f8b | 1856 | ParsedPackage *parsed_; |
94b0b3e5 | 1857 | |
7b33d201 | 1858 | _H<NSMutableArray> tags_; |
b4d89997 JF |
1859 | } |
1860 | ||
7376b55c | 1861 | - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database; |
f79a4512 | 1862 | + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database; |
b4d89997 | 1863 | |
2388b078 | 1864 | - (pkgCache::PkgIterator) iterator; |
68d927e2 | 1865 | - (void) parse; |
2388b078 | 1866 | |
36bb2ca2 | 1867 | - (NSString *) section; |
dec6029f JF |
1868 | - (NSString *) simpleSection; |
1869 | ||
f79a4512 JF |
1870 | - (NSString *) longSection; |
1871 | - (NSString *) shortSection; | |
1872 | ||
a3328c28 JF |
1873 | - (NSString *) uri; |
1874 | ||
7aa82ca2 | 1875 | - (MIMEAddress *) maintainer; |
36bb2ca2 | 1876 | - (size_t) size; |
eef4ccaf JF |
1877 | - (NSString *) longDescription; |
1878 | - (NSString *) shortDescription; | |
808c6eb6 | 1879 | - (unichar) index; |
dc5812ec | 1880 | |
94b0b3e5 | 1881 | - (PackageValue *) metadata; |
31bc18a7 | 1882 | - (time_t) seen; |
94b0b3e5 JF |
1883 | |
1884 | - (bool) subscribed; | |
1885 | - (bool) setSubscribed:(bool)subscribed; | |
1886 | ||
807ae6d7 | 1887 | - (BOOL) ignored; |
9e98e020 | 1888 | |
36bb2ca2 JF |
1889 | - (NSString *) latest; |
1890 | - (NSString *) installed; | |
6a155117 | 1891 | - (BOOL) uninstalled; |
5a09ae08 JF |
1892 | |
1893 | - (BOOL) valid; | |
31f3cfff | 1894 | - (BOOL) upgradableAndEssential:(BOOL)essential; |
36bb2ca2 JF |
1895 | - (BOOL) essential; |
1896 | - (BOOL) broken; | |
7d2ac47f | 1897 | - (BOOL) unfiltered; |
6d9712c4 | 1898 | - (BOOL) visible; |
b4d89997 | 1899 | |
9bedffaa JF |
1900 | - (BOOL) half; |
1901 | - (BOOL) halfConfigured; | |
1902 | - (BOOL) halfInstalled; | |
1903 | - (BOOL) hasMode; | |
1904 | - (NSString *) mode; | |
1905 | ||
36bb2ca2 JF |
1906 | - (NSString *) id; |
1907 | - (NSString *) name; | |
770f2a8e | 1908 | - (UIImage *) icon; |
6f1a15d9 | 1909 | - (NSString *) homepage; |
25a2158d | 1910 | - (NSString *) depiction; |
7aa82ca2 | 1911 | - (MIMEAddress *) author; |
b4d89997 | 1912 | |
dc63e78f JF |
1913 | - (NSString *) support; |
1914 | ||
affeffc7 | 1915 | - (NSArray *) files; |
affeffc7 JF |
1916 | - (NSArray *) warnings; |
1917 | - (NSArray *) applications; | |
2388b078 | 1918 | |
36bb2ca2 | 1919 | - (Source *) source; |
b4d89997 | 1920 | |
9c5737d5 | 1921 | - (uint32_t) rank; |
d84597fe | 1922 | - (BOOL) matches:(NSArray *)query; |
b4d89997 | 1923 | |
7b0ce2da | 1924 | - (bool) hasSupportingRole; |
6d9712c4 | 1925 | - (BOOL) hasTag:(NSString *)tag; |
c390d3ab | 1926 | - (NSString *) primaryPurpose; |
770f2a8e | 1927 | - (NSArray *) purposes; |
3bd1c2a2 | 1928 | - (bool) isCommercial; |
6d9712c4 | 1929 | |
cd95e390 JF |
1930 | - (void) setIndex:(size_t)index; |
1931 | ||
df213583 JF |
1932 | - (CYString &) cyname; |
1933 | ||
f79a4512 | 1934 | - (uint32_t) compareBySection:(NSArray *)sections; |
807ae6d7 | 1935 | |
36bb2ca2 JF |
1936 | - (void) install; |
1937 | - (void) remove; | |
06aa974d | 1938 | |
d84597fe | 1939 | - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query; |
01d93940 | 1940 | - (bool) isUnfilteredAndSelectedForBy:(NSString *)search; |
e4f3d6e9 | 1941 | - (bool) isInstalledAndUnfiltered:(NSNumber *)number; |
670a0494 | 1942 | - (bool) isVisibleInSection:(NSString *)section; |
0a3b45ef | 1943 | - (bool) isVisibleInSource:(Source *)source; |
b4d89997 | 1944 | |
36bb2ca2 | 1945 | @end |
b4d89997 | 1946 | |
f79a4512 JF |
1947 | uint32_t PackageChangesRadix(Package *self, void *) { |
1948 | union { | |
1949 | uint32_t key; | |
1950 | ||
1951 | struct { | |
1952 | uint32_t timestamp : 30; | |
1953 | uint32_t ignored : 1; | |
1954 | uint32_t upgradable : 1; | |
1955 | } bits; | |
1956 | } value; | |
1957 | ||
1958 | bool upgradable([self upgradableAndEssential:YES]); | |
1959 | value.bits.upgradable = upgradable ? 1 : 0; | |
1960 | ||
1961 | if (upgradable) { | |
1962 | value.bits.timestamp = 0; | |
1963 | value.bits.ignored = [self ignored] ? 0 : 1; | |
1964 | value.bits.upgradable = 1; | |
1965 | } else { | |
36047c66 | 1966 | value.bits.timestamp = [self seen] >> 2; |
f79a4512 JF |
1967 | value.bits.ignored = 0; |
1968 | value.bits.upgradable = 0; | |
1969 | } | |
1970 | ||
1971 | return _not(uint32_t) - value.key; | |
1972 | } | |
1973 | ||
df213583 JF |
1974 | uint32_t PackagePrefixRadix(Package *self, void *context) { |
1975 | size_t offset(reinterpret_cast<size_t>(context)); | |
1976 | CYString &name([self cyname]); | |
677b8415 | 1977 | |
df213583 JF |
1978 | size_t size(name.size()); |
1979 | if (size == 0) | |
1980 | return 0; | |
1981 | char *text(name.data()); | |
677b8415 | 1982 | |
df213583 JF |
1983 | size_t zeros; |
1984 | if (!isdigit(text[0])) | |
1985 | zeros = 0; | |
1986 | else { | |
1987 | size_t digits(1); | |
1988 | while (size != digits && isdigit(text[digits])) | |
1989 | if (++digits == 4) | |
1990 | break; | |
1991 | zeros = 4 - digits; | |
1992 | } | |
677b8415 | 1993 | |
df213583 JF |
1994 | uint8_t data[4]; |
1995 | ||
df213583 JF |
1996 | if (offset == 0 && zeros != 0) { |
1997 | memset(data, '0', zeros); | |
1998 | memcpy(data + zeros, text, 4 - zeros); | |
1999 | } else { | |
2000 | /* XXX: there's some danger here if you request a non-zero offset < 4 and it gets zero padded */ | |
2001 | if (size <= offset - zeros) | |
2002 | return 0; | |
2003 | ||
2004 | text += offset - zeros; | |
2005 | size -= offset - zeros; | |
2006 | ||
2007 | if (size >= 4) | |
2008 | memcpy(data, text, 4); | |
2009 | else { | |
2010 | memcpy(data, text, size); | |
2011 | memset(data + size, 0, 4 - size); | |
2012 | } | |
2013 | ||
2014 | for (size_t i(0); i != 4; ++i) | |
2015 | if (isalpha(data[i])) | |
a7a59ee1 | 2016 | data[i] |= 0x20; |
df213583 JF |
2017 | } |
2018 | ||
2019 | if (offset == 0) | |
a7a59ee1 JF |
2020 | if (data[0] == '@') |
2021 | data[0] = 0x7f; | |
2022 | else | |
2023 | data[0] = (data[0] & 0x1f) | "\x80\x00\xc0\x40"[data[0] >> 6]; | |
df213583 JF |
2024 | |
2025 | /* XXX: ntohl may be more honest */ | |
2026 | return OSSwapInt32(*reinterpret_cast<uint32_t *>(data)); | |
2027 | } | |
2028 | ||
2029 | CYString &(*PackageName)(Package *self, SEL sel); | |
2030 | ||
2031 | CFComparisonResult PackageNameCompare(Package *lhs, Package *rhs, void *arg) { | |
2032 | _profile(PackageNameCompare) | |
2033 | CYString &lhi(PackageName(lhs, @selector(cyname))); | |
2034 | CYString &rhi(PackageName(rhs, @selector(cyname))); | |
2035 | CFStringRef lhn(lhi), rhn(rhi); | |
677b8415 | 2036 | |
5358f56f JF |
2037 | if (lhn == NULL) |
2038 | return rhn == NULL ? NSOrderedSame : NSOrderedAscending; | |
2039 | else if (rhn == NULL) | |
2040 | return NSOrderedDescending; | |
2041 | ||
677b8415 | 2042 | _profile(PackageNameCompare$NumbersLast) |
df213583 | 2043 | if (!lhi.empty() && !rhi.empty()) { |
677b8415 JF |
2044 | UniChar lhc(CFStringGetCharacterAtIndex(lhn, 0)); |
2045 | UniChar rhc(CFStringGetCharacterAtIndex(rhn, 0)); | |
2046 | bool lha(CFUniCharIsMemberOf(lhc, kCFUniCharLetterCharacterSet)); | |
2047 | if (lha != CFUniCharIsMemberOf(rhc, kCFUniCharLetterCharacterSet)) | |
2048 | return lha ? NSOrderedAscending : NSOrderedDescending; | |
2049 | } | |
2050 | _end | |
2051 | ||
df213583 JF |
2052 | CFIndex length = CFStringGetLength(lhn); |
2053 | ||
677b8415 JF |
2054 | _profile(PackageNameCompare$Compare) |
2055 | return CFStringCompareWithOptionsAndLocale(lhn, rhn, CFRangeMake(0, length), LaxCompareFlags_, Locale_); | |
2056 | _end | |
2057 | _end | |
2058 | } | |
2059 | ||
eef4ccaf JF |
2060 | CFComparisonResult PackageNameCompare_(Package **lhs, Package **rhs, void *context) { |
2061 | return PackageNameCompare(*lhs, *rhs, context); | |
677b8415 JF |
2062 | } |
2063 | ||
2064 | struct PackageNameOrdering : | |
2065 | std::binary_function<Package *, Package *, bool> | |
2066 | { | |
2067 | _finline bool operator ()(Package *lhs, Package *rhs) const { | |
2068 | return PackageNameCompare(lhs, rhs, NULL) == NSOrderedAscending; | |
2069 | } | |
2070 | }; | |
2071 | ||
36bb2ca2 | 2072 | @implementation Package |
b4d89997 | 2073 | |
df213583 JF |
2074 | - (NSString *) description { |
2075 | return [NSString stringWithFormat:@"<Package:%@>", static_cast<NSString *>(name_)]; | |
2076 | } | |
2077 | ||
36bb2ca2 | 2078 | - (void) dealloc { |
13902177 JF |
2079 | if (!pooled_) |
2080 | apr_pool_destroy(pool_); | |
12016ee5 JF |
2081 | if (parsed_ != NULL) |
2082 | delete parsed_; | |
36bb2ca2 | 2083 | [super dealloc]; |
b4d89997 JF |
2084 | } |
2085 | ||
3bd1c2a2 | 2086 | + (NSString *) webScriptNameForSelector:(SEL)selector { |
e58ff941 | 2087 | if (false); |
10d63f9e JF |
2088 | else if (selector == @selector(clear)) |
2089 | return @"clear"; | |
2cd1afd9 JF |
2090 | else if (selector == @selector(getField:)) |
2091 | return @"getField"; | |
e58ff941 | 2092 | else if (selector == @selector(hasTag:)) |
3bd1c2a2 | 2093 | return @"hasTag"; |
10d63f9e JF |
2094 | else if (selector == @selector(install)) |
2095 | return @"install"; | |
2096 | else if (selector == @selector(remove)) | |
2097 | return @"remove"; | |
3bd1c2a2 JF |
2098 | else |
2099 | return nil; | |
2100 | } | |
2101 | ||
2102 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
2103 | return [self webScriptNameForSelector:selector] == nil; | |
2104 | } | |
2105 | ||
6f1a15d9 | 2106 | + (NSArray *) _attributeKeys { |
e58ff941 JF |
2107 | return [NSArray arrayWithObjects: |
2108 | @"applications", | |
a412f357 | 2109 | @"architecture", |
e58ff941 JF |
2110 | @"author", |
2111 | @"depiction", | |
2112 | @"essential", | |
2113 | @"homepage", | |
2114 | @"icon", | |
2115 | @"id", | |
2116 | @"installed", | |
2117 | @"latest", | |
2118 | @"longDescription", | |
2119 | @"longSection", | |
2120 | @"maintainer", | |
974742b2 | 2121 | @"md5sum", |
e58ff941 JF |
2122 | @"mode", |
2123 | @"name", | |
2124 | @"purposes", | |
83682c75 | 2125 | @"relations", |
e58ff941 | 2126 | @"section", |
de1ace71 | 2127 | @"selection", |
e58ff941 JF |
2128 | @"shortDescription", |
2129 | @"shortSection", | |
2130 | @"simpleSection", | |
2131 | @"size", | |
2132 | @"source", | |
2133 | @"sponsor", | |
5959b596 | 2134 | @"state", |
e58ff941 | 2135 | @"support", |
82aa2434 | 2136 | @"tags", |
e58ff941 JF |
2137 | @"warnings", |
2138 | nil]; | |
6f1a15d9 JF |
2139 | } |
2140 | ||
2141 | - (NSArray *) attributeKeys { | |
2142 | return [[self class] _attributeKeys]; | |
2143 | } | |
2144 | ||
2145 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
2146 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
2147 | } | |
2148 | ||
83682c75 JF |
2149 | - (NSArray *) relations { |
2150 | @synchronized (database_) { | |
2151 | NSMutableArray *relations([NSMutableArray arrayWithCapacity:16]); | |
810c9763 JF |
2152 | for (pkgCache::DepIterator dep(version_.DependsList()); !dep.end(); ++dep) |
2153 | [relations addObject:[[[CydiaRelation alloc] initWithIterator:dep] autorelease]]; | |
83682c75 JF |
2154 | return relations; |
2155 | } } | |
2156 | ||
a412f357 JF |
2157 | - (NSString *) architecture { |
2158 | [self parse]; | |
2159 | @synchronized (database_) { | |
2160 | return parsed_->architecture_.empty() ? [NSNull null] : (id) parsed_->architecture_; | |
2161 | } } | |
2162 | ||
2cd1afd9 JF |
2163 | - (NSString *) getField:(NSString *)name { |
2164 | @synchronized (database_) { | |
2165 | if ([database_ era] != era_ || file_.end()) | |
2166 | return nil; | |
2167 | ||
2168 | pkgRecords::Parser &parser([database_ records]->Lookup(file_)); | |
2169 | ||
2170 | const char *start, *end; | |
2171 | if (!parser.Find([name UTF8String], start, end)) | |
2172 | return (NSString *) [NSNull null]; | |
2173 | ||
b6f9e52a | 2174 | return [NSString stringWithString:[(NSString *) CYStringCreate(start, end - start) autorelease]]; |
2cd1afd9 JF |
2175 | } } |
2176 | ||
68d927e2 | 2177 | - (void) parse { |
12016ee5 | 2178 | if (parsed_ != NULL) |
68d927e2 | 2179 | return; |
12016ee5 JF |
2180 | @synchronized (database_) { |
2181 | if ([database_ era] != era_ || file_.end()) | |
68d927e2 JF |
2182 | return; |
2183 | ||
12016ee5 JF |
2184 | ParsedPackage *parsed(new ParsedPackage); |
2185 | parsed_ = parsed; | |
2186 | ||
68d927e2 JF |
2187 | _profile(Package$parse) |
2188 | pkgRecords::Parser *parser; | |
2189 | ||
2190 | _profile(Package$parse$Lookup) | |
2191 | parser = &[database_ records]->Lookup(file_); | |
2192 | _end | |
2193 | ||
2194 | CYString website; | |
2195 | ||
2196 | _profile(Package$parse$Find) | |
2197 | struct { | |
2198 | const char *name_; | |
2199 | CYString *value_; | |
2200 | } names[] = { | |
a412f357 | 2201 | {"architecture", &parsed->architecture_}, |
12016ee5 JF |
2202 | {"icon", &parsed->icon_}, |
2203 | {"depiction", &parsed->depiction_}, | |
2204 | {"homepage", &parsed->homepage_}, | |
68d927e2 | 2205 | {"website", &website}, |
12016ee5 JF |
2206 | {"bugs", &parsed->bugs_}, |
2207 | {"support", &parsed->support_}, | |
2208 | {"sponsor", &parsed->sponsor_}, | |
2209 | {"author", &parsed->author_}, | |
974742b2 | 2210 | {"md5sum", &parsed->md5sum_}, |
68d927e2 JF |
2211 | }; |
2212 | ||
2213 | for (size_t i(0); i != sizeof(names) / sizeof(names[0]); ++i) { | |
2214 | const char *start, *end; | |
2215 | ||
2216 | if (parser->Find(names[i].name_, start, end)) { | |
2217 | CYString &value(*names[i].value_); | |
2218 | _profile(Package$parse$Value) | |
2219 | value.set(pool_, start, end - start); | |
2220 | _end | |
2221 | } | |
2222 | } | |
2223 | _end | |
2224 | ||
2225 | _profile(Package$parse$Tagline) | |
2226 | const char *start, *end; | |
0dd0c302 | 2227 | if (parser->ShortDesc(start, end)) { |
68d927e2 JF |
2228 | const char *stop(reinterpret_cast<const char *>(memchr(start, '\n', end - start))); |
2229 | if (stop == NULL) | |
2230 | stop = end; | |
2231 | while (stop != start && stop[-1] == '\r') | |
2232 | --stop; | |
12016ee5 | 2233 | parsed->tagline_.set(pool_, start, stop - start); |
68d927e2 JF |
2234 | } |
2235 | _end | |
2236 | ||
2237 | _profile(Package$parse$Retain) | |
12016ee5 JF |
2238 | if (parsed->homepage_.empty()) |
2239 | parsed->homepage_ = website; | |
2240 | if (parsed->homepage_ == parsed->depiction_) | |
2241 | parsed->homepage_.clear(); | |
68d927e2 JF |
2242 | _end |
2243 | _end | |
12016ee5 | 2244 | } } |
68d927e2 | 2245 | |
7376b55c | 2246 | - (Package *) initWithVersion:(pkgCache::VerIterator)version withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database { |
a1440b10 | 2247 | if ((self = [super init]) != nil) { |
7376b55c | 2248 | _profile(Package$initWithVersion) |
13902177 JF |
2249 | if (pool == NULL) |
2250 | apr_pool_create(&pool_, NULL); | |
2251 | else { | |
2252 | pool_ = pool; | |
2253 | pooled_ = true; | |
2254 | } | |
a1440b10 | 2255 | |
36bb2ca2 | 2256 | database_ = database; |
aab28f8b | 2257 | era_ = [database era]; |
b4d89997 | 2258 | |
aab28f8b | 2259 | version_ = version; |
2083b866 | 2260 | |
aab28f8b JF |
2261 | pkgCache::PkgIterator iterator(version.ParentPkg()); |
2262 | iterator_ = iterator; | |
06aa974d | 2263 | |
aab28f8b | 2264 | _profile(Package$initWithVersion$Version) |
68d927e2 JF |
2265 | if (!version_.end()) |
2266 | file_ = version_.FileList(); | |
2267 | else { | |
2268 | pkgCache &cache([database_ cache]); | |
2269 | file_ = pkgCache::VerFileIterator(cache, cache.VerFileP); | |
2270 | } | |
2271 | _end | |
808c6eb6 | 2272 | |
aab28f8b | 2273 | _profile(Package$initWithVersion$Cache) |
aab28f8b JF |
2274 | name_.set(NULL, iterator.Display()); |
2275 | ||
2276 | latest_.set(NULL, StripVersion_(version_.VerStr())); | |
2277 | ||
2278 | pkgCache::VerIterator current(iterator.CurrentVer()); | |
2279 | if (!current.end()) | |
2280 | installed_.set(NULL, StripVersion_(current.VerStr())); | |
808c6eb6 JF |
2281 | _end |
2282 | ||
7376b55c | 2283 | _profile(Package$initWithVersion$Tags) |
aab28f8b | 2284 | pkgCache::TagIterator tag(iterator.TagList()); |
0dd0c302 | 2285 | if (!tag.end()) { |
7b33d201 | 2286 | tags_ = [NSMutableArray arrayWithCapacity:8]; |
0dd0c302 JF |
2287 | do { |
2288 | const char *name(tag.Name()); | |
3931b718 | 2289 | [tags_ addObject:[(NSString *)CYStringCreate(name) autorelease]]; |
0a377825 | 2290 | |
97a3d89e JF |
2291 | if (role_ == 0 && strncmp(name, "role::", 6) == 0 /*&& strcmp(name, "role::leaper") != 0*/) { |
2292 | if (strcmp(name + 6, "enduser") == 0) | |
2293 | role_ = 1; | |
2294 | else if (strcmp(name + 6, "hacker") == 0) | |
2295 | role_ = 2; | |
2296 | else if (strcmp(name + 6, "developer") == 0) | |
2297 | role_ = 3; | |
2298 | else if (strcmp(name + 6, "cydia") == 0) | |
2299 | role_ = 7; | |
2300 | else | |
2301 | role_ = 4; | |
2302 | } | |
0a377825 JF |
2303 | |
2304 | if (strncmp(name, "cydia::", 7) == 0) { | |
2305 | if (strcmp(name + 7, "essential") == 0) | |
2306 | essential_ = true; | |
2307 | else if (strcmp(name + 7, "obsolete") == 0) | |
2308 | obsolete_ = true; | |
2309 | } | |
2310 | ||
0dd0c302 JF |
2311 | ++tag; |
2312 | } while (!tag.end()); | |
2313 | } | |
808c6eb6 | 2314 | _end |
7b0ce2da | 2315 | |
7376b55c | 2316 | _profile(Package$initWithVersion$Metadata) |
029c8b74 JF |
2317 | const char *mixed(iterator.Name()); |
2318 | size_t size(strlen(mixed)); | |
2319 | char lower[size + 1]; | |
2320 | ||
2321 | for (size_t i(0); i != size; ++i) | |
2322 | lower[i] = mixed[i] | 0x20; | |
2323 | lower[size] = '\0'; | |
2324 | ||
2325 | PackageValue *metadata(PackageFind(lower, size)); | |
bb6bb6d6 | 2326 | metadata_ = metadata; |
677b8415 | 2327 | |
029c8b74 JF |
2328 | id_.set(NULL, metadata->name_, size); |
2329 | ||
94b0b3e5 JF |
2330 | const char *latest(version_.VerStr()); |
2331 | size_t length(strlen(latest)); | |
a4b0ec52 | 2332 | |
94b0b3e5 | 2333 | uint16_t vhash(hashlittle(latest, length)); |
677b8415 | 2334 | |
94b0b3e5 JF |
2335 | size_t capped(std::min<size_t>(8, length)); |
2336 | latest = latest + length - capped; | |
677b8415 | 2337 | |
94b0b3e5 JF |
2338 | if (metadata->first_ == 0) |
2339 | metadata->first_ = now_; | |
808c6eb6 | 2340 | |
94b0b3e5 | 2341 | if (metadata->vhash_ != vhash || strncmp(metadata->version_, latest, sizeof(metadata->version_)) != 0) { |
94b0b3e5 JF |
2342 | strncpy(metadata->version_, latest, sizeof(metadata->version_)); |
2343 | metadata->vhash_ = vhash; | |
2f856365 JF |
2344 | metadata->last_ = now_; |
2345 | } else if (metadata->last_ == 0) | |
2346 | metadata->last_ = metadata->first_; | |
808c6eb6 | 2347 | _end |
a1440b10 | 2348 | |
7376b55c | 2349 | _profile(Package$initWithVersion$Section) |
fe33a23e | 2350 | section_ = iterator.Section(); |
f79a4512 | 2351 | _end |
a1440b10 | 2352 | |
aab28f8b JF |
2353 | _profile(Package$initWithVersion$Flags) |
2354 | essential_ |= ((iterator->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES); | |
2355 | ignored_ = iterator->SelectedState == pkgCache::State::Hold; | |
4fa77608 | 2356 | _end |
3dd53516 | 2357 | _end } return self; |
dc5812ec JF |
2358 | } |
2359 | ||
f79a4512 | 2360 | + (Package *) packageWithIterator:(pkgCache::PkgIterator)iterator withZone:(NSZone *)zone inPool:(apr_pool_t *)pool database:(Database *)database { |
b1ce61ec JF |
2361 | pkgCache::VerIterator version; |
2362 | ||
2363 | _profile(Package$packageWithIterator$GetCandidateVer) | |
2364 | version = [database policy]->GetCandidateVer(iterator); | |
2365 | _end | |
2366 | ||
7376b55c JF |
2367 | if (version.end()) |
2368 | return nil; | |
b1ce61ec | 2369 | |
8564efc1 JF |
2370 | Package *package; |
2371 | ||
2372 | _profile(Package$packageWithIterator$Allocate) | |
2373 | package = [Package allocWithZone:zone]; | |
2374 | _end | |
2375 | ||
2376 | _profile(Package$packageWithIterator$Initialize) | |
2377 | package = [package | |
2378 | initWithVersion:version | |
2379 | withZone:zone | |
2380 | inPool:pool | |
2381 | database:database | |
2382 | ]; | |
2383 | _end | |
2384 | ||
2385 | _profile(Package$packageWithIterator$Autorelease) | |
2386 | package = [package autorelease]; | |
2387 | _end | |
2388 | ||
2389 | return package; | |
3dd53516 | 2390 | } |
dc5812ec | 2391 | |
2388b078 JF |
2392 | - (pkgCache::PkgIterator) iterator { |
2393 | return iterator_; | |
2394 | } | |
2395 | ||
36bb2ca2 | 2396 | - (NSString *) section { |
f79a4512 | 2397 | if (section$_ == nil) { |
fe33a23e | 2398 | if (section_ == NULL) |
f79a4512 JF |
2399 | return nil; |
2400 | ||
fe33a23e JF |
2401 | _profile(Package$section$mappedSectionForPointer) |
2402 | section$_ = [database_ mappedSectionForPointer:section_]; | |
e4f3d6e9 | 2403 | _end |
f79a4512 | 2404 | } return section$_; |
dc5812ec JF |
2405 | } |
2406 | ||
dec6029f JF |
2407 | - (NSString *) simpleSection { |
2408 | if (NSString *section = [self section]) | |
2409 | return Simplify(section); | |
2410 | else | |
2411 | return nil; | |
a3328c28 | 2412 | } |
dec6029f | 2413 | |
f79a4512 | 2414 | - (NSString *) longSection { |
18873623 | 2415 | return LocalizeSection([self section]); |
f79a4512 JF |
2416 | } |
2417 | ||
2418 | - (NSString *) shortSection { | |
2419 | return [[NSBundle mainBundle] localizedStringForKey:[self simpleSection] value:nil table:@"Sections"]; | |
2420 | } | |
2421 | ||
a3328c28 JF |
2422 | - (NSString *) uri { |
2423 | return nil; | |
2424 | #if 0 | |
2425 | pkgIndexFile *index; | |
2426 | pkgCache::PkgFileIterator file(file_.File()); | |
2427 | if (![database_ list].FindIndex(file, index)) | |
2428 | return nil; | |
2429 | return [NSString stringWithUTF8String:iterator_->Path]; | |
2430 | //return [NSString stringWithUTF8String:file.Site()]; | |
2431 | //return [NSString stringWithUTF8String:index->ArchiveURI(file.FileName()).c_str()]; | |
2432 | #endif | |
dec6029f JF |
2433 | } |
2434 | ||
7aa82ca2 | 2435 | - (MIMEAddress *) maintainer { |
884171d6 JF |
2436 | @synchronized (database_) { |
2437 | if ([database_ era] != era_ || file_.end()) | |
5a09ae08 | 2438 | return nil; |
884171d6 | 2439 | |
36bb2ca2 | 2440 | pkgRecords::Parser *parser = &[database_ records]->Lookup(file_); |
00e2109e | 2441 | const std::string &maintainer(parser->Maintainer()); |
7aa82ca2 | 2442 | return maintainer.empty() ? nil : [MIMEAddress addressWithString:[NSString stringWithUTF8String:maintainer.c_str()]]; |
884171d6 | 2443 | } } |
8fe19fc1 | 2444 | |
974742b2 JF |
2445 | - (NSString *) md5sum { |
2446 | return parsed_ == NULL ? nil : (id) parsed_->md5sum_; | |
2447 | } | |
2448 | ||
36bb2ca2 | 2449 | - (size_t) size { |
884171d6 JF |
2450 | @synchronized (database_) { |
2451 | if ([database_ era] != era_ || version_.end()) | |
2452 | return 0; | |
2453 | ||
2454 | return version_->InstalledSize; | |
2455 | } } | |
dc5812ec | 2456 | |
eef4ccaf | 2457 | - (NSString *) longDescription { |
3dd53516 JF |
2458 | @synchronized (database_) { |
2459 | if ([database_ era] != era_ || file_.end()) | |
5a09ae08 | 2460 | return nil; |
3dd53516 | 2461 | |
36bb2ca2 | 2462 | pkgRecords::Parser *parser = &[database_ records]->Lookup(file_); |
2388b078 | 2463 | NSString *description([NSString stringWithUTF8String:parser->LongDesc().c_str()]); |
8fe19fc1 | 2464 | |
36bb2ca2 JF |
2465 | NSArray *lines = [description componentsSeparatedByString:@"\n"]; |
2466 | NSMutableArray *trimmed = [NSMutableArray arrayWithCapacity:([lines count] - 1)]; | |
2467 | if ([lines count] < 2) | |
2468 | return nil; | |
3178d79b | 2469 | |
36bb2ca2 | 2470 | NSCharacterSet *whitespace = [NSCharacterSet whitespaceCharacterSet]; |
c4dcf2c2 | 2471 | for (size_t i(1), e([lines count]); i != e; ++i) { |
36bb2ca2 JF |
2472 | NSString *trim = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:whitespace]; |
2473 | [trimmed addObject:trim]; | |
2474 | } | |
3178d79b | 2475 | |
36bb2ca2 | 2476 | return [trimmed componentsJoinedByString:@"\n"]; |
3dd53516 | 2477 | } } |
dc5812ec | 2478 | |
eef4ccaf | 2479 | - (NSString *) shortDescription { |
60bef540 JF |
2480 | if (parsed_ != NULL) |
2481 | return static_cast<NSString *>(parsed_->tagline_); | |
2482 | ||
2483 | @synchronized (database_) { | |
2484 | pkgRecords::Parser &parser([database_ records]->Lookup(file_)); | |
2485 | ||
2486 | const char *start, *end; | |
2487 | if (!parser.ShortDesc(start, end)) | |
2488 | return nil; | |
2489 | ||
abd93900 JF |
2490 | if (end - start > 200) |
2491 | end = start + 200; | |
60bef540 JF |
2492 | |
2493 | /* | |
2494 | if (const char *stop = reinterpret_cast<const char *>(memchr(start, '\n', end - start))) | |
2495 | end = stop; | |
2496 | ||
2497 | while (end != start && end[-1] == '\r') | |
2498 | --end; | |
2499 | */ | |
2500 | ||
2501 | return [(id) CYStringCreate(start, end - start) autorelease]; | |
2502 | } } | |
eef4ccaf | 2503 | |
808c6eb6 JF |
2504 | - (unichar) index { |
2505 | _profile(Package$index) | |
677b8415 JF |
2506 | CFStringRef name((CFStringRef) [self name]); |
2507 | if (CFStringGetLength(name) == 0) | |
808c6eb6 | 2508 | return '#'; |
677b8415 JF |
2509 | UniChar character(CFStringGetCharacterAtIndex(name, 0)); |
2510 | if (!CFUniCharIsMemberOf(character, kCFUniCharLetterCharacterSet)) | |
808c6eb6 | 2511 | return '#'; |
447db19d | 2512 | return toupper(character); |
808c6eb6 | 2513 | _end |
36bb2ca2 | 2514 | } |
3178d79b | 2515 | |
94b0b3e5 | 2516 | - (PackageValue *) metadata { |
bb6bb6d6 | 2517 | return metadata_; |
807ae6d7 JF |
2518 | } |
2519 | ||
31bc18a7 | 2520 | - (time_t) seen { |
94b0b3e5 JF |
2521 | PackageValue *metadata([self metadata]); |
2522 | return metadata->subscribed_ ? metadata->last_ : metadata->first_; | |
3178d79b JF |
2523 | } |
2524 | ||
94b0b3e5 JF |
2525 | - (bool) subscribed { |
2526 | return [self metadata]->subscribed_; | |
2527 | } | |
2528 | ||
2529 | - (bool) setSubscribed:(bool)subscribed { | |
2530 | PackageValue *metadata([self metadata]); | |
2531 | if (metadata->subscribed_ == subscribed) | |
2532 | return false; | |
2533 | metadata->subscribed_ = subscribed; | |
2534 | return true; | |
807ae6d7 JF |
2535 | } |
2536 | ||
2537 | - (BOOL) ignored { | |
1b18f026 | 2538 | return ignored_; |
807ae6d7 JF |
2539 | } |
2540 | ||
36bb2ca2 JF |
2541 | - (NSString *) latest { |
2542 | return latest_; | |
8fe19fc1 JF |
2543 | } |
2544 | ||
36bb2ca2 JF |
2545 | - (NSString *) installed { |
2546 | return installed_; | |
3178d79b JF |
2547 | } |
2548 | ||
6a155117 JF |
2549 | - (BOOL) uninstalled { |
2550 | return installed_.empty(); | |
2551 | } | |
2552 | ||
5a09ae08 JF |
2553 | - (BOOL) valid { |
2554 | return !version_.end(); | |
2555 | } | |
2556 | ||
31f3cfff | 2557 | - (BOOL) upgradableAndEssential:(BOOL)essential { |
677b8415 JF |
2558 | _profile(Package$upgradableAndEssential) |
2559 | pkgCache::VerIterator current(iterator_.CurrentVer()); | |
2560 | if (current.end()) | |
e4f3d6e9 | 2561 | return essential && essential_; |
677b8415 | 2562 | else |
e4f3d6e9 | 2563 | return !version_.end() && version_ != current; |
677b8415 | 2564 | _end |
36bb2ca2 | 2565 | } |
3178d79b | 2566 | |
36bb2ca2 | 2567 | - (BOOL) essential { |
a1440b10 | 2568 | return essential_; |
3178d79b JF |
2569 | } |
2570 | ||
36bb2ca2 | 2571 | - (BOOL) broken { |
9bedffaa JF |
2572 | return [database_ cache][iterator_].InstBroken(); |
2573 | } | |
2574 | ||
7d2ac47f | 2575 | - (BOOL) unfiltered { |
4fa77608 | 2576 | _profile(Package$unfiltered$obsolete) |
cf48f656 | 2577 | if (_unlikely(obsolete_)) |
4fa77608 JF |
2578 | return false; |
2579 | _end | |
2580 | ||
2581 | _profile(Package$unfiltered$hasSupportingRole) | |
cf48f656 | 2582 | if (_unlikely(![self hasSupportingRole])) |
4fa77608 JF |
2583 | return false; |
2584 | _end | |
2585 | ||
e4f3d6e9 JF |
2586 | return true; |
2587 | } | |
4fa77608 | 2588 | |
e4f3d6e9 JF |
2589 | - (BOOL) visible { |
2590 | if (![self unfiltered]) | |
2591 | return false; | |
2592 | ||
fe33a23e JF |
2593 | NSString *section; |
2594 | ||
2595 | _profile(Package$visible$section) | |
2596 | section = [self section]; | |
2597 | _end | |
4fa77608 | 2598 | |
e4f3d6e9 | 2599 | _profile(Package$visible$isSectionVisible) |
45447dc3 | 2600 | if (!isSectionVisible(section)) |
4fa77608 JF |
2601 | return false; |
2602 | _end | |
2603 | ||
2604 | return true; | |
7d2ac47f JF |
2605 | } |
2606 | ||
9bedffaa | 2607 | - (BOOL) half { |
677b8415 | 2608 | unsigned char current(iterator_->CurrentState); |
9bedffaa JF |
2609 | return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled; |
2610 | } | |
2611 | ||
2612 | - (BOOL) halfConfigured { | |
2613 | return iterator_->CurrentState == pkgCache::State::HalfConfigured; | |
2614 | } | |
2615 | ||
2616 | - (BOOL) halfInstalled { | |
2617 | return iterator_->CurrentState == pkgCache::State::HalfInstalled; | |
2618 | } | |
2619 | ||
2620 | - (BOOL) hasMode { | |
f18b4a97 JF |
2621 | @synchronized (database_) { |
2622 | if ([database_ era] != era_ || iterator_.end()) | |
2623 | return nil; | |
2624 | ||
9bedffaa JF |
2625 | pkgDepCache::StateCache &state([database_ cache][iterator_]); |
2626 | return state.Mode != pkgDepCache::ModeKeep; | |
f18b4a97 | 2627 | } } |
9bedffaa JF |
2628 | |
2629 | - (NSString *) mode { | |
f18b4a97 JF |
2630 | @synchronized (database_) { |
2631 | if ([database_ era] != era_ || iterator_.end()) | |
2632 | return nil; | |
2633 | ||
9bedffaa JF |
2634 | pkgDepCache::StateCache &state([database_ cache][iterator_]); |
2635 | ||
2636 | switch (state.Mode) { | |
2637 | case pkgDepCache::ModeDelete: | |
2638 | if ((state.iFlags & pkgDepCache::Purge) != 0) | |
f79a4512 | 2639 | return @"PURGE"; |
9bedffaa | 2640 | else |
f79a4512 | 2641 | return @"REMOVE"; |
9bedffaa | 2642 | case pkgDepCache::ModeKeep: |
dc63e78f | 2643 | if ((state.iFlags & pkgDepCache::ReInstall) != 0) |
f79a4512 | 2644 | return @"REINSTALL"; |
dc63e78f JF |
2645 | /*else if ((state.iFlags & pkgDepCache::AutoKept) != 0) |
2646 | return nil;*/ | |
9bedffaa JF |
2647 | else |
2648 | return nil; | |
9bedffaa | 2649 | case pkgDepCache::ModeInstall: |
dc63e78f | 2650 | /*if ((state.iFlags & pkgDepCache::ReInstall) != 0) |
f79a4512 | 2651 | return @"REINSTALL"; |
dc63e78f | 2652 | else*/ switch (state.Status) { |
9bedffaa | 2653 | case -1: |
f79a4512 | 2654 | return @"DOWNGRADE"; |
9bedffaa | 2655 | case 0: |
f79a4512 | 2656 | return @"INSTALL"; |
9bedffaa | 2657 | case 1: |
f79a4512 | 2658 | return @"UPGRADE"; |
9bedffaa | 2659 | case 2: |
f79a4512 | 2660 | return @"NEW_INSTALL"; |
670a0494 | 2661 | _nodefault |
9bedffaa | 2662 | } |
670a0494 | 2663 | _nodefault |
9bedffaa | 2664 | } |
f18b4a97 | 2665 | } } |
8fe19fc1 | 2666 | |
36bb2ca2 JF |
2667 | - (NSString *) id { |
2668 | return id_; | |
8fe19fc1 JF |
2669 | } |
2670 | ||
36bb2ca2 | 2671 | - (NSString *) name { |
9fcbca29 | 2672 | return name_.empty() ? id_ : name_; |
36bb2ca2 | 2673 | } |
8fe19fc1 | 2674 | |
770f2a8e | 2675 | - (UIImage *) icon { |
dec6029f | 2676 | NSString *section = [self simpleSection]; |
770f2a8e JF |
2677 | |
2678 | UIImage *icon(nil); | |
12016ee5 JF |
2679 | if (parsed_ != NULL) |
2680 | if (NSString *href = parsed_->icon_) | |
2681 | if ([href hasPrefix:@"file:///"]) | |
84851d87 | 2682 | icon = [UIImage imageAtPath:[[href substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; |
770f2a8e | 2683 | if (icon == nil) if (section != nil) |
84851d87 | 2684 | icon = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [section stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]; |
b9956841 | 2685 | if (icon == nil) if (Source *source = [self source]) if (NSString *dicon = [source defaultIcon]) |
189a73d0 | 2686 | if ([dicon hasPrefix:@"file:///"]) |
84851d87 | 2687 | icon = [UIImage imageAtPath:[[dicon substringFromIndex:7] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; |
770f2a8e JF |
2688 | if (icon == nil) |
2689 | icon = [UIImage applicationImageNamed:@"unknown.png"]; | |
2690 | return icon; | |
36bb2ca2 | 2691 | } |
8fe19fc1 | 2692 | |
6f1a15d9 | 2693 | - (NSString *) homepage { |
12016ee5 | 2694 | return parsed_ == NULL ? nil : static_cast<NSString *>(parsed_->homepage_); |
8fe19fc1 JF |
2695 | } |
2696 | ||
25a2158d | 2697 | - (NSString *) depiction { |
12016ee5 | 2698 | return parsed_ != NULL && !parsed_->depiction_.empty() ? parsed_->depiction_ : [[self source] depictionForPackage:id_]; |
25a2158d JF |
2699 | } |
2700 | ||
7aa82ca2 JF |
2701 | - (MIMEAddress *) sponsor { |
2702 | return parsed_ == NULL || parsed_->sponsor_.empty() ? nil : [MIMEAddress addressWithString:parsed_->sponsor_]; | |
795d26fc JF |
2703 | } |
2704 | ||
7aa82ca2 JF |
2705 | - (MIMEAddress *) author { |
2706 | return parsed_ == NULL || parsed_->author_.empty() ? nil : [MIMEAddress addressWithString:parsed_->author_]; | |
77fcccaf JF |
2707 | } |
2708 | ||
dc63e78f | 2709 | - (NSString *) support { |
12016ee5 | 2710 | return parsed_ != NULL && !parsed_->bugs_.empty() ? parsed_->bugs_ : [[self source] supportForPackage:id_]; |
dc63e78f JF |
2711 | } |
2712 | ||
affeffc7 | 2713 | - (NSArray *) files { |
9fcbca29 | 2714 | NSString *path = [NSString stringWithFormat:@"/var/lib/dpkg/info/%@.list", static_cast<NSString *>(id_)]; |
affeffc7 JF |
2715 | NSMutableArray *files = [NSMutableArray arrayWithCapacity:128]; |
2716 | ||
2717 | std::ifstream fin; | |
2718 | fin.open([path UTF8String]); | |
2719 | if (!fin.is_open()) | |
2720 | return nil; | |
2721 | ||
2722 | std::string line; | |
2723 | while (std::getline(fin, line)) | |
2724 | [files addObject:[NSString stringWithUTF8String:line.c_str()]]; | |
2725 | ||
2726 | return files; | |
2727 | } | |
2728 | ||
5959b596 JF |
2729 | - (NSString *) state { |
2730 | @synchronized (database_) { | |
2731 | if ([database_ era] != era_ || file_.end()) | |
2732 | return nil; | |
2733 | ||
2734 | switch (iterator_->CurrentState) { | |
2735 | case pkgCache::State::NotInstalled: | |
2736 | return @"NotInstalled"; | |
2737 | case pkgCache::State::UnPacked: | |
2738 | return @"UnPacked"; | |
2739 | case pkgCache::State::HalfConfigured: | |
2740 | return @"HalfConfigured"; | |
2741 | case pkgCache::State::HalfInstalled: | |
2742 | return @"HalfInstalled"; | |
2743 | case pkgCache::State::ConfigFiles: | |
2744 | return @"ConfigFiles"; | |
2745 | case pkgCache::State::Installed: | |
2746 | return @"Installed"; | |
2747 | case pkgCache::State::TriggersAwaited: | |
2748 | return @"TriggersAwaited"; | |
2749 | case pkgCache::State::TriggersPending: | |
2750 | return @"TriggersPending"; | |
2751 | } | |
2752 | ||
2753 | return (NSString *) [NSNull null]; | |
2754 | } } | |
2755 | ||
de1ace71 JF |
2756 | - (NSString *) selection { |
2757 | @synchronized (database_) { | |
2758 | if ([database_ era] != era_ || file_.end()) | |
2759 | return nil; | |
2760 | ||
2761 | switch (iterator_->SelectedState) { | |
2762 | case pkgCache::State::Unknown: | |
2763 | return @"Unknown"; | |
2764 | case pkgCache::State::Install: | |
2765 | return @"Install"; | |
2766 | case pkgCache::State::Hold: | |
2767 | return @"Hold"; | |
2768 | case pkgCache::State::DeInstall: | |
2769 | return @"DeInstall"; | |
2770 | case pkgCache::State::Purge: | |
2771 | return @"Purge"; | |
2772 | } | |
2773 | ||
2774 | return (NSString *) [NSNull null]; | |
2775 | } } | |
2776 | ||
affeffc7 JF |
2777 | - (NSArray *) warnings { |
2778 | NSMutableArray *warnings([NSMutableArray arrayWithCapacity:4]); | |
2779 | const char *name(iterator_.Name()); | |
2780 | ||
2781 | size_t length(strlen(name)); | |
2782 | if (length < 2) invalid: | |
43f3d7f6 | 2783 | [warnings addObject:UCLocalize("ILLEGAL_PACKAGE_IDENTIFIER")]; |
affeffc7 JF |
2784 | else for (size_t i(0); i != length; ++i) |
2785 | if ( | |
9dd60d81 JF |
2786 | /* XXX: technically this is not allowed */ |
2787 | (name[i] < 'A' || name[i] > 'Z') && | |
affeffc7 JF |
2788 | (name[i] < 'a' || name[i] > 'z') && |
2789 | (name[i] < '0' || name[i] > '9') && | |
2790 | (i == 0 || name[i] != '+' && name[i] != '-' && name[i] != '.') | |
2791 | ) goto invalid; | |
2792 | ||
2793 | if (strcmp(name, "cydia") != 0) { | |
2794 | bool cydia = false; | |
7623f855 | 2795 | bool user = false; |
9dd60d81 | 2796 | bool _private = false; |
affeffc7 JF |
2797 | bool stash = false; |
2798 | ||
9dd60d81 JF |
2799 | bool repository = [[self section] isEqualToString:@"Repositories"]; |
2800 | ||
affeffc7 JF |
2801 | if (NSArray *files = [self files]) |
2802 | for (NSString *file in files) | |
2803 | if (!cydia && [file isEqualToString:@"/Applications/Cydia.app"]) | |
2804 | cydia = true; | |
7623f855 JF |
2805 | else if (!user && [file isEqualToString:@"/User"]) |
2806 | user = true; | |
9dd60d81 JF |
2807 | else if (!_private && [file isEqualToString:@"/private"]) |
2808 | _private = true; | |
affeffc7 JF |
2809 | else if (!stash && [file isEqualToString:@"/var/stash"]) |
2810 | stash = true; | |
2811 | ||
9dd60d81 JF |
2812 | /* XXX: this is not sensitive enough. only some folders are valid. */ |
2813 | if (cydia && !repository) | |
43f3d7f6 | 2814 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"Cydia.app"]]; |
7623f855 JF |
2815 | if (user) |
2816 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/User"]]; | |
9dd60d81 | 2817 | if (_private) |
43f3d7f6 | 2818 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/private"]]; |
affeffc7 | 2819 | if (stash) |
43f3d7f6 | 2820 | [warnings addObject:[NSString stringWithFormat:UCLocalize("FILES_INSTALLED_TO"), @"/var/stash"]]; |
affeffc7 JF |
2821 | } |
2822 | ||
2823 | return [warnings count] == 0 ? nil : warnings; | |
2824 | } | |
2825 | ||
2826 | - (NSArray *) applications { | |
2827 | NSString *me([[NSBundle mainBundle] bundleIdentifier]); | |
2828 | ||
2829 | NSMutableArray *applications([NSMutableArray arrayWithCapacity:2]); | |
2830 | ||
2831 | static Pcre application_r("^/Applications/(.*)\\.app/Info.plist$"); | |
2832 | if (NSArray *files = [self files]) | |
2833 | for (NSString *file in files) | |
2834 | if (application_r(file)) { | |
2835 | NSDictionary *info([NSDictionary dictionaryWithContentsOfFile:file]); | |
2836 | NSString *id([info objectForKey:@"CFBundleIdentifier"]); | |
2837 | if ([id isEqualToString:me]) | |
2838 | continue; | |
2839 | ||
2840 | NSString *display([info objectForKey:@"CFBundleDisplayName"]); | |
2841 | if (display == nil) | |
2842 | display = application_r[1]; | |
2843 | ||
2844 | NSString *bundle([file stringByDeletingLastPathComponent]); | |
2845 | NSString *icon([info objectForKey:@"CFBundleIconFile"]); | |
2846 | if (icon == nil || [icon length] == 0) | |
2847 | icon = @"icon.png"; | |
2848 | NSURL *url([NSURL fileURLWithPath:[bundle stringByAppendingPathComponent:icon]]); | |
2849 | ||
2850 | NSMutableArray *application([NSMutableArray arrayWithCapacity:2]); | |
2851 | [applications addObject:application]; | |
2852 | ||
2853 | [application addObject:id]; | |
2854 | [application addObject:display]; | |
2855 | [application addObject:url]; | |
2856 | } | |
2857 | ||
2858 | return [applications count] == 0 ? nil : applications; | |
2859 | } | |
2860 | ||
36bb2ca2 | 2861 | - (Source *) source { |
5699667a | 2862 | if (source_ == nil) { |
a1440b10 JF |
2863 | @synchronized (database_) { |
2864 | if ([database_ era] != era_ || file_.end()) | |
5699667a JF |
2865 | source_ = (Source *) [NSNull null]; |
2866 | else | |
7b33d201 | 2867 | source_ = [database_ getSource:file_.File()] ?: (Source *) [NSNull null]; |
a1440b10 | 2868 | } |
bbb879fb JF |
2869 | } |
2870 | ||
5699667a | 2871 | return source_ == (Source *) [NSNull null] ? nil : source_; |
8fe19fc1 JF |
2872 | } |
2873 | ||
9c5737d5 JF |
2874 | - (uint32_t) rank { |
2875 | return rank_; | |
2876 | } | |
2877 | ||
d84597fe JF |
2878 | - (BOOL) matches:(NSArray *)query { |
2879 | if (query == nil || [query count] == 0) | |
36bb2ca2 | 2880 | return NO; |
8fe19fc1 | 2881 | |
9c5737d5 JF |
2882 | rank_ = 0; |
2883 | ||
2884 | NSString *string; | |
36bb2ca2 | 2885 | NSRange range; |
9c5737d5 | 2886 | NSUInteger length; |
8fe19fc1 | 2887 | |
718c267c | 2888 | string = [self name]; |
d84597fe JF |
2889 | length = [string length]; |
2890 | ||
2891 | for (NSString *term in query) { | |
2892 | range = [string rangeOfString:term options:MatchCompareOptions_]; | |
2893 | if (range.location != NSNotFound) | |
718c267c | 2894 | rank_ -= 6 * 1000000 / length; |
d84597fe | 2895 | } |
8fe19fc1 | 2896 | |
718c267c JF |
2897 | if (rank_ == 0) { |
2898 | string = [self id]; | |
2899 | length = [string length]; | |
8fe19fc1 | 2900 | |
718c267c JF |
2901 | for (NSString *term in query) { |
2902 | range = [string rangeOfString:term options:MatchCompareOptions_]; | |
2903 | if (range.location != NSNotFound) | |
2904 | rank_ -= 6 * 1000000 / length; | |
2905 | } | |
d84597fe | 2906 | } |
c4b530a7 | 2907 | |
9c5737d5 JF |
2908 | string = [self shortDescription]; |
2909 | length = [string length]; | |
abd93900 | 2910 | NSUInteger stop(std::min<NSUInteger>(length, 200)); |
df289c5a | 2911 | |
d84597fe JF |
2912 | for (NSString *term in query) { |
2913 | range = [string rangeOfString:term options:MatchCompareOptions_ range:NSMakeRange(0, stop)]; | |
2914 | if (range.location != NSNotFound) | |
718c267c | 2915 | rank_ -= 2 * 100000; |
d84597fe | 2916 | } |
8fe19fc1 | 2917 | |
9c5737d5 | 2918 | return rank_ != 0; |
36bb2ca2 | 2919 | } |
8fe19fc1 | 2920 | |
7b0ce2da | 2921 | - (bool) hasSupportingRole { |
97a3d89e | 2922 | if (role_ == 0) |
6d9712c4 | 2923 | return true; |
97a3d89e | 2924 | if (role_ == 1) |
7b0ce2da JF |
2925 | return true; |
2926 | if ([Role_ isEqualToString:@"User"]) | |
2927 | return false; | |
97a3d89e | 2928 | if (role_ == 2) |
7b0ce2da JF |
2929 | return true; |
2930 | if ([Role_ isEqualToString:@"Hacker"]) | |
2931 | return false; | |
97a3d89e | 2932 | if (role_ == 3) |
7b0ce2da JF |
2933 | return true; |
2934 | if ([Role_ isEqualToString:@"Developer"]) | |
2935 | return false; | |
2936 | _assert(false); | |
6d9712c4 JF |
2937 | } |
2938 | ||
82aa2434 JF |
2939 | - (NSArray *) tags { |
2940 | return tags_; | |
2941 | } | |
2942 | ||
6d9712c4 JF |
2943 | - (BOOL) hasTag:(NSString *)tag { |
2944 | return tags_ == nil ? NO : [tags_ containsObject:tag]; | |
2945 | } | |
2946 | ||
c390d3ab | 2947 | - (NSString *) primaryPurpose { |
7b33d201 | 2948 | for (NSString *tag in (NSArray *) tags_) |
c390d3ab JF |
2949 | if ([tag hasPrefix:@"purpose::"]) |
2950 | return [tag substringFromIndex:9]; | |
2951 | return nil; | |
2952 | } | |
2953 | ||
770f2a8e JF |
2954 | - (NSArray *) purposes { |
2955 | NSMutableArray *purposes([NSMutableArray arrayWithCapacity:2]); | |
7b33d201 | 2956 | for (NSString *tag in (NSArray *) tags_) |
770f2a8e JF |
2957 | if ([tag hasPrefix:@"purpose::"]) |
2958 | [purposes addObject:[tag substringFromIndex:9]]; | |
2959 | return [purposes count] == 0 ? nil : purposes; | |
2960 | } | |
2961 | ||
3bd1c2a2 JF |
2962 | - (bool) isCommercial { |
2963 | return [self hasTag:@"cydia::commercial"]; | |
2964 | } | |
2965 | ||
cd95e390 JF |
2966 | - (void) setIndex:(size_t)index { |
2967 | if (metadata_->index_ != index) | |
2968 | metadata_->index_ = index; | |
2969 | } | |
2970 | ||
df213583 JF |
2971 | - (CYString &) cyname { |
2972 | return name_.empty() ? id_ : name_; | |
f79a4512 JF |
2973 | } |
2974 | ||
f79a4512 JF |
2975 | - (uint32_t) compareBySection:(NSArray *)sections { |
2976 | NSString *section([self section]); | |
2977 | for (size_t i(0), e([sections count]); i != e; ++i) { | |
2978 | if ([section isEqualToString:[[sections objectAtIndex:i] name]]) | |
2979 | return i; | |
36bb2ca2 | 2980 | } |
3178d79b | 2981 | |
f79a4512 | 2982 | return _not(uint32_t); |
36bb2ca2 | 2983 | } |
3178d79b | 2984 | |
dc63e78f | 2985 | - (void) clear { |
c6ca67ba | 2986 | @synchronized (database_) { |
dc63e78f JF |
2987 | pkgProblemResolver *resolver = [database_ resolver]; |
2988 | resolver->Clear(iterator_); | |
c6ca67ba JF |
2989 | |
2990 | pkgCacheFile &cache([database_ cache]); | |
2991 | cache->SetReInstall(iterator_, false); | |
2992 | cache->MarkKeep(iterator_, false); | |
2993 | } } | |
dc63e78f | 2994 | |
36bb2ca2 | 2995 | - (void) install { |
c6ca67ba | 2996 | @synchronized (database_) { |
36bb2ca2 JF |
2997 | pkgProblemResolver *resolver = [database_ resolver]; |
2998 | resolver->Clear(iterator_); | |
2999 | resolver->Protect(iterator_); | |
c6ca67ba | 3000 | |
36bb2ca2 | 3001 | pkgCacheFile &cache([database_ cache]); |
c6ca67ba | 3002 | cache->SetReInstall(iterator_, false); |
36bb2ca2 | 3003 | cache->MarkInstall(iterator_, false); |
c6ca67ba | 3004 | |
36bb2ca2 JF |
3005 | pkgDepCache::StateCache &state((*cache)[iterator_]); |
3006 | if (!state.Install()) | |
3007 | cache->SetReInstall(iterator_, true); | |
c6ca67ba | 3008 | } } |
68a238ec | 3009 | |
36bb2ca2 | 3010 | - (void) remove { |
c6ca67ba | 3011 | @synchronized (database_) { |
36bb2ca2 JF |
3012 | pkgProblemResolver *resolver = [database_ resolver]; |
3013 | resolver->Clear(iterator_); | |
36bb2ca2 | 3014 | resolver->Remove(iterator_); |
c6ca67ba JF |
3015 | resolver->Protect(iterator_); |
3016 | ||
3017 | pkgCacheFile &cache([database_ cache]); | |
3018 | cache->SetReInstall(iterator_, false); | |
3019 | cache->MarkDelete(iterator_, true); | |
3020 | } } | |
8fe19fc1 | 3021 | |
d84597fe | 3022 | - (bool) isUnfilteredAndSearchedForBy:(NSArray *)query { |
808c6eb6 JF |
3023 | _profile(Package$isUnfilteredAndSearchedForBy) |
3024 | bool value(true); | |
3025 | ||
3026 | _profile(Package$isUnfilteredAndSearchedForBy$Unfiltered) | |
3027 | value &= [self unfiltered]; | |
3028 | _end | |
3029 | ||
3030 | _profile(Package$isUnfilteredAndSearchedForBy$Match) | |
d84597fe | 3031 | value &= [self matches:query]; |
808c6eb6 JF |
3032 | _end |
3033 | ||
0a3b45ef | 3034 | return value; |
808c6eb6 | 3035 | _end |
36bb2ca2 | 3036 | } |
8fe19fc1 | 3037 | |
01d93940 | 3038 | - (bool) isUnfilteredAndSelectedForBy:(NSString *)search { |
ef055c6c JF |
3039 | if ([search length] == 0) |
3040 | return false; | |
3041 | ||
01d93940 JF |
3042 | _profile(Package$isUnfilteredAndSelectedForBy) |
3043 | bool value(true); | |
3044 | ||
3045 | _profile(Package$isUnfilteredAndSelectedForBy$Unfiltered) | |
3046 | value &= [self unfiltered]; | |
3047 | _end | |
3048 | ||
3049 | _profile(Package$isUnfilteredAndSelectedForBy$Match) | |
3050 | value &= [[self name] compare:search options:MatchCompareOptions_ range:NSMakeRange(0, [search length])] == NSOrderedSame; | |
3051 | _end | |
3052 | ||
3053 | return value; | |
3054 | _end | |
3055 | } | |
3056 | ||
e4f3d6e9 | 3057 | - (bool) isInstalledAndUnfiltered:(NSNumber *)number { |
97a3d89e | 3058 | return ![self uninstalled] && (![number boolValue] && role_ != 7 || [self unfiltered]); |
36bb2ca2 | 3059 | } |
8fe19fc1 | 3060 | |
670a0494 | 3061 | - (bool) isVisibleInSection:(NSString *)name { |
e4f3d6e9 | 3062 | NSString *section([self section]); |
5a09ae08 | 3063 | |
e4f3d6e9 JF |
3064 | return ( |
3065 | name == nil || | |
3066 | section == nil && [name length] == 0 || | |
3067 | [name isEqualToString:section] | |
3068 | ) && [self visible]; | |
7b0ce2da JF |
3069 | } |
3070 | ||
0a3b45ef JF |
3071 | - (bool) isVisibleInSource:(Source *)source { |
3072 | return [self source] == source && [self visible]; | |
36bb2ca2 | 3073 | } |
8fe19fc1 | 3074 | |
36bb2ca2 JF |
3075 | @end |
3076 | /* }}} */ | |
3077 | /* Section Class {{{ */ | |
3078 | @interface Section : NSObject { | |
7b33d201 | 3079 | _H<NSString> name_; |
808c6eb6 | 3080 | unichar index_; |
36bb2ca2 JF |
3081 | size_t row_; |
3082 | size_t count_; | |
7b33d201 | 3083 | _H<NSString> localized_; |
36bb2ca2 | 3084 | } |
3178d79b | 3085 | |
677b8415 | 3086 | - (NSComparisonResult) compareByLocalized:(Section *)section; |
9fcbca29 JF |
3087 | - (Section *) initWithName:(NSString *)name localized:(NSString *)localized; |
3088 | - (Section *) initWithName:(NSString *)name localize:(BOOL)localize; | |
3089 | - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize; | |
808c6eb6 | 3090 | - (Section *) initWithIndex:(unichar)index row:(size_t)row; |
36bb2ca2 | 3091 | - (NSString *) name; |
808c6eb6 | 3092 | - (unichar) index; |
f79a4512 | 3093 | |
36bb2ca2 JF |
3094 | - (size_t) row; |
3095 | - (size_t) count; | |
f79a4512 JF |
3096 | |
3097 | - (void) addToRow; | |
36bb2ca2 | 3098 | - (void) addToCount; |
b19871dd | 3099 | |
f79a4512 | 3100 | - (void) setCount:(size_t)count; |
677b8415 | 3101 | - (NSString *) localized; |
f79a4512 | 3102 | |
36bb2ca2 | 3103 | @end |
b19871dd | 3104 | |
36bb2ca2 | 3105 | @implementation Section |
b19871dd | 3106 | |
677b8415 | 3107 | - (NSComparisonResult) compareByLocalized:(Section *)section { |
9fcbca29 JF |
3108 | NSString *lhs(localized_); |
3109 | NSString *rhs([section localized]); | |
6d9712c4 | 3110 | |
9fcbca29 | 3111 | /*if ([lhs length] != 0 && [rhs length] != 0) { |
6d9712c4 JF |
3112 | unichar lhc = [lhs characterAtIndex:0]; |
3113 | unichar rhc = [rhs characterAtIndex:0]; | |
3114 | ||
3115 | if (isalpha(lhc) && !isalpha(rhc)) | |
3116 | return NSOrderedAscending; | |
3117 | else if (!isalpha(lhc) && isalpha(rhc)) | |
3118 | return NSOrderedDescending; | |
9fcbca29 | 3119 | }*/ |
6d9712c4 | 3120 | |
68f1828e | 3121 | return [lhs compare:rhs options:LaxCompareOptions_]; |
6d9712c4 JF |
3122 | } |
3123 | ||
9fcbca29 JF |
3124 | - (Section *) initWithName:(NSString *)name localized:(NSString *)localized { |
3125 | if ((self = [self initWithName:name localize:NO]) != nil) { | |
3126 | if (localized != nil) | |
7b33d201 | 3127 | localized_ = localized; |
9fcbca29 JF |
3128 | } return self; |
3129 | } | |
3130 | ||
3131 | - (Section *) initWithName:(NSString *)name localize:(BOOL)localize { | |
3132 | return [self initWithName:name row:0 localize:localize]; | |
6d9712c4 JF |
3133 | } |
3134 | ||
9fcbca29 | 3135 | - (Section *) initWithName:(NSString *)name row:(size_t)row localize:(BOOL)localize { |
36bb2ca2 | 3136 | if ((self = [super init]) != nil) { |
7b33d201 | 3137 | name_ = name; |
808c6eb6 JF |
3138 | index_ = '\0'; |
3139 | row_ = row; | |
9fcbca29 | 3140 | if (localize) |
7b33d201 | 3141 | localized_ = LocalizeSection(name_); |
808c6eb6 JF |
3142 | } return self; |
3143 | } | |
3144 | ||
f79a4512 | 3145 | /* XXX: localize the index thingees */ |
808c6eb6 JF |
3146 | - (Section *) initWithIndex:(unichar)index row:(size_t)row { |
3147 | if ((self = [super init]) != nil) { | |
7b33d201 | 3148 | name_ = [NSString stringWithCharacters:&index length:1]; |
808c6eb6 | 3149 | index_ = index; |
36bb2ca2 | 3150 | row_ = row; |
b19871dd JF |
3151 | } return self; |
3152 | } | |
3153 | ||
36bb2ca2 JF |
3154 | - (NSString *) name { |
3155 | return name_; | |
3156 | } | |
3157 | ||
808c6eb6 JF |
3158 | - (unichar) index { |
3159 | return index_; | |
3160 | } | |
3161 | ||
36bb2ca2 JF |
3162 | - (size_t) row { |
3163 | return row_; | |
3164 | } | |
3165 | ||
3166 | - (size_t) count { | |
3167 | return count_; | |
3168 | } | |
3169 | ||
f79a4512 JF |
3170 | - (void) addToRow { |
3171 | ++row_; | |
3172 | } | |
3173 | ||
36bb2ca2 JF |
3174 | - (void) addToCount { |
3175 | ++count_; | |
3176 | } | |
3177 | ||
f79a4512 JF |
3178 | - (void) setCount:(size_t)count { |
3179 | count_ = count; | |
3180 | } | |
3181 | ||
3182 | - (NSString *) localized { | |
3183 | return localized_; | |
3184 | } | |
3185 | ||
b19871dd JF |
3186 | @end |
3187 | /* }}} */ | |
3188 | ||
9f9ae81c JF |
3189 | class CydiaLogCleaner : |
3190 | public pkgArchiveCleaner | |
3191 | { | |
3192 | protected: | |
3193 | virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) { | |
3194 | unlink(File); | |
3195 | } | |
3196 | }; | |
3197 | ||
36bb2ca2 JF |
3198 | /* Database Implementation {{{ */ |
3199 | @implementation Database | |
ec97ef06 | 3200 | |
770f2a8e | 3201 | + (Database *) sharedInstance { |
7b33d201 | 3202 | static _H<Database> instance; |
770f2a8e | 3203 | if (instance == nil) |
7b33d201 | 3204 | instance = [[[Database alloc] init] autorelease]; |
770f2a8e JF |
3205 | return instance; |
3206 | } | |
3207 | ||
a1440b10 JF |
3208 | - (unsigned) era { |
3209 | return era_; | |
3210 | } | |
3211 | ||
0944377b JF |
3212 | - (void) releasePackages { |
3213 | CFArrayApplyFunction(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFArrayApplierFunction>(&CFRelease), NULL); | |
3214 | CFArrayRemoveAllValues(packages_); | |
3215 | } | |
3216 | ||
36bb2ca2 | 3217 | - (void) dealloc { |
3931b718 | 3218 | // XXX: actually implement this thing |
36bb2ca2 | 3219 | _assert(false); |
0944377b | 3220 | [self releasePackages]; |
f79a4512 | 3221 | apr_pool_destroy(pool_); |
0944377b | 3222 | NSRecycleZone(zone_); |
36bb2ca2 JF |
3223 | [super dealloc]; |
3224 | } | |
ec97ef06 | 3225 | |
d13edf44 | 3226 | - (void) _readCydia:(NSNumber *)fd { |
77fcccaf JF |
3227 | __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in); |
3228 | std::istream is(&ib); | |
3229 | std::string line; | |
3230 | ||
bc8cd583 JF |
3231 | static Pcre finish_r("^finish:([^:]*)$"); |
3232 | ||
77fcccaf | 3233 | while (std::getline(is, line)) { |
d13edf44 JF |
3234 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3235 | ||
77fcccaf | 3236 | const char *data(line.c_str()); |
bc8cd583 | 3237 | size_t size = line.size(); |
c390d3ab | 3238 | lprintf("C:%s\n", data); |
bc8cd583 JF |
3239 | |
3240 | if (finish_r(data, size)) { | |
3241 | NSString *finish = finish_r[1]; | |
3242 | int index = [Finishes_ indexOfObject:finish]; | |
3243 | if (index != INT_MAX && index > Finish_) | |
3244 | Finish_ = index; | |
3245 | } | |
d13edf44 JF |
3246 | |
3247 | [pool release]; | |
77fcccaf JF |
3248 | } |
3249 | ||
670a0494 | 3250 | _assume(false); |
77fcccaf JF |
3251 | } |
3252 | ||
d13edf44 | 3253 | - (void) _readStatus:(NSNumber *)fd { |
36bb2ca2 JF |
3254 | __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in); |
3255 | std::istream is(&ib); | |
3256 | std::string line; | |
ec97ef06 | 3257 | |
7b0ce2da JF |
3258 | static Pcre conffile_r("^status: [^ ]* : conffile-prompt : (.*?) *$"); |
3259 | static Pcre pmstatus_r("^([^:]*):([^:]*):([^:]*):(.*)$"); | |
ec97ef06 | 3260 | |
36bb2ca2 | 3261 | while (std::getline(is, line)) { |
d13edf44 JF |
3262 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3263 | ||
36bb2ca2 | 3264 | const char *data(line.c_str()); |
670a0494 | 3265 | size_t size(line.size()); |
c390d3ab | 3266 | lprintf("S:%s\n", data); |
ec97ef06 | 3267 | |
a08145a8 JF |
3268 | if (conffile_r(data, size)) { |
3269 | // status: /fail : conffile-prompt : '/fail' '/fail.dpkg-new' 1 1 | |
4187453f | 3270 | [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:conffile_r[1] waitUntilDone:YES]; |
a08145a8 JF |
3271 | } else if (strncmp(data, "status: ", 8) == 0) { |
3272 | // status: <package>: {unpacked,half-configured,installed} | |
389133be | 3273 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 8)] ofType:kCydiaProgressEventTypeStatus]); |
a08145a8 JF |
3274 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3275 | } else if (strncmp(data, "processing: ", 12) == 0) { | |
3276 | // processing: configure: config-test | |
389133be | 3277 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:(data + 12)] ofType:kCydiaProgressEventTypeStatus]); |
a08145a8 | 3278 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
6915b806 | 3279 | } else if (pmstatus_r(data, size)) { |
31f3cfff | 3280 | std::string type([pmstatus_r[1] UTF8String]); |
4a2dc82e | 3281 | |
6915b806 | 3282 | NSString *package = pmstatus_r[2]; |
4a2dc82e JF |
3283 | if ([package isEqualToString:@"dpkg-exec"]) |
3284 | package = nil; | |
31f3cfff | 3285 | |
5a09ae08 | 3286 | float percent([pmstatus_r[3] floatValue]); |
6915b806 | 3287 | [progress_ performSelectorOnMainThread:@selector(setProgressPercent:) withObject:[NSNumber numberWithFloat:(percent / 100)] waitUntilDone:YES]; |
5a09ae08 JF |
3288 | |
3289 | NSString *string = pmstatus_r[4]; | |
5a09ae08 | 3290 | |
6915b806 | 3291 | if (type == "pmerror") { |
389133be | 3292 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeError forPackage:package]); |
6915b806 JF |
3293 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3294 | } else if (type == "pmstatus") { | |
389133be | 3295 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:string ofType:kCydiaProgressEventTypeStatus forPackage:package]); |
6915b806 JF |
3296 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
3297 | } else if (type == "pmconffile") | |
4187453f | 3298 | [delegate_ performSelectorOnMainThread:@selector(setConfigurationData:) withObject:string waitUntilDone:YES]; |
670a0494 JF |
3299 | else |
3300 | lprintf("E:unknown pmstatus\n"); | |
3301 | } else | |
3302 | lprintf("E:unknown status\n"); | |
d13edf44 JF |
3303 | |
3304 | [pool release]; | |
36bb2ca2 | 3305 | } |
ec97ef06 | 3306 | |
670a0494 | 3307 | _assume(false); |
36bb2ca2 | 3308 | } |
ec97ef06 | 3309 | |
d13edf44 | 3310 | - (void) _readOutput:(NSNumber *)fd { |
36bb2ca2 JF |
3311 | __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in); |
3312 | std::istream is(&ib); | |
3313 | std::string line; | |
3314 | ||
5a09ae08 | 3315 | while (std::getline(is, line)) { |
d13edf44 JF |
3316 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
3317 | ||
c390d3ab | 3318 | lprintf("O:%s\n", line.c_str()); |
27024935 | 3319 | |
389133be | 3320 | CydiaProgressEvent *event([CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:line.c_str()] ofType:kCydiaProgressEventTypeInformation]); |
6915b806 | 3321 | [progress_ performSelectorOnMainThread:@selector(addProgressEvent:) withObject:event waitUntilDone:YES]; |
d13edf44 JF |
3322 | |
3323 | [pool release]; | |
5a09ae08 | 3324 | } |
36bb2ca2 | 3325 | |
670a0494 | 3326 | _assume(false); |
ec97ef06 JF |
3327 | } |
3328 | ||
8b29f8e6 JF |
3329 | - (FILE *) input { |
3330 | return input_; | |
3331 | } | |
3332 | ||
36bb2ca2 | 3333 | - (Package *) packageWithName:(NSString *)name { |
c5f1a937 JF |
3334 | if (name == nil) |
3335 | return nil; | |
3dd53516 | 3336 | @synchronized (self) { |
5a09ae08 JF |
3337 | if (static_cast<pkgDepCache *>(cache_) == NULL) |
3338 | return nil; | |
36bb2ca2 | 3339 | pkgCache::PkgIterator iterator(cache_->FindPkg([name UTF8String])); |
13902177 | 3340 | return iterator.end() ? nil : [Package packageWithIterator:iterator withZone:NULL inPool:NULL database:self]; |
28ce8704 | 3341 | } } |
36bb2ca2 | 3342 | |
eb30da80 | 3343 | - (id) init { |
ec97ef06 | 3344 | if ((self = [super init]) != nil) { |
5a09ae08 | 3345 | policy_ = NULL; |
36bb2ca2 JF |
3346 | records_ = NULL; |
3347 | resolver_ = NULL; | |
3348 | fetcher_ = NULL; | |
3349 | lock_ = NULL; | |
ec97ef06 | 3350 | |
f79a4512 JF |
3351 | zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO); |
3352 | apr_pool_create(&pool_, NULL); | |
3353 | ||
9f357d11 JF |
3354 | size_t capacity(MetaFile_->active_); |
3355 | if (capacity == 0) | |
3356 | capacity = 16384; | |
3357 | else | |
3358 | capacity += 1024; | |
3359 | ||
3360 | packages_ = CFArrayCreateMutable(kCFAllocatorDefault, capacity, NULL); | |
7b33d201 | 3361 | sourceList_ = [NSMutableArray arrayWithCapacity:16]; |
ec97ef06 | 3362 | |
36bb2ca2 | 3363 | int fds[2]; |
ec97ef06 | 3364 | |
77fcccaf JF |
3365 | _assert(pipe(fds) != -1); |
3366 | cydiafd_ = fds[1]; | |
3367 | ||
3368 | _config->Set("APT::Keep-Fds::", cydiafd_); | |
bc8cd583 | 3369 | setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 1"] UTF8String], _not(int)); |
77fcccaf JF |
3370 | |
3371 | [NSThread | |
3372 | detachNewThreadSelector:@selector(_readCydia:) | |
3373 | toTarget:self | |
3931b718 | 3374 | withObject:[NSNumber numberWithInt:fds[0]] |
77fcccaf JF |
3375 | ]; |
3376 | ||
36bb2ca2 JF |
3377 | _assert(pipe(fds) != -1); |
3378 | statusfd_ = fds[1]; | |
ec97ef06 | 3379 | |
36bb2ca2 JF |
3380 | [NSThread |
3381 | detachNewThreadSelector:@selector(_readStatus:) | |
3382 | toTarget:self | |
3931b718 | 3383 | withObject:[NSNumber numberWithInt:fds[0]] |
36bb2ca2 | 3384 | ]; |
ec97ef06 | 3385 | |
8b29f8e6 JF |
3386 | _assert(pipe(fds) != -1); |
3387 | _assert(dup2(fds[0], 0) != -1); | |
3388 | _assert(close(fds[0]) != -1); | |
3389 | ||
3390 | input_ = fdopen(fds[1], "a"); | |
3391 | ||
36bb2ca2 JF |
3392 | _assert(pipe(fds) != -1); |
3393 | _assert(dup2(fds[1], 1) != -1); | |
3394 | _assert(close(fds[1]) != -1); | |
3395 | ||
3396 | [NSThread | |
3397 | detachNewThreadSelector:@selector(_readOutput:) | |
3398 | toTarget:self | |
3931b718 | 3399 | withObject:[NSNumber numberWithInt:fds[0]] |
36bb2ca2 | 3400 | ]; |
ec97ef06 JF |
3401 | } return self; |
3402 | } | |
3403 | ||
36bb2ca2 JF |
3404 | - (pkgCacheFile &) cache { |
3405 | return cache_; | |
ec97ef06 JF |
3406 | } |
3407 | ||
5a09ae08 JF |
3408 | - (pkgDepCache::Policy *) policy { |
3409 | return policy_; | |
3410 | } | |
3411 | ||
36bb2ca2 JF |
3412 | - (pkgRecords *) records { |
3413 | return records_; | |
ec97ef06 JF |
3414 | } |
3415 | ||
36bb2ca2 JF |
3416 | - (pkgProblemResolver *) resolver { |
3417 | return resolver_; | |
ec97ef06 JF |
3418 | } |
3419 | ||
36bb2ca2 JF |
3420 | - (pkgAcquire &) fetcher { |
3421 | return *fetcher_; | |
ec97ef06 JF |
3422 | } |
3423 | ||
a3328c28 JF |
3424 | - (pkgSourceList &) list { |
3425 | return *list_; | |
3426 | } | |
3427 | ||
36bb2ca2 | 3428 | - (NSArray *) packages { |
077e9d90 | 3429 | return (NSArray *) packages_; |
ec97ef06 JF |
3430 | } |
3431 | ||
7b0ce2da | 3432 | - (NSArray *) sources { |
34f70f5d | 3433 | return sourceList_; |
7b0ce2da JF |
3434 | } |
3435 | ||
d669236d GP |
3436 | - (Source *) sourceWithKey:(NSString *)key { |
3437 | for (Source *source in [self sources]) { | |
3438 | if ([[source key] isEqualToString:key]) | |
3439 | return source; | |
3440 | } return nil; | |
3441 | } | |
3442 | ||
670a0494 JF |
3443 | - (bool) popErrorWithTitle:(NSString *)title { |
3444 | bool fatal(false); | |
670a0494 JF |
3445 | |
3446 | while (!_error->empty()) { | |
3447 | std::string error; | |
3448 | bool warning(!_error->PopMessage(error)); | |
3449 | if (!warning) | |
3450 | fatal = true; | |
cb6e2ccf | 3451 | |
670a0494 JF |
3452 | for (;;) { |
3453 | size_t size(error.size()); | |
3454 | if (size == 0 || error[size - 1] != '\n') | |
3455 | break; | |
3456 | error.resize(size - 1); | |
3457 | } | |
cb6e2ccf | 3458 | |
670a0494 JF |
3459 | lprintf("%c:[%s]\n", warning ? 'W' : 'E', error.c_str()); |
3460 | ||
c8ce71c7 JF |
3461 | static Pcre no_pubkey("^GPG error:.* NO_PUBKEY .*$"); |
3462 | if (warning && no_pubkey(error.c_str())) | |
3463 | continue; | |
3464 | ||
389133be | 3465 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title]; |
670a0494 JF |
3466 | } |
3467 | ||
670a0494 JF |
3468 | return fatal; |
3469 | } | |
3470 | ||
3471 | - (bool) popErrorWithTitle:(NSString *)title forOperation:(bool)success { | |
3472 | return [self popErrorWithTitle:title] || !success; | |
3473 | } | |
3474 | ||
d13edf44 | 3475 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation { |
3dd53516 JF |
3476 | @synchronized (self) { |
3477 | ++era_; | |
a1440b10 | 3478 | |
0944377b | 3479 | [self releasePackages]; |
ab3f6a01 | 3480 | |
34f70f5d JF |
3481 | sourceMap_.clear(); |
3482 | [sourceList_ removeAllObjects]; | |
843e75b8 | 3483 | |
36bb2ca2 | 3484 | _error->Discard(); |
5a09ae08 | 3485 | |
36bb2ca2 | 3486 | delete list_; |
5a09ae08 | 3487 | list_ = NULL; |
36bb2ca2 JF |
3488 | manager_ = NULL; |
3489 | delete lock_; | |
5a09ae08 | 3490 | lock_ = NULL; |
36bb2ca2 | 3491 | delete fetcher_; |
5a09ae08 | 3492 | fetcher_ = NULL; |
36bb2ca2 | 3493 | delete resolver_; |
5a09ae08 | 3494 | resolver_ = NULL; |
36bb2ca2 | 3495 | delete records_; |
5a09ae08 JF |
3496 | records_ = NULL; |
3497 | delete policy_; | |
3498 | policy_ = NULL; | |
36bb2ca2 | 3499 | |
5a09ae08 | 3500 | cache_.Close(); |
8b29f8e6 | 3501 | |
f79a4512 | 3502 | apr_pool_clear(pool_); |
a020a50e | 3503 | |
f79a4512 | 3504 | NSRecycleZone(zone_); |
a020a50e | 3505 | zone_ = NSCreateZone(1024 * 1024, 256 * 1024, NO); |
f79a4512 | 3506 | |
7376b55c JF |
3507 | int chk(creat("/tmp/cydia.chk", 0644)); |
3508 | if (chk != -1) | |
3509 | close(chk); | |
3510 | ||
4ba8f30a JF |
3511 | if (invocation != nil) |
3512 | [invocation invoke]; | |
3513 | ||
670a0494 JF |
3514 | NSString *title(UCLocalize("DATABASE")); |
3515 | ||
9487f027 | 3516 | _trace(); |
124cea03 JF |
3517 | OpProgress progress; |
3518 | while (!cache_.Open(progress, true)) { pop: | |
8b29f8e6 | 3519 | std::string error; |
670a0494 | 3520 | bool warning(!_error->PopMessage(error)); |
c390d3ab | 3521 | lprintf("cache_.Open():[%s]\n", error.c_str()); |
5a09ae08 JF |
3522 | |
3523 | if (error == "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. ") | |
3524 | [delegate_ repairWithSelector:@selector(configure)]; | |
3525 | else if (error == "The package lists or status file could not be parsed or opened.") | |
3526 | [delegate_ repairWithSelector:@selector(update)]; | |
37bf1e1b | 3527 | // else if (error == "Could not get lock /var/lib/dpkg/lock - open (35 Resource temporarily unavailable)") |
f549c55a JF |
3528 | // else if (error == "Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)") |
3529 | // else if (error == "Malformed Status line") | |
9ea8d159 | 3530 | // else if (error == "The list of sources could not be read.") |
efa53fa9 | 3531 | else { |
389133be | 3532 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:[NSString stringWithUTF8String:error.c_str()] ofType:(warning ? kCydiaProgressEventTypeWarning : kCydiaProgressEventTypeError)] forTask:title]; |
efa53fa9 GP |
3533 | return; |
3534 | } | |
5a09ae08 | 3535 | |
670a0494 JF |
3536 | if (warning) |
3537 | goto pop; | |
3538 | _error->Discard(); | |
36bb2ca2 | 3539 | } |
9487f027 | 3540 | _trace(); |
36bb2ca2 | 3541 | |
7376b55c JF |
3542 | unlink("/tmp/cydia.chk"); |
3543 | ||
31bc18a7 | 3544 | now_ = [[NSDate date] timeIntervalSince1970]; |
36bb2ca2 | 3545 | |
5a09ae08 | 3546 | policy_ = new pkgDepCache::Policy(); |
36bb2ca2 JF |
3547 | records_ = new pkgRecords(cache_); |
3548 | resolver_ = new pkgProblemResolver(cache_); | |
3549 | fetcher_ = new pkgAcquire(&status_); | |
3550 | lock_ = NULL; | |
3551 | ||
3552 | list_ = new pkgSourceList(); | |
670a0494 JF |
3553 | if ([self popErrorWithTitle:title forOperation:list_->ReadMainList()]) |
3554 | return; | |
3555 | ||
3556 | if (cache_->DelCount() != 0 || cache_->InstCount() != 0) { | |
389133be | 3557 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("COUNTS_NONZERO_EX") ofType:kCydiaProgressEventTypeError] forTask:title]; |
670a0494 JF |
3558 | return; |
3559 | } | |
36bb2ca2 | 3560 | |
670a0494 JF |
3561 | if ([self popErrorWithTitle:title forOperation:pkgApplyStatus(cache_)]) |
3562 | return; | |
9bedffaa JF |
3563 | |
3564 | if (cache_->BrokenCount() != 0) { | |
670a0494 JF |
3565 | if ([self popErrorWithTitle:title forOperation:pkgFixBroken(cache_)]) |
3566 | return; | |
3567 | ||
3568 | if (cache_->BrokenCount() != 0) { | |
389133be | 3569 | [delegate_ addProgressEventOnMainThread:[CydiaProgressEvent eventWithMessage:UCLocalize("STILL_BROKEN_EX") ofType:kCydiaProgressEventTypeError] forTask:title]; |
670a0494 JF |
3570 | return; |
3571 | } | |
3572 | ||
3573 | if ([self popErrorWithTitle:title forOperation:pkgMinimizeUpgrade(cache_)]) | |
3574 | return; | |
9bedffaa JF |
3575 | } |
3576 | ||
68d927e2 | 3577 | for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) { |
aec64d46 | 3578 | Source *object([[[Source alloc] initWithMetaIndex:*source forDatabase:self inPool:pool_] autorelease]); |
34f70f5d JF |
3579 | [sourceList_ addObject:object]; |
3580 | ||
68d927e2 JF |
3581 | std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles(); |
3582 | for (std::vector<pkgIndexFile *>::const_iterator index = indices->begin(); index != indices->end(); ++index) | |
3583 | // XXX: this could be more intelligent | |
3584 | if (dynamic_cast<debPackagesIndex *>(*index) != NULL) { | |
3585 | pkgCache::PkgFileIterator cached((*index)->FindInCache(cache_)); | |
34f70f5d JF |
3586 | if (!cached.end()) |
3587 | sourceMap_[cached->ID] = object; | |
68d927e2 | 3588 | } |
36bb2ca2 | 3589 | } |
68d927e2 | 3590 | |
677b8415 | 3591 | { |
9fcbca29 | 3592 | /*std::vector<Package *> packages; |
677b8415 | 3593 | packages.reserve(std::max(10000U, [packages_ count] + 1000)); |
9fcbca29 JF |
3594 | packages_ = nil;*/ |
3595 | ||
677b8415 JF |
3596 | _trace(); |
3597 | ||
3598 | for (pkgCache::PkgIterator iterator = cache_->PkgBegin(); !iterator.end(); ++iterator) | |
3599 | if (Package *package = [Package packageWithIterator:iterator withZone:zone_ inPool:pool_ database:self]) | |
9fcbca29 | 3600 | //packages.push_back(package); |
7b33d201 | 3601 | CFArrayAppendValue(packages_, CFRetain(package)); |
677b8415 JF |
3602 | |
3603 | _trace(); | |
3604 | ||
9fcbca29 | 3605 | /*if (packages.empty()) |
677b8415 JF |
3606 | packages_ = [[NSArray alloc] init]; |
3607 | else | |
3608 | packages_ = [[NSArray alloc] initWithObjects:&packages.front() count:packages.size()]; | |
9fcbca29 JF |
3609 | _trace();*/ |
3610 | ||
de42680b JF |
3611 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(16)]; |
3612 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(4)]; | |
3613 | [(NSMutableArray *) packages_ radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackagePrefixRadix) withContext:reinterpret_cast<void *>(0)]; | |
9fcbca29 JF |
3614 | |
3615 | /*_trace(); | |
3616 | PrintTimes(); | |
3617 | _trace();*/ | |
3618 | ||
3619 | _trace(); | |
3620 | ||
3621 | /*if (!packages.empty()) | |
3622 | CFQSortArray(&packages.front(), packages.size(), sizeof(packages.front()), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare_), NULL);*/ | |
3623 | //std::sort(packages.begin(), packages.end(), PackageNameOrdering()); | |
3624 | ||
eef4ccaf JF |
3625 | //CFArraySortValues((CFMutableArrayRef) packages_, CFRangeMake(0, [packages_ count]), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL); |
3626 | ||
077e9d90 | 3627 | CFArrayInsertionSortValues(packages_, CFRangeMake(0, CFArrayGetCount(packages_)), reinterpret_cast<CFComparatorFunction>(&PackageNameCompare), NULL); |
9fcbca29 JF |
3628 | |
3629 | //[packages_ sortUsingFunction:reinterpret_cast<NSComparisonResult (*)(id, id, void *)>(&PackageNameCompare) context:NULL]; | |
677b8415 JF |
3630 | |
3631 | _trace(); | |
cd95e390 JF |
3632 | |
3633 | size_t count(CFArrayGetCount(packages_)); | |
9f357d11 JF |
3634 | MetaFile_->active_ = count; |
3635 | ||
cd95e390 JF |
3636 | for (size_t index(0); index != count; ++index) |
3637 | [(Package *) CFArrayGetValueAtIndex(packages_, index) setIndex:index]; | |
3638 | ||
3639 | _trace(); | |
677b8415 | 3640 | } |
d13edf44 | 3641 | } } |
ec97ef06 | 3642 | |
c6ca67ba JF |
3643 | - (void) clear { |
3644 | @synchronized (self) { | |
3645 | delete resolver_; | |
3646 | resolver_ = new pkgProblemResolver(cache_); | |
3647 | ||
50c1653e JF |
3648 | for (pkgCache::PkgIterator iterator(cache_->PkgBegin()); !iterator.end(); ++iterator) |
3649 | if (!cache_[iterator].Keep()) | |
c6ca67ba | 3650 | cache_->MarkKeep(iterator, false); |
50c1653e | 3651 | else if ((cache_[iterator].iFlags & pkgDepCache::ReInstall) != 0) |
c6ca67ba | 3652 | cache_->SetReInstall(iterator, false); |
c6ca67ba JF |
3653 | } } |
3654 | ||
5a09ae08 JF |
3655 | - (void) configure { |
3656 | NSString *dpkg = [NSString stringWithFormat:@"dpkg --configure -a --status-fd %u", statusfd_]; | |
985d2dff | 3657 | _trace(); |
5a09ae08 | 3658 | system([dpkg UTF8String]); |
985d2dff | 3659 | _trace(); |
5a09ae08 JF |
3660 | } |
3661 | ||
670a0494 JF |
3662 | - (bool) clean { |
3663 | // XXX: I don't remember this condition | |
77fcccaf | 3664 | if (lock_ != NULL) |
670a0494 | 3665 | return false; |
77fcccaf JF |
3666 | |
3667 | FileFd Lock; | |
3668 | Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock")); | |
670a0494 JF |
3669 | |
3670 | NSString *title(UCLocalize("CLEAN_ARCHIVES")); | |
3671 | ||
3672 | if ([self popErrorWithTitle:title]) | |
3673 | return false; | |
77fcccaf JF |
3674 | |
3675 | pkgAcquire fetcher; | |
3676 | fetcher.Clean(_config->FindDir("Dir::Cache::Archives")); | |
3677 | ||
9f9ae81c | 3678 | CydiaLogCleaner cleaner; |
670a0494 JF |
3679 | if ([self popErrorWithTitle:title forOperation:cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)]) |
3680 | return false; | |
3681 | ||
3682 | return true; | |
77fcccaf JF |
3683 | } |
3684 | ||
670a0494 | 3685 | - (bool) prepare { |
744f398e JF |
3686 | fetcher_->Shutdown(); |
3687 | ||
36bb2ca2 JF |
3688 | pkgRecords records(cache_); |
3689 | ||
3690 | lock_ = new FileFd(); | |
3691 | lock_->Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock")); | |
670a0494 JF |
3692 | |
3693 | NSString *title(UCLocalize("PREPARE_ARCHIVES")); | |
3694 | ||
3695 | if ([self popErrorWithTitle:title]) | |
3696 | return false; | |
36bb2ca2 JF |
3697 | |
3698 | pkgSourceList list; | |
670a0494 JF |
3699 | if ([self popErrorWithTitle:title forOperation:list.ReadMainList()]) |
3700 | return false; | |
36bb2ca2 JF |
3701 | |
3702 | manager_ = (_system->CreatePM(cache_)); | |
670a0494 JF |
3703 | if ([self popErrorWithTitle:title forOperation:manager_->GetArchives(fetcher_, &list, &records)]) |
3704 | return false; | |
3705 | ||
3706 | return true; | |
ec97ef06 JF |
3707 | } |
3708 | ||
36bb2ca2 | 3709 | - (void) perform { |
be860cc8 JF |
3710 | bool substrate(RestartSubstrate_); |
3711 | RestartSubstrate_ = false; | |
3712 | ||
670a0494 JF |
3713 | NSString *title(UCLocalize("PERFORM_SELECTIONS")); |
3714 | ||
a72074b2 JF |
3715 | NSMutableArray *before = [NSMutableArray arrayWithCapacity:16]; { |
3716 | pkgSourceList list; | |
670a0494 JF |
3717 | if ([self popErrorWithTitle:title forOperation:list.ReadMainList()]) |
3718 | return; | |
a72074b2 JF |
3719 | for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source) |
3720 | [before addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]]; | |
3721 | } | |
a0be02eb | 3722 | |
dcaecde2 | 3723 | [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
7ffd70fd | 3724 | |
eeb9b112 JF |
3725 | if (fetcher_->Run(PulseInterval_) != pkgAcquire::Continue) { |
3726 | _trace(); | |
6e90508f | 3727 | [self popErrorWithTitle:title]; |
36bb2ca2 | 3728 | return; |
eeb9b112 JF |
3729 | } |
3730 | ||
3731 | bool failed = false; | |
3732 | for (pkgAcquire::ItemIterator item = fetcher_->ItemsBegin(); item != fetcher_->ItemsEnd(); item++) { | |
3733 | if ((*item)->Status == pkgAcquire::Item::StatDone && (*item)->Complete) | |
3734 | continue; | |
6204f56a JF |
3735 | if ((*item)->Status == pkgAcquire::Item::StatIdle) |
3736 | continue; | |
eeb9b112 | 3737 | |
eeb9b112 | 3738 | failed = true; |
eeb9b112 JF |
3739 | } |
3740 | ||
dcaecde2 | 3741 | [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
54043703 | 3742 | |
eeb9b112 JF |
3743 | if (failed) { |
3744 | _trace(); | |
3745 | return; | |
3746 | } | |
36bb2ca2 | 3747 | |
be860cc8 JF |
3748 | if (substrate) |
3749 | RestartSubstrate_ = true; | |
3750 | ||
36bb2ca2 JF |
3751 | _system->UnLock(); |
3752 | pkgPackageManager::OrderResult result = manager_->DoInstall(statusfd_); | |
3753 | ||
eeb9b112 JF |
3754 | if (_error->PendingError()) { |
3755 | _trace(); | |
36bb2ca2 | 3756 | return; |
eeb9b112 JF |
3757 | } |
3758 | ||
3759 | if (result == pkgPackageManager::Failed) { | |
3760 | _trace(); | |
36bb2ca2 | 3761 | return; |
eeb9b112 JF |
3762 | } |
3763 | ||
3764 | if (result != pkgPackageManager::Completed) { | |
3765 | _trace(); | |
36bb2ca2 | 3766 | return; |
eeb9b112 | 3767 | } |
a0be02eb | 3768 | |
a72074b2 JF |
3769 | NSMutableArray *after = [NSMutableArray arrayWithCapacity:16]; { |
3770 | pkgSourceList list; | |
670a0494 JF |
3771 | if ([self popErrorWithTitle:title forOperation:list.ReadMainList()]) |
3772 | return; | |
a72074b2 JF |
3773 | for (pkgSourceList::const_iterator source = list.begin(); source != list.end(); ++source) |
3774 | [after addObject:[NSString stringWithUTF8String:(*source)->GetURI().c_str()]]; | |
3775 | } | |
3776 | ||
3777 | if (![before isEqualToArray:after]) | |
3778 | [self update]; | |
ec97ef06 JF |
3779 | } |
3780 | ||
670a0494 JF |
3781 | - (bool) upgrade { |
3782 | NSString *title(UCLocalize("UPGRADE")); | |
3783 | if ([self popErrorWithTitle:title forOperation:pkgDistUpgrade(cache_)]) | |
3784 | return false; | |
3785 | return true; | |
c7c6384e JF |
3786 | } |
3787 | ||
36bb2ca2 JF |
3788 | - (void) update { |
3789 | [self updateWithStatus:status_]; | |
3790 | } | |
b4d89997 | 3791 | |
670a0494 | 3792 | - (void) updateWithStatus:(Status &)status { |
670a0494 JF |
3793 | NSString *title(UCLocalize("REFRESHING_DATA")); |
3794 | ||
36bb2ca2 | 3795 | pkgSourceList list; |
53ca7fdd JF |
3796 | if ([self popErrorWithTitle:title forOperation:list.ReadMainList()]) |
3797 | return; | |
b4d89997 | 3798 | |
36bb2ca2 JF |
3799 | FileFd lock; |
3800 | lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock")); | |
670a0494 JF |
3801 | if ([self popErrorWithTitle:title]) |
3802 | return; | |
18873623 | 3803 | |
aaae308d JF |
3804 | [delegate_ performSelectorOnMainThread:@selector(retainNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
3805 | ||
fc470c15 JF |
3806 | bool success(ListUpdate(status, list, PulseInterval_)); |
3807 | if (status.WasCancelled()) | |
3808 | _error->Discard(); | |
aa42c612 | 3809 | else { |
fc470c15 | 3810 | [self popErrorWithTitle:title forOperation:success]; |
aa42c612 JF |
3811 | [Metadata_ setObject:[NSDate date] forKey:@"LastUpdate"]; |
3812 | Changed_ = true; | |
3813 | } | |
36bb2ca2 | 3814 | |
aaae308d | 3815 | [delegate_ performSelectorOnMainThread:@selector(releaseNetworkActivityIndicator) withObject:nil waitUntilDone:YES]; |
b4d89997 JF |
3816 | } |
3817 | ||
6915b806 | 3818 | - (void) setDelegate:(NSObject<DatabaseDelegate> *)delegate { |
36bb2ca2 | 3819 | delegate_ = delegate; |
6915b806 JF |
3820 | } |
3821 | ||
3822 | - (void) setProgressDelegate:(NSObject<ProgressDelegate> *)delegate { | |
3823 | progress_ = delegate; | |
36bb2ca2 | 3824 | status_.setDelegate(delegate); |
36bb2ca2 | 3825 | } |
b4d89997 | 3826 | |
6915b806 JF |
3827 | - (NSObject<ProgressDelegate> *) progressDelegate { |
3828 | return progress_; | |
3829 | } | |
3830 | ||
7376b55c | 3831 | - (Source *) getSource:(pkgCache::PkgFileIterator)file { |
34f70f5d JF |
3832 | SourceMap::const_iterator i(sourceMap_.find(file->ID)); |
3833 | return i == sourceMap_.end() ? nil : i->second; | |
b19871dd JF |
3834 | } |
3835 | ||
fe33a23e | 3836 | - (NSString *) mappedSectionForPointer:(const char *)section { |
4905df00 | 3837 | _H<NSString> *mapped; |
fe33a23e | 3838 | |
4905df00 JF |
3839 | _profile(Database$mappedSectionForPointer$Cache) |
3840 | mapped = §ions_[section]; | |
3841 | _end | |
3842 | ||
3843 | if (*mapped == NULL) { | |
fe33a23e JF |
3844 | size_t length(strlen(section)); |
3845 | char spaced[length + 1]; | |
3846 | ||
3847 | _profile(Database$mappedSectionForPointer$Replace) | |
3848 | for (size_t index(0); index != length; ++index) | |
3849 | spaced[index] = section[index] == '_' ? ' ' : section[index]; | |
3850 | spaced[length] = '\0'; | |
3851 | _end | |
3852 | ||
3853 | NSString *string; | |
3854 | ||
3855 | _profile(Database$mappedSectionForPointer$stringWithUTF8String) | |
3856 | string = [NSString stringWithUTF8String:spaced]; | |
3857 | _end | |
3858 | ||
3859 | _profile(Database$mappedSectionForPointer$Map) | |
4905df00 | 3860 | string = [SectionMap_ objectForKey:string] ?: string; |
fe33a23e | 3861 | _end |
4905df00 JF |
3862 | |
3863 | *mapped = string; | |
3864 | } return *mapped; | |
fe33a23e JF |
3865 | } |
3866 | ||
36bb2ca2 JF |
3867 | @end |
3868 | /* }}} */ | |
b4d89997 | 3869 | |
7b33d201 | 3870 | static _H<NSMutableSet> Diversions_; |
7256476b | 3871 | |
775deead JF |
3872 | @interface Diversion : NSObject { |
3873 | Pcre pattern_; | |
3874 | _H<NSString> key_; | |
3875 | _H<NSString> format_; | |
3876 | } | |
3877 | ||
3878 | @end | |
3879 | ||
3880 | @implementation Diversion | |
3881 | ||
3882 | - (id) initWithFrom:(NSString *)from to:(NSString *)to { | |
3883 | if ((self = [super init]) != nil) { | |
3884 | pattern_ = [from UTF8String]; | |
3885 | key_ = from; | |
3886 | format_ = to; | |
3887 | } return self; | |
3888 | } | |
3889 | ||
3890 | - (NSString *) divert:(NSString *)url { | |
8ea598c0 | 3891 | return !pattern_(url) ? nil : pattern_->*format_; |
775deead JF |
3892 | } |
3893 | ||
7256476b JF |
3894 | + (NSURL *) divertURL:(NSURL *)url { |
3895 | divert: | |
3896 | NSString *href([url absoluteString]); | |
3897 | ||
7b33d201 | 3898 | for (Diversion *diversion in (id) Diversions_) |
7256476b | 3899 | if (NSString *diverted = [diversion divert:href]) { |
85d5d452 JF |
3900 | #if !ForRelease |
3901 | NSLog(@"div: %@", diverted); | |
3902 | #endif | |
7256476b JF |
3903 | url = [NSURL URLWithString:diverted]; |
3904 | goto divert; | |
3905 | } | |
3906 | ||
3907 | return url; | |
3908 | } | |
3909 | ||
775deead JF |
3910 | - (NSString *) key { |
3911 | return key_; | |
3912 | } | |
3913 | ||
3914 | - (NSUInteger) hash { | |
3915 | return [key_ hash]; | |
3916 | } | |
3917 | ||
3918 | - (BOOL) isEqual:(Diversion *)object { | |
3919 | return self == object || [self class] == [object class] && [key_ isEqual:[object key]]; | |
3920 | } | |
3921 | ||
3922 | @end | |
3923 | ||
43f3d7f6 | 3924 | @interface CydiaObject : NSObject { |
7b33d201 | 3925 | _H<IndirectDelegate> indirect_; |
3931b718 | 3926 | _transient id delegate_; |
43f3d7f6 | 3927 | } |
c390d3ab | 3928 | |
43f3d7f6 | 3929 | - (id) initWithDelegate:(IndirectDelegate *)indirect; |
6840bff3 | 3930 | |
c390d3ab JF |
3931 | @end |
3932 | ||
09e89a8a | 3933 | @interface CydiaWebViewController : CyteWebViewController { |
7b33d201 | 3934 | _H<CydiaObject> cydia_; |
775deead JF |
3935 | } |
3936 | ||
3937 | + (void) addDiversion:(Diversion *)diversion; | |
3938 | ||
3939 | @end | |
3940 | ||
775deead | 3941 | /* Web Scripting {{{ */ |
43f3d7f6 | 3942 | @implementation CydiaObject |
c390d3ab | 3943 | |
43f3d7f6 JF |
3944 | - (id) initWithDelegate:(IndirectDelegate *)indirect { |
3945 | if ((self = [super init]) != nil) { | |
7b33d201 | 3946 | indirect_ = indirect; |
43f3d7f6 JF |
3947 | } return self; |
3948 | } | |
3949 | ||
77801ff1 JF |
3950 | - (void) setDelegate:(id)delegate { |
3951 | delegate_ = delegate; | |
3952 | } | |
3953 | ||
43f3d7f6 | 3954 | + (NSArray *) _attributeKeys { |
e58ff941 | 3955 | return [NSArray arrayWithObjects: |
6ffdaae3 | 3956 | @"bbsnum", |
e967efd5 JF |
3957 | @"build", |
3958 | @"coreFoundationVersionNumber", | |
e58ff941 | 3959 | @"device", |
56296da0 | 3960 | @"ecid", |
93d6d318 JF |
3961 | @"firmware", |
3962 | @"hostname", | |
3963 | @"idiom", | |
f87cac81 JF |
3964 | @"mcc", |
3965 | @"mnc", | |
56296da0 | 3966 | @"model", |
2656c992 | 3967 | @"operator", |
56296da0 | 3968 | @"role", |
e58ff941 | 3969 | @"serial", |
3ea82d91 | 3970 | @"token", |
bf1d5e69 | 3971 | @"version", |
e58ff941 | 3972 | nil]; |
43f3d7f6 JF |
3973 | } |
3974 | ||
3975 | - (NSArray *) attributeKeys { | |
3976 | return [[self class] _attributeKeys]; | |
c390d3ab JF |
3977 | } |
3978 | ||
43f3d7f6 JF |
3979 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { |
3980 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
c390d3ab | 3981 | } |
43f3d7f6 | 3982 | |
bf1d5e69 | 3983 | - (NSString *) version { |
3d45bad1 | 3984 | return Cydia_; |
bf1d5e69 JF |
3985 | } |
3986 | ||
e967efd5 JF |
3987 | - (NSString *) build { |
3988 | return System_; | |
3989 | } | |
3990 | ||
3991 | - (NSString *) coreFoundationVersionNumber { | |
3992 | return [NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber]; | |
3993 | } | |
3994 | ||
43f3d7f6 JF |
3995 | - (NSString *) device { |
3996 | return [[UIDevice currentDevice] uniqueIdentifier]; | |
c390d3ab JF |
3997 | } |
3998 | ||
93d6d318 JF |
3999 | - (NSString *) firmware { |
4000 | return [[UIDevice currentDevice] systemVersion]; | |
4001 | } | |
4002 | ||
4003 | - (NSString *) hostname { | |
4004 | return [[UIDevice currentDevice] name]; | |
4005 | } | |
4006 | ||
4007 | - (NSString *) idiom { | |
c138614d | 4008 | return (id) Idiom_ ?: [NSNull null]; |
93d6d318 JF |
4009 | } |
4010 | ||
f87cac81 JF |
4011 | - (NSString *) mcc { |
4012 | if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberCountryCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberCountryCode"))) | |
4013 | return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberCountryCode)(kCFAllocatorDefault) autorelease]; | |
4014 | return nil; | |
4015 | } | |
4016 | ||
4017 | - (NSString *) mnc { | |
4018 | if (CFStringRef (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTSIMSupportCopyMobileSubscriberNetworkCode"))) | |
4019 | return [(NSString *) (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault) autorelease]; | |
4020 | return nil; | |
56296da0 JF |
4021 | } |
4022 | ||
2656c992 JF |
4023 | - (NSString *) operator { |
4024 | if (CFStringRef (*$CTRegistrationCopyOperatorName)(CFAllocatorRef) = reinterpret_cast<CFStringRef (*)(CFAllocatorRef)>(dlsym(RTLD_DEFAULT, "CTRegistrationCopyOperatorName"))) | |
4025 | return [(NSString *) (*$CTRegistrationCopyOperatorName)(kCFAllocatorDefault) autorelease]; | |
4026 | return nil; | |
4027 | } | |
4028 | ||
6ffdaae3 JF |
4029 | - (NSString *) bbsnum { |
4030 | return (id) BBSNum_ ?: [NSNull null]; | |
4031 | } | |
4032 | ||
56296da0 | 4033 | - (NSString *) ecid { |
849cd6bf | 4034 | return (id) ChipID_ ?: [NSNull null]; |
affeffc7 JF |
4035 | } |
4036 | ||
43f3d7f6 | 4037 | - (NSString *) serial { |
56296da0 | 4038 | return SerialNumber_; |
43f3d7f6 | 4039 | } |
86316a91 | 4040 | |
56296da0 | 4041 | - (NSString *) role { |
849cd6bf | 4042 | return (id) Role_ ?: [NSNull null]; |
affeffc7 JF |
4043 | } |
4044 | ||
56296da0 JF |
4045 | - (NSString *) model { |
4046 | return [NSString stringWithUTF8String:Machine_]; | |
43f3d7f6 | 4047 | } |
43f3d7f6 | 4048 | |
3ea82d91 JF |
4049 | - (NSString *) token { |
4050 | return (id) Token_ ?: [NSNull null]; | |
4051 | } | |
4052 | ||
43f3d7f6 | 4053 | + (NSString *) webScriptNameForSelector:(SEL)selector { |
e58ff941 | 4054 | if (false); |
cfc7b442 JF |
4055 | else if (selector == @selector(addBridgedHost:)) |
4056 | return @"addBridgedHost"; | |
2e1652a9 JF |
4057 | else if (selector == @selector(addInsecureHost:)) |
4058 | return @"addInsecureHost"; | |
3f428e4e JF |
4059 | else if (selector == @selector(addInternalRedirect::)) |
4060 | return @"addInternalRedirect"; | |
e4b48f2f | 4061 | else if (selector == @selector(addPipelinedHost:scheme:)) |
834c18a4 | 4062 | return @"addPipelinedHost"; |
33e30380 JF |
4063 | else if (selector == @selector(addSource:::)) |
4064 | return @"addSource"; | |
247bedb6 JF |
4065 | else if (selector == @selector(addTokenHost:)) |
4066 | return @"addTokenHost"; | |
b088c0cd JF |
4067 | else if (selector == @selector(addTrivialSource:)) |
4068 | return @"addTrivialSource"; | |
e58ff941 | 4069 | else if (selector == @selector(close)) |
43f3d7f6 | 4070 | return @"close"; |
e58ff941 JF |
4071 | else if (selector == @selector(du:)) |
4072 | return @"du"; | |
4073 | else if (selector == @selector(stringWithFormat:arguments:)) | |
4074 | return @"format"; | |
5c32f89e JF |
4075 | else if (selector == @selector(getAllSources)) |
4076 | return @"getAllSourcs"; | |
5bc1277a JF |
4077 | else if (selector == @selector(getKernelNumber:)) |
4078 | return @"getKernelNumber"; | |
4079 | else if (selector == @selector(getKernelString:)) | |
4080 | return @"getKernelString"; | |
8cc8eb1c JF |
4081 | else if (selector == @selector(getInstalledPackages)) |
4082 | return @"getInstalledPackages"; | |
c31d7cdc JF |
4083 | else if (selector == @selector(getIORegistryEntry::)) |
4084 | return @"getIORegistryEntry"; | |
948db680 JF |
4085 | else if (selector == @selector(getLocaleIdentifier)) |
4086 | return @"getLocaleIdentifier"; | |
4087 | else if (selector == @selector(getPreferredLanguages)) | |
4088 | return @"getPreferredLanguages"; | |
43f3d7f6 JF |
4089 | else if (selector == @selector(getPackageById:)) |
4090 | return @"getPackageById"; | |
37fa9338 JF |
4091 | else if (selector == @selector(getMetadataKeys)) |
4092 | return @"getMetadataKeys"; | |
b3c8e69c JF |
4093 | else if (selector == @selector(getMetadataValue:)) |
4094 | return @"getMetadataValue"; | |
ef974f52 JF |
4095 | else if (selector == @selector(getSessionValue:)) |
4096 | return @"getSessionValue"; | |
77801ff1 JF |
4097 | else if (selector == @selector(installPackages:)) |
4098 | return @"installPackages"; | |
e58ff941 JF |
4099 | else if (selector == @selector(localizedStringForKey:value:table:)) |
4100 | return @"localize"; | |
8d497e2a JF |
4101 | else if (selector == @selector(popViewController:)) |
4102 | return @"popViewController"; | |
b088c0cd JF |
4103 | else if (selector == @selector(refreshSources)) |
4104 | return @"refreshSources"; | |
ed5566c7 JF |
4105 | else if (selector == @selector(removeButton)) |
4106 | return @"removeButton"; | |
33e30380 JF |
4107 | else if (selector == @selector(saveConfig)) |
4108 | return @"saveConfig"; | |
b3c8e69c JF |
4109 | else if (selector == @selector(setMetadataValue::)) |
4110 | return @"setMetadataValue"; | |
ef974f52 JF |
4111 | else if (selector == @selector(setSessionValue::)) |
4112 | return @"setSessionValue"; | |
8a126074 JF |
4113 | else if (selector == @selector(substitutePackageNames:)) |
4114 | return @"substitutePackageNames"; | |
8e3b68d4 JF |
4115 | else if (selector == @selector(scrollToBottom:)) |
4116 | return @"scrollToBottom"; | |
8366df5e JF |
4117 | else if (selector == @selector(setAllowsNavigationAction:)) |
4118 | return @"setAllowsNavigationAction"; | |
c31c825d JF |
4119 | else if (selector == @selector(setBadgeValue:)) |
4120 | return @"setBadgeValue"; | |
43f3d7f6 JF |
4121 | else if (selector == @selector(setButtonImage:withStyle:toFunction:)) |
4122 | return @"setButtonImage"; | |
4123 | else if (selector == @selector(setButtonTitle:withStyle:toFunction:)) | |
4124 | return @"setButtonTitle"; | |
b8a5d89d JF |
4125 | else if (selector == @selector(setHidesBackButton:)) |
4126 | return @"setHidesBackButton"; | |
5cdfcd6f JF |
4127 | else if (selector == @selector(setHidesNavigationBar:)) |
4128 | return @"setHidesNavigationBar"; | |
82406217 JF |
4129 | else if (selector == @selector(setNavigationBarStyle:)) |
4130 | return @"setNavigationBarStyle"; | |
00984204 JF |
4131 | else if (selector == @selector(setNavigationBarTintRed:green:blue:alpha:)) |
4132 | return @"setNavigationBarTintColor"; | |
36a20e14 JF |
4133 | else if (selector == @selector(setPasteboardString:)) |
4134 | return @"setPasteboardString"; | |
4135 | else if (selector == @selector(setPasteboardURL:)) | |
4136 | return @"setPasteboardURL"; | |
db698f42 JF |
4137 | else if (selector == @selector(setScrollAlwaysBounceVertical:)) |
4138 | return @"setScrollAlwaysBounceVertical"; | |
4886cc81 JF |
4139 | else if (selector == @selector(setScrollIndicatorStyle:)) |
4140 | return @"setScrollIndicatorStyle"; | |
ef055c6c JF |
4141 | else if (selector == @selector(setToken:)) |
4142 | return @"setToken"; | |
43f3d7f6 JF |
4143 | else if (selector == @selector(setViewportWidth:)) |
4144 | return @"setViewportWidth"; | |
43f3d7f6 JF |
4145 | else if (selector == @selector(statfs:)) |
4146 | return @"statfs"; | |
e58ff941 JF |
4147 | else if (selector == @selector(supports:)) |
4148 | return @"supports"; | |
7c218781 JF |
4149 | else if (selector == @selector(unload)) |
4150 | return @"unload"; | |
c390d3ab | 4151 | else |
43f3d7f6 JF |
4152 | return nil; |
4153 | } | |
4154 | ||
4155 | + (BOOL) isSelectorExcludedFromWebScript:(SEL)selector { | |
4156 | return [self webScriptNameForSelector:selector] == nil; | |
c390d3ab JF |
4157 | } |
4158 | ||
43f3d7f6 JF |
4159 | - (BOOL) supports:(NSString *)feature { |
4160 | return [feature isEqualToString:@"window.open"]; | |
4161 | } | |
c390d3ab | 4162 | |
7c218781 JF |
4163 | - (void) unload { |
4164 | [delegate_ performSelectorOnMainThread:@selector(unloadData) withObject:nil waitUntilDone:NO]; | |
4165 | } | |
4166 | ||
db698f42 JF |
4167 | - (void) setScrollAlwaysBounceVertical:(NSNumber *)value { |
4168 | [indirect_ performSelectorOnMainThread:@selector(setScrollAlwaysBounceVerticalNumber:) withObject:value waitUntilDone:NO]; | |
4169 | } | |
4170 | ||
4886cc81 JF |
4171 | - (void) setScrollIndicatorStyle:(NSString *)style { |
4172 | [indirect_ performSelectorOnMainThread:@selector(setScrollIndicatorStyleWithName:) withObject:style waitUntilDone:NO]; | |
4173 | } | |
4174 | ||
3f428e4e | 4175 | - (void) addInternalRedirect:(NSString *)from :(NSString *)to { |
a576488f | 4176 | [CydiaWebViewController performSelectorOnMainThread:@selector(addDiversion:) withObject:[[[Diversion alloc] initWithFrom:from to:to] autorelease] waitUntilDone:NO]; |
775deead JF |
4177 | } |
4178 | ||
5bc1277a JF |
4179 | - (NSNumber *) getKernelNumber:(NSString *)name { |
4180 | const char *string([name UTF8String]); | |
4181 | ||
4182 | size_t size; | |
4183 | if (sysctlbyname(string, NULL, &size, NULL, 0) == -1) | |
4184 | return (id) [NSNull null]; | |
4185 | ||
4186 | if (size != sizeof(int)) | |
4187 | return (id) [NSNull null]; | |
4188 | ||
4189 | int value; | |
4190 | if (sysctlbyname(string, &value, &size, NULL, 0) == -1) | |
4191 | return (id) [NSNull null]; | |
4192 | ||
4193 | return [NSNumber numberWithInt:value]; | |
4194 | } | |
4195 | ||
4196 | - (NSString *) getKernelString:(NSString *)name { | |
4197 | const char *string([name UTF8String]); | |
4198 | ||
4199 | size_t size; | |
4200 | if (sysctlbyname(string, NULL, &size, NULL, 0) == -1) | |
4201 | return (id) [NSNull null]; | |
4202 | ||
4203 | char value[size + 1]; | |
4204 | if (sysctlbyname(string, value, &size, NULL, 0) == -1) | |
4205 | return (id) [NSNull null]; | |
4206 | ||
4207 | // XXX: just in case you request something ludicrous | |
4208 | value[size] = '\0'; | |
4209 | ||
4210 | return [NSString stringWithCString:value]; | |
4211 | } | |
4212 | ||
c31d7cdc JF |
4213 | - (NSObject *) getIORegistryEntry:(NSString *)path :(NSString *)entry { |
4214 | NSObject *value(CYIOGetValue([path UTF8String], entry)); | |
4215 | ||
4216 | if (value != nil) | |
4217 | if ([value isKindOfClass:[NSData class]]) | |
4218 | value = CYHex((NSData *) value); | |
4219 | ||
4220 | return value; | |
4221 | } | |
4222 | ||
37fa9338 JF |
4223 | - (NSArray *) getMetadataKeys { |
4224 | @synchronized (Values_) { | |
4225 | return [Values_ allKeys]; | |
4226 | } } | |
4227 | ||
b3c8e69c JF |
4228 | - (id) getMetadataValue:(NSString *)key { |
4229 | @synchronized (Values_) { | |
4230 | return [Values_ objectForKey:key]; | |
4231 | } } | |
4232 | ||
4233 | - (void) setMetadataValue:(NSString *)key :(NSString *)value { | |
4234 | @synchronized (Values_) { | |
33e30380 | 4235 | if (value == nil || value == (id) [WebUndefined undefined] || value == (id) [NSNull null]) |
b3c8e69c JF |
4236 | [Values_ removeObjectForKey:key]; |
4237 | else | |
4238 | [Values_ setObject:value forKey:key]; | |
4239 | ||
4240 | [delegate_ performSelectorOnMainThread:@selector(updateValues) withObject:nil waitUntilDone:YES]; | |
4241 | } } | |
4242 | ||
ef974f52 JF |
4243 | - (id) getSessionValue:(NSString *)key { |
4244 | @synchronized (SessionData_) { | |
4245 | return [SessionData_ objectForKey:key]; | |
4246 | } } | |
4247 | ||
4248 | - (void) setSessionValue:(NSString *)key :(NSString *)value { | |
4249 | @synchronized (SessionData_) { | |
4250 | if (value == (id) [WebUndefined undefined]) | |
4251 | [SessionData_ removeObjectForKey:key]; | |
4252 | else | |
4253 | [SessionData_ setObject:value forKey:key]; | |
4254 | } } | |
4255 | ||
cfc7b442 | 4256 | - (void) addBridgedHost:(NSString *)host { |
48f1762f JF |
4257 | @synchronized (HostConfig_) { |
4258 | [BridgedHosts_ addObject:host]; | |
4259 | } } | |
5df7ecfb | 4260 | |
2e1652a9 JF |
4261 | - (void) addInsecureHost:(NSString *)host { |
4262 | @synchronized (HostConfig_) { | |
4263 | [InsecureHosts_ addObject:host]; | |
4264 | } } | |
4265 | ||
247bedb6 JF |
4266 | - (void) addTokenHost:(NSString *)host { |
4267 | @synchronized (HostConfig_) { | |
4268 | [TokenHosts_ addObject:host]; | |
4269 | } } | |
4270 | ||
e4b48f2f | 4271 | - (void) addPipelinedHost:(NSString *)host scheme:(NSString *)scheme { |
48f1762f | 4272 | @synchronized (HostConfig_) { |
e4b48f2f JF |
4273 | if (scheme != (id) [WebUndefined undefined]) |
4274 | host = [NSString stringWithFormat:@"%@:%@", [scheme lowercaseString], host]; | |
4275 | ||
48f1762f JF |
4276 | [PipelinedHosts_ addObject:host]; |
4277 | } } | |
834c18a4 | 4278 | |
8d497e2a JF |
4279 | - (void) popViewController:(NSNumber *)value { |
4280 | if (value == (id) [WebUndefined undefined]) | |
4281 | value = [NSNumber numberWithBool:YES]; | |
4282 | [indirect_ performSelectorOnMainThread:@selector(popViewControllerWithNumber:) withObject:value waitUntilDone:NO]; | |
4283 | } | |
4284 | ||
33e30380 JF |
4285 | - (void) addSource:(NSString *)href :(NSString *)distribution :(WebScriptObject *)sections { |
4286 | NSMutableArray *array([NSMutableArray arrayWithCapacity:[sections count]]); | |
4287 | ||
4288 | for (NSString *section in sections) | |
4289 | [array addObject:section]; | |
4290 | ||
4291 | [delegate_ performSelectorOnMainThread:@selector(addSource:) withObject:[NSMutableDictionary dictionaryWithObjectsAndKeys: | |
4292 | @"deb", @"Type", | |
4293 | href, @"URI", | |
4294 | distribution, @"Distribution", | |
4295 | array, @"Sections", | |
4296 | nil] waitUntilDone:NO]; | |
4297 | } | |
4298 | ||
b088c0cd | 4299 | - (void) addTrivialSource:(NSString *)href { |
a1d85d42 | 4300 | [delegate_ performSelectorOnMainThread:@selector(addTrivialSource:) withObject:href waitUntilDone:NO]; |
b088c0cd JF |
4301 | } |
4302 | ||
4303 | - (void) refreshSources { | |
4304 | [delegate_ performSelectorOnMainThread:@selector(syncData) withObject:nil waitUntilDone:NO]; | |
4305 | } | |
4306 | ||
33e30380 JF |
4307 | - (void) saveConfig { |
4308 | [delegate_ performSelectorOnMainThread:@selector(_saveConfig) withObject:nil waitUntilDone:NO]; | |
4309 | } | |
4310 | ||
5c32f89e JF |
4311 | - (NSArray *) getAllSources { |
4312 | return [[Database sharedInstance] sources]; | |
4313 | } | |
4314 | ||
8cc8eb1c | 4315 | - (NSArray *) getInstalledPackages { |
26e6829b JF |
4316 | Database *database([Database sharedInstance]); |
4317 | @synchronized (database) { | |
4318 | NSArray *packages([database packages]); | |
f4db946e | 4319 | NSMutableArray *installed([NSMutableArray arrayWithCapacity:1024]); |
77801ff1 | 4320 | for (Package *package in packages) |
26e6829b | 4321 | if (![package uninstalled]) |
8cc8eb1c JF |
4322 | [installed addObject:package]; |
4323 | return installed; | |
26e6829b | 4324 | } } |
8cc8eb1c | 4325 | |
43f3d7f6 | 4326 | - (Package *) getPackageById:(NSString *)id { |
62cab237 JF |
4327 | if (Package *package = [[Database sharedInstance] packageWithName:id]) { |
4328 | [package parse]; | |
4329 | return package; | |
4330 | } else | |
4331 | return (Package *) [NSNull null]; | |
43f3d7f6 JF |
4332 | } |
4333 | ||
948db680 JF |
4334 | - (NSString *) getLocaleIdentifier { |
4335 | return Locale_ == NULL ? (NSString *) [NSNull null] : (NSString *) CFLocaleGetIdentifier(Locale_); | |
4336 | } | |
4337 | ||
4338 | - (NSArray *) getPreferredLanguages { | |
4339 | return Languages_; | |
4340 | } | |
4341 | ||
43f3d7f6 JF |
4342 | - (NSArray *) statfs:(NSString *)path { |
4343 | struct statfs stat; | |
4344 | ||
4345 | if (path == nil || statfs([path UTF8String], &stat) == -1) | |
4346 | return nil; | |
4347 | ||
4348 | return [NSArray arrayWithObjects: | |
4349 | [NSNumber numberWithUnsignedLong:stat.f_bsize], | |
4350 | [NSNumber numberWithUnsignedLong:stat.f_blocks], | |
4351 | [NSNumber numberWithUnsignedLong:stat.f_bfree], | |
4352 | nil]; | |
4353 | } | |
4354 | ||
4355 | - (NSNumber *) du:(NSString *)path { | |
4356 | NSNumber *value(nil); | |
4357 | ||
4358 | int fds[2]; | |
4359 | _assert(pipe(fds) != -1); | |
4360 | ||
4361 | pid_t pid(ExecFork()); | |
4362 | if (pid == 0) { | |
4363 | _assert(dup2(fds[1], 1) != -1); | |
4364 | _assert(close(fds[0]) != -1); | |
4365 | _assert(close(fds[1]) != -1); | |
4366 | /* XXX: this should probably not use du */ | |
4367 | execl("/usr/libexec/cydia/du", "du", "-s", [path UTF8String], NULL); | |
4368 | exit(1); | |
4369 | _assert(false); | |
4370 | } | |
4371 | ||
4372 | _assert(close(fds[1]) != -1); | |
4373 | ||
4374 | if (FILE *du = fdopen(fds[0], "r")) { | |
4375 | char line[1024]; | |
4376 | while (fgets(line, sizeof(line), du) != NULL) { | |
4377 | size_t length(strlen(line)); | |
4378 | while (length != 0 && line[length - 1] == '\n') | |
4379 | line[--length] = '\0'; | |
4380 | if (char *tab = strchr(line, '\t')) { | |
4381 | *tab = '\0'; | |
4382 | value = [NSNumber numberWithUnsignedLong:strtoul(line, NULL, 0)]; | |
4383 | } | |
4384 | } | |
4385 | ||
4386 | fclose(du); | |
4387 | } else _assert(close(fds[0])); | |
4388 | ||
d99e3659 | 4389 | ReapZombie(pid); |
43f3d7f6 JF |
4390 | |
4391 | return value; | |
4392 | } | |
4393 | ||
4394 | - (void) close { | |
e6417cea | 4395 | [indirect_ performSelectorOnMainThread:@selector(close) withObject:nil waitUntilDone:NO]; |
43f3d7f6 JF |
4396 | } |
4397 | ||
77801ff1 JF |
4398 | - (void) installPackages:(NSArray *)packages { |
4399 | [delegate_ performSelectorOnMainThread:@selector(installPackages:) withObject:packages waitUntilDone:NO]; | |
4400 | } | |
4401 | ||
8a126074 JF |
4402 | - (NSString *) substitutePackageNames:(NSString *)message { |
4403 | NSMutableArray *words([[message componentsSeparatedByString:@" "] mutableCopy]); | |
4404 | for (size_t i(0), e([words count]); i != e; ++i) { | |
4405 | NSString *word([words objectAtIndex:i]); | |
4406 | if (Package *package = [[Database sharedInstance] packageWithName:word]) | |
4407 | [words replaceObjectAtIndex:i withObject:[package name]]; | |
4408 | } | |
4409 | ||
4410 | return [words componentsJoinedByString:@" "]; | |
4411 | } | |
4412 | ||
ed5566c7 JF |
4413 | - (void) removeButton { |
4414 | [indirect_ removeButton]; | |
4415 | } | |
4416 | ||
43f3d7f6 JF |
4417 | - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function { |
4418 | [indirect_ setButtonImage:button withStyle:style toFunction:function]; | |
4419 | } | |
4420 | ||
4421 | - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function { | |
4422 | [indirect_ setButtonTitle:button withStyle:style toFunction:function]; | |
4423 | } | |
4424 | ||
c31c825d JF |
4425 | - (void) setBadgeValue:(id)value { |
4426 | [indirect_ performSelectorOnMainThread:@selector(setBadgeValue:) withObject:value waitUntilDone:NO]; | |
4427 | } | |
4428 | ||
8366df5e JF |
4429 | - (void) setAllowsNavigationAction:(NSString *)value { |
4430 | [indirect_ performSelectorOnMainThread:@selector(setAllowsNavigationActionByNumber:) withObject:value waitUntilDone:NO]; | |
4431 | } | |
4432 | ||
b8a5d89d JF |
4433 | - (void) setHidesBackButton:(NSString *)value { |
4434 | [indirect_ performSelectorOnMainThread:@selector(setHidesBackButtonByNumber:) withObject:value waitUntilDone:NO]; | |
4435 | } | |
4436 | ||
5cdfcd6f JF |
4437 | - (void) setHidesNavigationBar:(NSString *)value { |
4438 | [indirect_ performSelectorOnMainThread:@selector(setHidesNavigationBarByNumber:) withObject:value waitUntilDone:NO]; | |
4439 | } | |
4440 | ||
82406217 JF |
4441 | - (void) setNavigationBarStyle:(NSString *)value { |
4442 | [indirect_ performSelectorOnMainThread:@selector(setNavigationBarStyle:) withObject:value waitUntilDone:NO]; | |
4443 | } | |
4444 | ||
00984204 JF |
4445 | - (void) setNavigationBarTintRed:(NSNumber *)red green:(NSNumber *)green blue:(NSNumber *)blue alpha:(NSNumber *)alpha { |
4446 | float opacity(alpha == (id) [WebUndefined undefined] ? 1 : [alpha floatValue]); | |
4447 | UIColor *color([UIColor colorWithRed:[red floatValue] green:[green floatValue] blue:[blue floatValue] alpha:opacity]); | |
4448 | [indirect_ performSelectorOnMainThread:@selector(setNavigationBarTintColor:) withObject:color waitUntilDone:NO]; | |
4449 | } | |
4450 | ||
36a20e14 JF |
4451 | - (void) setPasteboardString:(NSString *)value { |
4452 | [[objc_getClass("UIPasteboard") generalPasteboard] setString:value]; | |
4453 | } | |
4454 | ||
4455 | - (void) setPasteboardURL:(NSString *)value { | |
4456 | [[objc_getClass("UIPasteboard") generalPasteboard] setURL:[NSURL URLWithString:value]]; | |
4457 | } | |
4458 | ||
673a6e1a | 4459 | - (void) _setToken:(NSString *)token { |
9737d93e JF |
4460 | Token_ = token; |
4461 | ||
4462 | if (token == nil) | |
4463 | [Metadata_ removeObjectForKey:@"Token"]; | |
4464 | else | |
4465 | [Metadata_ setObject:Token_ forKey:@"Token"]; | |
ef055c6c | 4466 | |
ef055c6c JF |
4467 | Changed_ = true; |
4468 | } | |
4469 | ||
673a6e1a JF |
4470 | - (void) setToken:(NSString *)token { |
4471 | [self performSelectorOnMainThread:@selector(_setToken:) withObject:token waitUntilDone:NO]; | |
4472 | } | |
4473 | ||
8e3b68d4 JF |
4474 | - (void) scrollToBottom:(NSNumber *)animated { |
4475 | [indirect_ performSelectorOnMainThread:@selector(scrollToBottomAnimated:) withObject:animated waitUntilDone:NO]; | |
4476 | } | |
4477 | ||
43f3d7f6 | 4478 | - (void) setViewportWidth:(float)width { |
8dbdaafa | 4479 | [indirect_ setViewportWidthOnMainThread:width]; |
43f3d7f6 JF |
4480 | } |
4481 | ||
4482 | - (NSString *) stringWithFormat:(NSString *)format arguments:(WebScriptObject *)arguments { | |
4483 | //NSLog(@"SWF:\"%@\" A:%@", format, [arguments description]); | |
4484 | unsigned count([arguments count]); | |
4485 | id values[count]; | |
4486 | for (unsigned i(0); i != count; ++i) | |
4487 | values[i] = [arguments objectAtIndex:i]; | |
673e8fa3 | 4488 | return [[[NSString alloc] initWithFormat:format arguments:reinterpret_cast<va_list>(values)] autorelease]; |
43f3d7f6 JF |
4489 | } |
4490 | ||
4491 | - (NSString *) localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table { | |
a95e0405 JF |
4492 | if (reinterpret_cast<id>(value) == [WebUndefined undefined]) |
4493 | value = nil; | |
43f3d7f6 JF |
4494 | if (reinterpret_cast<id>(table) == [WebUndefined undefined]) |
4495 | table = nil; | |
4496 | return [[NSBundle mainBundle] localizedStringForKey:key value:value table:table]; | |
c390d3ab JF |
4497 | } |
4498 | ||
4499 | @end | |
4500 | /* }}} */ | |
f79a4512 | 4501 | |
2e1652a9 JF |
4502 | @interface NSURL (CydiaSecure) |
4503 | @end | |
4504 | ||
4505 | @implementation NSURL (CydiaSecure) | |
4506 | ||
4507 | - (bool) isCydiaSecure { | |
4508 | if ([[[self scheme] lowercaseString] isEqualToString:@"https"]) | |
4509 | return true; | |
4510 | ||
4511 | @synchronized (HostConfig_) { | |
4512 | if ([InsecureHosts_ containsObject:[self host]]) | |
4513 | return true; | |
4514 | } | |
4515 | ||
4516 | return false; | |
4517 | } | |
4518 | ||
4519 | @end | |
dd5f8161 | 4520 | |
80319240 | 4521 | /* Cydia Browser Controller {{{ */ |
a576488f | 4522 | @implementation CydiaWebViewController |
43f3d7f6 | 4523 | |
fe8e721f | 4524 | - (NSURL *) navigationURL { |
d323285e | 4525 | return request_ == nil ? nil : [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]]; |
fe8e721f GP |
4526 | } |
4527 | ||
3f9ab807 JF |
4528 | + (void) _initialize { |
4529 | [super _initialize]; | |
4530 | ||
7b33d201 | 4531 | Diversions_ = [NSMutableSet setWithCapacity:0]; |
775deead JF |
4532 | } |
4533 | ||
4534 | + (void) addDiversion:(Diversion *)diversion { | |
4535 | [Diversions_ addObject:diversion]; | |
4536 | } | |
4537 | ||
2634b249 JF |
4538 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
4539 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
01d93940 JF |
4540 | |
4541 | WebDataSource *source([frame dataSource]); | |
4542 | NSURLResponse *response([source response]); | |
4543 | NSURL *url([response URL]); | |
b8f1a18a JF |
4544 | NSString *scheme([[url scheme] lowercaseString]); |
4545 | ||
4546 | bool bridged(false); | |
8804004f | 4547 | |
48f1762f | 4548 | @synchronized (HostConfig_) { |
b8f1a18a JF |
4549 | if ([scheme isEqualToString:@"file"]) |
4550 | bridged = true; | |
4551 | else if ([scheme isEqualToString:@"https"]) | |
48f1762f | 4552 | if ([BridgedHosts_ containsObject:[url host]]) |
b8f1a18a | 4553 | bridged = true; |
48f1762f | 4554 | } |
b8f1a18a JF |
4555 | |
4556 | if (bridged) | |
4557 | [window setValue:cydia_ forKey:@"cydia"]; | |
43f3d7f6 JF |
4558 | } |
4559 | ||
22485d93 JF |
4560 | - (void) _setupMail:(MFMailComposeViewController *)controller { |
4561 | [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/cydia.log"] mimeType:@"text/plain" fileName:@"cydia.log"]; | |
4562 | ||
4563 | system("/usr/bin/dpkg -l >/tmp/dpkgl.log"); | |
4564 | [controller addAttachmentData:[NSData dataWithContentsOfFile:@"/tmp/dpkgl.log"] mimeType:@"text/plain" fileName:@"dpkgl.log"]; | |
4565 | } | |
4566 | ||
f9b36dae JF |
4567 | - (NSURL *) URLWithURL:(NSURL *)url { |
4568 | return [Diversion divertURL:url]; | |
4569 | } | |
4570 | ||
9d1bf666 | 4571 | - (NSURLRequest *) webView:(WebView *)view resource:(id)resource willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source { |
247bedb6 JF |
4572 | NSURL *url([request URL]); |
4573 | NSString *host([url host]); | |
4574 | ||
9d1bf666 JF |
4575 | NSMutableURLRequest *copy([[super webView:view resource:resource willSendRequest:request redirectResponse:response fromDataSource:source] mutableCopy]); |
4576 | ||
e967efd5 JF |
4577 | if ([copy valueForHTTPHeaderField:@"X-Cydia-Cf-Version"] == nil) |
4578 | [copy setValue:[NSString stringWithFormat:@"%.2f", kCFCoreFoundationVersionNumber] forHTTPHeaderField:@"X-Cydia-Cf-Version"]; | |
1baae086 | 4579 | if (Machine_ != NULL && [copy valueForHTTPHeaderField:@"X-Machine"] == nil) |
9d1bf666 | 4580 | [copy setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"]; |
247bedb6 | 4581 | |
e7817a6b | 4582 | bool bridged; |
247bedb6 | 4583 | bool token; |
e7817a6b | 4584 | |
247bedb6 | 4585 | @synchronized (HostConfig_) { |
e7817a6b JF |
4586 | bridged = [BridgedHosts_ containsObject:host]; |
4587 | token = [TokenHosts_ containsObject:host]; | |
247bedb6 JF |
4588 | } |
4589 | ||
e7817a6b JF |
4590 | if ([url isCydiaSecure]) { |
4591 | if (bridged) { | |
4592 | if (UniqueID_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Id"] == nil) | |
4593 | [copy setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"]; | |
4594 | } else if (token) { | |
4595 | if (Token_ != nil && [copy valueForHTTPHeaderField:@"X-Cydia-Token"] == nil) | |
4596 | [copy setValue:Token_ forHTTPHeaderField:@"X-Cydia-Token"]; | |
4597 | } | |
247bedb6 | 4598 | } |
43f3d7f6 JF |
4599 | |
4600 | return copy; | |
a9a0661e JF |
4601 | } |
4602 | ||
77801ff1 JF |
4603 | - (void) setDelegate:(id)delegate { |
4604 | [super setDelegate:delegate]; | |
4605 | [cydia_ setDelegate:delegate]; | |
4606 | } | |
4607 | ||
c6cf66c7 | 4608 | - (NSString *) applicationNameForUserAgent { |
e967efd5 | 4609 | return UserAgent_; |
c6cf66c7 | 4610 | } |
43f3d7f6 | 4611 | |
c6cf66c7 JF |
4612 | - (id) init { |
4613 | if ((self = [super initWithWidth:0 ofClass:[CydiaWebViewController class]]) != nil) { | |
4614 | cydia_ = [[[CydiaObject alloc] initWithDelegate:indirect_] autorelease]; | |
43f3d7f6 JF |
4615 | } return self; |
4616 | } | |
4617 | ||
29bb09d7 JF |
4618 | @end |
4619 | ||
4620 | @interface AppCacheController : CydiaWebViewController { | |
4621 | } | |
4622 | ||
4623 | @end | |
4624 | ||
4625 | @implementation AppCacheController | |
4626 | ||
4627 | - (void) didReceiveMemoryWarning { | |
4628 | } | |
4629 | ||
43f3d7f6 | 4630 | @end |
80319240 | 4631 | /* }}} */ |
43f3d7f6 | 4632 | |
b1ca831d JF |
4633 | // CydiaScript {{{ |
4634 | @interface NSObject (CydiaScript) | |
4635 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context; | |
4636 | @end | |
4637 | ||
4638 | @implementation NSObject (CydiaScript) | |
4639 | ||
4640 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
4641 | return self; | |
4642 | } | |
4643 | ||
4644 | @end | |
4645 | ||
4646 | @implementation NSArray (CydiaScript) | |
4647 | ||
4648 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
4649 | WebScriptObject *object([context evaluateWebScript:@"[]"]); | |
4650 | for (size_t i(0), e([self count]); i != e; ++i) | |
4651 | [object setWebScriptValueAtIndex:i value:[[self objectAtIndex:i] Cydia$webScriptObjectInContext:context]]; | |
4652 | return object; | |
4653 | } | |
4654 | ||
4655 | @end | |
4656 | ||
4657 | @implementation NSDictionary (CydiaScript) | |
4658 | ||
4659 | - (id) Cydia$webScriptObjectInContext:(WebScriptObject *)context { | |
4660 | WebScriptObject *object([context evaluateWebScript:@"({})"]); | |
4661 | for (id i in self) | |
4662 | [object setValue:[[self objectForKey:i] Cydia$webScriptObjectInContext:context] forKey:i]; | |
4663 | return object; | |
4664 | } | |
4665 | ||
4666 | @end | |
4667 | // }}} | |
4668 | ||
5829aea2 GP |
4669 | /* Confirmation Controller {{{ */ |
4670 | bool DepSubstrate(const pkgCache::VerIterator &iterator) { | |
4671 | if (!iterator.end()) | |
4672 | for (pkgCache::DepIterator dep(iterator.DependsList()); !dep.end(); ++dep) { | |
4673 | if (dep->Type != pkgCache::Dep::Depends && dep->Type != pkgCache::Dep::PreDepends) | |
4674 | continue; | |
4675 | pkgCache::PkgIterator package(dep.TargetPkg()); | |
4676 | if (package.end()) | |
4677 | continue; | |
4678 | if (strcmp(package.Name(), "mobilesubstrate") == 0) | |
4679 | return true; | |
4680 | } | |
4681 | ||
4682 | return false; | |
4683 | } | |
4684 | ||
adb61bda | 4685 | @protocol ConfirmationControllerDelegate |
674dce72 | 4686 | - (void) cancelAndClear:(bool)clear; |
b5e7eebb | 4687 | - (void) confirmWithNavigationController:(UINavigationController *)navigation; |
dc63e78f | 4688 | - (void) queue; |
36bb2ca2 | 4689 | @end |
2367a917 | 4690 | |
a576488f | 4691 | @interface ConfirmationController : CydiaWebViewController { |
770f2a8e | 4692 | _transient Database *database_; |
6ceb0959 | 4693 | |
7b33d201 | 4694 | _H<UIAlertView> essential_; |
6ceb0959 | 4695 | |
7b33d201 JF |
4696 | _H<NSDictionary> changes_; |
4697 | _H<NSMutableArray> issues_; | |
4698 | _H<NSDictionary> sizes_; | |
6ceb0959 | 4699 | |
a9a0661e | 4700 | BOOL substrate_; |
36bb2ca2 | 4701 | } |
dc5812ec | 4702 | |
b5e7eebb | 4703 | - (id) initWithDatabase:(Database *)database; |
b4d89997 | 4704 | |
dc5812ec JF |
4705 | @end |
4706 | ||
adb61bda | 4707 | @implementation ConfirmationController |
dc5812ec | 4708 | |
ab2cfc1e JF |
4709 | - (void) complete { |
4710 | if (substrate_) | |
be860cc8 | 4711 | RestartSubstrate_ = true; |
ab2cfc1e JF |
4712 | [delegate_ confirmWithNavigationController:[self navigationController]]; |
4713 | } | |
4714 | ||
b5e7eebb | 4715 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
3272e699 | 4716 | NSString *context([alert context]); |
9bedffaa | 4717 | |
1cedb821 | 4718 | if ([context isEqualToString:@"remove"]) { |
ab2cfc1e | 4719 | if (button == [alert cancelButtonIndex]) |
b5e7eebb | 4720 | [self dismissModalViewControllerAnimated:YES]; |
ab2cfc1e JF |
4721 | else if (button == [alert firstOtherButtonIndex]) { |
4722 | [self complete]; | |
9bedffaa | 4723 | } |
9bedffaa | 4724 | |
3272e699 | 4725 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 4726 | } else if ([context isEqualToString:@"unable"]) { |
b5e7eebb | 4727 | [self dismissModalViewControllerAnimated:YES]; |
3272e699 GP |
4728 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
4729 | } else { | |
b5e7eebb GP |
4730 | [super alertView:alert clickedButtonAtIndex:button]; |
4731 | } | |
36bb2ca2 JF |
4732 | } |
4733 | ||
46c46f4f | 4734 | - (void) _doContinue { |
21ea11a4 | 4735 | [delegate_ cancelAndClear:NO]; |
12d3d98d | 4736 | [self dismissModalViewControllerAnimated:YES]; |
46c46f4f | 4737 | } |
bc11cf5b | 4738 | |
46c46f4f JF |
4739 | - (id) invokeDefaultMethodWithArguments:(NSArray *)args { |
4740 | [self performSelectorOnMainThread:@selector(_doContinue) withObject:nil waitUntilDone:NO]; | |
21ea11a4 GP |
4741 | return nil; |
4742 | } | |
4743 | ||
2634b249 JF |
4744 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
4745 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
6ceb0959 | 4746 | |
781001d7 | 4747 | [window setValue:[[NSDictionary dictionaryWithObjectsAndKeys: |
7b33d201 JF |
4748 | (id) changes_, @"changes", |
4749 | (id) issues_, @"issues", | |
4750 | (id) sizes_, @"sizes", | |
781001d7 JF |
4751 | self, @"queue", |
4752 | nil] Cydia$webScriptObjectInContext:window] forKey:@"cydiaConfirm"]; | |
36bb2ca2 JF |
4753 | } |
4754 | ||
b5e7eebb GP |
4755 | - (id) initWithDatabase:(Database *)database { |
4756 | if ((self = [super init]) != nil) { | |
770f2a8e JF |
4757 | database_ = database; |
4758 | ||
6ceb0959 JF |
4759 | NSMutableArray *installs([NSMutableArray arrayWithCapacity:16]); |
4760 | NSMutableArray *reinstalls([NSMutableArray arrayWithCapacity:16]); | |
4761 | NSMutableArray *upgrades([NSMutableArray arrayWithCapacity:16]); | |
4762 | NSMutableArray *downgrades([NSMutableArray arrayWithCapacity:16]); | |
4763 | NSMutableArray *removes([NSMutableArray arrayWithCapacity:16]); | |
dc5812ec | 4764 | |
36bb2ca2 | 4765 | bool remove(false); |
dc5812ec | 4766 | |
6ceb0959 JF |
4767 | pkgCacheFile &cache([database_ cache]); |
4768 | NSArray *packages([database_ packages]); | |
a9a0661e JF |
4769 | pkgDepCache::Policy *policy([database_ policy]); |
4770 | ||
7b33d201 | 4771 | issues_ = [NSMutableArray arrayWithCapacity:4]; |
6ceb0959 | 4772 | |
c4dcf2c2 | 4773 | for (Package *package in packages) { |
6ceb0959 JF |
4774 | pkgCache::PkgIterator iterator([package iterator]); |
4775 | NSString *name([package id]); | |
4776 | ||
4777 | if ([package broken]) { | |
4778 | NSMutableArray *reasons([NSMutableArray arrayWithCapacity:4]); | |
4779 | ||
4780 | [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
4781 | name, @"package", | |
4782 | reasons, @"reasons", | |
4783 | nil]]; | |
4784 | ||
4785 | pkgCache::VerIterator ver(cache[iterator].InstVerIter(cache)); | |
4786 | if (ver.end()) | |
4787 | continue; | |
4788 | ||
4789 | for (pkgCache::DepIterator dep(ver.DependsList()); !dep.end(); ) { | |
4790 | pkgCache::DepIterator start; | |
4791 | pkgCache::DepIterator end; | |
4792 | dep.GlobOr(start, end); // ++dep | |
4793 | ||
4794 | if (!cache->IsImportantDep(end)) | |
4795 | continue; | |
4796 | if ((cache[end] & pkgDepCache::DepGInstall) != 0) | |
4797 | continue; | |
4798 | ||
810c9763 JF |
4799 | NSMutableArray *clauses([NSMutableArray arrayWithCapacity:4]); |
4800 | ||
4801 | [reasons addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
4802 | [NSString stringWithUTF8String:start.DepType()], @"relationship", | |
4803 | clauses, @"clauses", | |
4804 | nil]]; | |
4805 | ||
6ceb0959 JF |
4806 | _forever { |
4807 | NSString *reason, *installed((NSString *) [WebUndefined undefined]); | |
4808 | ||
4809 | pkgCache::PkgIterator target(start.TargetPkg()); | |
4810 | if (target->ProvidesList != 0) | |
4811 | reason = @"missing"; | |
4812 | else { | |
4813 | pkgCache::VerIterator ver(cache[target].InstVerIter(cache)); | |
4814 | if (!ver.end()) { | |
4815 | reason = @"installed"; | |
4816 | installed = [NSString stringWithUTF8String:ver.VerStr()]; | |
4817 | } else if (!cache[target].CandidateVerIter(cache).end()) | |
4818 | reason = @"uninstalled"; | |
4819 | else if (target->ProvidesList == 0) | |
4820 | reason = @"uninstallable"; | |
4821 | else | |
4822 | reason = @"virtual"; | |
4823 | } | |
4824 | ||
4825 | NSDictionary *version(start.TargetVer() == 0 ? [NSNull null] : [NSDictionary dictionaryWithObjectsAndKeys: | |
4826 | [NSString stringWithUTF8String:start.CompType()], @"operator", | |
4827 | [NSString stringWithUTF8String:start.TargetVer()], @"value", | |
4828 | nil]); | |
4829 | ||
810c9763 | 4830 | [clauses addObject:[NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
4831 | [NSString stringWithUTF8String:start.TargetPkg().Name()], @"package", |
4832 | version, @"version", | |
4833 | reason, @"reason", | |
4834 | installed, @"installed", | |
4835 | nil]]; | |
4836 | ||
4837 | // yes, seriously. (wtf?) | |
4838 | if (start == end) | |
4839 | break; | |
4840 | ++start; | |
4841 | } | |
4842 | } | |
4843 | } | |
4844 | ||
36bb2ca2 | 4845 | pkgDepCache::StateCache &state(cache[iterator]); |
dc5812ec | 4846 | |
6ceb0959 | 4847 | static Pcre special_r("^(firmware$|gsc\\.|cy\\+)"); |
2388b078 | 4848 | |
36bb2ca2 | 4849 | if (state.NewInstall()) |
6ceb0959 | 4850 | [installs addObject:name]; |
f8d15be2 | 4851 | // XXX: else if (state.Install()) |
36bb2ca2 | 4852 | else if (!state.Delete() && (state.iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall) |
6ceb0959 | 4853 | [reinstalls addObject:name]; |
f8d15be2 | 4854 | // XXX: move before previous if |
36bb2ca2 | 4855 | else if (state.Upgrade()) |
6ceb0959 | 4856 | [upgrades addObject:name]; |
36bb2ca2 | 4857 | else if (state.Downgrade()) |
6ceb0959 JF |
4858 | [downgrades addObject:name]; |
4859 | else if (!state.Delete()) | |
f8d15be2 | 4860 | // XXX: _assert(state.Keep()); |
6ceb0959 | 4861 | continue; |
1916f316 JF |
4862 | else if (special_r(name)) |
4863 | [issues_ addObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
4864 | [NSNull null], @"package", | |
4865 | [NSArray arrayWithObjects: | |
4866 | [NSDictionary dictionaryWithObjectsAndKeys: | |
810c9763 JF |
4867 | @"Conflicts", @"relationship", |
4868 | [NSArray arrayWithObjects: | |
4869 | [NSDictionary dictionaryWithObjectsAndKeys: | |
4870 | name, @"package", | |
4871 | [NSNull null], @"version", | |
4872 | @"installed", @"reason", | |
4873 | nil], | |
4874 | nil], @"clauses", | |
1916f316 JF |
4875 | nil], |
4876 | nil], @"reasons", | |
4877 | nil]]; | |
4878 | else { | |
2388b078 | 4879 | if ([package essential]) |
36bb2ca2 | 4880 | remove = true; |
6ceb0959 JF |
4881 | [removes addObject:name]; |
4882 | } | |
a9a0661e JF |
4883 | |
4884 | substrate_ |= DepSubstrate(policy->GetCandidateVer(iterator)); | |
4885 | substrate_ |= DepSubstrate(iterator.CurrentVer()); | |
36bb2ca2 | 4886 | } |
ec97ef06 | 4887 | |
36bb2ca2 JF |
4888 | if (!remove) |
4889 | essential_ = nil; | |
d791dce4 | 4890 | else if (Advanced_) { |
43f3d7f6 | 4891 | NSString *parenthetical(UCLocalize("PARENTHETICAL")); |
f79a4512 | 4892 | |
7b33d201 | 4893 | essential_ = [[[UIAlertView alloc] |
43f3d7f6 | 4894 | initWithTitle:UCLocalize("REMOVING_ESSENTIALS") |
b5e7eebb GP |
4895 | message:UCLocalize("REMOVING_ESSENTIALS_EX") |
4896 | delegate:self | |
4897 | cancelButtonTitle:[NSString stringWithFormat:parenthetical, UCLocalize("CANCEL_OPERATION"), UCLocalize("SAFE")] | |
1aa29546 JF |
4898 | otherButtonTitles: |
4899 | [NSString stringWithFormat:parenthetical, UCLocalize("FORCE_REMOVAL"), UCLocalize("UNSAFE")], | |
4900 | nil | |
7b33d201 | 4901 | ] autorelease]; |
04fe1349 | 4902 | |
3272e699 | 4903 | [essential_ setContext:@"remove"]; |
9bedffaa | 4904 | } else { |
7b33d201 | 4905 | essential_ = [[[UIAlertView alloc] |
43f3d7f6 | 4906 | initWithTitle:UCLocalize("UNABLE_TO_COMPLY") |
b5e7eebb GP |
4907 | message:UCLocalize("UNABLE_TO_COMPLY_EX") |
4908 | delegate:self | |
4909 | cancelButtonTitle:UCLocalize("OKAY") | |
4910 | otherButtonTitles:nil | |
7b33d201 | 4911 | ] autorelease]; |
ec97ef06 | 4912 | |
b5e7eebb | 4913 | [essential_ setContext:@"unable"]; |
36bb2ca2 | 4914 | } |
ec97ef06 | 4915 | |
7b33d201 | 4916 | changes_ = [NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
4917 | installs, @"installs", |
4918 | reinstalls, @"reinstalls", | |
4919 | upgrades, @"upgrades", | |
4920 | downgrades, @"downgrades", | |
4921 | removes, @"removes", | |
affeffc7 | 4922 | nil]; |
dc5812ec | 4923 | |
7b33d201 | 4924 | sizes_ = [NSDictionary dictionaryWithObjectsAndKeys: |
6ceb0959 JF |
4925 | [NSNumber numberWithInteger:[database_ fetcher].FetchNeeded()], @"downloading", |
4926 | [NSNumber numberWithInteger:[database_ fetcher].PartialPresent()], @"resuming", | |
affeffc7 | 4927 | nil]; |
dc5812ec | 4928 | |
90351d93 | 4929 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/confirm/", UI_]]]; |
36bb2ca2 | 4930 | } return self; |
b4d89997 | 4931 | } |
8da60fb7 | 4932 | |
e6124cb6 JF |
4933 | - (UIBarButtonItem *) leftButton { |
4934 | return [[[UIBarButtonItem alloc] | |
4935 | initWithTitle:UCLocalize("CANCEL") | |
4936 | style:UIBarButtonItemStylePlain | |
4937 | target:self | |
4938 | action:@selector(cancelButtonClicked) | |
4939 | ] autorelease]; | |
4940 | } | |
4941 | ||
614cd4f1 | 4942 | #if !AlwaysReload |
bcde1e70 | 4943 | - (void) applyRightButton { |
6ceb0959 | 4944 | if ([issues_ count] == 0 && ![self isLoading]) |
dd9de556 JF |
4945 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] |
4946 | initWithTitle:UCLocalize("CONFIRM") | |
2761d574 | 4947 | style:UIBarButtonItemStyleDone |
dd9de556 JF |
4948 | target:self |
4949 | action:@selector(confirmButtonClicked) | |
4950 | ] autorelease]]; | |
4951 | else | |
bcde1e70 | 4952 | [[self navigationItem] setRightBarButtonItem:nil]; |
affeffc7 | 4953 | } |
bcde1e70 | 4954 | #endif |
affeffc7 | 4955 | |
b5e7eebb | 4956 | - (void) cancelButtonClicked { |
21ea11a4 GP |
4957 | [self dismissModalViewControllerAnimated:YES]; |
4958 | [delegate_ cancelAndClear:YES]; | |
affeffc7 JF |
4959 | } |
4960 | ||
9487f027 | 4961 | #if !AlwaysReload |
b5e7eebb | 4962 | - (void) confirmButtonClicked { |
affeffc7 | 4963 | if (essential_ != nil) |
b5e7eebb | 4964 | [essential_ show]; |
ab2cfc1e JF |
4965 | else |
4966 | [self complete]; | |
affeffc7 | 4967 | } |
9487f027 | 4968 | #endif |
affeffc7 | 4969 | |
36bb2ca2 JF |
4970 | @end |
4971 | /* }}} */ | |
8da60fb7 | 4972 | |
aaae308d JF |
4973 | /* Progress Data {{{ */ |
4974 | @interface CydiaProgressData : NSObject { | |
4975 | _transient id delegate_; | |
4976 | ||
4977 | bool running_; | |
b0b11d99 | 4978 | float percent_; |
aaae308d | 4979 | |
bcbac8f7 JF |
4980 | float current_; |
4981 | float total_; | |
4982 | float speed_; | |
4983 | ||
aaae308d JF |
4984 | _H<NSMutableArray> events_; |
4985 | _H<NSString> title_; | |
4986 | ||
4987 | _H<NSString> status_; | |
4988 | _H<NSString> finish_; | |
4989 | } | |
4990 | ||
4991 | @end | |
4992 | ||
4993 | @implementation CydiaProgressData | |
4994 | ||
4995 | + (NSArray *) _attributeKeys { | |
4996 | return [NSArray arrayWithObjects: | |
bcbac8f7 | 4997 | @"current", |
aaae308d JF |
4998 | @"events", |
4999 | @"finish", | |
b0b11d99 | 5000 | @"percent", |
aaae308d | 5001 | @"running", |
bcbac8f7 | 5002 | @"speed", |
aaae308d | 5003 | @"title", |
bcbac8f7 | 5004 | @"total", |
aaae308d JF |
5005 | nil]; |
5006 | } | |
5007 | ||
5008 | - (NSArray *) attributeKeys { | |
5009 | return [[self class] _attributeKeys]; | |
5010 | } | |
5011 | ||
5012 | + (BOOL) isKeyExcludedFromWebScript:(const char *)name { | |
5013 | return ![[self _attributeKeys] containsObject:[NSString stringWithUTF8String:name]] && [super isKeyExcludedFromWebScript:name]; | |
5014 | } | |
5015 | ||
5016 | - (id) init { | |
5017 | if ((self = [super init]) != nil) { | |
5018 | events_ = [NSMutableArray arrayWithCapacity:32]; | |
5019 | } return self; | |
5020 | } | |
5021 | ||
5022 | - (void) setDelegate:(id)delegate { | |
5023 | delegate_ = delegate; | |
5024 | } | |
5025 | ||
b0b11d99 JF |
5026 | - (void) setPercent:(float)value { |
5027 | percent_ = value; | |
aaae308d JF |
5028 | } |
5029 | ||
b0b11d99 JF |
5030 | - (NSNumber *) percent { |
5031 | return [NSNumber numberWithFloat:percent_]; | |
aaae308d JF |
5032 | } |
5033 | ||
bcbac8f7 JF |
5034 | - (void) setCurrent:(float)value { |
5035 | current_ = value; | |
5036 | } | |
5037 | ||
5038 | - (NSNumber *) current { | |
5039 | return [NSNumber numberWithFloat:current_]; | |
5040 | } | |
5041 | ||
5042 | - (void) setTotal:(float)value { | |
5043 | total_ = value; | |
5044 | } | |
5045 | ||
5046 | - (NSNumber *) total { | |
5047 | return [NSNumber numberWithFloat:total_]; | |
5048 | } | |
5049 | ||
5050 | - (void) setSpeed:(float)value { | |
5051 | speed_ = value; | |
5052 | } | |
5053 | ||
5054 | - (NSNumber *) speed { | |
5055 | return [NSNumber numberWithFloat:speed_]; | |
5056 | } | |
5057 | ||
aaae308d JF |
5058 | - (NSArray *) events { |
5059 | return events_; | |
5060 | } | |
5061 | ||
5062 | - (void) removeAllEvents { | |
5063 | [events_ removeAllObjects]; | |
5064 | } | |
5065 | ||
5066 | - (void) addEvent:(CydiaProgressEvent *)event { | |
5067 | [events_ addObject:event]; | |
5068 | } | |
5069 | ||
5070 | - (void) setTitle:(NSString *)text { | |
5071 | title_ = text; | |
5072 | } | |
5073 | ||
5074 | - (NSString *) title { | |
5075 | return title_; | |
5076 | } | |
5077 | ||
5078 | - (void) setFinish:(NSString *)text { | |
5079 | finish_ = text; | |
5080 | } | |
5081 | ||
5082 | - (NSString *) finish { | |
5083 | return (id) finish_ ?: [NSNull null]; | |
5084 | } | |
5085 | ||
5086 | - (void) setRunning:(bool)running { | |
5087 | running_ = running; | |
5088 | } | |
5089 | ||
5090 | - (NSNumber *) running { | |
5091 | return running_ ? (NSNumber *) kCFBooleanTrue : (NSNumber *) kCFBooleanFalse; | |
5092 | } | |
5093 | ||
5094 | @end | |
5095 | /* }}} */ | |
adb61bda | 5096 | /* Progress Controller {{{ */ |
a576488f | 5097 | @interface ProgressController : CydiaWebViewController < |
36bb2ca2 JF |
5098 | ProgressDelegate |
5099 | > { | |
8b29f8e6 | 5100 | _transient Database *database_; |
bf7c998c | 5101 | _H<CydiaProgressData, 1> progress_; |
aaae308d | 5102 | unsigned cancel_; |
2367a917 JF |
5103 | } |
5104 | ||
b5e7eebb | 5105 | - (id) initWithDatabase:(Database *)database delegate:(id)delegate; |
2367a917 | 5106 | |
6915b806 | 5107 | - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title; |
2367a917 | 5108 | |
6915b806 | 5109 | - (void) setTitle:(NSString *)title; |
aaae308d | 5110 | - (void) setCancellable:(bool)cancellable; |
bd150f54 | 5111 | |
36bb2ca2 JF |
5112 | @end |
5113 | ||
adb61bda | 5114 | @implementation ProgressController |
2367a917 JF |
5115 | |
5116 | - (void) dealloc { | |
6915b806 | 5117 | [database_ setProgressDelegate:nil]; |
2367a917 JF |
5118 | [super dealloc]; |
5119 | } | |
5120 | ||
63ae52be JF |
5121 | - (UIBarButtonItem *) leftButton { |
5122 | return cancel_ == 1 ? [[[UIBarButtonItem alloc] | |
3c62d654 JF |
5123 | initWithTitle:UCLocalize("CANCEL") |
5124 | style:UIBarButtonItemStylePlain | |
5125 | target:self | |
5126 | action:@selector(cancel) | |
63ae52be JF |
5127 | ] autorelease] : nil; |
5128 | } | |
5129 | ||
5130 | - (void) updateCancel { | |
5131 | [super applyLeftButton]; | |
3c62d654 JF |
5132 | } |
5133 | ||
b5e7eebb GP |
5134 | - (id) initWithDatabase:(Database *)database delegate:(id)delegate { |
5135 | if ((self = [super init]) != nil) { | |
8b29f8e6 | 5136 | database_ = database; |
36bb2ca2 | 5137 | delegate_ = delegate; |
ec97ef06 | 5138 | |
6915b806 JF |
5139 | [database_ setProgressDelegate:self]; |
5140 | ||
aaae308d JF |
5141 | progress_ = [[[CydiaProgressData alloc] init] autorelease]; |
5142 | [progress_ setDelegate:self]; | |
3c62d654 | 5143 | |
90351d93 | 5144 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/progress/", UI_]]]; |
3c62d654 JF |
5145 | |
5146 | [scroller_ setBackgroundColor:[UIColor blackColor]]; | |
5147 | ||
5148 | [[self navigationItem] setHidesBackButton:YES]; | |
5149 | ||
5150 | [self updateCancel]; | |
36bb2ca2 | 5151 | } return self; |
2367a917 JF |
5152 | } |
5153 | ||
aaae308d JF |
5154 | - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame { |
5155 | [super webView:view didClearWindowObject:window forFrame:frame]; | |
5156 | [window setValue:progress_ forKey:@"cydiaProgress"]; | |
5157 | } | |
bc11cf5b | 5158 | |
aaae308d JF |
5159 | - (void) updateProgress { |
5160 | [self dispatchEvent:@"CydiaProgressUpdate"]; | |
5161 | } | |
b5e7eebb | 5162 | |
b5e7eebb | 5163 | - (void) viewWillAppear:(BOOL)animated { |
14e4ff09 | 5164 | [[[self navigationController] navigationBar] setBarStyle:UIBarStyleBlack]; |
3c62d654 | 5165 | [super viewWillAppear:animated]; |
2367a917 JF |
5166 | } |
5167 | ||
aaae308d | 5168 | - (void) close { |
ef494bd8 RP |
5169 | UpdateExternalStatus(0); |
5170 | ||
9dd3045d JF |
5171 | if (Finish_ > 1) |
5172 | [delegate_ saveState]; | |
5173 | ||
670a0494 JF |
5174 | switch (Finish_) { |
5175 | case 0: | |
2925cbba | 5176 | [delegate_ returnToCydia]; |
670a0494 JF |
5177 | break; |
5178 | ||
5179 | case 1: | |
c4899376 JF |
5180 | [delegate_ terminateWithSuccess]; |
5181 | /*if ([delegate_ respondsToSelector:@selector(suspendWithAnimation:)]) | |
5182 | [delegate_ suspendWithAnimation:YES]; | |
5183 | else | |
5184 | [delegate_ suspend];*/ | |
670a0494 JF |
5185 | break; |
5186 | ||
5187 | case 2: | |
985d2dff | 5188 | _trace(); |
ef812071 | 5189 | goto reload; |
670a0494 JF |
5190 | |
5191 | case 3: | |
985d2dff | 5192 | _trace(); |
ef812071 JF |
5193 | goto reload; |
5194 | ||
5195 | reload: | |
5196 | system("/usr/bin/sbreload"); | |
985d2dff | 5197 | _trace(); |
670a0494 JF |
5198 | break; |
5199 | ||
5200 | case 4: | |
985d2dff | 5201 | _trace(); |
0e371502 JF |
5202 | if (void (*SBReboot)(mach_port_t) = reinterpret_cast<void (*)(mach_port_t)>(dlsym(RTLD_DEFAULT, "SBReboot"))) |
5203 | SBReboot(SBSSpringBoardServerPort()); | |
5204 | else | |
bb0fe3c9 | 5205 | reboot2(RB_AUTOBOOT); |
670a0494 | 5206 | break; |
bc8cd583 | 5207 | } |
aaae308d JF |
5208 | |
5209 | [super close]; | |
670a0494 | 5210 | } |
bd150f54 | 5211 | |
6915b806 | 5212 | - (void) setTitle:(NSString *)title { |
aaae308d JF |
5213 | [progress_ setTitle:title]; |
5214 | [self updateProgress]; | |
5215 | } | |
5216 | ||
5217 | - (UIBarButtonItem *) rightButton { | |
d53628b6 | 5218 | return [[progress_ running] boolValue] ? [super rightButton] : [[[UIBarButtonItem alloc] |
aaae308d JF |
5219 | initWithTitle:UCLocalize("CLOSE") |
5220 | style:UIBarButtonItemStylePlain | |
5221 | target:self | |
5222 | action:@selector(close) | |
5223 | ] autorelease]; | |
6915b806 JF |
5224 | } |
5225 | ||
b57de6bc JF |
5226 | - (void) uicache { |
5227 | _trace(); | |
5228 | system("su -c /usr/bin/uicache mobile"); | |
5229 | _trace(); | |
5230 | } | |
5231 | ||
6915b806 JF |
5232 | - (void) invoke:(NSInvocation *)invocation withTitle:(NSString *)title { |
5233 | UpdateExternalStatus(1); | |
5234 | ||
aaae308d | 5235 | [progress_ setRunning:true]; |
6915b806 | 5236 | [self setTitle:title]; |
aaae308d | 5237 | // implicit updateProgress |
6915b806 | 5238 | |
140710ba | 5239 | SHA1SumValue notifyconf; { |
6915b806 JF |
5240 | FileFd file; |
5241 | if (!file.Open(NotifyConfig_, FileFd::ReadOnly)) | |
5242 | _error->Discard(); | |
5243 | else { | |
5244 | MMap mmap(file, MMap::ReadOnly); | |
5245 | SHA1Summation sha1; | |
5246 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5247 | notifyconf = sha1.Result(); |
6915b806 JF |
5248 | } |
5249 | } | |
5250 | ||
140710ba | 5251 | SHA1SumValue springlist; { |
6915b806 JF |
5252 | FileFd file; |
5253 | if (!file.Open(SpringBoard_, FileFd::ReadOnly)) | |
5254 | _error->Discard(); | |
5255 | else { | |
5256 | MMap mmap(file, MMap::ReadOnly); | |
5257 | SHA1Summation sha1; | |
5258 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5259 | springlist = sha1.Result(); |
6915b806 JF |
5260 | } |
5261 | } | |
5262 | ||
5263 | if (invocation != nil) { | |
5264 | [invocation yieldToSelector:@selector(invoke)]; | |
aaae308d | 5265 | [self setTitle:@"COMPLETE"]; |
6915b806 | 5266 | } |
670a0494 | 5267 | |
22f8bed9 | 5268 | if (Finish_ < 4) { |
70d45c1e JF |
5269 | FileFd file; |
5270 | if (!file.Open(NotifyConfig_, FileFd::ReadOnly)) | |
5271 | _error->Discard(); | |
5272 | else { | |
5273 | MMap mmap(file, MMap::ReadOnly); | |
5274 | SHA1Summation sha1; | |
5275 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5276 | if (!(notifyconf == sha1.Result())) |
70d45c1e JF |
5277 | Finish_ = 4; |
5278 | } | |
22f8bed9 JF |
5279 | } |
5280 | ||
affeffc7 | 5281 | if (Finish_ < 3) { |
70d45c1e JF |
5282 | FileFd file; |
5283 | if (!file.Open(SpringBoard_, FileFd::ReadOnly)) | |
5284 | _error->Discard(); | |
5285 | else { | |
5286 | MMap mmap(file, MMap::ReadOnly); | |
5287 | SHA1Summation sha1; | |
5288 | sha1.Add(reinterpret_cast<uint8_t *>(mmap.Data()), mmap.Size()); | |
140710ba | 5289 | if (!(springlist == sha1.Result())) |
70d45c1e JF |
5290 | Finish_ = 3; |
5291 | } | |
dddbc481 JF |
5292 | } |
5293 | ||
be860cc8 JF |
5294 | if (Finish_ < 2) { |
5295 | if (RestartSubstrate_) | |
5296 | Finish_ = 2; | |
5297 | } | |
5298 | ||
5299 | RestartSubstrate_ = false; | |
5300 | ||
bc8cd583 | 5301 | switch (Finish_) { |
aaae308d JF |
5302 | case 0: [progress_ setFinish:UCLocalize("RETURN_TO_CYDIA")]; break; /* XXX: Maybe UCLocalize("DONE")? */ |
5303 | case 1: [progress_ setFinish:UCLocalize("CLOSE_CYDIA")]; break; | |
5304 | case 2: [progress_ setFinish:UCLocalize("RESTART_SPRINGBOARD")]; break; | |
5305 | case 3: [progress_ setFinish:UCLocalize("RELOAD_SPRINGBOARD")]; break; | |
5306 | case 4: [progress_ setFinish:UCLocalize("REBOOT_DEVICE")]; break; | |
bc8cd583 JF |
5307 | } |
5308 | ||
b57de6bc JF |
5309 | UIProgressHUD *hud([delegate_ addProgressHUD]); |
5310 | [hud setText:UCLocalize("LOADING")]; | |
5311 | [self yieldToSelector:@selector(uicache)]; | |
5312 | [delegate_ removeProgressHUD:hud]; | |
c4ce98df | 5313 | |
eb403f34 | 5314 | UpdateExternalStatus(Finish_ == 0 ? 0 : 2); |
ef494bd8 | 5315 | |
aaae308d JF |
5316 | [progress_ setRunning:false]; |
5317 | [self updateProgress]; | |
5318 | ||
5319 | [self applyRightButton]; | |
31f3cfff JF |
5320 | } |
5321 | ||
6915b806 | 5322 | - (void) addProgressEvent:(CydiaProgressEvent *)event { |
aaae308d JF |
5323 | [progress_ addEvent:event]; |
5324 | [self updateProgress]; | |
baf80942 JF |
5325 | } |
5326 | ||
ff2d5dcd | 5327 | - (bool) isProgressCancelled { |
aaae308d JF |
5328 | return cancel_ == 2; |
5329 | } | |
5330 | ||
5331 | - (void) cancel { | |
5332 | cancel_ = 2; | |
5333 | [self updateCancel]; | |
5334 | } | |
5335 | ||
5336 | - (void) setCancellable:(bool)cancellable { | |
5337 | unsigned cancel(cancel_); | |
5338 | ||
5339 | if (!cancellable) | |
5340 | cancel_ = 0; | |
5341 | else if (cancel_ == 0) | |
5342 | cancel_ = 1; | |
5343 | ||
5344 | if (cancel != cancel_) | |
5345 | [self updateCancel]; | |
5346 | } | |
5347 | ||
5348 | - (void) setProgressCancellable:(NSNumber *)cancellable { | |
5349 | [self setCancellable:[cancellable boolValue]]; | |
baf80942 JF |
5350 | } |
5351 | ||
d885343d | 5352 | - (void) setProgressPercent:(NSNumber *)percent { |
b0b11d99 | 5353 | [progress_ setPercent:[percent floatValue]]; |
aaae308d | 5354 | [self updateProgress]; |
49048579 JF |
5355 | } |
5356 | ||
bcbac8f7 JF |
5357 | - (void) setProgressStatus:(NSDictionary *)status { |
5358 | if (status == nil) { | |
5359 | [progress_ setCurrent:0]; | |
5360 | [progress_ setTotal:0]; | |
5361 | [progress_ setSpeed:0]; | |
5362 | } else { | |
5363 | [progress_ setPercent:[[status objectForKey:@"Percent"] floatValue]]; | |
5364 | ||
5365 | [progress_ setCurrent:[[status objectForKey:@"Current"] floatValue]]; | |
5366 | [progress_ setTotal:[[status objectForKey:@"Total"] floatValue]]; | |
5367 | [progress_ setSpeed:[[status objectForKey:@"Speed"] floatValue]]; | |
5368 | } | |
5369 | ||
5370 | [self updateProgress]; | |
5371 | } | |
5372 | ||
36bb2ca2 JF |
5373 | @end |
5374 | /* }}} */ | |
dc088e63 | 5375 | |
46aa9775 | 5376 | /* Package Cell {{{ */ |
a9311516 | 5377 | @interface PackageCell : CyteTableViewCell < |
b97fcfc6 | 5378 | CyteTableViewCellDelegate |
c21004b9 | 5379 | > { |
7b33d201 JF |
5380 | _H<UIImage> icon_; |
5381 | _H<NSString> name_; | |
5382 | _H<NSString> description_; | |
3bd1c2a2 | 5383 | bool commercial_; |
7b33d201 JF |
5384 | _H<NSString> source_; |
5385 | _H<UIImage> badge_; | |
7b33d201 | 5386 | _H<UIImage> placard_; |
59f3d290 | 5387 | bool summarized_; |
36bb2ca2 | 5388 | } |
723a0072 | 5389 | |
36bb2ca2 | 5390 | - (PackageCell *) init; |
59f3d290 | 5391 | - (void) setPackage:(Package *)package asSummary:(bool)summary; |
ec97ef06 | 5392 | |
327624b6 JF |
5393 | - (void) drawContentRect:(CGRect)rect; |
5394 | ||
5395 | @end | |
5396 | ||
36bb2ca2 JF |
5397 | @implementation PackageCell |
5398 | ||
36bb2ca2 | 5399 | - (PackageCell *) init { |
327624b6 JF |
5400 | CGRect frame(CGRectMake(0, 0, 320, 74)); |
5401 | if ((self = [super initWithFrame:frame reuseIdentifier:@"Package"]) != nil) { | |
5402 | UIView *content([self contentView]); | |
5403 | CGRect bounds([content bounds]); | |
04fe1349 | 5404 | |
b97fcfc6 | 5405 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
04fe1349 JF |
5406 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
5407 | [content addSubview:content_]; | |
5408 | ||
327624b6 | 5409 | [content_ setDelegate:self]; |
327624b6 | 5410 | [content_ setOpaque:YES]; |
36bb2ca2 | 5411 | } return self; |
b4d89997 | 5412 | } |
b19871dd | 5413 | |
003fc610 | 5414 | - (NSString *) accessibilityLabel { |
7b33d201 | 5415 | return [NSString stringWithFormat:UCLocalize("COLON_DELIMITED"), (id) name_, (id) description_]; |
003fc610 GP |
5416 | } |
5417 | ||
59f3d290 JF |
5418 | - (void) setPackage:(Package *)package asSummary:(bool)summary { |
5419 | summarized_ = summary; | |
5420 | ||
7b33d201 JF |
5421 | icon_ = nil; |
5422 | name_ = nil; | |
5423 | description_ = nil; | |
5424 | source_ = nil; | |
5425 | badge_ = nil; | |
5426 | placard_ = nil; | |
7b33d201 | 5427 | |
80132602 JF |
5428 | if (package == nil) |
5429 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
5430 | else { | |
5431 | [package parse]; | |
31f3cfff | 5432 | |
80132602 | 5433 | Source *source = [package source]; |
b19871dd | 5434 | |
80132602 | 5435 | icon_ = [package icon]; |
78de2878 | 5436 | |
80132602 JF |
5437 | if (NSString *name = [package name]) |
5438 | name_ = [NSString stringWithString:name]; | |
ef055c6c | 5439 | |
80132602 | 5440 | NSString *description(nil); |
78de2878 | 5441 | |
80132602 JF |
5442 | if (description == nil && IsWildcat_) |
5443 | description = [package longDescription]; | |
5444 | if (description == nil) | |
5445 | description = [package shortDescription]; | |
5aebc4ff | 5446 | |
80132602 JF |
5447 | if (description != nil) |
5448 | description_ = [NSString stringWithString:description]; | |
ef055c6c | 5449 | |
80132602 | 5450 | commercial_ = [package isCommercial]; |
36bb2ca2 | 5451 | |
80132602 JF |
5452 | NSString *label = nil; |
5453 | bool trusted = false; | |
b19871dd | 5454 | |
80132602 JF |
5455 | if (source != nil) { |
5456 | label = [source label]; | |
5457 | trusted = [source trusted]; | |
5458 | } else if ([[package id] isEqualToString:@"firmware"]) | |
5459 | label = UCLocalize("APPLE"); | |
5460 | else | |
5461 | label = [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("UNKNOWN"), UCLocalize("LOCAL")]; | |
b19871dd | 5462 | |
80132602 | 5463 | NSString *from(label); |
a54b1c10 | 5464 | |
80132602 JF |
5465 | NSString *section = [package simpleSection]; |
5466 | if (section != nil && ![section isEqualToString:label]) { | |
5467 | section = [[NSBundle mainBundle] localizedStringForKey:section value:nil table:@"Sections"]; | |
5468 | from = [NSString stringWithFormat:UCLocalize("PARENTHETICAL"), from, section]; | |
5469 | } | |
a54b1c10 | 5470 | |
80132602 | 5471 | source_ = [NSString stringWithFormat:UCLocalize("FROM"), from]; |
36bb2ca2 | 5472 | |
80132602 JF |
5473 | if (NSString *purpose = [package primaryPurpose]) |
5474 | badge_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/Purposes/%@.png", App_, purpose]]; | |
c390d3ab | 5475 | |
80132602 JF |
5476 | UIColor *color; |
5477 | NSString *placard; | |
5478 | ||
5479 | if (NSString *mode = [package mode]) { | |
5480 | if ([mode isEqualToString:@"REMOVE"] || [mode isEqualToString:@"PURGE"]) { | |
5481 | color = RemovingColor_; | |
5482 | //placard = @"removing"; | |
5483 | } else { | |
5484 | color = InstallingColor_; | |
5485 | //placard = @"installing"; | |
5486 | } | |
d832908d | 5487 | |
80132602 JF |
5488 | // XXX: the removing/installing placards are not @2x |
5489 | placard = nil; | |
d832908d | 5490 | } else { |
80132602 JF |
5491 | color = [UIColor whiteColor]; |
5492 | ||
5493 | if ([package installed] != nil) | |
5494 | placard = @"installed"; | |
5495 | else | |
5496 | placard = nil; | |
d832908d JF |
5497 | } |
5498 | ||
80132602 | 5499 | [content_ setBackgroundColor:color]; |
d832908d | 5500 | |
80132602 JF |
5501 | if (placard != nil) |
5502 | placard_ = [UIImage imageAtPath:[NSString stringWithFormat:@"%@/%@.png", App_, placard]]; | |
d832908d JF |
5503 | } |
5504 | ||
d832908d | 5505 | [self setNeedsDisplay]; |
327624b6 | 5506 | [content_ setNeedsDisplay]; |
3bd1c2a2 JF |
5507 | } |
5508 | ||
59f3d290 | 5509 | - (void) drawSummaryContentRect:(CGRect)rect { |
555aaf71 | 5510 | bool highlighted(highlighted_); |
ef055c6c | 5511 | float width([self bounds].size.width); |
dc63e78f | 5512 | |
59f3d290 JF |
5513 | if (icon_ != nil) { |
5514 | CGRect rect; | |
5515 | rect.size = [(UIImage *) icon_ size]; | |
5516 | ||
25c1dafb | 5517 | while (rect.size.width > 16 || rect.size.height > 16) { |
7e1f9f6a JF |
5518 | rect.size.width /= 2; |
5519 | rect.size.height /= 2; | |
5520 | } | |
59f3d290 | 5521 | |
25c1dafb JF |
5522 | rect.origin.x = 18 - rect.size.width / 2; |
5523 | rect.origin.y = 18 - rect.size.height / 2; | |
59f3d290 JF |
5524 | |
5525 | [icon_ drawInRect:rect]; | |
5526 | } | |
5527 | ||
5528 | if (badge_ != nil) { | |
5529 | CGRect rect; | |
5530 | rect.size = [(UIImage *) badge_ size]; | |
5531 | ||
5532 | rect.size.width /= 4; | |
5533 | rect.size.height /= 4; | |
5534 | ||
25c1dafb JF |
5535 | rect.origin.x = 23 - rect.size.width / 2; |
5536 | rect.origin.y = 23 - rect.size.height / 2; | |
59f3d290 JF |
5537 | |
5538 | [badge_ drawInRect:rect]; | |
5539 | } | |
5540 | ||
5541 | if (highlighted) | |
5542 | UISetColor(White_); | |
5543 | ||
5544 | if (!highlighted) | |
5545 | UISetColor(commercial_ ? Purple_ : Black_); | |
5546 | [name_ drawAtPoint:CGPointMake(36, 8) forWidth:(width - (placard_ == nil ? 68 : 94)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation]; | |
5547 | ||
5548 | if (placard_ != nil) | |
5549 | [placard_ drawAtPoint:CGPointMake(width - 52, 9)]; | |
5550 | } | |
5551 | ||
5552 | - (void) drawNormalContentRect:(CGRect)rect { | |
5553 | bool highlighted(highlighted_); | |
5554 | float width([self bounds].size.width); | |
b19871dd | 5555 | |
baf80942 JF |
5556 | if (icon_ != nil) { |
5557 | CGRect rect; | |
7b33d201 | 5558 | rect.size = [(UIImage *) icon_ size]; |
baf80942 | 5559 | |
25c1dafb | 5560 | while (rect.size.width > 32 || rect.size.height > 32) { |
7e1f9f6a JF |
5561 | rect.size.width /= 2; |
5562 | rect.size.height /= 2; | |
5563 | } | |
baf80942 JF |
5564 | |
5565 | rect.origin.x = 25 - rect.size.width / 2; | |
5566 | rect.origin.y = 25 - rect.size.height / 2; | |
5567 | ||
5568 | [icon_ drawInRect:rect]; | |
5569 | } | |
b19871dd | 5570 | |
c390d3ab | 5571 | if (badge_ != nil) { |
f79c810d | 5572 | CGRect rect; |
7b33d201 | 5573 | rect.size = [(UIImage *) badge_ size]; |
f79c810d JF |
5574 | |
5575 | rect.size.width /= 2; | |
5576 | rect.size.height /= 2; | |
5577 | ||
5578 | rect.origin.x = 36 - rect.size.width / 2; | |
5579 | rect.origin.y = 36 - rect.size.height / 2; | |
c390d3ab | 5580 | |
f79c810d | 5581 | [badge_ drawInRect:rect]; |
c390d3ab JF |
5582 | } |
5583 | ||
555aaf71 | 5584 | if (highlighted) |
f641a0e5 | 5585 | UISetColor(White_); |
b19871dd | 5586 | |
555aaf71 | 5587 | if (!highlighted) |
3bd1c2a2 | 5588 | UISetColor(commercial_ ? Purple_ : Black_); |
54b844a0 DH |
5589 | [name_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - (placard_ == nil ? 80 : 106)) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation]; |
5590 | [source_ drawAtPoint:CGPointMake(58, 29) forWidth:(width - 95) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation]; | |
b19871dd | 5591 | |
555aaf71 | 5592 | if (!highlighted) |
3bd1c2a2 | 5593 | UISetColor(commercial_ ? Purplish_ : Gray_); |
54b844a0 | 5594 | [description_ drawAtPoint:CGPointMake(12, 46) forWidth:(width - 46) withFont:Font14_ lineBreakMode:UILineBreakModeTailTruncation]; |
670a0494 JF |
5595 | |
5596 | if (placard_ != nil) | |
01d93940 | 5597 | [placard_ drawAtPoint:CGPointMake(width - 52, 9)]; |
ec97ef06 JF |
5598 | } |
5599 | ||
59f3d290 JF |
5600 | - (void) drawContentRect:(CGRect)rect { |
5601 | if (summarized_) | |
5602 | [self drawSummaryContentRect:rect]; | |
5603 | else | |
5604 | [self drawNormalContentRect:rect]; | |
5605 | } | |
5606 | ||
8da60fb7 JF |
5607 | @end |
5608 | /* }}} */ | |
36bb2ca2 | 5609 | /* Section Cell {{{ */ |
a9311516 | 5610 | @interface SectionCell : CyteTableViewCell < |
b97fcfc6 | 5611 | CyteTableViewCellDelegate |
c21004b9 | 5612 | > { |
7b33d201 JF |
5613 | _H<NSString> basic_; |
5614 | _H<NSString> section_; | |
5615 | _H<NSString> name_; | |
5616 | _H<NSString> count_; | |
5617 | _H<UIImage> icon_; | |
5618 | _H<UISwitch> switch_; | |
6d9712c4 | 5619 | BOOL editing_; |
b4d89997 | 5620 | } |
b19871dd | 5621 | |
6d9712c4 | 5622 | - (void) setSection:(Section *)section editing:(BOOL)editing; |
36bb2ca2 | 5623 | |
8da60fb7 JF |
5624 | @end |
5625 | ||
36bb2ca2 | 5626 | @implementation SectionCell |
8da60fb7 | 5627 | |
46aa9775 GP |
5628 | - (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { |
5629 | if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { | |
7b33d201 JF |
5630 | icon_ = [UIImage applicationImageNamed:@"folder.png"]; |
5631 | switch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(218, 9, 60, 25)] autorelease]; | |
46aa9775 GP |
5632 | [switch_ addTarget:self action:@selector(onSwitch:) forEvents:UIControlEventValueChanged]; |
5633 | ||
5634 | UIView *content([self contentView]); | |
5635 | CGRect bounds([content bounds]); | |
5636 | ||
b97fcfc6 | 5637 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
46aa9775 GP |
5638 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
5639 | [content addSubview:content_]; | |
5640 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
5641 | ||
5642 | [content_ setDelegate:self]; | |
b4d89997 | 5643 | } return self; |
b19871dd JF |
5644 | } |
5645 | ||
6d9712c4 | 5646 | - (void) onSwitch:(id)sender { |
a171abd4 | 5647 | NSMutableDictionary *metadata([Sections_ objectForKey:basic_]); |
6d9712c4 JF |
5648 | if (metadata == nil) { |
5649 | metadata = [NSMutableDictionary dictionaryWithCapacity:2]; | |
0010fa77 | 5650 | [Sections_ setObject:metadata forKey:basic_]; |
6d9712c4 JF |
5651 | } |
5652 | ||
46aa9775 | 5653 | [metadata setObject:[NSNumber numberWithBool:([switch_ isOn] == NO)] forKey:@"Hidden"]; |
a171abd4 | 5654 | Changed_ = true; |
6d9712c4 JF |
5655 | } |
5656 | ||
5657 | - (void) setSection:(Section *)section editing:(BOOL)editing { | |
5658 | if (editing != editing_) { | |
5659 | if (editing_) | |
5660 | [switch_ removeFromSuperview]; | |
5661 | else | |
5662 | [self addSubview:switch_]; | |
5663 | editing_ = editing; | |
5664 | } | |
5665 | ||
7b33d201 JF |
5666 | basic_ = nil; |
5667 | section_ = nil; | |
5668 | name_ = nil; | |
5669 | count_ = nil; | |
6d9712c4 | 5670 | |
36bb2ca2 | 5671 | if (section == nil) { |
7b33d201 | 5672 | name_ = UCLocalize("ALL_PACKAGES"); |
f641a0e5 | 5673 | count_ = nil; |
36bb2ca2 | 5674 | } else { |
e59669fd | 5675 | basic_ = [section name]; |
677b8415 | 5676 | section_ = [section localized]; |
0010fa77 | 5677 | |
7b33d201 JF |
5678 | name_ = section_ == nil || [section_ length] == 0 ? UCLocalize("NO_SECTION") : (NSString *) section_; |
5679 | count_ = [NSString stringWithFormat:@"%d", [section count]]; | |
6d9712c4 JF |
5680 | |
5681 | if (editing_) | |
46aa9775 | 5682 | [switch_ setOn:(isSectionVisible(basic_) ? 1 : 0) animated:NO]; |
36bb2ca2 | 5683 | } |
46aa9775 | 5684 | |
c21004b9 | 5685 | [self setAccessoryType:editing ? UITableViewCellAccessoryNone : UITableViewCellAccessoryDisclosureIndicator]; |
0abb648c JF |
5686 | [self setSelectionStyle:editing ? UITableViewCellSelectionStyleNone : UITableViewCellSelectionStyleBlue]; |
5687 | ||
46aa9775 | 5688 | [content_ setNeedsDisplay]; |
f641a0e5 JF |
5689 | } |
5690 | ||
77801ff1 JF |
5691 | - (void) setFrame:(CGRect)frame { |
5692 | [super setFrame:frame]; | |
46aa9775 | 5693 | |
77801ff1 JF |
5694 | CGRect rect([switch_ frame]); |
5695 | [switch_ setFrame:CGRectMake(frame.size.width - 102, 9, rect.size.width, rect.size.height)]; | |
5696 | } | |
5697 | ||
003fc610 GP |
5698 | - (NSString *) accessibilityLabel { |
5699 | return name_; | |
5700 | } | |
5701 | ||
46aa9775 | 5702 | - (void) drawContentRect:(CGRect)rect { |
8cfba088 | 5703 | bool highlighted(highlighted_ && !editing_); |
bc11cf5b | 5704 | |
f641a0e5 JF |
5705 | [icon_ drawInRect:CGRectMake(8, 7, 32, 32)]; |
5706 | ||
555aaf71 | 5707 | if (highlighted) |
f641a0e5 JF |
5708 | UISetColor(White_); |
5709 | ||
46aa9775 | 5710 | float width(rect.size.width); |
58241d4c | 5711 | if (editing_) |
46aa9775 | 5712 | width -= 87; |
58241d4c | 5713 | |
555aaf71 JF |
5714 | if (!highlighted) |
5715 | UISetColor(Black_); | |
54b844a0 | 5716 | [name_ drawAtPoint:CGPointMake(48, 9) forWidth:(width - 70) withFont:Font22Bold_ lineBreakMode:UILineBreakModeTailTruncation]; |
6d9712c4 | 5717 | |
f641a0e5 JF |
5718 | CGSize size = [count_ sizeWithFont:Font14_]; |
5719 | ||
5720 | UISetColor(White_); | |
5721 | if (count_ != nil) | |
c390d3ab | 5722 | [count_ drawAtPoint:CGPointMake(13 + (29 - size.width) / 2, 16) withFont:Font12Bold_]; |
b19871dd JF |
5723 | } |
5724 | ||
36bb2ca2 JF |
5725 | @end |
5726 | /* }}} */ | |
b19871dd | 5727 | |
ab398adf | 5728 | /* File Table {{{ */ |
cd79e8cf | 5729 | @interface FileTable : CyteViewController < |
c21004b9 JF |
5730 | UITableViewDataSource, |
5731 | UITableViewDelegate | |
5732 | > { | |
36bb2ca2 | 5733 | _transient Database *database_; |
7b33d201 JF |
5734 | _H<Package> package_; |
5735 | _H<NSString> name_; | |
5736 | _H<NSMutableArray> files_; | |
bf7c998c | 5737 | _H<UITableView, 2> list_; |
ab398adf | 5738 | } |
b19871dd | 5739 | |
b5e7eebb | 5740 | - (id) initWithDatabase:(Database *)database; |
ab398adf JF |
5741 | - (void) setPackage:(Package *)package; |
5742 | ||
5743 | @end | |
5744 | ||
5745 | @implementation FileTable | |
5746 | ||
eb30da80 | 5747 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
ab398adf JF |
5748 | return files_ == nil ? 0 : [files_ count]; |
5749 | } | |
5750 | ||
21ea11a4 GP |
5751 | /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
5752 | return 24.0f; | |
5753 | }*/ | |
ab398adf | 5754 | |
46aa9775 | 5755 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
b5e7eebb GP |
5756 | static NSString *reuseIdentifier = @"Cell"; |
5757 | ||
46aa9775 GP |
5758 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier]; |
5759 | if (cell == nil) { | |
5760 | cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease]; | |
5761 | [cell setFont:[UIFont systemFontOfSize:16]]; | |
ab398adf | 5762 | } |
46aa9775 | 5763 | [cell setText:[files_ objectAtIndex:indexPath.row]]; |
c21004b9 | 5764 | [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; |
b5e7eebb | 5765 | |
46aa9775 | 5766 | return cell; |
ab398adf | 5767 | } |
b19871dd | 5768 | |
fe8e721f GP |
5769 | - (NSURL *) navigationURL { |
5770 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/files", [package_ id]]]; | |
5771 | } | |
5772 | ||
5773 | - (void) loadView { | |
5774 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
5775 | ||
7b33d201 | 5776 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease]; |
fe8e721f GP |
5777 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
5778 | [list_ setRowHeight:24.0f]; | |
7b33d201 | 5779 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f GP |
5780 | [list_ setDelegate:self]; |
5781 | [[self view] addSubview:list_]; | |
5782 | } | |
5783 | ||
5784 | - (void) viewDidLoad { | |
7d887d0b JF |
5785 | [super viewDidLoad]; |
5786 | ||
fe8e721f GP |
5787 | [[self navigationItem] setTitle:UCLocalize("INSTALLED_FILES")]; |
5788 | } | |
5789 | ||
5790 | - (void) releaseSubviews { | |
fe8e721f | 5791 | list_ = nil; |
7be3eb32 | 5792 | |
4f9acb7c JF |
5793 | package_ = nil; |
5794 | files_ = nil; | |
5795 | ||
7be3eb32 | 5796 | [super releaseSubviews]; |
fe8e721f GP |
5797 | } |
5798 | ||
b5e7eebb GP |
5799 | - (id) initWithDatabase:(Database *)database { |
5800 | if ((self = [super init]) != nil) { | |
ab398adf | 5801 | database_ = database; |
ab398adf JF |
5802 | } return self; |
5803 | } | |
5804 | ||
5805 | - (void) setPackage:(Package *)package { | |
7b33d201 JF |
5806 | package_ = nil; |
5807 | name_ = nil; | |
ab398adf | 5808 | |
4f9acb7c | 5809 | files_ = [NSMutableArray arrayWithCapacity:32]; |
ab398adf JF |
5810 | |
5811 | if (package != nil) { | |
7b33d201 JF |
5812 | package_ = package; |
5813 | name_ = [package id]; | |
ab398adf | 5814 | |
affeffc7 JF |
5815 | if (NSArray *files = [package files]) |
5816 | [files_ addObjectsFromArray:files]; | |
ab398adf | 5817 | |
9ea8d159 JF |
5818 | if ([files_ count] != 0) { |
5819 | if ([[files_ objectAtIndex:0] isEqualToString:@"/."]) | |
5820 | [files_ removeObjectAtIndex:0]; | |
a54b1c10 | 5821 | [files_ sortUsingSelector:@selector(compareByPath:)]; |
2388b078 JF |
5822 | |
5823 | NSMutableArray *stack = [NSMutableArray arrayWithCapacity:8]; | |
5824 | [stack addObject:@"/"]; | |
5825 | ||
5826 | for (int i(0), e([files_ count]); i != e; ++i) { | |
5827 | NSString *file = [files_ objectAtIndex:i]; | |
5828 | while (![file hasPrefix:[stack lastObject]]) | |
5829 | [stack removeLastObject]; | |
5830 | NSString *directory = [stack lastObject]; | |
5831 | [stack addObject:[file stringByAppendingString:@"/"]]; | |
5832 | [files_ replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%*s%@", | |
a54b1c10 | 5833 | ([stack count] - 2) * 3, "", |
2388b078 JF |
5834 | [file substringFromIndex:[directory length]] |
5835 | ]]; | |
5836 | } | |
ab398adf JF |
5837 | } |
5838 | } | |
5839 | ||
5840 | [list_ reloadData]; | |
5841 | } | |
5842 | ||
ab398adf | 5843 | - (void) reloadData { |
fe8e721f GP |
5844 | [super reloadData]; |
5845 | ||
ab398adf | 5846 | [self setPackage:[database_ packageWithName:name_]]; |
ab398adf | 5847 | } |
b4d89997 | 5848 | |
b4d89997 | 5849 | @end |
36bb2ca2 | 5850 | /* }}} */ |
adb61bda | 5851 | /* Package Controller {{{ */ |
a576488f | 5852 | @interface CYPackageController : CydiaWebViewController < |
9daa7f25 DH |
5853 | UIActionSheetDelegate |
5854 | > { | |
770f2a8e | 5855 | _transient Database *database_; |
5d79f7bf JF |
5856 | _H<Package> package_; |
5857 | _H<NSString> name_; | |
3bd1c2a2 | 5858 | bool commercial_; |
5d79f7bf JF |
5859 | _H<NSMutableArray> buttons_; |
5860 | _H<UIBarButtonItem> button_; | |
b31b87cc JF |
5861 | } |
5862 | ||
57e8b225 | 5863 | - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name; |
b4d89997 | 5864 | |
36bb2ca2 | 5865 | @end |
b4d89997 | 5866 | |
f6e13561 | 5867 | @implementation CYPackageController |
b4d89997 | 5868 | |
fe8e721f | 5869 | - (NSURL *) navigationURL { |
5d79f7bf | 5870 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", (id) name_]]; |
fe8e721f GP |
5871 | } |
5872 | ||
f79a4512 | 5873 | /* XXX: this is not safe at all... localization of /fail/ */ |
5a09ae08 | 5874 | - (void) _clickButtonWithName:(NSString *)name { |
43f3d7f6 | 5875 | if ([name isEqualToString:UCLocalize("CLEAR")]) |
dc63e78f | 5876 | [delegate_ clearPackage:package_]; |
43f3d7f6 | 5877 | else if ([name isEqualToString:UCLocalize("INSTALL")]) |
5a09ae08 | 5878 | [delegate_ installPackage:package_]; |
43f3d7f6 | 5879 | else if ([name isEqualToString:UCLocalize("REINSTALL")]) |
5a09ae08 | 5880 | [delegate_ installPackage:package_]; |
43f3d7f6 | 5881 | else if ([name isEqualToString:UCLocalize("REMOVE")]) |
5a09ae08 | 5882 | [delegate_ removePackage:package_]; |
43f3d7f6 | 5883 | else if ([name isEqualToString:UCLocalize("UPGRADE")]) |
5a09ae08 JF |
5884 | [delegate_ installPackage:package_]; |
5885 | else _assert(false); | |
5886 | } | |
5887 | ||
674dce72 | 5888 | - (void) actionSheet:(UIActionSheet *)sheet clickedButtonAtIndex:(NSInteger)button { |
1cedb821 | 5889 | NSString *context([sheet context]); |
5a09ae08 | 5890 | |
1cedb821 | 5891 | if ([context isEqualToString:@"modify"]) { |
674dce72 GP |
5892 | if (button != [sheet cancelButtonIndex]) { |
5893 | NSString *buttonName = [buttons_ objectAtIndex:button]; | |
5894 | [self _clickButtonWithName:buttonName]; | |
5895 | } | |
bc11cf5b | 5896 | |
674dce72 | 5897 | [sheet dismissWithClickedButtonIndex:-1 animated:YES]; |
674dce72 | 5898 | } |
b4d89997 | 5899 | } |
2367a917 | 5900 | |
3e9c9e85 | 5901 | - (bool) _allowJavaScriptPanel { |
3bd1c2a2 | 5902 | return commercial_; |
3e9c9e85 JF |
5903 | } |
5904 | ||
9487f027 | 5905 | #if !AlwaysReload |
9daa7f25 | 5906 | - (void) _customButtonClicked { |
670a0494 JF |
5907 | int count([buttons_ count]); |
5908 | if (count == 0) | |
5909 | return; | |
2367a917 | 5910 | |
5a09ae08 JF |
5911 | if (count == 1) |
5912 | [self _clickButtonWithName:[buttons_ objectAtIndex:0]]; | |
5913 | else { | |
674dce72 | 5914 | NSMutableArray *buttons = [NSMutableArray arrayWithCapacity:count]; |
5a09ae08 | 5915 | [buttons addObjectsFromArray:buttons_]; |
36bb2ca2 | 5916 | |
674dce72 | 5917 | UIActionSheet *sheet = [[[UIActionSheet alloc] |
9ea8d159 | 5918 | initWithTitle:nil |
36bb2ca2 | 5919 | delegate:self |
674dce72 GP |
5920 | cancelButtonTitle:nil |
5921 | destructiveButtonTitle:nil | |
5922 | otherButtonTitles:nil | |
5923 | ] autorelease]; | |
5924 | ||
5925 | for (NSString *button in buttons) [sheet addButtonWithTitle:button]; | |
5926 | if (!IsWildcat_) { | |
5927 | [sheet addButtonWithTitle:UCLocalize("CANCEL")]; | |
5928 | [sheet setCancelButtonIndex:[sheet numberOfButtons] - 1]; | |
5929 | } | |
5930 | [sheet setContext:@"modify"]; | |
bc11cf5b | 5931 | |
b5e7eebb | 5932 | [delegate_ showActionSheet:sheet fromItem:[[self navigationItem] rightBarButtonItem]]; |
36bb2ca2 | 5933 | } |
b4d89997 | 5934 | } |
12b59862 | 5935 | |
a5938ea5 DH |
5936 | // We don't want to allow non-commercial packages to do custom things to the install button, |
5937 | // so it must call customButtonClicked with a custom commercial_ == 1 fallthrough. | |
9daa7f25 | 5938 | - (void) customButtonClicked { |
a5938ea5 DH |
5939 | if (commercial_) |
5940 | [super customButtonClicked]; | |
5941 | else | |
9daa7f25 | 5942 | [self _customButtonClicked]; |
12b59862 | 5943 | } |
2e6c1426 GP |
5944 | |
5945 | - (void) reloadButtonClicked { | |
6a8591be GP |
5946 | // Don't reload a commerical package by tapping the loading button, |
5947 | // but if it's not an Install button, we should forward it on. | |
5948 | if (![package_ uninstalled]) | |
5949 | [self _customButtonClicked]; | |
2fad210a GP |
5950 | } |
5951 | ||
5952 | - (void) applyLoadingTitle { | |
5953 | // Don't show "Loading" as the title. Ever. | |
2e6c1426 | 5954 | } |
a5938ea5 DH |
5955 | |
5956 | - (UIBarButtonItem *) rightButton { | |
2634b249 | 5957 | return button_; |
a5938ea5 | 5958 | } |
9487f027 | 5959 | #endif |
2367a917 | 5960 | |
57e8b225 | 5961 | - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name { |
b5e7eebb | 5962 | if ((self = [super init]) != nil) { |
36bb2ca2 | 5963 | database_ = database; |
5d79f7bf | 5964 | buttons_ = [NSMutableArray arrayWithCapacity:4]; |
5612913e | 5965 | name_ = name == nil ? @"" : [NSString stringWithString:name]; |
5d79f7bf | 5966 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/package/%@", UI_, (id) name_]]]; |
36bb2ca2 | 5967 | } return self; |
dc5812ec JF |
5968 | } |
5969 | ||
57e8b225 | 5970 | - (void) reloadData { |
9dac415b JF |
5971 | [super reloadData]; |
5972 | ||
57e8b225 | 5973 | package_ = [database_ packageWithName:name_]; |
36bb2ca2 | 5974 | |
5a09ae08 JF |
5975 | [buttons_ removeAllObjects]; |
5976 | ||
57e8b225 | 5977 | if (package_ != nil) { |
5d79f7bf | 5978 | [(Package *) package_ parse]; |
68d927e2 | 5979 | |
57e8b225 | 5980 | commercial_ = [package_ isCommercial]; |
36bb2ca2 | 5981 | |
dc63e78f | 5982 | if ([package_ mode] != nil) |
43f3d7f6 | 5983 | [buttons_ addObject:UCLocalize("CLEAR")]; |
5a09ae08 | 5984 | if ([package_ source] == nil); |
31f3cfff | 5985 | else if ([package_ upgradableAndEssential:NO]) |
43f3d7f6 | 5986 | [buttons_ addObject:UCLocalize("UPGRADE")]; |
6a155117 | 5987 | else if ([package_ uninstalled]) |
43f3d7f6 | 5988 | [buttons_ addObject:UCLocalize("INSTALL")]; |
5a09ae08 | 5989 | else |
43f3d7f6 | 5990 | [buttons_ addObject:UCLocalize("REINSTALL")]; |
6a155117 | 5991 | if (![package_ uninstalled]) |
43f3d7f6 | 5992 | [buttons_ addObject:UCLocalize("REMOVE")]; |
2634b249 | 5993 | } |
f79a4512 | 5994 | |
2634b249 JF |
5995 | NSString *title; |
5996 | switch ([buttons_ count]) { | |
5997 | case 0: title = nil; break; | |
5998 | case 1: title = [buttons_ objectAtIndex:0]; break; | |
5999 | default: title = UCLocalize("MODIFY"); break; | |
36bb2ca2 | 6000 | } |
2634b249 | 6001 | |
5d79f7bf | 6002 | button_ = [[[UIBarButtonItem alloc] |
2634b249 JF |
6003 | initWithTitle:title |
6004 | style:UIBarButtonItemStylePlain | |
6005 | target:self | |
6006 | action:@selector(customButtonClicked) | |
5d79f7bf | 6007 | ] autorelease]; |
b5e7eebb | 6008 | } |
f79a4512 | 6009 | |
3bd1c2a2 JF |
6010 | - (bool) isLoading { |
6011 | return commercial_ ? [super isLoading] : false; | |
9fe5e5f8 JF |
6012 | } |
6013 | ||
b4d89997 JF |
6014 | @end |
6015 | /* }}} */ | |
5829aea2 | 6016 | |
f50860ee | 6017 | /* Package List Controller {{{ */ |
cd79e8cf | 6018 | @interface PackageListController : CyteViewController < |
c21004b9 JF |
6019 | UITableViewDataSource, |
6020 | UITableViewDelegate | |
6021 | > { | |
36bb2ca2 | 6022 | _transient Database *database_; |
0175295c | 6023 | unsigned era_; |
56bf1e78 | 6024 | _H<NSArray> packages_; |
7b33d201 | 6025 | _H<NSMutableArray> sections_; |
bf7c998c | 6026 | _H<UITableView, 2> list_; |
7b33d201 JF |
6027 | _H<NSMutableArray> index_; |
6028 | _H<NSMutableDictionary> indices_; | |
6029 | _H<NSString> title_; | |
56bf1e78 | 6030 | unsigned reloading_; |
dc5812ec JF |
6031 | } |
6032 | ||
f50860ee | 6033 | - (id) initWithDatabase:(Database *)database title:(NSString *)title; |
b4d89997 | 6034 | - (void) setDelegate:(id)delegate; |
a0be02eb | 6035 | - (void) resetCursor; |
59f3d290 | 6036 | - (void) clearData; |
b4d89997 | 6037 | |
b4d89997 JF |
6038 | @end |
6039 | ||
f50860ee | 6040 | @implementation PackageListController |
b4d89997 | 6041 | |
59f3d290 JF |
6042 | - (bool) isSummarized { |
6043 | return false; | |
6044 | } | |
6045 | ||
9c5737d5 JF |
6046 | - (bool) showsSections { |
6047 | return true; | |
6048 | } | |
6049 | ||
f50860ee GP |
6050 | - (void) deselectWithAnimation:(BOOL)animated { |
6051 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
6052 | } | |
6053 | ||
bfb45dcb GP |
6054 | - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration curve:(UIViewAnimationCurve)curve { |
6055 | CGRect base = [[self view] bounds]; | |
6056 | base.size.height -= bounds.size.height; | |
6057 | base.origin = [list_ frame].origin; | |
6058 | ||
6059 | [UIView beginAnimations:nil context:NULL]; | |
6060 | [UIView setAnimationBeginsFromCurrentState:YES]; | |
6061 | [UIView setAnimationCurve:curve]; | |
6062 | [UIView setAnimationDuration:duration]; | |
6063 | [list_ setFrame:base]; | |
6064 | [UIView commitAnimations]; | |
6065 | } | |
6066 | ||
6067 | - (void) resizeForKeyboardBounds:(CGRect)bounds duration:(NSTimeInterval)duration { | |
6068 | [self resizeForKeyboardBounds:bounds duration:duration curve:UIViewAnimationCurveLinear]; | |
6069 | } | |
6070 | ||
6071 | - (void) resizeForKeyboardBounds:(CGRect)bounds { | |
6072 | [self resizeForKeyboardBounds:bounds duration:0]; | |
6073 | } | |
6074 | ||
655c7ded JF |
6075 | - (void) getKeyboardCurve:(UIViewAnimationCurve *)curve duration:(NSTimeInterval *)duration forNotification:(NSNotification *)notification { |
6076 | if (&UIKeyboardAnimationCurveUserInfoKey == NULL) | |
6077 | *curve = UIViewAnimationCurveEaseInOut; | |
6078 | else | |
6079 | [[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:curve]; | |
6080 | ||
6081 | if (&UIKeyboardAnimationDurationUserInfoKey == NULL) | |
6082 | *duration = 0.3; | |
6083 | else | |
6084 | [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:duration]; | |
6085 | } | |
6086 | ||
bfb45dcb GP |
6087 | - (void) keyboardWillShow:(NSNotification *)notification { |
6088 | CGRect bounds; | |
6089 | CGPoint center; | |
bfb45dcb GP |
6090 | [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] getValue:&bounds]; |
6091 | [[[notification userInfo] objectForKey:UIKeyboardCenterEndUserInfoKey] getValue:¢er]; | |
655c7ded JF |
6092 | |
6093 | NSTimeInterval duration; | |
6094 | UIViewAnimationCurve curve; | |
6095 | [self getKeyboardCurve:&curve duration:&duration forNotification:notification]; | |
bfb45dcb GP |
6096 | |
6097 | 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 |
6098 | UIViewController *base = self; |
6099 | while ([base parentViewController] != nil) | |
6100 | base = [base parentViewController]; | |
6101 | CGRect viewframe = [[base view] convertRect:[list_ frame] fromView:[list_ superview]]; | |
bfb45dcb GP |
6102 | CGRect intersection = CGRectIntersection(viewframe, kbframe); |
6103 | ||
2e35f65f | 6104 | if (kCFCoreFoundationVersionNumber < kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4) |
0b7516cf | 6105 | intersection.size.height += CYStatusBarHeight(); |
2e35f65f | 6106 | |
bfb45dcb GP |
6107 | [self resizeForKeyboardBounds:intersection duration:duration curve:curve]; |
6108 | } | |
6109 | ||
6110 | - (void) keyboardWillHide:(NSNotification *)notification { | |
6111 | NSTimeInterval duration; | |
6112 | UIViewAnimationCurve curve; | |
655c7ded | 6113 | [self getKeyboardCurve:&curve duration:&duration forNotification:notification]; |
bfb45dcb GP |
6114 | |
6115 | [self resizeForKeyboardBounds:CGRectZero duration:duration curve:curve]; | |
6116 | } | |
6117 | ||
6118 | - (void) viewWillAppear:(BOOL)animated { | |
6119 | [super viewWillAppear:animated]; | |
6120 | ||
6121 | [self resizeForKeyboardBounds:CGRectZero]; | |
6122 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; | |
6123 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil]; | |
6124 | } | |
6125 | ||
6126 | - (void) viewWillDisappear:(BOOL)animated { | |
6127 | [super viewWillDisappear:animated]; | |
6128 | ||
6129 | [self resizeForKeyboardBounds:CGRectZero]; | |
6130 | [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil]; | |
6131 | [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil]; | |
6132 | } | |
6133 | ||
f50860ee GP |
6134 | - (void) viewDidAppear:(BOOL)animated { |
6135 | [super viewDidAppear:animated]; | |
6136 | [self deselectWithAnimation:animated]; | |
6137 | } | |
6138 | ||
6139 | - (void) didSelectPackage:(Package *)package { | |
57e8b225 | 6140 | CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]); |
f50860ee GP |
6141 | [view setDelegate:delegate_]; |
6142 | [[self navigationController] pushViewController:view animated:YES]; | |
6143 | } | |
6144 | ||
d03d7492 | 6145 | #if TryIndexedCollation |
a891c345 GP |
6146 | + (BOOL) hasIndexedCollation { |
6147 | return NO; // XXX: objc_getClass("UILocalizedIndexedCollation") != nil; | |
6148 | } | |
d03d7492 | 6149 | #endif |
a891c345 | 6150 | |
327624b6 JF |
6151 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)list { |
6152 | NSInteger count([sections_ count]); | |
6153 | return count == 0 ? 1 : count; | |
b4d89997 | 6154 | } |
2367a917 | 6155 | |
327624b6 | 6156 | - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section { |
a891c345 | 6157 | if ([sections_ count] == 0 || [[sections_ objectAtIndex:section] count] == 0) |
327624b6 | 6158 | return nil; |
b4d89997 JF |
6159 | return [[sections_ objectAtIndex:section] name]; |
6160 | } | |
dc5812ec | 6161 | |
327624b6 JF |
6162 | - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section { |
6163 | if ([sections_ count] == 0) | |
6164 | return 0; | |
6165 | return [[sections_ objectAtIndex:section] count]; | |
b4d89997 | 6166 | } |
dc5812ec | 6167 | |
327624b6 | 6168 | - (Package *) packageAtIndexPath:(NSIndexPath *)path { |
0175295c JF |
6169 | @synchronized (database_) { |
6170 | if ([database_ era] != era_) | |
6171 | return nil; | |
6172 | ||
327624b6 JF |
6173 | Section *section([sections_ objectAtIndex:[path section]]); |
6174 | NSInteger row([path row]); | |
6175 | Package *package([packages_ objectAtIndex:([section row] + row)]); | |
0175295c JF |
6176 | return [[package retain] autorelease]; |
6177 | } } | |
dc5812ec | 6178 | |
327624b6 | 6179 | - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path { |
c21004b9 | 6180 | PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]); |
327624b6 JF |
6181 | if (cell == nil) |
6182 | cell = [[[PackageCell alloc] init] autorelease]; | |
60bef540 JF |
6183 | |
6184 | Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]); | |
6185 | [cell setPackage:package asSummary:[self isSummarized]]; | |
327624b6 | 6186 | return cell; |
b4d89997 | 6187 | } |
dc5812ec | 6188 | |
f50860ee | 6189 | - (void) tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)path { |
327624b6 | 6190 | Package *package([self packageAtIndexPath:path]); |
59c6ae22 | 6191 | package = [database_ packageWithName:[package id]]; |
f50860ee | 6192 | [self didSelectPackage:package]; |
327624b6 JF |
6193 | } |
6194 | ||
6195 | - (NSArray *) sectionIndexTitlesForTableView:(UITableView *)tableView { | |
64b12ab3 | 6196 | if (![self showsSections]) |
59f3d290 JF |
6197 | return nil; |
6198 | ||
1527b095 | 6199 | return index_; |
327624b6 JF |
6200 | } |
6201 | ||
a891c345 | 6202 | - (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { |
d03d7492 | 6203 | #if TryIndexedCollation |
a891c345 GP |
6204 | if ([[self class] hasIndexedCollation]) { |
6205 | return [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionForSectionIndexTitleAtIndex:index]; | |
6206 | } | |
d03d7492 | 6207 | #endif |
a891c345 | 6208 | |
327624b6 | 6209 | return index; |
dc5812ec JF |
6210 | } |
6211 | ||
59f3d290 JF |
6212 | - (void) updateHeight { |
6213 | [list_ setRowHeight:([self isSummarized] ? 38 : 73)]; | |
6214 | } | |
6215 | ||
f50860ee GP |
6216 | - (id) initWithDatabase:(Database *)database title:(NSString *)title { |
6217 | if ((self = [super init]) != nil) { | |
36bb2ca2 | 6218 | database_ = database; |
f50860ee GP |
6219 | title_ = [title copy]; |
6220 | [[self navigationItem] setTitle:title_]; | |
61cc4dbc JF |
6221 | } return self; |
6222 | } | |
dc5812ec | 6223 | |
61cc4dbc JF |
6224 | - (void) loadView { |
6225 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
04fe1349 | 6226 | |
61cc4dbc JF |
6227 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease]; |
6228 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; | |
6229 | [[self view] addSubview:list_]; | |
1527b095 | 6230 | |
61cc4dbc JF |
6231 | // XXX: is 20 the most optimal number here? |
6232 | [list_ setSectionIndexMinimumDisplayRowCount:20]; | |
59f3d290 | 6233 | |
61cc4dbc JF |
6234 | [(UITableView *) list_ setDataSource:self]; |
6235 | [list_ setDelegate:self]; | |
6236 | ||
6237 | [self updateHeight]; | |
6238 | } | |
6239 | ||
6240 | - (void) releaseSubviews { | |
6241 | list_ = nil; | |
7be3eb32 | 6242 | |
4f9acb7c JF |
6243 | packages_ = nil; |
6244 | sections_ = nil; | |
6245 | index_ = nil; | |
6246 | indices_ = nil; | |
6247 | ||
7be3eb32 | 6248 | [super releaseSubviews]; |
dc5812ec JF |
6249 | } |
6250 | ||
6251 | - (void) setDelegate:(id)delegate { | |
2367a917 | 6252 | delegate_ = delegate; |
b4d89997 JF |
6253 | } |
6254 | ||
3025d5b4 JF |
6255 | - (bool) shouldYield { |
6256 | return false; | |
6257 | } | |
b4d89997 | 6258 | |
56bf1e78 JF |
6259 | - (bool) shouldBlock { |
6260 | return false; | |
6261 | } | |
6262 | ||
9c5737d5 | 6263 | - (NSMutableArray *) _reloadPackages { |
695fdd5c | 6264 | @synchronized (database_) { |
c28bc6f1 JF |
6265 | era_ = [database_ era]; |
6266 | NSArray *packages([database_ packages]); | |
6267 | ||
9c5737d5 | 6268 | return [NSMutableArray arrayWithArray:packages]; |
695fdd5c | 6269 | } } |
3025d5b4 JF |
6270 | |
6271 | - (void) _reloadData { | |
56bf1e78 JF |
6272 | if (reloading_ != 0) { |
6273 | reloading_ = 2; | |
6274 | return; | |
6275 | } | |
6276 | ||
ae60e2c1 JF |
6277 | NSArray *packages; |
6278 | ||
0c8f53c0 | 6279 | reload: |
3025d5b4 | 6280 | if ([self shouldYield]) { |
bec28dda JF |
6281 | do { |
6282 | UIProgressHUD *hud; | |
56bf1e78 | 6283 | |
bec28dda JF |
6284 | if (![self shouldBlock]) |
6285 | hud = nil; | |
6286 | else { | |
6287 | hud = [delegate_ addProgressHUD]; | |
6288 | [hud setText:UCLocalize("LOADING")]; | |
6289 | } | |
56bf1e78 | 6290 | |
56bf1e78 | 6291 | reloading_ = 1; |
ae60e2c1 | 6292 | packages = [self yieldToSelector:@selector(_reloadPackages)]; |
bec28dda JF |
6293 | |
6294 | if (hud != nil) | |
6295 | [delegate_ removeProgressHUD:hud]; | |
56bf1e78 | 6296 | } while (reloading_ == 2); |
3025d5b4 | 6297 | } else { |
ae60e2c1 | 6298 | packages = [self _reloadPackages]; |
3025d5b4 | 6299 | } |
36bb2ca2 | 6300 | |
0c8f53c0 JF |
6301 | @synchronized (database_) { |
6302 | if (era_ != [database_ era]) | |
6303 | goto reload; | |
6304 | reloading_ = 0; | |
6305 | ||
ae60e2c1 JF |
6306 | packages_ = packages; |
6307 | ||
4f9acb7c JF |
6308 | indices_ = [NSMutableDictionary dictionaryWithCapacity:32]; |
6309 | sections_ = [NSMutableArray arrayWithCapacity:16]; | |
327624b6 | 6310 | |
b4d89997 JF |
6311 | Section *section = nil; |
6312 | ||
d03d7492 | 6313 | #if TryIndexedCollation |
a891c345 | 6314 | if ([[self class] hasIndexedCollation]) { |
4f9acb7c JF |
6315 | index_ = [[objc_getClass("UILocalizedIndexedCollation") currentCollation] sectionIndexTitles]; |
6316 | ||
a891c345 GP |
6317 | id collation = [objc_getClass("UILocalizedIndexedCollation") currentCollation]; |
6318 | NSArray *titles = [collation sectionIndexTitles]; | |
6319 | int secidx = -1; | |
c4dcf2c2 | 6320 | |
a891c345 GP |
6321 | _profile(PackageTable$reloadData$Section) |
6322 | for (size_t offset(0), end([packages_ count]); offset != end; ++offset) { | |
6323 | Package *package; | |
6324 | int index; | |
b4d89997 | 6325 | |
a891c345 GP |
6326 | _profile(PackageTable$reloadData$Section$Package) |
6327 | package = [packages_ objectAtIndex:offset]; | |
6328 | index = [collation sectionForObject:package collationStringSelector:@selector(name)]; | |
808c6eb6 | 6329 | _end |
b4d89997 | 6330 | |
a891c345 GP |
6331 | while (secidx < index) { |
6332 | secidx += 1; | |
327624b6 | 6333 | |
a891c345 GP |
6334 | _profile(PackageTable$reloadData$Section$Allocate) |
6335 | section = [[[Section alloc] initWithName:[titles objectAtIndex:secidx] row:offset localize:NO] autorelease]; | |
6336 | _end | |
6337 | ||
6338 | _profile(PackageTable$reloadData$Section$Add) | |
6339 | [sections_ addObject:section]; | |
6340 | _end | |
6341 | } | |
6342 | ||
6343 | [section addToCount]; | |
808c6eb6 | 6344 | } |
a891c345 | 6345 | _end |
d03d7492 JF |
6346 | } else |
6347 | #endif | |
6348 | { | |
4f9acb7c | 6349 | index_ = [NSMutableArray arrayWithCapacity:32]; |
808c6eb6 | 6350 | |
9c5737d5 JF |
6351 | bool sectioned([self showsSections]); |
6352 | if (!sectioned) { | |
59f3d290 JF |
6353 | section = [[[Section alloc] initWithName:nil localize:false] autorelease]; |
6354 | [sections_ addObject:section]; | |
6355 | } | |
6356 | ||
a891c345 GP |
6357 | _profile(PackageTable$reloadData$Section) |
6358 | for (size_t offset(0), end([packages_ count]); offset != end; ++offset) { | |
6359 | Package *package; | |
6360 | unichar index; | |
6361 | ||
6362 | _profile(PackageTable$reloadData$Section$Package) | |
6363 | package = [packages_ objectAtIndex:offset]; | |
6364 | index = [package index]; | |
6365 | _end | |
6366 | ||
9c5737d5 | 6367 | if (sectioned && (section == nil || [section index] != index)) { |
a891c345 GP |
6368 | _profile(PackageTable$reloadData$Section$Allocate) |
6369 | section = [[[Section alloc] initWithIndex:index row:offset] autorelease]; | |
6370 | _end | |
6371 | ||
6372 | [index_ addObject:[section name]]; | |
6373 | //[indices_ setObject:[NSNumber numberForInt:[sections_ count]] forKey:index]; | |
6374 | ||
6375 | _profile(PackageTable$reloadData$Section$Add) | |
6376 | [sections_ addObject:section]; | |
6377 | _end | |
6378 | } | |
6379 | ||
6380 | [section addToCount]; | |
6381 | } | |
6382 | _end | |
6383 | } | |
b4d89997 | 6384 | |
59f3d290 JF |
6385 | [self updateHeight]; |
6386 | ||
c4dcf2c2 | 6387 | _profile(PackageTable$reloadData$List) |
59f3d290 | 6388 | [(UITableView *) list_ setDataSource:self]; |
c4dcf2c2 JF |
6389 | [list_ reloadData]; |
6390 | _end | |
0c8f53c0 | 6391 | } } |
b4d89997 | 6392 | |
3025d5b4 JF |
6393 | - (void) reloadData { |
6394 | [super reloadData]; | |
6d246265 JF |
6395 | |
6396 | if ([self shouldYield]) | |
6397 | [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0]; | |
6398 | else | |
6399 | [self _reloadData]; | |
3025d5b4 JF |
6400 | } |
6401 | ||
a0be02eb | 6402 | - (void) resetCursor { |
4c6a29cd | 6403 | [list_ scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO]; |
a0be02eb JF |
6404 | } |
6405 | ||
59f3d290 JF |
6406 | - (void) clearData { |
6407 | [self updateHeight]; | |
6408 | ||
6409 | [list_ setDataSource:nil]; | |
6410 | [list_ reloadData]; | |
6411 | ||
6412 | [self resetCursor]; | |
6413 | } | |
6414 | ||
a3328c28 JF |
6415 | @end |
6416 | /* }}} */ | |
f50860ee GP |
6417 | /* Filtered Package List Controller {{{ */ |
6418 | @interface FilteredPackageListController : PackageListController { | |
a3328c28 | 6419 | SEL filter_; |
76933519 | 6420 | IMP imp_; |
7b33d201 | 6421 | _H<NSObject> object_; |
a3328c28 JF |
6422 | } |
6423 | ||
6424 | - (void) setObject:(id)object; | |
01d93940 | 6425 | - (void) setObject:(id)object forFilter:(SEL)filter; |
a3328c28 | 6426 | |
3025d5b4 JF |
6427 | - (SEL) filter; |
6428 | - (void) setFilter:(SEL)filter; | |
6429 | ||
f50860ee | 6430 | - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object; |
a3328c28 JF |
6431 | |
6432 | @end | |
6433 | ||
f50860ee | 6434 | @implementation FilteredPackageListController |
a3328c28 | 6435 | |
3025d5b4 JF |
6436 | - (SEL) filter { |
6437 | return filter_; | |
6438 | } | |
6439 | ||
01d93940 | 6440 | - (void) setFilter:(SEL)filter { |
aa32d91b | 6441 | @synchronized (self) { |
01d93940 JF |
6442 | filter_ = filter; |
6443 | ||
6444 | /* XXX: this is an unsafe optimization of doomy hell */ | |
6445 | Method method(class_getInstanceMethod([Package class], filter)); | |
6446 | _assert(method != NULL); | |
6447 | imp_ = method_getImplementation(method); | |
6448 | _assert(imp_ != NULL); | |
aa32d91b | 6449 | } } |
01d93940 | 6450 | |
a3328c28 | 6451 | - (void) setObject:(id)object { |
aa32d91b | 6452 | @synchronized (self) { |
7b33d201 | 6453 | object_ = object; |
aa32d91b | 6454 | } } |
a3328c28 | 6455 | |
01d93940 | 6456 | - (void) setObject:(id)object forFilter:(SEL)filter { |
d84597fe | 6457 | @synchronized (self) { |
01d93940 JF |
6458 | [self setFilter:filter]; |
6459 | [self setObject:object]; | |
d84597fe | 6460 | } } |
01d93940 | 6461 | |
9c5737d5 | 6462 | - (NSMutableArray *) _reloadPackages { |
aa32d91b | 6463 | @synchronized (database_) { |
c28bc6f1 JF |
6464 | era_ = [database_ era]; |
6465 | NSArray *packages([database_ packages]); | |
6466 | ||
aa32d91b JF |
6467 | NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]); |
6468 | ||
6469 | IMP imp; | |
6470 | SEL filter; | |
6471 | _H<NSObject> object; | |
6472 | ||
6473 | @synchronized (self) { | |
6474 | imp = imp_; | |
6475 | filter = filter_; | |
6476 | object = object_; | |
6477 | } | |
6478 | ||
6479 | _profile(PackageTable$reloadData$Filter) | |
6480 | for (Package *package in packages) | |
6481 | if ([package valid] && (*reinterpret_cast<bool (*)(id, SEL, id)>(imp))(package, filter, object)) | |
6482 | [filtered addObject:package]; | |
76933519 | 6483 | _end |
aa32d91b JF |
6484 | |
6485 | return filtered; | |
6486 | } } | |
a3328c28 | 6487 | |
f50860ee GP |
6488 | - (id) initWithDatabase:(Database *)database title:(NSString *)title filter:(SEL)filter with:(id)object { |
6489 | if ((self = [super initWithDatabase:database title:title]) != nil) { | |
01d93940 | 6490 | [self setFilter:filter]; |
f50860ee | 6491 | [self setObject:object]; |
a3328c28 JF |
6492 | } return self; |
6493 | } | |
6494 | ||
dc5812ec | 6495 | @end |
b5e7eebb GP |
6496 | /* }}} */ |
6497 | ||
5829aea2 | 6498 | /* Home Controller {{{ */ |
a576488f | 6499 | @interface HomeController : CydiaWebViewController { |
b4d89997 | 6500 | } |
6840bff3 | 6501 | |
7b0ce2da | 6502 | @end |
b4d89997 | 6503 | |
5829aea2 | 6504 | @implementation HomeController |
46aa9775 | 6505 | |
3c62d654 JF |
6506 | - (id) init { |
6507 | if ((self = [super init]) != nil) { | |
90351d93 | 6508 | [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]]; |
ed7bfd8c | 6509 | [self reloadData]; |
3c62d654 JF |
6510 | } return self; |
6511 | } | |
6512 | ||
fe8e721f GP |
6513 | - (NSURL *) navigationURL { |
6514 | return [NSURL URLWithString:@"cydia://home"]; | |
6515 | } | |
6516 | ||
29bb09d7 JF |
6517 | - (void) didReceiveMemoryWarning { |
6518 | } | |
6519 | ||
5829aea2 GP |
6520 | - (void) aboutButtonClicked { |
6521 | UIAlertView *alert([[[UIAlertView alloc] init] autorelease]); | |
b4d89997 | 6522 | |
5829aea2 GP |
6523 | [alert setTitle:UCLocalize("ABOUT_CYDIA")]; |
6524 | [alert addButtonWithTitle:UCLocalize("CLOSE")]; | |
6525 | [alert setCancelButtonIndex:0]; | |
46aa9775 | 6526 | |
5829aea2 | 6527 | [alert setMessage: |
d53628b6 | 6528 | @"Copyright \u00a9 2008-2011\n" |
7e865c1e JF |
6529 | "SaurikIT, LLC\n" |
6530 | "\n" | |
5829aea2 GP |
6531 | "Jay Freeman (saurik)\n" |
6532 | "saurik@saurik.com\n" | |
6533 | "http://www.saurik.com/" | |
6534 | ]; | |
46aa9775 | 6535 | |
5829aea2 | 6536 | [alert show]; |
a0376fc1 JF |
6537 | } |
6538 | ||
e6124cb6 JF |
6539 | - (UIBarButtonItem *) leftButton { |
6540 | return [[[UIBarButtonItem alloc] | |
35f0a3b5 GP |
6541 | initWithTitle:UCLocalize("ABOUT") |
6542 | style:UIBarButtonItemStylePlain | |
6543 | target:self | |
6544 | action:@selector(aboutButtonClicked) | |
e6124cb6 | 6545 | ] autorelease]; |
7b0ce2da JF |
6546 | } |
6547 | ||
6548 | @end | |
6549 | /* }}} */ | |
5829aea2 | 6550 | /* Manage Controller {{{ */ |
a576488f | 6551 | @interface ManageController : CydiaWebViewController { |
7b0ce2da JF |
6552 | } |
6553 | ||
5829aea2 | 6554 | - (void) queueStatusDidChange; |
6840bff3 | 6555 | |
7b0ce2da JF |
6556 | @end |
6557 | ||
5829aea2 | 6558 | @implementation ManageController |
7b0ce2da | 6559 | |
3c62d654 JF |
6560 | - (id) init { |
6561 | if ((self = [super init]) != nil) { | |
76380d62 | 6562 | [self setURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"manage" ofType:@"html"]]]; |
3c62d654 | 6563 | } return self; |
fe8e721f | 6564 | } |
7b0ce2da | 6565 | |
3c62d654 JF |
6566 | - (NSURL *) navigationURL { |
6567 | return [NSURL URLWithString:@"cydia://manage"]; | |
35f0a3b5 | 6568 | } |
7b0ce2da | 6569 | |
e6124cb6 JF |
6570 | - (UIBarButtonItem *) leftButton { |
6571 | return [[[UIBarButtonItem alloc] | |
35f0a3b5 GP |
6572 | initWithTitle:UCLocalize("SETTINGS") |
6573 | style:UIBarButtonItemStylePlain | |
6574 | target:self | |
6575 | action:@selector(settingsButtonClicked) | |
e6124cb6 | 6576 | ] autorelease]; |
7b0ce2da JF |
6577 | } |
6578 | ||
5829aea2 GP |
6579 | - (void) settingsButtonClicked { |
6580 | [delegate_ showSettings]; | |
b5e7eebb GP |
6581 | } |
6582 | ||
5829aea2 GP |
6583 | - (void) queueButtonClicked { |
6584 | [delegate_ queue]; | |
7b0ce2da JF |
6585 | } |
6586 | ||
76380d62 | 6587 | - (UIBarButtonItem *) rightButton { |
29756674 JF |
6588 | return Queuing_ ? [[[UIBarButtonItem alloc] |
6589 | initWithTitle:UCLocalize("QUEUE") | |
6590 | style:UIBarButtonItemStyleDone | |
6591 | target:self | |
6592 | action:@selector(queueButtonClicked) | |
76380d62 | 6593 | ] autorelease] : nil; |
7b0ce2da JF |
6594 | } |
6595 | ||
5829aea2 | 6596 | - (void) queueStatusDidChange { |
29756674 | 6597 | [self applyRightButton]; |
7b0ce2da JF |
6598 | } |
6599 | ||
5829aea2 | 6600 | - (bool) isLoading { |
29756674 | 6601 | return !Queuing_ && [super isLoading]; |
7b0ce2da JF |
6602 | } |
6603 | ||
5829aea2 GP |
6604 | @end |
6605 | /* }}} */ | |
7b0ce2da | 6606 | |
5829aea2 GP |
6607 | /* Refresh Bar {{{ */ |
6608 | @interface RefreshBar : UINavigationBar { | |
7b33d201 JF |
6609 | _H<UIProgressIndicator> indicator_; |
6610 | _H<UITextLabel> prompt_; | |
6611 | _H<UIProgressBar> progress_; | |
6612 | _H<UINavigationButton> cancel_; | |
5829aea2 | 6613 | } |
7b0ce2da | 6614 | |
5829aea2 | 6615 | @end |
7b0ce2da | 6616 | |
5829aea2 | 6617 | @implementation RefreshBar |
7b0ce2da | 6618 | |
5829aea2 GP |
6619 | - (void) positionViews { |
6620 | CGRect frame = [cancel_ frame]; | |
6621 | frame.size = [cancel_ sizeThatFits:frame.size]; | |
6622 | frame.origin.x = [self frame].size.width - frame.size.width - 5; | |
6623 | frame.origin.y = ([self frame].size.height - frame.size.height) / 2; | |
6624 | [cancel_ setFrame:frame]; | |
7b0ce2da | 6625 | |
5829aea2 GP |
6626 | CGSize prgsize = {75, 100}; |
6627 | CGRect prgrect = {{ | |
6628 | [self frame].size.width - prgsize.width - 10, | |
6629 | ([self frame].size.height - prgsize.height) / 2 | |
6630 | } , prgsize}; | |
6631 | [progress_ setFrame:prgrect]; | |
7b0ce2da | 6632 | |
5829aea2 GP |
6633 | CGSize indsize([UIProgressIndicator defaultSizeForStyle:[indicator_ activityIndicatorViewStyle]]); |
6634 | unsigned indoffset = ([self frame].size.height - indsize.height) / 2; | |
6635 | CGRect indrect = {{indoffset, indoffset}, indsize}; | |
6636 | [indicator_ setFrame:indrect]; | |
2fc76a2d | 6637 | |
5829aea2 GP |
6638 | CGSize prmsize = {215, indsize.height + 4}; |
6639 | CGRect prmrect = {{ | |
6640 | indoffset * 2 + indsize.width, | |
6641 | unsigned([self frame].size.height - prmsize.height) / 2 - 1 | |
6642 | }, prmsize}; | |
6643 | [prompt_ setFrame:prmrect]; | |
2fc76a2d JF |
6644 | } |
6645 | ||
6840bff3 | 6646 | - (void) setFrame:(CGRect)frame { |
5829aea2 | 6647 | [super setFrame:frame]; |
5829aea2 | 6648 | [self positionViews]; |
2fc76a2d JF |
6649 | } |
6650 | ||
5829aea2 | 6651 | - (id) initWithFrame:(CGRect)frame delegate:(id)delegate { |
6840bff3 | 6652 | if ((self = [super initWithFrame:frame]) != nil) { |
5829aea2 | 6653 | [self setAutoresizingMask:UIViewAutoresizingFlexibleWidth]; |
7b0ce2da | 6654 | |
5829aea2 | 6655 | [self setBarStyle:UIBarStyleBlack]; |
7b0ce2da | 6656 | |
5829aea2 GP |
6657 | UIBarStyle barstyle([self _barStyle:NO]); |
6658 | bool ugly(barstyle == UIBarStyleDefault); | |
3e9c9e85 | 6659 | |
5829aea2 GP |
6660 | UIProgressIndicatorStyle style = ugly ? |
6661 | UIProgressIndicatorStyleMediumBrown : | |
6662 | UIProgressIndicatorStyleMediumWhite; | |
2fc76a2d | 6663 | |
7b33d201 JF |
6664 | indicator_ = [[[UIProgressIndicator alloc] initWithFrame:CGRectZero] autorelease]; |
6665 | [(UIProgressIndicator *) indicator_ setStyle:style]; | |
5829aea2 GP |
6666 | [indicator_ startAnimation]; |
6667 | [self addSubview:indicator_]; | |
7b0ce2da | 6668 | |
7b33d201 | 6669 | prompt_ = [[[UITextLabel alloc] initWithFrame:CGRectZero] autorelease]; |
5829aea2 GP |
6670 | [prompt_ setColor:[UIColor colorWithCGColor:(ugly ? Blueish_ : Off_)]]; |
6671 | [prompt_ setBackgroundColor:[UIColor clearColor]]; | |
6672 | [prompt_ setFont:[UIFont systemFontOfSize:15]]; | |
6673 | [self addSubview:prompt_]; | |
7b0ce2da | 6674 | |
7b33d201 | 6675 | progress_ = [[[UIProgressBar alloc] initWithFrame:CGRectZero] autorelease]; |
5829aea2 | 6676 | [progress_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin]; |
7b33d201 | 6677 | [(UIProgressBar *) progress_ setStyle:0]; |
5829aea2 | 6678 | [self addSubview:progress_]; |
7b0ce2da | 6679 | |
7b33d201 | 6680 | cancel_ = [[[UINavigationButton alloc] initWithTitle:UCLocalize("CANCEL") style:UINavigationButtonStyleHighlighted] autorelease]; |
5829aea2 GP |
6681 | [cancel_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin]; |
6682 | [cancel_ addTarget:delegate action:@selector(cancelPressed) forControlEvents:UIControlEventTouchUpInside]; | |
6683 | [cancel_ setBarStyle:barstyle]; | |
3e9c9e85 | 6684 | |
5829aea2 GP |
6685 | [self positionViews]; |
6686 | } return self; | |
6687 | } | |
3e9c9e85 | 6688 | |
aaae308d JF |
6689 | - (void) setCancellable:(bool)cancellable { |
6690 | if (cancellable) | |
6691 | [self addSubview:cancel_]; | |
6692 | else | |
6693 | [cancel_ removeFromSuperview]; | |
5829aea2 | 6694 | } |
7b0ce2da | 6695 | |
5829aea2 GP |
6696 | - (void) start { |
6697 | [prompt_ setText:UCLocalize("UPDATING_DATABASE")]; | |
6698 | [progress_ setProgress:0]; | |
7b0ce2da JF |
6699 | } |
6700 | ||
5829aea2 | 6701 | - (void) stop { |
aaae308d | 6702 | [self setCancellable:NO]; |
7b0ce2da JF |
6703 | } |
6704 | ||
5829aea2 GP |
6705 | - (void) setPrompt:(NSString *)prompt { |
6706 | [prompt_ setText:prompt]; | |
7b0ce2da JF |
6707 | } |
6708 | ||
5829aea2 GP |
6709 | - (void) setProgress:(float)progress { |
6710 | [progress_ setProgress:progress]; | |
7b0ce2da JF |
6711 | } |
6712 | ||
5829aea2 GP |
6713 | @end |
6714 | /* }}} */ | |
b5e7eebb | 6715 | |
28e596e4 | 6716 | /* Cydia Navigation Controller Interface {{{ */ |
15f0d613 | 6717 | @interface UINavigationController (Cydia) |
28e596e4 JF |
6718 | |
6719 | - (NSArray *) navigationURLCollection; | |
15f0d613 | 6720 | - (void) unloadData; |
28e596e4 JF |
6721 | |
6722 | @end | |
6723 | /* }}} */ | |
7b0ce2da | 6724 | |
5829aea2 GP |
6725 | /* Cydia Tab Bar Controller {{{ */ |
6726 | @interface CYTabBarController : UITabBarController < | |
9f99f3da | 6727 | UITabBarControllerDelegate, |
5829aea2 GP |
6728 | ProgressDelegate |
6729 | > { | |
6730 | _transient Database *database_; | |
bf7c998c | 6731 | _H<RefreshBar, 1> refreshbar_; |
7b0ce2da | 6732 | |
5829aea2 GP |
6733 | bool dropped_; |
6734 | bool updating_; | |
6735 | // XXX: ok, "updatedelegate_"?... | |
6736 | _transient NSObject<CydiaDelegate> *updatedelegate_; | |
f79a4512 | 6737 | |
7b33d201 | 6738 | _H<UIViewController> remembered_; |
9f99f3da | 6739 | _transient UIViewController *transient_; |
7b0ce2da JF |
6740 | } |
6741 | ||
35f0a3b5 | 6742 | - (NSArray *) navigationURLCollection; |
5829aea2 GP |
6743 | - (void) dropBar:(BOOL)animated; |
6744 | - (void) beginUpdate; | |
6745 | - (void) raiseBar:(BOOL)animated; | |
6746 | - (BOOL) updating; | |
6c0ba3d9 | 6747 | - (void) unloadData; |
1cedb821 | 6748 | |
5829aea2 | 6749 | @end |
2fc76a2d | 6750 | |
5829aea2 | 6751 | @implementation CYTabBarController |
3e9c9e85 | 6752 | |
9f99f3da GP |
6753 | - (void) setUnselectedViewController:(UIViewController *)transient { |
6754 | NSMutableArray *controllers = [[self viewControllers] mutableCopy]; | |
6755 | if (transient != nil) { | |
6756 | if (transient_ == nil) | |
7b33d201 | 6757 | remembered_ = [controllers objectAtIndex:0]; |
9f99f3da GP |
6758 | transient_ = transient; |
6759 | [transient_ setTabBarItem:[remembered_ tabBarItem]]; | |
6760 | [controllers replaceObjectAtIndex:0 withObject:transient_]; | |
6761 | [self setSelectedIndex:0]; | |
6762 | [self setViewControllers:controllers]; | |
6763 | [self concealTabBarSelection]; | |
6764 | } else if (remembered_ != nil) { | |
6765 | [remembered_ setTabBarItem:[transient_ tabBarItem]]; | |
6766 | transient_ = transient; | |
6767 | [controllers replaceObjectAtIndex:0 withObject:remembered_]; | |
9f99f3da GP |
6768 | remembered_ = nil; |
6769 | [self setViewControllers:controllers]; | |
6770 | [self revealTabBarSelection]; | |
6771 | } | |
6772 | } | |
6773 | ||
6774 | - (UIViewController *) unselectedViewController { | |
6775 | return transient_; | |
6776 | } | |
6777 | ||
6778 | - (void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController { | |
6779 | if ([self unselectedViewController]) | |
6780 | [self setUnselectedViewController:nil]; | |
6781 | } | |
6782 | ||
35f0a3b5 | 6783 | - (NSArray *) navigationURLCollection { |
fe8e721f GP |
6784 | NSMutableArray *items([NSMutableArray array]); |
6785 | ||
35f0a3b5 | 6786 | // XXX: Should this deal with transient view controllers? |
fe8e721f | 6787 | for (id navigation in [self viewControllers]) { |
35f0a3b5 | 6788 | NSArray *stack = [navigation performSelector:@selector(navigationURLCollection)]; |
fe8e721f GP |
6789 | if (stack != nil) |
6790 | [items addObject:stack]; | |
2fc76a2d | 6791 | } |
c713af59 | 6792 | |
fe8e721f GP |
6793 | return items; |
6794 | } | |
6795 | ||
ceed8624 JF |
6796 | - (void) dismissModalViewControllerAnimated:(BOOL)animated { |
6797 | if ([self modalViewController] == nil && [self unselectedViewController] != nil) | |
6798 | [self setUnselectedViewController:nil]; | |
6799 | else | |
6800 | [super dismissModalViewControllerAnimated:YES]; | |
6801 | } | |
6802 | ||
6c0ba3d9 | 6803 | - (void) unloadData { |
29640f4e JF |
6804 | [super unloadData]; |
6805 | ||
15f0d613 JF |
6806 | for (UINavigationController *controller in [self viewControllers]) |
6807 | [controller unloadData]; | |
6808 | ||
29640f4e JF |
6809 | if (UIViewController *selected = [self selectedViewController]) |
6810 | [selected reloadData]; | |
c713af59 | 6811 | |
29640f4e JF |
6812 | if (UIViewController *unselected = [self unselectedViewController]) { |
6813 | [unselected unloadData]; | |
15f0d613 | 6814 | [unselected reloadData]; |
29640f4e | 6815 | } |
7b0ce2da JF |
6816 | } |
6817 | ||
35f0a3b5 | 6818 | - (void) dealloc { |
35f0a3b5 GP |
6819 | [[NSNotificationCenter defaultCenter] removeObserver:self]; |
6820 | ||
6821 | [super dealloc]; | |
6822 | } | |
6823 | ||
b5e7eebb GP |
6824 | - (id) initWithDatabase:(Database *)database { |
6825 | if ((self = [super init]) != nil) { | |
7b0ce2da | 6826 | database_ = database; |
9f99f3da | 6827 | [self setDelegate:self]; |
04fe1349 | 6828 | |
5829aea2 GP |
6829 | [[self view] setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
6830 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameChanged:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil]; | |
7b0ce2da | 6831 | |
7b33d201 | 6832 | refreshbar_ = [[[RefreshBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [UINavigationBar defaultSize].height) delegate:self] autorelease]; |
7b0ce2da JF |
6833 | } return self; |
6834 | } | |
6835 | ||
5829aea2 GP |
6836 | - (void) setUpdate:(NSDate *)date { |
6837 | [self beginUpdate]; | |
6838 | } | |
1cedb821 | 6839 | |
5829aea2 | 6840 | - (void) beginUpdate { |
7b33d201 | 6841 | [(RefreshBar *) refreshbar_ start]; |
5829aea2 | 6842 | [self dropBar:YES]; |
7b0ce2da | 6843 | |
5829aea2 GP |
6844 | [updatedelegate_ retainNetworkActivityIndicator]; |
6845 | updating_ = true; | |
7b0ce2da | 6846 | |
5829aea2 GP |
6847 | [NSThread |
6848 | detachNewThreadSelector:@selector(performUpdate) | |
6849 | toTarget:self | |
6850 | withObject:nil | |
6851 | ]; | |
7b0ce2da JF |
6852 | } |
6853 | ||
d13edf44 JF |
6854 | - (void) performUpdate { |
6855 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
6856 | ||
5829aea2 GP |
6857 | Status status; |
6858 | status.setDelegate(self); | |
6859 | [database_ updateWithStatus:status]; | |
6860 | ||
6861 | [self | |
6862 | performSelectorOnMainThread:@selector(completeUpdate) | |
6863 | withObject:nil | |
6864 | waitUntilDone:NO | |
6865 | ]; | |
d13edf44 JF |
6866 | |
6867 | [pool release]; | |
f6e13561 GP |
6868 | } |
6869 | ||
5829aea2 GP |
6870 | - (void) stopUpdateWithSelector:(SEL)selector { |
6871 | updating_ = false; | |
6872 | [updatedelegate_ releaseNetworkActivityIndicator]; | |
b5e7eebb | 6873 | |
5829aea2 GP |
6874 | [self raiseBar:YES]; |
6875 | [refreshbar_ stop]; | |
bc11cf5b | 6876 | |
5829aea2 | 6877 | [updatedelegate_ performSelector:selector withObject:nil afterDelay:0]; |
2bdd73bd GP |
6878 | } |
6879 | ||
5829aea2 GP |
6880 | - (void) completeUpdate { |
6881 | if (!updating_) | |
6882 | return; | |
6883 | [self stopUpdateWithSelector:@selector(reloadData)]; | |
7b0ce2da JF |
6884 | } |
6885 | ||
5829aea2 GP |
6886 | - (void) cancelUpdate { |
6887 | [self stopUpdateWithSelector:@selector(updateData)]; | |
7b0ce2da JF |
6888 | } |
6889 | ||
5829aea2 GP |
6890 | - (void) cancelPressed { |
6891 | [self cancelUpdate]; | |
6892 | } | |
7b0ce2da | 6893 | |
5829aea2 GP |
6894 | - (BOOL) updating { |
6895 | return updating_; | |
7b0ce2da JF |
6896 | } |
6897 | ||
6915b806 JF |
6898 | - (void) addProgressEvent:(CydiaProgressEvent *)event { |
6899 | [refreshbar_ setPrompt:[event compoundMessage]]; | |
5829aea2 | 6900 | } |
c21004b9 | 6901 | |
ff2d5dcd | 6902 | - (bool) isProgressCancelled { |
5829aea2 GP |
6903 | return !updating_; |
6904 | } | |
7b0ce2da | 6905 | |
aaae308d JF |
6906 | - (void) setProgressCancellable:(NSNumber *)cancellable { |
6907 | [refreshbar_ setCancellable:(updating_ && [cancellable boolValue])]; | |
6908 | } | |
6909 | ||
d885343d | 6910 | - (void) setProgressPercent:(NSNumber *)percent { |
5829aea2 | 6911 | [refreshbar_ setProgress:[percent floatValue]]; |
7b0ce2da JF |
6912 | } |
6913 | ||
bcbac8f7 JF |
6914 | - (void) setProgressStatus:(NSDictionary *)status { |
6915 | if (status != nil) | |
6916 | [self setProgressPercent:[status objectForKey:@"Percent"]]; | |
6917 | } | |
6918 | ||
5829aea2 GP |
6919 | - (void) setUpdateDelegate:(id)delegate { |
6920 | updatedelegate_ = delegate; | |
7b0ce2da JF |
6921 | } |
6922 | ||
5829aea2 GP |
6923 | - (UIView *) transitionView { |
6924 | if ([self respondsToSelector:@selector(_transitionView)]) | |
6925 | return [self _transitionView]; | |
6926 | else | |
6927 | return MSHookIvar<id>(self, "_viewControllerTransitionView"); | |
f641a0e5 JF |
6928 | } |
6929 | ||
5829aea2 GP |
6930 | - (void) dropBar:(BOOL)animated { |
6931 | if (dropped_) | |
6932 | return; | |
6933 | dropped_ = true; | |
7b0ce2da | 6934 | |
5829aea2 GP |
6935 | UIView *transition([self transitionView]); |
6936 | [[self view] addSubview:refreshbar_]; | |
f6e13561 | 6937 | |
5829aea2 | 6938 | CGRect barframe([refreshbar_ frame]); |
f6e13561 | 6939 | |
a23207d2 | 6940 | if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iPhoneOS_3_0) // XXX: _UIApplicationLinkedOnOrAfter(4) |
0b7516cf | 6941 | barframe.origin.y = CYStatusBarHeight(); |
5829aea2 GP |
6942 | else |
6943 | barframe.origin.y = 0; | |
f6e13561 | 6944 | |
5829aea2 | 6945 | [refreshbar_ setFrame:barframe]; |
f6e13561 | 6946 | |
5829aea2 GP |
6947 | if (animated) |
6948 | [UIView beginAnimations:nil context:NULL]; | |
f6e13561 | 6949 | |
5829aea2 GP |
6950 | CGRect viewframe = [transition frame]; |
6951 | viewframe.origin.y += barframe.size.height; | |
6952 | viewframe.size.height -= barframe.size.height; | |
6953 | [transition setFrame:viewframe]; | |
f6e13561 | 6954 | |
5829aea2 GP |
6955 | if (animated) |
6956 | [UIView commitAnimations]; | |
f6e13561 | 6957 | |
5829aea2 GP |
6958 | // Ensure bar has the proper width for our view, it might have changed |
6959 | barframe.size.width = viewframe.size.width; | |
6960 | [refreshbar_ setFrame:barframe]; | |
f6e13561 GP |
6961 | } |
6962 | ||
5829aea2 GP |
6963 | - (void) raiseBar:(BOOL)animated { |
6964 | if (!dropped_) | |
6965 | return; | |
6966 | dropped_ = false; | |
f6e13561 | 6967 | |
5829aea2 GP |
6968 | UIView *transition([self transitionView]); |
6969 | [refreshbar_ removeFromSuperview]; | |
7b0ce2da | 6970 | |
5829aea2 | 6971 | CGRect barframe([refreshbar_ frame]); |
7b0ce2da | 6972 | |
5829aea2 GP |
6973 | if (animated) |
6974 | [UIView beginAnimations:nil context:NULL]; | |
7b0ce2da | 6975 | |
5829aea2 GP |
6976 | CGRect viewframe = [transition frame]; |
6977 | viewframe.origin.y -= barframe.size.height; | |
6978 | viewframe.size.height += barframe.size.height; | |
6979 | [transition setFrame:viewframe]; | |
9daa0bdc | 6980 | |
5829aea2 GP |
6981 | if (animated) |
6982 | [UIView commitAnimations]; | |
bfc87a4d JF |
6983 | } |
6984 | ||
5829aea2 GP |
6985 | - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { |
6986 | bool dropped(dropped_); | |
7b0ce2da | 6987 | |
5829aea2 GP |
6988 | if (dropped) |
6989 | [self raiseBar:NO]; | |
7b0ce2da | 6990 | |
5829aea2 | 6991 | [super didRotateFromInterfaceOrientation:fromInterfaceOrientation]; |
7b0ce2da | 6992 | |
5829aea2 GP |
6993 | if (dropped) |
6994 | [self dropBar:NO]; | |
b5e7eebb GP |
6995 | } |
6996 | ||
5829aea2 GP |
6997 | - (void) statusBarFrameChanged:(NSNotification *)notification { |
6998 | if (dropped_) { | |
6999 | [self raiseBar:NO]; | |
7000 | [self dropBar:NO]; | |
7001 | } | |
b5e7eebb GP |
7002 | } |
7003 | ||
7b0ce2da | 7004 | @end |
98228790 | 7005 | /* }}} */ |
f6e13561 | 7006 | |
28e596e4 | 7007 | /* Cydia Navigation Controller Implementation {{{ */ |
15f0d613 | 7008 | @implementation UINavigationController (Cydia) |
bc11cf5b | 7009 | |
35f0a3b5 | 7010 | - (NSArray *) navigationURLCollection { |
fe8e721f GP |
7011 | NSMutableArray *stack([NSMutableArray array]); |
7012 | ||
cd79e8cf | 7013 | for (CyteViewController *controller in [self viewControllers]) { |
fe8e721f GP |
7014 | NSString *url = [[controller navigationURL] absoluteString]; |
7015 | if (url != nil) | |
7016 | [stack addObject:url]; | |
7017 | } | |
7018 | ||
7019 | return stack; | |
7020 | } | |
7021 | ||
15f0d613 JF |
7022 | - (void) reloadData { |
7023 | [super reloadData]; | |
7024 | ||
21263088 JF |
7025 | UIViewController *visible([self visibleViewController]); |
7026 | if (visible != nil) | |
15f0d613 | 7027 | [visible reloadData]; |
21263088 JF |
7028 | |
7029 | // on the iPad, this view controller is ALSO visible. :( | |
7030 | if (IsWildcat_) | |
7031 | if (UIViewController *top = [self topViewController]) | |
7032 | if (top != visible) | |
7033 | [top reloadData]; | |
15f0d613 | 7034 | } |
6c0ba3d9 | 7035 | |
15f0d613 | 7036 | - (void) unloadData { |
cd79e8cf | 7037 | for (CyteViewController *page in [self viewControllers]) |
15f0d613 | 7038 | [page unloadData]; |
6c0ba3d9 | 7039 | |
15f0d613 | 7040 | [super unloadData]; |
dc63e78f JF |
7041 | } |
7042 | ||
5829aea2 GP |
7043 | @end |
7044 | /* }}} */ | |
7b0ce2da | 7045 | |
5829aea2 GP |
7046 | /* Cydia:// Protocol {{{ */ |
7047 | @interface CydiaURLProtocol : NSURLProtocol { | |
9fe5e5f8 JF |
7048 | } |
7049 | ||
7b0ce2da JF |
7050 | @end |
7051 | ||
5829aea2 GP |
7052 | @implementation CydiaURLProtocol |
7053 | ||
7054 | + (BOOL) canInitWithRequest:(NSURLRequest *)request { | |
7055 | NSURL *url([request URL]); | |
7056 | if (url == nil) | |
7057 | return NO; | |
b0a2900d | 7058 | |
5829aea2 | 7059 | NSString *scheme([[url scheme] lowercaseString]); |
b0a2900d JF |
7060 | if (scheme != nil && [scheme isEqualToString:@"cydia"]) |
7061 | return YES; | |
7062 | if ([[url absoluteString] hasPrefix:@"about:cydia-"]) | |
7063 | return YES; | |
7064 | ||
7065 | return NO; | |
aa5e5990 JF |
7066 | } |
7067 | ||
5829aea2 GP |
7068 | + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request { |
7069 | return request; | |
7070 | } | |
aa5e5990 | 7071 | |
5829aea2 GP |
7072 | - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request { |
7073 | id<NSURLProtocolClient> client([self client]); | |
7074 | if (icon == nil) | |
7075 | [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]]; | |
7076 | else { | |
7077 | NSData *data(UIImagePNGRepresentation(icon)); | |
01d93940 | 7078 | |
5829aea2 GP |
7079 | NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]); |
7080 | [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed]; | |
7081 | [client URLProtocol:self didLoadData:data]; | |
7082 | [client URLProtocolDidFinishLoading:self]; | |
7083 | } | |
3931b718 JF |
7084 | } |
7085 | ||
5829aea2 GP |
7086 | - (void) startLoading { |
7087 | id<NSURLProtocolClient> client([self client]); | |
7088 | NSURLRequest *request([self request]); | |
bc11cf5b | 7089 | |
5829aea2 GP |
7090 | NSURL *url([request URL]); |
7091 | NSString *href([url absoluteString]); | |
b0a2900d JF |
7092 | NSString *scheme([[url scheme] lowercaseString]); |
7093 | ||
7094 | NSString *path; | |
7095 | ||
7096 | if ([scheme isEqualToString:@"cydia"]) | |
7097 | path = [href substringFromIndex:8]; | |
7098 | else if ([scheme isEqualToString:@"about"]) | |
7099 | path = [href substringFromIndex:12]; | |
7100 | else _assert(false); | |
bc11cf5b | 7101 | |
5829aea2 | 7102 | NSRange slash([path rangeOfString:@"/"]); |
bc11cf5b | 7103 | |
5829aea2 GP |
7104 | NSString *command; |
7105 | if (slash.location == NSNotFound) { | |
7106 | command = path; | |
7107 | path = nil; | |
7108 | } else { | |
7109 | command = [path substringToIndex:slash.location]; | |
7110 | path = [path substringFromIndex:(slash.location + 1)]; | |
7111 | } | |
39cda3a8 | 7112 | |
5829aea2 | 7113 | Database *database([Database sharedInstance]); |
bc11cf5b | 7114 | |
5829aea2 GP |
7115 | if ([command isEqualToString:@"package-icon"]) { |
7116 | if (path == nil) | |
7117 | goto fail; | |
7118 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
7119 | Package *package([database packageWithName:path]); | |
7120 | if (package == nil) | |
7121 | goto fail; | |
eff20a8d | 7122 | [package parse]; |
5829aea2 GP |
7123 | UIImage *icon([package icon]); |
7124 | [self _returnPNGWithImage:icon forRequest:request]; | |
5829aea2 GP |
7125 | } else if ([command isEqualToString:@"uikit-image"]) { |
7126 | if (path == nil) | |
7127 | goto fail; | |
7128 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
7129 | UIImage *icon(_UIImageWithName(path)); | |
7130 | [self _returnPNGWithImage:icon forRequest:request]; | |
7131 | } else if ([command isEqualToString:@"section-icon"]) { | |
7132 | if (path == nil) | |
7133 | goto fail; | |
7134 | path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
611efc17 | 7135 | UIImage *icon([UIImage imageAtPath:[NSString stringWithFormat:@"%@/Sections/%@.png", App_, [path stringByReplacingOccurrencesOfString:@" " withString:@"_"]]]); |
5829aea2 GP |
7136 | if (icon == nil) |
7137 | icon = [UIImage applicationImageNamed:@"unknown.png"]; | |
7138 | [self _returnPNGWithImage:icon forRequest:request]; | |
7139 | } else fail: { | |
7140 | [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]]; | |
7141 | } | |
39cda3a8 GP |
7142 | } |
7143 | ||
5829aea2 GP |
7144 | - (void) stopLoading { |
7145 | } | |
807ae6d7 | 7146 | |
5829aea2 GP |
7147 | @end |
7148 | /* }}} */ | |
807ae6d7 | 7149 | |
5829aea2 | 7150 | /* Section Controller {{{ */ |
f50860ee | 7151 | @interface SectionController : FilteredPackageListController { |
123b380c | 7152 | _H<NSString> section_; |
5829aea2 | 7153 | } |
807ae6d7 | 7154 | |
5829aea2 | 7155 | - (id) initWithDatabase:(Database *)database section:(NSString *)section; |
807ae6d7 | 7156 | |
5829aea2 | 7157 | @end |
bc11cf5b | 7158 | |
5829aea2 | 7159 | @implementation SectionController |
bc11cf5b | 7160 | |
fe8e721f GP |
7161 | - (NSURL *) navigationURL { |
7162 | NSString *name = section_; | |
7163 | if (name == nil) | |
7164 | name = @"all"; | |
7165 | ||
7166 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sections/%@", name]]; | |
7167 | } | |
7168 | ||
5829aea2 GP |
7169 | - (id) initWithDatabase:(Database *)database section:(NSString *)name { |
7170 | NSString *title; | |
3707eb56 | 7171 | if (name == nil) |
5829aea2 | 7172 | title = UCLocalize("ALL_PACKAGES"); |
3707eb56 | 7173 | else if (![name isEqual:@""]) |
5829aea2 | 7174 | title = [[NSBundle mainBundle] localizedStringForKey:Simplify(name) value:nil table:@"Sections"]; |
3707eb56 | 7175 | else |
5829aea2 | 7176 | title = UCLocalize("NO_SECTION"); |
fe8e721f | 7177 | |
5829aea2 | 7178 | if ((self = [super initWithDatabase:database title:title filter:@selector(isVisibleInSection:) with:name]) != nil) { |
3707eb56 | 7179 | section_ = name; |
5829aea2 | 7180 | } return self; |
b5e7eebb GP |
7181 | } |
7182 | ||
b5e7eebb GP |
7183 | @end |
7184 | /* }}} */ | |
5829aea2 | 7185 | /* Sections Controller {{{ */ |
cd79e8cf | 7186 | @interface SectionsController : CyteViewController < |
5829aea2 GP |
7187 | UITableViewDataSource, |
7188 | UITableViewDelegate | |
7585ce66 | 7189 | > { |
3931b718 | 7190 | _transient Database *database_; |
7b33d201 JF |
7191 | _H<NSMutableArray> sections_; |
7192 | _H<NSMutableArray> filtered_; | |
bf7c998c | 7193 | _H<UITableView, 2> list_; |
b5e7eebb GP |
7194 | } |
7195 | ||
5829aea2 | 7196 | - (id) initWithDatabase:(Database *)database; |
5829aea2 | 7197 | - (void) editButtonClicked; |
7585ce66 | 7198 | |
bc11cf5b | 7199 | @end |
b5e7eebb | 7200 | |
5829aea2 | 7201 | @implementation SectionsController |
b5e7eebb | 7202 | |
fe8e721f GP |
7203 | - (NSURL *) navigationURL { |
7204 | return [NSURL URLWithString:@"cydia://sections"]; | |
7205 | } | |
7206 | ||
a784d0a4 | 7207 | - (void) updateNavigationItem { |
8e5b801a | 7208 | [[self navigationItem] setTitle:[self isEditing] ? UCLocalize("SECTION_VISIBILITY") : UCLocalize("SECTIONS")]; |
a784d0a4 GP |
7209 | if ([sections_ count] == 0) { |
7210 | [[self navigationItem] setRightBarButtonItem:nil]; | |
7211 | } else { | |
7212 | [[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc] | |
8e5b801a | 7213 | initWithBarButtonSystemItem:([self isEditing] ? UIBarButtonSystemItemDone : UIBarButtonSystemItemEdit) |
a784d0a4 GP |
7214 | target:self |
7215 | action:@selector(editButtonClicked) | |
7216 | ] animated:([[self navigationItem] rightBarButtonItem] != nil)]; | |
7217 | } | |
7218 | } | |
7219 | ||
8e5b801a GP |
7220 | - (void) setEditing:(BOOL)editing animated:(BOOL)animated { |
7221 | [super setEditing:editing animated:animated]; | |
35f0a3b5 | 7222 | |
8e5b801a | 7223 | if (editing) |
5829aea2 GP |
7224 | [list_ reloadData]; |
7225 | else | |
7226 | [delegate_ updateData]; | |
7585ce66 | 7227 | |
a784d0a4 | 7228 | [self updateNavigationItem]; |
b5e7eebb GP |
7229 | } |
7230 | ||
5829aea2 GP |
7231 | - (void) viewDidAppear:(BOOL)animated { |
7232 | [super viewDidAppear:animated]; | |
7233 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
7585ce66 JF |
7234 | } |
7235 | ||
5829aea2 GP |
7236 | - (void) viewWillDisappear:(BOOL)animated { |
7237 | [super viewWillDisappear:animated]; | |
8e5b801a | 7238 | if ([self isEditing]) [self setEditing:NO]; |
7585ce66 JF |
7239 | } |
7240 | ||
5829aea2 | 7241 | - (Section *) sectionAtIndexPath:(NSIndexPath *)indexPath { |
b3551da8 | 7242 | Section *section = nil; |
8e5b801a | 7243 | int index = [indexPath row]; |
b3551da8 GP |
7244 | if (![self isEditing]) { |
7245 | index -= 1; | |
7246 | if (index >= 0) | |
7247 | section = [filtered_ objectAtIndex:index]; | |
7248 | } else { | |
7249 | section = [sections_ objectAtIndex:index]; | |
7250 | } | |
5829aea2 GP |
7251 | return section; |
7252 | } | |
7585ce66 | 7253 | |
5829aea2 | 7254 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
8e5b801a GP |
7255 | if ([self isEditing]) |
7256 | return [sections_ count]; | |
7257 | else | |
7258 | return [filtered_ count] + 1; | |
7585ce66 JF |
7259 | } |
7260 | ||
5829aea2 GP |
7261 | /*- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
7262 | return 45.0f; | |
7263 | }*/ | |
7585ce66 | 7264 | |
5829aea2 GP |
7265 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
7266 | static NSString *reuseIdentifier = @"SectionCell"; | |
7585ce66 | 7267 | |
35f0a3b5 | 7268 | SectionCell *cell = (SectionCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier]; |
5829aea2 GP |
7269 | if (cell == nil) |
7270 | cell = [[[SectionCell alloc] initWithFrame:CGRectZero reuseIdentifier:reuseIdentifier] autorelease]; | |
7585ce66 | 7271 | |
8e5b801a | 7272 | [cell setSection:[self sectionAtIndexPath:indexPath] editing:[self isEditing]]; |
54043703 | 7273 | |
5829aea2 | 7274 | return cell; |
54043703 JF |
7275 | } |
7276 | ||
5829aea2 | 7277 | - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
8e5b801a | 7278 | if ([self isEditing]) |
54043703 | 7279 | return; |
7585ce66 | 7280 | |
5829aea2 | 7281 | Section *section = [self sectionAtIndexPath:indexPath]; |
7585ce66 | 7282 | |
5829aea2 GP |
7283 | SectionController *controller = [[[SectionController alloc] |
7284 | initWithDatabase:database_ | |
7285 | section:[section name] | |
7286 | ] autorelease]; | |
7287 | [controller setDelegate:delegate_]; | |
7585ce66 | 7288 | |
5829aea2 | 7289 | [[self navigationController] pushViewController:controller animated:YES]; |
7585ce66 JF |
7290 | } |
7291 | ||
fe8e721f GP |
7292 | - (void) loadView { |
7293 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
7294 | ||
7b33d201 | 7295 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds]] autorelease]; |
fe8e721f GP |
7296 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
7297 | [list_ setRowHeight:45.0f]; | |
7b33d201 | 7298 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f GP |
7299 | [list_ setDelegate:self]; |
7300 | [[self view] addSubview:list_]; | |
7301 | } | |
7302 | ||
7303 | - (void) viewDidLoad { | |
7d887d0b JF |
7304 | [super viewDidLoad]; |
7305 | ||
fe8e721f GP |
7306 | [[self navigationItem] setTitle:UCLocalize("SECTIONS")]; |
7307 | } | |
7308 | ||
7309 | - (void) releaseSubviews { | |
fe8e721f | 7310 | list_ = nil; |
7be3eb32 | 7311 | |
4f9acb7c JF |
7312 | sections_ = nil; |
7313 | filtered_ = nil; | |
7314 | ||
7be3eb32 | 7315 | [super releaseSubviews]; |
fe8e721f GP |
7316 | } |
7317 | ||
5829aea2 GP |
7318 | - (id) initWithDatabase:(Database *)database { |
7319 | if ((self = [super init]) != nil) { | |
7320 | database_ = database; | |
5829aea2 | 7321 | } return self; |
7585ce66 JF |
7322 | } |
7323 | ||
5829aea2 | 7324 | - (void) reloadData { |
fe8e721f GP |
7325 | [super reloadData]; |
7326 | ||
5829aea2 | 7327 | NSArray *packages = [database_ packages]; |
7585ce66 | 7328 | |
4f9acb7c JF |
7329 | sections_ = [NSMutableArray arrayWithCapacity:16]; |
7330 | filtered_ = [NSMutableArray arrayWithCapacity:16]; | |
7585ce66 | 7331 | |
5829aea2 | 7332 | NSMutableDictionary *sections([NSMutableDictionary dictionaryWithCapacity:32]); |
7585ce66 | 7333 | |
5829aea2 GP |
7334 | _trace(); |
7335 | for (Package *package in packages) { | |
7336 | NSString *name([package section]); | |
7337 | NSString *key(name == nil ? @"" : name); | |
7585ce66 | 7338 | |
5829aea2 | 7339 | Section *section; |
7585ce66 | 7340 | |
5829aea2 GP |
7341 | _profile(SectionsView$reloadData$Section) |
7342 | section = [sections objectForKey:key]; | |
7343 | if (section == nil) { | |
7344 | _profile(SectionsView$reloadData$Section$Allocate) | |
729bc910 | 7345 | section = [[[Section alloc] initWithName:key localize:YES] autorelease]; |
5829aea2 GP |
7346 | [sections setObject:section forKey:key]; |
7347 | _end | |
7348 | } | |
7349 | _end | |
7585ce66 | 7350 | |
5829aea2 | 7351 | [section addToCount]; |
7585ce66 | 7352 | |
5829aea2 GP |
7353 | _profile(SectionsView$reloadData$Filter) |
7354 | if (![package valid] || ![package visible]) | |
7355 | continue; | |
7356 | _end | |
7585ce66 | 7357 | |
5829aea2 GP |
7358 | [section addToRow]; |
7359 | } | |
7360 | _trace(); | |
7585ce66 | 7361 | |
5829aea2 | 7362 | [sections_ addObjectsFromArray:[sections allValues]]; |
7585ce66 | 7363 | |
5829aea2 | 7364 | [sections_ sortUsingSelector:@selector(compareByLocalized:)]; |
7585ce66 | 7365 | |
7b33d201 | 7366 | for (Section *section in (id) sections_) { |
5829aea2 GP |
7367 | size_t count([section row]); |
7368 | if (count == 0) | |
7369 | continue; | |
7585ce66 | 7370 | |
5829aea2 GP |
7371 | section = [[[Section alloc] initWithName:[section name] localized:[section localized]] autorelease]; |
7372 | [section setCount:count]; | |
7373 | [filtered_ addObject:section]; | |
7374 | } | |
7585ce66 | 7375 | |
a784d0a4 | 7376 | [self updateNavigationItem]; |
5829aea2 GP |
7377 | [list_ reloadData]; |
7378 | _trace(); | |
7379 | } | |
7585ce66 | 7380 | |
6840bff3 | 7381 | - (void) editButtonClicked { |
8e5b801a | 7382 | [self setEditing:![self isEditing] animated:YES]; |
5829aea2 | 7383 | } |
7585ce66 | 7384 | |
5829aea2 GP |
7385 | @end |
7386 | /* }}} */ | |
7585ce66 | 7387 | |
5829aea2 | 7388 | /* Changes Controller {{{ */ |
cd79e8cf | 7389 | @interface ChangesController : CyteViewController < |
5829aea2 GP |
7390 | UITableViewDataSource, |
7391 | UITableViewDelegate | |
7392 | > { | |
7393 | _transient Database *database_; | |
7394 | unsigned era_; | |
56bf1e78 | 7395 | _H<NSArray> packages_; |
7b33d201 | 7396 | _H<NSMutableArray> sections_; |
bf7c998c | 7397 | _H<UITableView, 2> list_; |
5829aea2 | 7398 | unsigned upgrades_; |
5829aea2 | 7399 | } |
7585ce66 | 7400 | |
ea3bb538 | 7401 | - (id) initWithDatabase:(Database *)database; |
7585ce66 | 7402 | |
5829aea2 | 7403 | @end |
7585ce66 | 7404 | |
5829aea2 | 7405 | @implementation ChangesController |
7585ce66 | 7406 | |
fe8e721f GP |
7407 | - (NSURL *) navigationURL { |
7408 | return [NSURL URLWithString:@"cydia://changes"]; | |
7409 | } | |
7410 | ||
5829aea2 GP |
7411 | - (void) viewDidAppear:(BOOL)animated { |
7412 | [super viewDidAppear:animated]; | |
a70cd4ba | 7413 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; |
7585ce66 JF |
7414 | } |
7415 | ||
5829aea2 GP |
7416 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)list { |
7417 | NSInteger count([sections_ count]); | |
7418 | return count == 0 ? 1 : count; | |
7585ce66 JF |
7419 | } |
7420 | ||
5829aea2 GP |
7421 | - (NSString *) tableView:(UITableView *)list titleForHeaderInSection:(NSInteger)section { |
7422 | if ([sections_ count] == 0) | |
7423 | return nil; | |
7424 | return [[sections_ objectAtIndex:section] name]; | |
b5e7eebb GP |
7425 | } |
7426 | ||
5829aea2 GP |
7427 | - (NSInteger) tableView:(UITableView *)list numberOfRowsInSection:(NSInteger)section { |
7428 | if ([sections_ count] == 0) | |
7429 | return 0; | |
7430 | return [[sections_ objectAtIndex:section] count]; | |
7431 | } | |
b5e7eebb | 7432 | |
5829aea2 GP |
7433 | - (Package *) packageAtIndexPath:(NSIndexPath *)path { |
7434 | @synchronized (database_) { | |
7435 | if ([database_ era] != era_) | |
7436 | return nil; | |
b5e7eebb | 7437 | |
5829aea2 GP |
7438 | NSUInteger sectionIndex([path section]); |
7439 | if (sectionIndex >= [sections_ count]) | |
7440 | return nil; | |
7441 | Section *section([sections_ objectAtIndex:sectionIndex]); | |
7442 | NSInteger row([path row]); | |
56bf1e78 | 7443 | return [[[packages_ objectAtIndex:([section row] + row)] retain] autorelease]; |
5829aea2 | 7444 | } } |
b5e7eebb | 7445 | |
5829aea2 GP |
7446 | - (UITableViewCell *) tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)path { |
7447 | PackageCell *cell((PackageCell *) [table dequeueReusableCellWithIdentifier:@"Package"]); | |
7448 | if (cell == nil) | |
7449 | cell = [[[PackageCell alloc] init] autorelease]; | |
60bef540 JF |
7450 | |
7451 | Package *package([database_ packageWithName:[[self packageAtIndexPath:path] id]]); | |
7452 | [cell setPackage:package asSummary:false]; | |
5829aea2 | 7453 | return cell; |
9cb0bff2 GP |
7454 | } |
7455 | ||
5829aea2 GP |
7456 | - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path { |
7457 | Package *package([self packageAtIndexPath:path]); | |
57e8b225 | 7458 | CYPackageController *view([[[CYPackageController alloc] initWithDatabase:database_ forPackage:[package id]] autorelease]); |
5829aea2 | 7459 | [view setDelegate:delegate_]; |
5829aea2 GP |
7460 | [[self navigationController] pushViewController:view animated:YES]; |
7461 | return path; | |
b5e7eebb GP |
7462 | } |
7463 | ||
5829aea2 GP |
7464 | - (void) refreshButtonClicked { |
7465 | [delegate_ beginUpdate]; | |
7466 | [[self navigationItem] setLeftBarButtonItem:nil animated:YES]; | |
b5e7eebb GP |
7467 | } |
7468 | ||
5829aea2 GP |
7469 | - (void) upgradeButtonClicked { |
7470 | [delegate_ distUpgrade]; | |
cb6b3a7b | 7471 | [[self navigationItem] setRightBarButtonItem:nil animated:YES]; |
b5e7eebb GP |
7472 | } |
7473 | ||
fe8e721f GP |
7474 | - (void) loadView { |
7475 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
7476 | ||
7b33d201 | 7477 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease]; |
fe8e721f GP |
7478 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
7479 | [list_ setRowHeight:73]; | |
7b33d201 | 7480 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f GP |
7481 | [list_ setDelegate:self]; |
7482 | [[self view] addSubview:list_]; | |
7483 | } | |
7484 | ||
7485 | - (void) viewDidLoad { | |
7d887d0b JF |
7486 | [super viewDidLoad]; |
7487 | ||
fe8e721f GP |
7488 | [[self navigationItem] setTitle:UCLocalize("CHANGES")]; |
7489 | } | |
7490 | ||
7491 | - (void) releaseSubviews { | |
fe8e721f | 7492 | list_ = nil; |
7be3eb32 | 7493 | |
4f9acb7c JF |
7494 | packages_ = nil; |
7495 | sections_ = nil; | |
7496 | ||
7be3eb32 | 7497 | [super releaseSubviews]; |
fe8e721f | 7498 | } |
5829aea2 | 7499 | |
ea3bb538 | 7500 | - (id) initWithDatabase:(Database *)database { |
b5e7eebb GP |
7501 | if ((self = [super init]) != nil) { |
7502 | database_ = database; | |
5829aea2 | 7503 | } return self; |
807ae6d7 JF |
7504 | } |
7505 | ||
9c5737d5 | 7506 | - (NSMutableArray *) _reloadPackages { |
c28bc6f1 JF |
7507 | @synchronized (database_) { |
7508 | era_ = [database_ era]; | |
7509 | NSArray *packages([database_ packages]); | |
7510 | ||
56bf1e78 | 7511 | NSMutableArray *filtered([NSMutableArray arrayWithCapacity:[packages count]]); |
9fe5e5f8 | 7512 | |
5829aea2 GP |
7513 | _trace(); |
7514 | _profile(ChangesController$_reloadPackages$Filter) | |
7515 | for (Package *package in packages) | |
7516 | if ([package upgradableAndEssential:YES] || [package visible]) | |
56bf1e78 | 7517 | CFArrayAppendValue((CFMutableArrayRef) filtered, package); |
5829aea2 GP |
7518 | _end |
7519 | _trace(); | |
7520 | _profile(ChangesController$_reloadPackages$radixSort) | |
56bf1e78 | 7521 | [filtered radixSortUsingFunction:reinterpret_cast<MenesRadixSortFunction>(&PackageChangesRadix) withContext:NULL]; |
5829aea2 GP |
7522 | _end |
7523 | _trace(); | |
56bf1e78 JF |
7524 | |
7525 | return filtered; | |
c28bc6f1 | 7526 | } } |
9fe5e5f8 | 7527 | |
a70cd4ba | 7528 | - (void) _reloadData { |
ae60e2c1 JF |
7529 | NSArray *packages; |
7530 | ||
c28bc6f1 JF |
7531 | reload: |
7532 | if (true) { | |
7533 | UIProgressHUD *hud([delegate_ addProgressHUD]); | |
7534 | [hud setText:UCLocalize("LOADING")]; | |
7535 | //NSLog(@"HUD:%@::%@", delegate_, hud); | |
ae60e2c1 | 7536 | packages = [self yieldToSelector:@selector(_reloadPackages)]; |
c28bc6f1 JF |
7537 | [delegate_ removeProgressHUD:hud]; |
7538 | } else { | |
ae60e2c1 | 7539 | packages = [self _reloadPackages]; |
c28bc6f1 | 7540 | } |
807ae6d7 | 7541 | |
c28bc6f1 JF |
7542 | @synchronized (database_) { |
7543 | if (era_ != [database_ era]) | |
7544 | goto reload; | |
807ae6d7 | 7545 | |
ae60e2c1 | 7546 | packages_ = packages; |
4f9acb7c | 7547 | sections_ = [NSMutableArray arrayWithCapacity:16]; |
bdca103d | 7548 | |
5829aea2 GP |
7549 | Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease]; |
7550 | Section *ignored = nil; | |
7551 | Section *section = nil; | |
7552 | time_t last = 0; | |
807ae6d7 | 7553 | |
5829aea2 GP |
7554 | upgrades_ = 0; |
7555 | bool unseens = false; | |
807ae6d7 | 7556 | |
5829aea2 | 7557 | CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterMediumStyle, kCFDateFormatterMediumStyle)); |
807ae6d7 | 7558 | |
56bf1e78 JF |
7559 | for (size_t offset = 0, count = [packages_ count]; offset != count; ++offset) { |
7560 | Package *package = [packages_ objectAtIndex:offset]; | |
807ae6d7 | 7561 | |
5829aea2 | 7562 | BOOL uae = [package upgradableAndEssential:YES]; |
807ae6d7 | 7563 | |
5829aea2 GP |
7564 | if (!uae) { |
7565 | unseens = true; | |
7566 | time_t seen([package seen]); | |
d90a4cd6 | 7567 | |
5829aea2 GP |
7568 | if (section == nil || last != seen) { |
7569 | last = seen; | |
7570 | ||
7571 | NSString *name; | |
7572 | name = (NSString *) CFDateFormatterCreateStringWithDate(NULL, formatter, (CFDateRef) [NSDate dateWithTimeIntervalSince1970:seen]); | |
7573 | [name autorelease]; | |
7574 | ||
7575 | _profile(ChangesController$reloadData$Allocate) | |
7576 | name = [NSString stringWithFormat:UCLocalize("NEW_AT"), name]; | |
7577 | section = [[[Section alloc] initWithName:name row:offset localize:NO] autorelease]; | |
7578 | [sections_ addObject:section]; | |
7579 | _end | |
7580 | } | |
7581 | ||
7582 | [section addToCount]; | |
7583 | } else if ([package ignored]) { | |
7584 | if (ignored == nil) { | |
7585 | ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") row:offset localize:NO] autorelease]; | |
7586 | } | |
7587 | [ignored addToCount]; | |
7588 | } else { | |
7589 | ++upgrades_; | |
7590 | [upgradable addToCount]; | |
7591 | } | |
7592 | } | |
7593 | _trace(); | |
7594 | ||
7595 | CFRelease(formatter); | |
7596 | ||
7597 | if (unseens) { | |
7598 | Section *last = [sections_ lastObject]; | |
7599 | size_t count = [last count]; | |
56bf1e78 | 7600 | [packages_ removeObjectsInRange:NSMakeRange([packages_ count] - count, count)]; |
5829aea2 GP |
7601 | [sections_ removeLastObject]; |
7602 | } | |
7603 | ||
7604 | if ([ignored count] != 0) | |
7605 | [sections_ insertObject:ignored atIndex:0]; | |
7606 | if (upgrades_ != 0) | |
7607 | [sections_ insertObject:upgradable atIndex:0]; | |
7608 | ||
7609 | [list_ reloadData]; | |
7610 | ||
cb6b3a7b JF |
7611 | [[self navigationItem] setRightBarButtonItem:(upgrades_ == 0 ? nil : [[[UIBarButtonItem alloc] |
7612 | initWithTitle:[NSString stringWithFormat:UCLocalize("PARENTHETICAL"), UCLocalize("UPGRADE"), [NSString stringWithFormat:@"%u", upgrades_]] | |
7613 | style:UIBarButtonItemStylePlain | |
7614 | target:self | |
7615 | action:@selector(upgradeButtonClicked) | |
7616 | ] autorelease]) animated:YES]; | |
5829aea2 | 7617 | |
cb6b3a7b JF |
7618 | [[self navigationItem] setLeftBarButtonItem:([delegate_ updating] ? nil : [[[UIBarButtonItem alloc] |
7619 | initWithTitle:UCLocalize("REFRESH") | |
7620 | style:UIBarButtonItemStylePlain | |
7621 | target:self | |
7622 | action:@selector(refreshButtonClicked) | |
7623 | ] autorelease]) animated:YES]; | |
5829aea2 GP |
7624 | |
7625 | PrintTimes(); | |
7626 | } } | |
7627 | ||
a70cd4ba JF |
7628 | - (void) reloadData { |
7629 | [super reloadData]; | |
7630 | [self performSelector:@selector(_reloadData) withObject:nil afterDelay:0]; | |
7631 | } | |
7632 | ||
5829aea2 GP |
7633 | @end |
7634 | /* }}} */ | |
7635 | /* Search Controller {{{ */ | |
f50860ee | 7636 | @interface SearchController : FilteredPackageListController < |
5829aea2 GP |
7637 | UISearchBarDelegate |
7638 | > { | |
bf7c998c | 7639 | _H<UISearchBar, 1> search_; |
fe8e721f | 7640 | BOOL searchloaded_; |
5829aea2 GP |
7641 | } |
7642 | ||
43625891 | 7643 | - (id) initWithDatabase:(Database *)database query:(NSString *)query; |
5829aea2 | 7644 | - (void) reloadData; |
d90a4cd6 GP |
7645 | |
7646 | @end | |
7647 | ||
5829aea2 | 7648 | @implementation SearchController |
d90a4cd6 | 7649 | |
fe8e721f | 7650 | - (NSURL *) navigationURL { |
35f0a3b5 GP |
7651 | if ([search_ text] == nil || [[search_ text] isEqualToString:@""]) |
7652 | return [NSURL URLWithString:@"cydia://search"]; | |
7653 | else | |
7654 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://search/%@", [search_ text]]]; | |
fe8e721f GP |
7655 | } |
7656 | ||
59f3d290 | 7657 | - (void) useSearch { |
d84597fe | 7658 | [self setObject:[[search_ text] componentsSeparatedByString:@" "] forFilter:@selector(isUnfilteredAndSearchedForBy:)]; |
59f3d290 JF |
7659 | [self clearData]; |
7660 | [self reloadData]; | |
7661 | } | |
7662 | ||
7663 | - (void) viewWillAppear:(BOOL)animated { | |
7664 | [super viewWillAppear:animated]; | |
7665 | ||
7666 | if ([self filter] == @selector(isUnfilteredAndSelectedForBy:)) | |
7667 | [self useSearch]; | |
7668 | } | |
7669 | ||
3025d5b4 JF |
7670 | - (void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar { |
7671 | [self setObject:[search_ text] forFilter:@selector(isUnfilteredAndSelectedForBy:)]; | |
59f3d290 JF |
7672 | [self clearData]; |
7673 | [self reloadData]; | |
3025d5b4 JF |
7674 | } |
7675 | ||
7676 | - (void) searchBarButtonClicked:(UISearchBar *)searchBar { | |
5829aea2 | 7677 | [search_ resignFirstResponder]; |
59f3d290 | 7678 | [self useSearch]; |
5829aea2 GP |
7679 | } |
7680 | ||
3025d5b4 JF |
7681 | - (void) searchBarCancelButtonClicked:(UISearchBar *)searchBar { |
7682 | [search_ setText:@""]; | |
7683 | [self searchBarButtonClicked:searchBar]; | |
7684 | } | |
7685 | ||
7686 | - (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar { | |
7687 | [self searchBarButtonClicked:searchBar]; | |
7688 | } | |
7689 | ||
5829aea2 | 7690 | - (void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)text { |
f50860ee | 7691 | [self setObject:text forFilter:@selector(isUnfilteredAndSelectedForBy:)]; |
5829aea2 GP |
7692 | [self reloadData]; |
7693 | } | |
7694 | ||
3025d5b4 | 7695 | - (bool) shouldYield { |
56bf1e78 JF |
7696 | return YES; |
7697 | } | |
7698 | ||
7699 | - (bool) shouldBlock { | |
3025d5b4 JF |
7700 | return [self filter] == @selector(isUnfilteredAndSearchedForBy:); |
7701 | } | |
7702 | ||
59f3d290 JF |
7703 | - (bool) isSummarized { |
7704 | return [self filter] == @selector(isUnfilteredAndSelectedForBy:); | |
7705 | } | |
7706 | ||
9c5737d5 JF |
7707 | - (bool) showsSections { |
7708 | return false; | |
7709 | } | |
7710 | ||
7711 | - (NSMutableArray *) _reloadPackages { | |
7712 | NSMutableArray *packages([super _reloadPackages]); | |
7713 | if ([self filter] == @selector(isUnfilteredAndSearchedForBy:)) | |
7714 | [packages radixSortUsingSelector:@selector(rank)]; | |
7715 | return packages; | |
7716 | } | |
7717 | ||
43625891 | 7718 | - (id) initWithDatabase:(Database *)database query:(NSString *)query { |
d84597fe | 7719 | if ((self = [super initWithDatabase:database title:UCLocalize("SEARCH") filter:@selector(isUnfilteredAndSearchedForBy:) with:[query componentsSeparatedByString:@" "]])) { |
900095fd JF |
7720 | search_ = [[[UISearchBar alloc] init] autorelease]; |
7721 | [search_ setDelegate:self]; | |
43625891 JF |
7722 | |
7723 | if (query != nil) | |
7724 | [search_ setText:query]; | |
fe8e721f | 7725 | } return self; |
5829aea2 GP |
7726 | } |
7727 | ||
6840bff3 | 7728 | - (void) viewDidAppear:(BOOL)animated { |
5829aea2 | 7729 | [super viewDidAppear:animated]; |
fe8e721f GP |
7730 | |
7731 | if (!searchloaded_) { | |
7732 | searchloaded_ = YES; | |
7733 | [search_ setFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)]; | |
5829aea2 GP |
7734 | [search_ layoutSubviews]; |
7735 | [search_ setPlaceholder:UCLocalize("SEARCH_EX")]; | |
7736 | ||
7737 | UITextField *textField; | |
7738 | if ([search_ respondsToSelector:@selector(searchField)]) | |
7739 | textField = [search_ searchField]; | |
7740 | else | |
7741 | textField = MSHookIvar<UITextField *>(search_, "_searchField"); | |
7742 | ||
7743 | [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; | |
5829aea2 GP |
7744 | [textField setEnablesReturnKeyAutomatically:NO]; |
7745 | [[self navigationItem] setTitleView:textField]; | |
d90a4cd6 | 7746 | } |
5829aea2 | 7747 | } |
d90a4cd6 | 7748 | |
d90a4cd6 | 7749 | - (void) reloadData { |
d84597fe JF |
7750 | id object([search_ text]); |
7751 | if ([self filter] == @selector(isUnfilteredAndSearchedForBy:)) | |
7752 | object = [object componentsSeparatedByString:@" "]; | |
7753 | ||
7754 | [self setObject:object]; | |
f50860ee | 7755 | [self resetCursor]; |
9dac415b JF |
7756 | |
7757 | [super reloadData]; | |
d90a4cd6 GP |
7758 | } |
7759 | ||
5829aea2 GP |
7760 | - (void) didSelectPackage:(Package *)package { |
7761 | [search_ resignFirstResponder]; | |
7762 | [super didSelectPackage:package]; | |
d90a4cd6 GP |
7763 | } |
7764 | ||
7765 | @end | |
7766 | /* }}} */ | |
5829aea2 | 7767 | /* Package Settings Controller {{{ */ |
cd79e8cf | 7768 | @interface PackageSettingsController : CyteViewController < |
c21004b9 JF |
7769 | UITableViewDataSource, |
7770 | UITableViewDelegate | |
7771 | > { | |
807ae6d7 | 7772 | _transient Database *database_; |
7b33d201 JF |
7773 | _H<NSString> name_; |
7774 | _H<Package> package_; | |
bf7c998c | 7775 | _H<UITableView, 2> table_; |
7b33d201 JF |
7776 | _H<UISwitch> subscribedSwitch_; |
7777 | _H<UISwitch> ignoredSwitch_; | |
7778 | _H<UITableViewCell> subscribedCell_; | |
7779 | _H<UITableViewCell> ignoredCell_; | |
807ae6d7 JF |
7780 | } |
7781 | ||
5829aea2 | 7782 | - (id) initWithDatabase:(Database *)database package:(NSString *)package; |
c21004b9 | 7783 | |
807ae6d7 JF |
7784 | @end |
7785 | ||
5829aea2 | 7786 | @implementation PackageSettingsController |
807ae6d7 | 7787 | |
fe8e721f | 7788 | - (NSURL *) navigationURL { |
8861e953 | 7789 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@/settings", (id) name_]]; |
fe8e721f GP |
7790 | } |
7791 | ||
5829aea2 GP |
7792 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
7793 | if (package_ == nil) | |
7794 | return 0; | |
e954c30a | 7795 | |
2136717a DH |
7796 | if ([package_ installed] == nil) |
7797 | return 1; | |
7798 | else | |
7799 | return 2; | |
e954c30a GP |
7800 | } |
7801 | ||
5829aea2 GP |
7802 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
7803 | if (package_ == nil) | |
7804 | return 0; | |
7805 | ||
2136717a DH |
7806 | // both sections contain just one item right now. |
7807 | return 1; | |
b5e7eebb GP |
7808 | } |
7809 | ||
5829aea2 | 7810 | - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { |
2136717a | 7811 | return nil; |
e954c30a GP |
7812 | } |
7813 | ||
5829aea2 | 7814 | - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section { |
2136717a DH |
7815 | if (section == 0) |
7816 | return UCLocalize("SHOW_ALL_CHANGES_EX"); | |
7817 | else | |
7818 | return UCLocalize("IGNORE_UPGRADES_EX"); | |
807ae6d7 JF |
7819 | } |
7820 | ||
5829aea2 GP |
7821 | - (void) onSubscribed:(id)control { |
7822 | bool value([control isOn]); | |
7823 | if (package_ == nil) | |
7824 | return; | |
7825 | if ([package_ setSubscribed:value]) | |
7826 | [delegate_ updateData]; | |
807ae6d7 JF |
7827 | } |
7828 | ||
e5e70358 JF |
7829 | - (void) _updateIgnored { |
7830 | const char *package([name_ UTF8String]); | |
7831 | bool on([ignoredSwitch_ isOn]); | |
7832 | ||
7833 | pid_t pid(ExecFork()); | |
7834 | if (pid == 0) { | |
7835 | FILE *dpkg(popen("dpkg --set-selections", "w")); | |
7836 | fwrite(package, strlen(package), 1, dpkg); | |
7837 | ||
7838 | if (on) | |
7839 | fwrite(" hold\n", 6, 1, dpkg); | |
7840 | else | |
7841 | fwrite(" install\n", 9, 1, dpkg); | |
7842 | ||
7843 | pclose(dpkg); | |
7844 | ||
7845 | exit(0); | |
7846 | _assert(false); | |
7847 | } | |
7848 | ||
d99e3659 | 7849 | ReapZombie(pid); |
e5e70358 JF |
7850 | } |
7851 | ||
5829aea2 | 7852 | - (void) onIgnored:(id)control { |
e5e70358 JF |
7853 | NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(_updateIgnored)]]); |
7854 | [invocation setTarget:self]; | |
7855 | [invocation setSelector:@selector(_updateIgnored)]; | |
7856 | ||
7857 | [delegate_ reloadDataWithInvocation:invocation]; | |
5829aea2 | 7858 | } |
807ae6d7 | 7859 | |
46aa9775 | 7860 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
5829aea2 GP |
7861 | if (package_ == nil) |
7862 | return nil; | |
b5e7eebb | 7863 | |
2136717a | 7864 | switch ([indexPath section]) { |
5829aea2 GP |
7865 | case 0: return subscribedCell_; |
7866 | case 1: return ignoredCell_; | |
36fbb2aa | 7867 | |
5829aea2 GP |
7868 | _nodefault |
7869 | } | |
807ae6d7 | 7870 | |
5829aea2 | 7871 | return nil; |
807ae6d7 JF |
7872 | } |
7873 | ||
fe8e721f GP |
7874 | - (void) loadView { |
7875 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
807ae6d7 | 7876 | |
7b33d201 | 7877 | table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease]; |
fe8e721f | 7878 | [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
7b33d201 | 7879 | [(UITableView *) table_ setDataSource:self]; |
fe8e721f GP |
7880 | [table_ setDelegate:self]; |
7881 | [[self view] addSubview:table_]; | |
807ae6d7 | 7882 | |
7b33d201 | 7883 | subscribedSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease]; |
fe8e721f GP |
7884 | [subscribedSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin]; |
7885 | [subscribedSwitch_ addTarget:self action:@selector(onSubscribed:) forEvents:UIControlEventValueChanged]; | |
807ae6d7 | 7886 | |
7b33d201 | 7887 | ignoredSwitch_ = [[[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 50, 20)] autorelease]; |
fe8e721f GP |
7888 | [ignoredSwitch_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin]; |
7889 | [ignoredSwitch_ addTarget:self action:@selector(onIgnored:) forEvents:UIControlEventValueChanged]; | |
807ae6d7 | 7890 | |
7b33d201 | 7891 | subscribedCell_ = [[[UITableViewCell alloc] init] autorelease]; |
fe8e721f GP |
7892 | [subscribedCell_ setText:UCLocalize("SHOW_ALL_CHANGES")]; |
7893 | [subscribedCell_ setAccessoryView:subscribedSwitch_]; | |
7894 | [subscribedCell_ setSelectionStyle:UITableViewCellSelectionStyleNone]; | |
5829aea2 | 7895 | |
7b33d201 | 7896 | ignoredCell_ = [[[UITableViewCell alloc] init] autorelease]; |
fe8e721f GP |
7897 | [ignoredCell_ setText:UCLocalize("IGNORE_UPGRADES")]; |
7898 | [ignoredCell_ setAccessoryView:ignoredSwitch_]; | |
7899 | [ignoredCell_ setSelectionStyle:UITableViewCellSelectionStyleNone]; | |
fe8e721f | 7900 | } |
5829aea2 | 7901 | |
fe8e721f | 7902 | - (void) viewDidLoad { |
7d887d0b JF |
7903 | [super viewDidLoad]; |
7904 | ||
fe8e721f GP |
7905 | [[self navigationItem] setTitle:UCLocalize("SETTINGS")]; |
7906 | } | |
5829aea2 | 7907 | |
fe8e721f | 7908 | - (void) releaseSubviews { |
fe8e721f | 7909 | ignoredCell_ = nil; |
fe8e721f | 7910 | subscribedCell_ = nil; |
fe8e721f | 7911 | table_ = nil; |
fe8e721f | 7912 | ignoredSwitch_ = nil; |
fe8e721f | 7913 | subscribedSwitch_ = nil; |
7be3eb32 JF |
7914 | |
7915 | [super releaseSubviews]; | |
fe8e721f GP |
7916 | } |
7917 | ||
7918 | - (id) initWithDatabase:(Database *)database package:(NSString *)package { | |
6840bff3 | 7919 | if ((self = [super init]) != nil) { |
fe8e721f | 7920 | database_ = database; |
7b33d201 | 7921 | name_ = package; |
807ae6d7 JF |
7922 | } return self; |
7923 | } | |
7924 | ||
7925 | - (void) reloadData { | |
fe8e721f GP |
7926 | [super reloadData]; |
7927 | ||
5829aea2 | 7928 | package_ = [database_ packageWithName:name_]; |
f3e2c0ac | 7929 | |
5829aea2 | 7930 | if (package_ != nil) { |
5829aea2 GP |
7931 | [subscribedSwitch_ setOn:([package_ subscribed] ? 1 : 0) animated:NO]; |
7932 | [ignoredSwitch_ setOn:([package_ ignored] ? 1 : 0) animated:NO]; | |
f3e2c0ac | 7933 | } // XXX: what now, G? |
dc5812ec | 7934 | |
5829aea2 GP |
7935 | [table_ reloadData]; |
7936 | } | |
6d9712c4 | 7937 | |
dc5812ec | 7938 | @end |
2367a917 | 7939 | /* }}} */ |
d90a4cd6 | 7940 | |
5829aea2 | 7941 | /* Installed Controller {{{ */ |
f50860ee | 7942 | @interface InstalledController : FilteredPackageListController { |
5829aea2 | 7943 | BOOL expert_; |
dc5812ec JF |
7944 | } |
7945 | ||
5829aea2 GP |
7946 | - (id) initWithDatabase:(Database *)database; |
7947 | ||
7948 | - (void) updateRoleButton; | |
7949 | - (void) queueStatusDidChange; | |
dc5812ec | 7950 | |
dc5812ec JF |
7951 | @end |
7952 | ||
5829aea2 | 7953 | @implementation InstalledController |
b4d89997 | 7954 | |
fe8e721f GP |
7955 | - (NSURL *) navigationURL { |
7956 | return [NSURL URLWithString:@"cydia://installed"]; | |
7957 | } | |
b5e7eebb | 7958 | |
5829aea2 GP |
7959 | - (id) initWithDatabase:(Database *)database { |
7960 | if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED") filter:@selector(isInstalledAndUnfiltered:) with:[NSNumber numberWithBool:YES]]) != nil) { | |
7961 | [self updateRoleButton]; | |
7962 | [self queueStatusDidChange]; | |
7963 | } return self; | |
dc5812ec JF |
7964 | } |
7965 | ||
5829aea2 GP |
7966 | #if !AlwaysReload |
7967 | - (void) queueButtonClicked { | |
7968 | [delegate_ queue]; | |
dc5812ec | 7969 | } |
5829aea2 | 7970 | #endif |
dc5812ec | 7971 | |
5829aea2 GP |
7972 | - (void) queueStatusDidChange { |
7973 | #if !AlwaysReload | |
7974 | if (IsWildcat_) { | |
7975 | if (Queuing_) { | |
7976 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
7977 | initWithTitle:UCLocalize("QUEUE") | |
7978 | style:UIBarButtonItemStyleDone | |
7979 | target:self | |
7980 | action:@selector(queueButtonClicked) | |
7981 | ] autorelease]]; | |
7982 | } else { | |
7983 | [[self navigationItem] setLeftBarButtonItem:nil]; | |
7984 | } | |
7985 | } | |
7986 | #endif | |
dc5812ec JF |
7987 | } |
7988 | ||
5829aea2 GP |
7989 | - (void) updateRoleButton { |
7990 | if (Role_ != nil && ![Role_ isEqualToString:@"Developer"]) | |
7991 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] | |
7992 | initWithTitle:(expert_ ? UCLocalize("EXPERT") : UCLocalize("SIMPLE")) | |
7993 | style:(expert_ ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain) | |
7994 | target:self | |
7995 | action:@selector(roleButtonClicked) | |
7996 | ] autorelease]]; | |
dc5812ec JF |
7997 | } |
7998 | ||
5829aea2 | 7999 | - (void) roleButtonClicked { |
f50860ee GP |
8000 | [self setObject:[NSNumber numberWithBool:expert_]]; |
8001 | [self reloadData]; | |
5829aea2 | 8002 | expert_ = !expert_; |
dc5812ec | 8003 | |
5829aea2 | 8004 | [self updateRoleButton]; |
9a7b04c5 JF |
8005 | } |
8006 | ||
5829aea2 GP |
8007 | @end |
8008 | /* }}} */ | |
b5e7eebb | 8009 | |
5829aea2 | 8010 | /* Source Cell {{{ */ |
a9311516 | 8011 | @interface SourceCell : CyteTableViewCell < |
b97fcfc6 | 8012 | CyteTableViewCellDelegate |
5829aea2 | 8013 | > { |
02735663 | 8014 | _H<NSURL> url_; |
7b33d201 JF |
8015 | _H<UIImage> icon_; |
8016 | _H<NSString> origin_; | |
8017 | _H<NSString> label_; | |
5829aea2 | 8018 | } |
dc5812ec | 8019 | |
5829aea2 | 8020 | - (void) setSource:(Source *)source; |
6da1297d | 8021 | |
5829aea2 | 8022 | @end |
dc5812ec | 8023 | |
5829aea2 | 8024 | @implementation SourceCell |
36bb2ca2 | 8025 | |
02735663 JF |
8026 | - (void) _setImage:(NSArray *)data { |
8027 | if ([url_ isEqual:[data objectAtIndex:0]]) { | |
8028 | icon_ = [data objectAtIndex:1]; | |
8029 | [content_ setNeedsDisplay]; | |
8030 | } | |
8252b666 JF |
8031 | } |
8032 | ||
7bd76e97 | 8033 | - (void) _setSource:(NSURL *) url { |
8252b666 JF |
8034 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); |
8035 | ||
7bd76e97 JF |
8036 | if (NSData *data = [NSURLConnection |
8037 | sendSynchronousRequest:[NSURLRequest | |
8038 | requestWithURL:url | |
8039 | //cachePolicy:NSURLRequestUseProtocolCachePolicy | |
8040 | //timeoutInterval:5 | |
8041 | ] | |
8042 | ||
8043 | returningResponse:NULL | |
8044 | error:NULL | |
8045 | ]) | |
8046 | if (UIImage *image = [UIImage imageWithData:data]) | |
02735663 | 8047 | [self performSelectorOnMainThread:@selector(_setImage:) withObject:[NSArray arrayWithObjects:url, image, nil] waitUntilDone:NO]; |
8252b666 JF |
8048 | |
8049 | [pool release]; | |
8050 | } | |
8051 | ||
5829aea2 | 8052 | - (void) setSource:(Source *)source { |
8252b666 | 8053 | icon_ = [UIImage applicationImageNamed:@"unknown.png"]; |
5829aea2 | 8054 | |
7b33d201 | 8055 | origin_ = [source name]; |
7bd76e97 | 8056 | label_ = [source rooturi]; |
5829aea2 GP |
8057 | |
8058 | [content_ setNeedsDisplay]; | |
8252b666 | 8059 | |
02735663 JF |
8060 | url_ = [source iconURL]; |
8061 | [NSThread detachNewThreadSelector:@selector(_setSource:) toTarget:self withObject:url_]; | |
77801ff1 JF |
8062 | } |
8063 | ||
5829aea2 GP |
8064 | - (SourceCell *) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { |
8065 | if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { | |
8066 | UIView *content([self contentView]); | |
8067 | CGRect bounds([content bounds]); | |
77801ff1 | 8068 | |
b97fcfc6 | 8069 | content_ = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; |
5829aea2 GP |
8070 | [content_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
8071 | [content_ setBackgroundColor:[UIColor whiteColor]]; | |
8072 | [content addSubview:content_]; | |
dc5812ec | 8073 | |
5829aea2 GP |
8074 | [content_ setDelegate:self]; |
8075 | [content_ setOpaque:YES]; | |
53db9999 JF |
8076 | |
8077 | [[content_ layer] setContentsGravity:kCAGravityTopLeft]; | |
5829aea2 GP |
8078 | } return self; |
8079 | } | |
b4d89997 | 8080 | |
003fc610 GP |
8081 | - (NSString *) accessibilityLabel { |
8082 | return label_; | |
8083 | } | |
8084 | ||
5829aea2 GP |
8085 | - (void) drawContentRect:(CGRect)rect { |
8086 | bool highlighted(highlighted_); | |
8087 | float width(rect.size.width); | |
36bb2ca2 | 8088 | |
25c1dafb JF |
8089 | if (icon_ != nil) { |
8090 | CGRect rect; | |
8091 | rect.size = [(UIImage *) icon_ size]; | |
8092 | ||
8093 | while (rect.size.width > 32 || rect.size.height > 32) { | |
8094 | rect.size.width /= 2; | |
8095 | rect.size.height /= 2; | |
8096 | } | |
8097 | ||
8098 | rect.origin.x = 25 - rect.size.width / 2; | |
8099 | rect.origin.y = 25 - rect.size.height / 2; | |
8100 | ||
8101 | [icon_ drawInRect:rect]; | |
8102 | } | |
36bb2ca2 | 8103 | |
5829aea2 GP |
8104 | if (highlighted) |
8105 | UISetColor(White_); | |
dc5812ec | 8106 | |
5829aea2 GP |
8107 | if (!highlighted) |
8108 | UISetColor(Black_); | |
e93fd095 | 8109 | [origin_ drawAtPoint:CGPointMake(48, 8) forWidth:(width - 65) withFont:Font18Bold_ lineBreakMode:UILineBreakModeTailTruncation]; |
f79a4512 | 8110 | |
5829aea2 | 8111 | if (!highlighted) |
e93fd095 JF |
8112 | UISetColor(Gray_); |
8113 | [label_ drawAtPoint:CGPointMake(48, 29) forWidth:(width - 65) withFont:Font12_ lineBreakMode:UILineBreakModeTailTruncation]; | |
5829aea2 | 8114 | } |
dc5812ec | 8115 | |
5829aea2 GP |
8116 | @end |
8117 | /* }}} */ | |
3f8edf70 | 8118 | /* Source Controller {{{ */ |
f50860ee | 8119 | @interface SourceController : FilteredPackageListController { |
2d5372fc | 8120 | _transient Source *source_; |
7b33d201 | 8121 | _H<NSString> key_; |
3f8edf70 GP |
8122 | } |
8123 | ||
8124 | - (id) initWithDatabase:(Database *)database source:(Source *)source; | |
8125 | ||
8126 | @end | |
8127 | ||
8128 | @implementation SourceController | |
8129 | ||
fe8e721f | 8130 | - (NSURL *) navigationURL { |
6cfdc306 | 8131 | return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://sources/%@", [key_ stringByAddingPercentEscapesIncludingReserved]]]; |
fe8e721f GP |
8132 | } |
8133 | ||
3f8edf70 | 8134 | - (id) initWithDatabase:(Database *)database source:(Source *)source { |
7c642bd6 JF |
8135 | if ((self = [super initWithDatabase:database title:[source label] filter:@selector(isVisibleInSource:) with:source]) != nil) { |
8136 | source_ = source; | |
7b33d201 | 8137 | key_ = [source key]; |
3f8edf70 GP |
8138 | } return self; |
8139 | } | |
8140 | ||
2d5372fc | 8141 | - (void) reloadData { |
d669236d | 8142 | source_ = [database_ sourceWithKey:key_]; |
7b33d201 | 8143 | key_ = [source_ key]; |
2d5372fc | 8144 | [self setObject:source_]; |
9dac415b | 8145 | |
b6494e70 | 8146 | [[self navigationItem] setTitle:[source_ label]]; |
2d5372fc GP |
8147 | |
8148 | [super reloadData]; | |
8149 | } | |
8150 | ||
3f8edf70 GP |
8151 | @end |
8152 | /* }}} */ | |
8153 | /* Sources Controller {{{ */ | |
cd79e8cf | 8154 | @interface SourcesController : CyteViewController < |
5829aea2 GP |
8155 | UITableViewDataSource, |
8156 | UITableViewDelegate | |
8157 | > { | |
8158 | _transient Database *database_; | |
c33064f1 JF |
8159 | unsigned era_; |
8160 | ||
bf7c998c | 8161 | _H<UITableView, 2> list_; |
7b33d201 | 8162 | _H<NSMutableArray> sources_; |
5829aea2 | 8163 | int offset_; |
723a0072 | 8164 | |
7b33d201 JF |
8165 | _H<NSString> href_; |
8166 | _H<UIProgressHUD> hud_; | |
8167 | _H<NSError> error_; | |
dc63e78f | 8168 | |
5829aea2 GP |
8169 | //NSURLConnection *installer_; |
8170 | NSURLConnection *trivial_; | |
8171 | NSURLConnection *trivial_bz2_; | |
8172 | NSURLConnection *trivial_gz_; | |
8173 | //NSURLConnection *automatic_; | |
b4d89997 | 8174 | |
5829aea2 GP |
8175 | BOOL cydia_; |
8176 | } | |
dc5812ec | 8177 | |
5829aea2 | 8178 | - (id) initWithDatabase:(Database *)database; |
5829aea2 GP |
8179 | - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated; |
8180 | ||
8181 | @end | |
8182 | ||
8183 | @implementation SourcesController | |
8184 | ||
8185 | - (void) _releaseConnection:(NSURLConnection *)connection { | |
8186 | if (connection != nil) { | |
8187 | [connection cancel]; | |
8188 | //[connection setDelegate:nil]; | |
8189 | [connection release]; | |
36bb2ca2 | 8190 | } |
5829aea2 | 8191 | } |
dc5812ec | 8192 | |
5829aea2 | 8193 | - (void) dealloc { |
5829aea2 GP |
8194 | //[self _releaseConnection:installer_]; |
8195 | [self _releaseConnection:trivial_]; | |
8196 | [self _releaseConnection:trivial_gz_]; | |
8197 | [self _releaseConnection:trivial_bz2_]; | |
8198 | //[self _releaseConnection:automatic_]; | |
3178d79b | 8199 | |
5829aea2 GP |
8200 | [super dealloc]; |
8201 | } | |
b5e7eebb | 8202 | |
fe8e721f GP |
8203 | - (NSURL *) navigationURL { |
8204 | return [NSURL URLWithString:@"cydia://sources"]; | |
8205 | } | |
8206 | ||
5829aea2 GP |
8207 | - (void) viewDidAppear:(BOOL)animated { |
8208 | [super viewDidAppear:animated]; | |
8209 | [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; | |
8210 | } | |
9bb3b295 | 8211 | |
5829aea2 | 8212 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
90ba4f86 | 8213 | return 1; |
5829aea2 | 8214 | } |
8fe19fc1 | 8215 | |
5829aea2 | 8216 | - (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { |
90ba4f86 | 8217 | return nil; |
36bb2ca2 | 8218 | } |
b4d89997 | 8219 | |
5829aea2 | 8220 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
90ba4f86 | 8221 | return [sources_ count]; |
5829aea2 | 8222 | } |
3178d79b | 8223 | |
5829aea2 | 8224 | - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath { |
c33064f1 JF |
8225 | @synchronized (database_) { |
8226 | if ([database_ era] != era_) | |
8227 | return nil; | |
8228 | ||
90ba4f86 | 8229 | return [sources_ objectAtIndex:[indexPath row]]; |
c33064f1 | 8230 | } } |
b4d89997 | 8231 | |
5829aea2 GP |
8232 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
8233 | static NSString *cellIdentifier = @"SourceCell"; | |
8234 | ||
8235 | SourceCell *cell = (SourceCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; | |
8236 | if(cell == nil) cell = [[[SourceCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease]; | |
8237 | [cell setSource:[self sourceAtIndexPath:indexPath]]; | |
b89fa270 | 8238 | [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator]; |
5829aea2 GP |
8239 | |
8240 | return cell; | |
f6e13561 GP |
8241 | } |
8242 | ||
5829aea2 GP |
8243 | - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
8244 | Source *source = [self sourceAtIndexPath:indexPath]; | |
8245 | ||
3f8edf70 | 8246 | SourceController *controller = [[[SourceController alloc] |
5829aea2 | 8247 | initWithDatabase:database_ |
3f8edf70 | 8248 | source:source |
5829aea2 GP |
8249 | ] autorelease]; |
8250 | ||
3f8edf70 | 8251 | [controller setDelegate:delegate_]; |
5829aea2 | 8252 | |
3f8edf70 | 8253 | [[self navigationController] pushViewController:controller animated:YES]; |
36bb2ca2 | 8254 | } |
b4d89997 | 8255 | |
6840bff3 | 8256 | - (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { |
5829aea2 GP |
8257 | Source *source = [self sourceAtIndexPath:indexPath]; |
8258 | return [source record] != nil; | |
dcb47737 RP |
8259 | } |
8260 | ||
6840bff3 | 8261 | - (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
0e1aa02c JF |
8262 | if (editingStyle == UITableViewCellEditingStyleDelete) { |
8263 | Source *source = [self sourceAtIndexPath:indexPath]; | |
8264 | [Sources_ removeObjectForKey:[source key]]; | |
8265 | [delegate_ syncData]; | |
8266 | } | |
5829aea2 | 8267 | } |
bcccf498 | 8268 | |
5829aea2 | 8269 | - (void) complete { |
93460555 | 8270 | [delegate_ addTrivialSource:href_]; |
da3ec19c JF |
8271 | href_ = nil; |
8272 | ||
5829aea2 | 8273 | [delegate_ syncData]; |
3178d79b JF |
8274 | } |
8275 | ||
5829aea2 GP |
8276 | - (NSString *) getWarning { |
8277 | NSString *href(href_); | |
8278 | NSRange colon([href rangeOfString:@"://"]); | |
8279 | if (colon.location != NSNotFound) | |
8280 | href = [href substringFromIndex:(colon.location + 3)]; | |
8281 | href = [href stringByAddingPercentEscapes]; | |
8282 | href = [CydiaURL(@"api/repotag/") stringByAppendingString:href]; | |
5829aea2 GP |
8283 | |
8284 | NSURL *url([NSURL URLWithString:href]); | |
8285 | ||
8286 | NSStringEncoding encoding; | |
8287 | NSError *error(nil); | |
8288 | ||
8289 | if (NSString *warning = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error]) | |
8290 | return [warning length] == 0 ? nil : warning; | |
8291 | return nil; | |
807ae6d7 | 8292 | } |
b4d89997 | 8293 | |
5829aea2 GP |
8294 | - (void) _endConnection:(NSURLConnection *)connection { |
8295 | // XXX: the memory management in this method is horribly awkward | |
8296 | ||
8297 | NSURLConnection **field = NULL; | |
8298 | if (connection == trivial_) | |
8299 | field = &trivial_; | |
8300 | else if (connection == trivial_bz2_) | |
8301 | field = &trivial_bz2_; | |
8302 | else if (connection == trivial_gz_) | |
8303 | field = &trivial_gz_; | |
8304 | _assert(field != NULL); | |
8305 | [connection release]; | |
8306 | *field = nil; | |
8307 | ||
8308 | if ( | |
8309 | trivial_ == nil && | |
8310 | trivial_bz2_ == nil && | |
8311 | trivial_gz_ == nil | |
8312 | ) { | |
da3ec19c JF |
8313 | NSString *warning(cydia_ ? [self yieldToSelector:@selector(getWarning)] : nil); |
8314 | ||
9eae15b8 JF |
8315 | [delegate_ releaseNetworkActivityIndicator]; |
8316 | ||
8317 | [delegate_ removeProgressHUD:hud_]; | |
9eae15b8 JF |
8318 | hud_ = nil; |
8319 | ||
5829aea2 | 8320 | if (cydia_) { |
da3ec19c | 8321 | if (warning != nil) { |
5829aea2 GP |
8322 | UIAlertView *alert = [[[UIAlertView alloc] |
8323 | initWithTitle:UCLocalize("SOURCE_WARNING") | |
8324 | message:warning | |
8325 | delegate:self | |
8326 | cancelButtonTitle:UCLocalize("CANCEL") | |
1aa29546 JF |
8327 | otherButtonTitles: |
8328 | UCLocalize("ADD_ANYWAY"), | |
8329 | nil | |
5829aea2 GP |
8330 | ] autorelease]; |
8331 | ||
8332 | [alert setContext:@"warning"]; | |
8333 | [alert setNumberOfRows:1]; | |
8334 | [alert show]; | |
708cf61e JF |
8335 | |
8336 | // XXX: there used to be this great mechanism called yieldToPopup... who deleted it? | |
8337 | error_ = nil; | |
8338 | return; | |
8339 | } | |
8340 | ||
8341 | [self complete]; | |
5829aea2 GP |
8342 | } else if (error_ != nil) { |
8343 | UIAlertView *alert = [[[UIAlertView alloc] | |
8344 | initWithTitle:UCLocalize("VERIFICATION_ERROR") | |
8345 | message:[error_ localizedDescription] | |
8346 | delegate:self | |
8347 | cancelButtonTitle:UCLocalize("OK") | |
8348 | otherButtonTitles:nil | |
8349 | ] autorelease]; | |
8350 | ||
8351 | [alert setContext:@"urlerror"]; | |
8352 | [alert show]; | |
da3ec19c JF |
8353 | |
8354 | href_ = nil; | |
5829aea2 GP |
8355 | } else { |
8356 | UIAlertView *alert = [[[UIAlertView alloc] | |
8357 | initWithTitle:UCLocalize("NOT_REPOSITORY") | |
8358 | message:UCLocalize("NOT_REPOSITORY_EX") | |
8359 | delegate:self | |
8360 | cancelButtonTitle:UCLocalize("OK") | |
8361 | otherButtonTitles:nil | |
8362 | ] autorelease]; | |
8363 | ||
8364 | [alert setContext:@"trivial"]; | |
8365 | [alert show]; | |
da3ec19c JF |
8366 | |
8367 | href_ = nil; | |
5829aea2 GP |
8368 | } |
8369 | ||
7b33d201 | 8370 | error_ = nil; |
5829aea2 | 8371 | } |
807ae6d7 | 8372 | } |
8fe19fc1 | 8373 | |
5829aea2 GP |
8374 | - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response { |
8375 | switch ([response statusCode]) { | |
8376 | case 200: | |
8377 | cydia_ = YES; | |
8378 | } | |
8e05f686 RP |
8379 | } |
8380 | ||
5829aea2 GP |
8381 | - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { |
8382 | lprintf("connection:\"%s\" didFailWithError:\"%s\"", [href_ UTF8String], [[error localizedDescription] UTF8String]); | |
7b33d201 | 8383 | error_ = error; |
5829aea2 | 8384 | [self _endConnection:connection]; |
807ae6d7 | 8385 | } |
b4d89997 | 8386 | |
5829aea2 GP |
8387 | - (void) connectionDidFinishLoading:(NSURLConnection *)connection { |
8388 | [self _endConnection:connection]; | |
8389 | } | |
b4d89997 | 8390 | |
5829aea2 | 8391 | - (NSURLConnection *) _requestHRef:(NSString *)href method:(NSString *)method { |
2e1652a9 JF |
8392 | NSURL *url([NSURL URLWithString:href]); |
8393 | ||
5829aea2 | 8394 | NSMutableURLRequest *request = [NSMutableURLRequest |
2e1652a9 | 8395 | requestWithURL:url |
5829aea2 GP |
8396 | cachePolicy:NSURLRequestUseProtocolCachePolicy |
8397 | timeoutInterval:120.0 | |
8398 | ]; | |
bc11cf5b | 8399 | |
5829aea2 | 8400 | [request setHTTPMethod:method]; |
b4d89997 | 8401 | |
5829aea2 GP |
8402 | if (Machine_ != NULL) |
8403 | [request setValue:[NSString stringWithUTF8String:Machine_] forHTTPHeaderField:@"X-Machine"]; | |
2e1652a9 JF |
8404 | |
8405 | if ([url isCydiaSecure]) { | |
c83678e8 | 8406 | if (UniqueID_ != nil) { |
2e1652a9 | 8407 | [request setValue:UniqueID_ forHTTPHeaderField:@"X-Unique-ID"]; |
c83678e8 JF |
8408 | [request setValue:UniqueID_ forHTTPHeaderField:@"X-Cydia-Id"]; |
8409 | } | |
2e1652a9 | 8410 | } |
b4d89997 | 8411 | |
5829aea2 | 8412 | return [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease]; |
3178d79b JF |
8413 | } |
8414 | ||
6840bff3 | 8415 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
5829aea2 | 8416 | NSString *context([alert context]); |
dc5812ec | 8417 | |
5829aea2 GP |
8418 | if ([context isEqualToString:@"source"]) { |
8419 | switch (button) { | |
8420 | case 1: { | |
8421 | NSString *href = [[alert textField] text]; | |
baf80942 | 8422 | |
5829aea2 | 8423 | //installer_ = [[self _requestHRef:href method:@"GET"] retain]; |
f6e13561 | 8424 | |
5829aea2 GP |
8425 | if (![href hasSuffix:@"/"]) |
8426 | href_ = [href stringByAppendingString:@"/"]; | |
8427 | else | |
8428 | href_ = href; | |
b4d89997 | 8429 | |
5829aea2 GP |
8430 | trivial_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages"] method:@"HEAD"] retain]; |
8431 | trivial_bz2_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.bz2"] method:@"HEAD"] retain]; | |
8432 | trivial_gz_ = [[self _requestHRef:[href_ stringByAppendingString:@"Packages.gz"] method:@"HEAD"] retain]; | |
8433 | //trivial_bz2_ = [[self _requestHRef:[href stringByAppendingString:@"dists/Release"] method:@"HEAD"] retain]; | |
b4d89997 | 8434 | |
5829aea2 | 8435 | cydia_ = false; |
8fe19fc1 | 8436 | |
5829aea2 | 8437 | // XXX: this is stupid |
7b33d201 | 8438 | hud_ = [delegate_ addProgressHUD]; |
5829aea2 | 8439 | [hud_ setText:UCLocalize("VERIFYING_URL")]; |
dcaecde2 | 8440 | [delegate_ retainNetworkActivityIndicator]; |
5829aea2 | 8441 | } break; |
770f2a8e | 8442 | |
5829aea2 GP |
8443 | case 0: |
8444 | break; | |
bc11cf5b | 8445 | |
5829aea2 GP |
8446 | _nodefault |
8447 | } | |
770f2a8e | 8448 | |
5829aea2 GP |
8449 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
8450 | } else if ([context isEqualToString:@"trivial"]) | |
8451 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
8452 | else if ([context isEqualToString:@"urlerror"]) | |
8453 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
8454 | else if ([context isEqualToString:@"warning"]) { | |
8455 | switch (button) { | |
8456 | case 1: | |
da3ec19c | 8457 | [self performSelector:@selector(complete) withObject:nil afterDelay:0]; |
5829aea2 | 8458 | break; |
770f2a8e | 8459 | |
5829aea2 GP |
8460 | case 0: |
8461 | break; | |
b5e7eebb | 8462 | |
5829aea2 GP |
8463 | _nodefault |
8464 | } | |
770f2a8e | 8465 | |
5829aea2 GP |
8466 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
8467 | } | |
8468 | } | |
770f2a8e | 8469 | |
fe8e721f GP |
8470 | - (void) loadView { |
8471 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
770f2a8e | 8472 | |
7b33d201 | 8473 | list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease]; |
fe8e721f | 8474 | [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
6ac6e186 | 8475 | [list_ setRowHeight:53]; |
7b33d201 | 8476 | [(UITableView *) list_ setDataSource:self]; |
fe8e721f GP |
8477 | [list_ setDelegate:self]; |
8478 | [[self view] addSubview:list_]; | |
8479 | } | |
770f2a8e | 8480 | |
fe8e721f | 8481 | - (void) viewDidLoad { |
7d887d0b JF |
8482 | [super viewDidLoad]; |
8483 | ||
fe8e721f GP |
8484 | [[self navigationItem] setTitle:UCLocalize("SOURCES")]; |
8485 | [self updateButtonsForEditingStatus:NO animated:NO]; | |
8486 | } | |
770f2a8e | 8487 | |
fe8e721f | 8488 | - (void) releaseSubviews { |
fe8e721f | 8489 | list_ = nil; |
7be3eb32 | 8490 | |
4f9acb7c JF |
8491 | sources_ = nil; |
8492 | ||
7be3eb32 | 8493 | [super releaseSubviews]; |
fe8e721f | 8494 | } |
770f2a8e | 8495 | |
fe8e721f GP |
8496 | - (id) initWithDatabase:(Database *)database { |
8497 | if ((self = [super init]) != nil) { | |
8498 | database_ = database; | |
807ae6d7 JF |
8499 | } return self; |
8500 | } | |
770f2a8e | 8501 | |
807ae6d7 | 8502 | - (void) reloadData { |
fe8e721f GP |
8503 | [super reloadData]; |
8504 | ||
c33064f1 JF |
8505 | @synchronized (database_) { |
8506 | era_ = [database_ era]; | |
8507 | ||
5829aea2 | 8508 | pkgSourceList list; |
53ca7fdd | 8509 | if ([database_ popErrorWithTitle:UCLocalize("SOURCES") forOperation:list.ReadMainList()]) |
5829aea2 GP |
8510 | return; |
8511 | ||
4f9acb7c | 8512 | sources_ = [NSMutableArray arrayWithCapacity:16]; |
5829aea2 GP |
8513 | [sources_ addObjectsFromArray:[database_ sources]]; |
8514 | _trace(); | |
90ba4f86 | 8515 | [sources_ sortUsingSelector:@selector(compareByName:)]; |
5829aea2 GP |
8516 | _trace(); |
8517 | ||
8518 | int count([sources_ count]); | |
8519 | offset_ = 0; | |
8520 | for (int i = 0; i != count; i++) { | |
8521 | if ([[sources_ objectAtIndex:i] record] == nil) | |
8522 | break; | |
8523 | offset_++; | |
770f2a8e | 8524 | } |
807ae6d7 | 8525 | |
5829aea2 GP |
8526 | [list_ setEditing:NO]; |
8527 | [self updateButtonsForEditingStatus:NO animated:NO]; | |
8528 | [list_ reloadData]; | |
c33064f1 | 8529 | } } |
770f2a8e | 8530 | |
5829aea2 GP |
8531 | - (void) showAddSourcePrompt { |
8532 | UIAlertView *alert = [[[UIAlertView alloc] | |
8533 | initWithTitle:UCLocalize("ENTER_APT_URL") | |
8534 | message:nil | |
8535 | delegate:self | |
8536 | cancelButtonTitle:UCLocalize("CANCEL") | |
1aa29546 JF |
8537 | otherButtonTitles: |
8538 | UCLocalize("ADD_SOURCE"), | |
8539 | nil | |
5829aea2 | 8540 | ] autorelease]; |
770f2a8e | 8541 | |
5829aea2 | 8542 | [alert setContext:@"source"]; |
770f2a8e | 8543 | |
5829aea2 GP |
8544 | [alert setNumberOfRows:1]; |
8545 | [alert addTextFieldWithValue:@"http://" label:@""]; | |
770f2a8e | 8546 | |
5829aea2 GP |
8547 | UITextInputTraits *traits = [[alert textField] textInputTraits]; |
8548 | [traits setAutocapitalizationType:UITextAutocapitalizationTypeNone]; | |
8549 | [traits setAutocorrectionType:UITextAutocorrectionTypeNo]; | |
8550 | [traits setKeyboardType:UIKeyboardTypeURL]; | |
8551 | // XXX: UIReturnKeyDone | |
8552 | [traits setReturnKeyType:UIReturnKeyNext]; | |
770f2a8e | 8553 | |
5829aea2 | 8554 | [alert show]; |
770f2a8e JF |
8555 | } |
8556 | ||
5829aea2 GP |
8557 | - (void) addButtonClicked { |
8558 | [self showAddSourcePrompt]; | |
770f2a8e JF |
8559 | } |
8560 | ||
5829aea2 GP |
8561 | - (void) updateButtonsForEditingStatus:(BOOL)editing animated:(BOOL)animated { |
8562 | [[self navigationItem] setLeftBarButtonItem:(editing ? [[[UIBarButtonItem alloc] | |
8563 | initWithTitle:UCLocalize("ADD") | |
8564 | style:UIBarButtonItemStylePlain | |
8565 | target:self | |
8566 | action:@selector(addButtonClicked) | |
8567 | ] autorelease] : [[self navigationItem] backBarButtonItem]) animated:animated]; | |
8568 | ||
8569 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] | |
8570 | initWithTitle:(editing ? UCLocalize("DONE") : UCLocalize("EDIT")) | |
8571 | style:(editing ? UIBarButtonItemStyleDone : UIBarButtonItemStylePlain) | |
8572 | target:self | |
8573 | action:@selector(editButtonClicked) | |
8574 | ] autorelease] animated:animated]; | |
8575 | ||
8576 | if (IsWildcat_ && !editing) | |
8577 | [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] | |
8578 | initWithTitle:UCLocalize("SETTINGS") | |
8579 | style:UIBarButtonItemStylePlain | |
8580 | target:self | |
8581 | action:@selector(settingsButtonClicked) | |
8582 | ] autorelease]]; | |
770f2a8e JF |
8583 | } |
8584 | ||
5829aea2 GP |
8585 | - (void) settingsButtonClicked { |
8586 | [delegate_ showSettings]; | |
8587 | } | |
8588 | ||
8589 | - (void) editButtonClicked { | |
8590 | [list_ setEditing:![list_ isEditing] animated:YES]; | |
8591 | ||
8592 | [self updateButtonsForEditingStatus:[list_ isEditing] animated:YES]; | |
770f2a8e JF |
8593 | } |
8594 | ||
21c6da4b GP |
8595 | @end |
8596 | /* }}} */ | |
f3e11d24 | 8597 | |
5829aea2 | 8598 | /* Settings Controller {{{ */ |
cd79e8cf | 8599 | @interface SettingsController : CyteViewController < |
c21004b9 JF |
8600 | UITableViewDataSource, |
8601 | UITableViewDelegate | |
8602 | > { | |
21c6da4b | 8603 | _transient Database *database_; |
3931b718 JF |
8604 | // XXX: ok, "roledelegate_"?... |
8605 | _transient id roledelegate_; | |
bf7c998c | 8606 | _H<UITableView, 2> table_; |
7b33d201 JF |
8607 | _H<UISegmentedControl> segment_; |
8608 | _H<UIView> container_; | |
21c6da4b | 8609 | } |
c21004b9 JF |
8610 | |
8611 | - (void) showDoneButton; | |
8612 | - (void) resizeSegmentedControl; | |
8613 | ||
21c6da4b GP |
8614 | @end |
8615 | ||
5829aea2 | 8616 | @implementation SettingsController |
fe8e721f | 8617 | |
fe8e721f GP |
8618 | - (void) loadView { |
8619 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
8620 | ||
7b33d201 | 8621 | table_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped] autorelease]; |
fe8e721f GP |
8622 | [table_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
8623 | [table_ setDelegate:self]; | |
7b33d201 | 8624 | [(UITableView *) table_ setDataSource:self]; |
fe8e721f GP |
8625 | [[self view] addSubview:table_]; |
8626 | ||
8627 | NSArray *items = [NSArray arrayWithObjects: | |
8628 | UCLocalize("USER"), | |
8629 | UCLocalize("HACKER"), | |
8630 | UCLocalize("DEVELOPER"), | |
8631 | nil]; | |
7b33d201 | 8632 | segment_ = [[[UISegmentedControl alloc] initWithItems:items] autorelease]; |
ace9d463 | 8633 | [segment_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin)]; |
7b33d201 | 8634 | container_ = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, 44.0f)] autorelease]; |
fe8e721f GP |
8635 | [container_ addSubview:segment_]; |
8636 | } | |
8637 | ||
8638 | - (void) viewDidLoad { | |
7d887d0b JF |
8639 | [super viewDidLoad]; |
8640 | ||
fe8e721f GP |
8641 | [[self navigationItem] setTitle:UCLocalize("WHO_ARE_YOU")]; |
8642 | ||
8643 | int index = -1; | |
8644 | if ([Role_ isEqualToString:@"User"]) index = 0; | |
8645 | if ([Role_ isEqualToString:@"Hacker"]) index = 1; | |
8646 | if ([Role_ isEqualToString:@"Developer"]) index = 2; | |
8647 | if (index != -1) { | |
8648 | [segment_ setSelectedSegmentIndex:index]; | |
8649 | [self showDoneButton]; | |
8650 | } | |
8651 | ||
8652 | [segment_ addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged]; | |
8653 | [self resizeSegmentedControl]; | |
8654 | } | |
8655 | ||
8656 | - (void) releaseSubviews { | |
fe8e721f | 8657 | table_ = nil; |
fe8e721f | 8658 | segment_ = nil; |
fe8e721f | 8659 | container_ = nil; |
7be3eb32 JF |
8660 | |
8661 | [super releaseSubviews]; | |
21c6da4b GP |
8662 | } |
8663 | ||
8664 | - (id) initWithDatabase:(Database *)database delegate:(id)delegate { | |
6840bff3 | 8665 | if ((self = [super init]) != nil) { |
21c6da4b GP |
8666 | database_ = database; |
8667 | roledelegate_ = delegate; | |
21c6da4b GP |
8668 | } return self; |
8669 | } | |
8670 | ||
e62f29c6 GP |
8671 | - (void) resizeSegmentedControl { |
8672 | CGFloat width = [[self view] frame].size.width; | |
8673 | [segment_ setFrame:CGRectMake(width / 32.0f, 0, width - (width / 32.0f * 2.0f), 44.0f)]; | |
8674 | } | |
8675 | ||
2bdd73bd GP |
8676 | - (void) viewWillAppear:(BOOL)animated { |
8677 | [super viewWillAppear:animated]; | |
bc11cf5b | 8678 | |
e62f29c6 GP |
8679 | [self resizeSegmentedControl]; |
8680 | } | |
8681 | ||
8682 | - (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration { | |
8683 | [self resizeSegmentedControl]; | |
8684 | } | |
8685 | ||
8686 | - (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { | |
8687 | [self resizeSegmentedControl]; | |
2bdd73bd GP |
8688 | } |
8689 | ||
21c6da4b | 8690 | - (void) save { |
fed0d010 | 8691 | NSString *role(nil); |
bc11cf5b | 8692 | |
21c6da4b | 8693 | switch ([segment_ selectedSegmentIndex]) { |
124c6201 GP |
8694 | case 0: role = @"User"; break; |
8695 | case 1: role = @"Hacker"; break; | |
8696 | case 2: role = @"Developer"; break; | |
21c6da4b GP |
8697 | |
8698 | _nodefault | |
8699 | } | |
8700 | ||
124c6201 | 8701 | if (![role isEqualToString:Role_]) { |
fed0d010 | 8702 | bool rolling(Role_ == nil); |
124c6201 | 8703 | Role_ = role; |
bc11cf5b | 8704 | |
124c6201 GP |
8705 | Settings_ = [NSMutableDictionary dictionaryWithObjectsAndKeys: |
8706 | Role_, @"Role", | |
8707 | nil]; | |
21c6da4b | 8708 | |
124c6201 | 8709 | [Metadata_ setObject:Settings_ forKey:@"Settings"]; |
124c6201 | 8710 | Changed_ = true; |
bc11cf5b | 8711 | |
fed0d010 JF |
8712 | if (rolling) |
8713 | [roledelegate_ loadData]; | |
8714 | else | |
8715 | [roledelegate_ updateData]; | |
124c6201 | 8716 | } |
21c6da4b GP |
8717 | } |
8718 | ||
8719 | - (void) segmentChanged:(UISegmentedControl *)control { | |
8720 | [self showDoneButton]; | |
8721 | } | |
8722 | ||
8576ab50 | 8723 | - (void) saveAndClose { |
21c6da4b | 8724 | [self save]; |
8576ab50 GP |
8725 | |
8726 | [[self navigationItem] setRightBarButtonItem:nil]; | |
21c6da4b GP |
8727 | [[self navigationController] dismissModalViewControllerAnimated:YES]; |
8728 | } | |
8729 | ||
8576ab50 GP |
8730 | - (void) doneButtonClicked { |
8731 | UIActivityIndicatorView *spinner = [[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20.0f, 20.0f)] autorelease]; | |
8732 | [spinner startAnimating]; | |
8733 | UIBarButtonItem *spinItem = [[[UIBarButtonItem alloc] initWithCustomView:spinner] autorelease]; | |
8734 | [[self navigationItem] setRightBarButtonItem:spinItem]; | |
8735 | ||
8736 | [self performSelector:@selector(saveAndClose) withObject:nil afterDelay:0]; | |
8737 | } | |
8738 | ||
21c6da4b | 8739 | - (void) showDoneButton { |
dd9de556 | 8740 | [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] |
21c6da4b GP |
8741 | initWithTitle:UCLocalize("DONE") |
8742 | style:UIBarButtonItemStyleDone | |
8743 | target:self | |
8744 | action:@selector(doneButtonClicked) | |
dd9de556 | 8745 | ] autorelease] animated:([[self navigationItem] rightBarButtonItem] == nil)]; |
21c6da4b GP |
8746 | } |
8747 | ||
8748 | - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { | |
e62f29c6 GP |
8749 | // XXX: For not having a single cell in the table, this sure is a lot of sections. |
8750 | return 6; | |
21c6da4b GP |
8751 | } |
8752 | ||
8753 | - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { | |
8754 | return 0; // :( | |
8755 | } | |
8756 | ||
6840bff3 | 8757 | - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
21c6da4b GP |
8758 | return nil; // This method is required by the protocol. |
8759 | } | |
8760 | ||
8761 | - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section { | |
bc11cf5b | 8762 | if (section == 1) |
21c6da4b | 8763 | return UCLocalize("ROLE_EX"); |
bc11cf5b | 8764 | if (section == 4) |
21c6da4b GP |
8765 | return [NSString stringWithFormat: |
8766 | @"%@: %@\n%@: %@\n%@: %@", | |
bc11cf5b JF |
8767 | UCLocalize("USER"), UCLocalize("USER_EX"), |
8768 | UCLocalize("HACKER"), UCLocalize("HACKER_EX"), | |
21c6da4b GP |
8769 | UCLocalize("DEVELOPER"), UCLocalize("DEVELOPER_EX") |
8770 | ]; | |
8771 | else return nil; | |
8772 | } | |
8773 | ||
8774 | - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { | |
36fbb2aa | 8775 | return section == 3 ? 44.0f : 0; |
21c6da4b GP |
8776 | } |
8777 | ||
8778 | - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { | |
36fbb2aa | 8779 | return section == 3 ? container_ : nil; |
21c6da4b GP |
8780 | } |
8781 | ||
fe8e721f GP |
8782 | - (void) reloadData { |
8783 | [super reloadData]; | |
9dac415b | 8784 | |
fe8e721f GP |
8785 | [table_ reloadData]; |
8786 | } | |
8787 | ||
f3e11d24 GP |
8788 | @end |
8789 | /* }}} */ | |
8790 | /* Stash Controller {{{ */ | |
cd79e8cf | 8791 | @interface StashController : CyteViewController { |
7b33d201 JF |
8792 | _H<UIActivityIndicatorView> spinner_; |
8793 | _H<UILabel> status_; | |
8794 | _H<UILabel> caption_; | |
f3e11d24 | 8795 | } |
6840bff3 | 8796 | |
f3e11d24 GP |
8797 | @end |
8798 | ||
5829aea2 | 8799 | @implementation StashController |
f3e11d24 | 8800 | |
fe8e721f GP |
8801 | - (void) loadView { |
8802 | [self setView:[[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease]]; | |
8803 | [[self view] setBackgroundColor:[UIColor viewFlipsideBackgroundColor]]; | |
8804 | ||
7b33d201 | 8805 | spinner_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease]; |
fe8e721f GP |
8806 | CGRect spinrect = [spinner_ frame]; |
8807 | spinrect.origin.x = ([[self view] frame].size.width / 2) - (spinrect.size.width / 2); | |
8808 | spinrect.origin.y = [[self view] frame].size.height - 80.0f; | |
8809 | [spinner_ setFrame:spinrect]; | |
8810 | [spinner_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin]; | |
8811 | [[self view] addSubview:spinner_]; | |
8812 | [spinner_ startAnimating]; | |
8813 | ||
8814 | CGRect captrect; | |
8815 | captrect.size.width = [[self view] frame].size.width; | |
8816 | captrect.size.height = 40.0f; | |
8817 | captrect.origin.x = 0; | |
8818 | captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2); | |
7b33d201 | 8819 | caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease]; |
fe8e721f GP |
8820 | [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")]; |
8821 | [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; | |
8822 | [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]]; | |
8823 | [caption_ setTextColor:[UIColor whiteColor]]; | |
8824 | [caption_ setBackgroundColor:[UIColor clearColor]]; | |
8825 | [caption_ setShadowColor:[UIColor blackColor]]; | |
8826 | [caption_ setTextAlignment:UITextAlignmentCenter]; | |
8827 | [[self view] addSubview:caption_]; | |
8828 | ||
8829 | CGRect statusrect; | |
8830 | statusrect.size.width = [[self view] frame].size.width; | |
8831 | statusrect.size.height = 30.0f; | |
8832 | statusrect.origin.x = 0; | |
8833 | statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height; | |
7b33d201 | 8834 | status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease]; |
fe8e721f GP |
8835 | [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; |
8836 | [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")]; | |
8837 | [status_ setFont:[UIFont systemFontOfSize:16.0f]]; | |
8838 | [status_ setTextColor:[UIColor whiteColor]]; | |
8839 | [status_ setBackgroundColor:[UIColor clearColor]]; | |
8840 | [status_ setShadowColor:[UIColor blackColor]]; | |
8841 | [status_ setTextAlignment:UITextAlignmentCenter]; | |
8842 | [[self view] addSubview:status_]; | |
8843 | } | |
8844 | ||
67dd58c7 JF |
8845 | - (void) releaseSubviews { |
8846 | spinner_ = nil; | |
8847 | status_ = nil; | |
8848 | caption_ = nil; | |
7be3eb32 JF |
8849 | |
8850 | [super releaseSubviews]; | |
67dd58c7 JF |
8851 | } |
8852 | ||
770f2a8e | 8853 | @end |
807ae6d7 | 8854 | /* }}} */ |
770f2a8e | 8855 | |
a06e9179 JF |
8856 | @interface CYURLCache : SDURLCache { |
8857 | } | |
8858 | ||
8859 | @end | |
8860 | ||
8861 | @implementation CYURLCache | |
8862 | ||
8863 | - (void) logEvent:(NSString *)event forRequest:(NSURLRequest *)request { | |
8864 | #if !ForRelease | |
8865 | if (false); | |
8866 | else if ([event isEqualToString:@"no-cache"]) | |
8867 | event = @"!!!"; | |
8868 | else if ([event isEqualToString:@"store"]) | |
8869 | event = @">>>"; | |
8870 | else if ([event isEqualToString:@"invalid"]) | |
8871 | event = @"???"; | |
8872 | else if ([event isEqualToString:@"memory"]) | |
8873 | event = @"mem"; | |
8874 | else if ([event isEqualToString:@"disk"]) | |
8875 | event = @"ssd"; | |
8876 | else if ([event isEqualToString:@"miss"]) | |
8877 | event = @"---"; | |
8878 | ||
8879 | NSLog(@"%@: %@", event, [[request URL] absoluteString]); | |
8880 | #endif | |
8881 | } | |
8882 | ||
5e845121 JF |
8883 | - (void) storeCachedResponse:(NSCachedURLResponse *)cached forRequest:(NSURLRequest *)request { |
8884 | if (NSURLResponse *response = [cached response]) | |
8885 | if (NSString *mime = [response MIMEType]) | |
8886 | if ([mime isEqualToString:@"text/cache-manifest"]) { | |
8887 | NSURL *url([response URL]); | |
8888 | ||
8889 | #if !ForRelease | |
8890 | NSLog(@"###: %@", [url absoluteString]); | |
8891 | #endif | |
8892 | ||
8893 | @synchronized (HostConfig_) { | |
8894 | [CachedURLs_ addObject:url]; | |
8895 | } | |
8896 | } | |
8897 | ||
8898 | [super storeCachedResponse:cached forRequest:request]; | |
8899 | } | |
8900 | ||
a06e9179 JF |
8901 | @end |
8902 | ||
2367a917 | 8903 | @interface Cydia : UIApplication < |
adb61bda | 8904 | ConfirmationControllerDelegate, |
6915b806 | 8905 | DatabaseDelegate, |
eb30da80 | 8906 | CydiaDelegate, |
68046ccc JF |
8907 | UINavigationControllerDelegate, |
8908 | UITabBarControllerDelegate | |
2367a917 | 8909 | > { |
7b33d201 JF |
8910 | _H<UIWindow> window_; |
8911 | _H<CYTabBarController> tabbar_; | |
70750ab3 | 8912 | _H<CydiaLoadingViewController> emulated_; |
3931b718 | 8913 | |
7b33d201 JF |
8914 | _H<NSMutableArray> essential_; |
8915 | _H<NSMutableArray> broken_; | |
dc5812ec JF |
8916 | |
8917 | Database *database_; | |
dc5812ec | 8918 | |
7b33d201 | 8919 | _H<NSURL> starturl_; |
54043703 | 8920 | |
235f5487 | 8921 | unsigned locked_; |
54043703 | 8922 | unsigned activity_; |
9b619239 | 8923 | |
7b33d201 | 8924 | _H<StashController> stash_; |
f3e11d24 | 8925 | |
8c02abc8 | 8926 | bool loaded_; |
dc5812ec JF |
8927 | } |
8928 | ||
fed0d010 | 8929 | - (void) loadData; |
670a0494 | 8930 | |
dc5812ec JF |
8931 | @end |
8932 | ||
8933 | @implementation Cydia | |
8934 | ||
b5e7eebb | 8935 | - (void) beginUpdate { |
7585ce66 | 8936 | [tabbar_ beginUpdate]; |
b5e7eebb GP |
8937 | } |
8938 | ||
8939 | - (BOOL) updating { | |
7585ce66 | 8940 | return [tabbar_ updating]; |
b5e7eebb GP |
8941 | } |
8942 | ||
9bedffaa JF |
8943 | - (void) _loaded { |
8944 | if ([broken_ count] != 0) { | |
8945 | int count = [broken_ count]; | |
8946 | ||
37d2b2a9 | 8947 | UIAlertView *alert = [[[UIAlertView alloc] |
43f3d7f6 | 8948 | initWithTitle:(count == 1 ? UCLocalize("HALFINSTALLED_PACKAGE") : [NSString stringWithFormat:UCLocalize("HALFINSTALLED_PACKAGES"), count]) |
b5e7eebb GP |
8949 | message:UCLocalize("HALFINSTALLED_PACKAGE_EX") |
8950 | delegate:self | |
8951 | cancelButtonTitle:UCLocalize("FORCIBLY_CLEAR") | |
1aa29546 JF |
8952 | otherButtonTitles: |
8953 | UCLocalize("TEMPORARY_IGNORE"), | |
8954 | nil | |
9bedffaa JF |
8955 | ] autorelease]; |
8956 | ||
37d2b2a9 | 8957 | [alert setContext:@"fixhalf"]; |
59befad5 | 8958 | [alert setNumberOfRows:2]; |
37d2b2a9 | 8959 | [alert show]; |
9bedffaa JF |
8960 | } else if (!Ignored_ && [essential_ count] != 0) { |
8961 | int count = [essential_ count]; | |
8962 | ||
37d2b2a9 | 8963 | UIAlertView *alert = [[[UIAlertView alloc] |
43f3d7f6 | 8964 | initWithTitle:(count == 1 ? UCLocalize("ESSENTIAL_UPGRADE") : [NSString stringWithFormat:UCLocalize("ESSENTIAL_UPGRADES"), count]) |
b5e7eebb GP |
8965 | message:UCLocalize("ESSENTIAL_UPGRADE_EX") |
8966 | delegate:self | |
8967 | cancelButtonTitle:UCLocalize("TEMPORARY_IGNORE") | |
1aa29546 JF |
8968 | otherButtonTitles: |
8969 | UCLocalize("UPGRADE_ESSENTIAL"), | |
8970 | UCLocalize("COMPLETE_UPGRADE"), | |
8971 | nil | |
9bedffaa JF |
8972 | ] autorelease]; |
8973 | ||
37d2b2a9 GP |
8974 | [alert setContext:@"upgrade"]; |
8975 | [alert show]; | |
9bedffaa JF |
8976 | } |
8977 | } | |
8978 | ||
2925cbba JF |
8979 | - (void) returnToCydia { |
8980 | [self _loaded]; | |
8981 | } | |
8982 | ||
7623f855 | 8983 | - (void) _saveConfig { |
9ac1ef9e JF |
8984 | @synchronized (database_) { |
8985 | _trace(); | |
8986 | MetaFile_.Sync(); | |
8987 | _trace(); | |
8988 | } | |
ffbb3bd5 | 8989 | |
7623f855 | 8990 | if (Changed_) { |
7623f855 | 8991 | NSString *error(nil); |
ffbb3bd5 | 8992 | |
7623f855 JF |
8993 | if (NSData *data = [NSPropertyListSerialization dataFromPropertyList:Metadata_ format:NSPropertyListBinaryFormat_v1_0 errorDescription:&error]) { |
8994 | _trace(); | |
8995 | NSError *error(nil); | |
8996 | if (![data writeToFile:@"/var/lib/cydia/metadata.plist" options:NSAtomicWrite error:&error]) | |
8997 | NSLog(@"failure to save metadata data: %@", error); | |
8998 | _trace(); | |
ffbb3bd5 JF |
8999 | |
9000 | Changed_ = false; | |
7623f855 JF |
9001 | } else { |
9002 | NSLog(@"failure to serialize metadata: %@", error); | |
7623f855 | 9003 | } |
7623f855 | 9004 | } |
33e30380 | 9005 | |
25c1dafb | 9006 | CydiaWriteSources(); |
7623f855 JF |
9007 | } |
9008 | ||
89571a5b | 9009 | // Navigation controller for the queuing badge. |
15f0d613 | 9010 | - (UINavigationController *) queueNavigationController { |
89571a5b GP |
9011 | NSArray *controllers = [tabbar_ viewControllers]; |
9012 | return [controllers objectAtIndex:3]; | |
9013 | } | |
9014 | ||
302bf91c JF |
9015 | - (void) unloadData { |
9016 | [tabbar_ unloadData]; | |
9017 | } | |
9018 | ||
7623f855 JF |
9019 | - (void) _updateData { |
9020 | [self _saveConfig]; | |
302bf91c | 9021 | [self unloadData]; |
f6371a33 | 9022 | |
15f0d613 | 9023 | UINavigationController *navigation = [self queueNavigationController]; |
b5e7eebb | 9024 | |
4305896c | 9025 | id queuedelegate = nil; |
89571a5b GP |
9026 | if ([[navigation viewControllers] count] > 0) |
9027 | queuedelegate = [[navigation viewControllers] objectAtIndex:0]; | |
bc11cf5b | 9028 | |
89571a5b GP |
9029 | [queuedelegate queueStatusDidChange]; |
9030 | [[navigation tabBarItem] setBadgeValue:(Queuing_ ? UCLocalize("Q_D") : nil)]; | |
7623f855 JF |
9031 | } |
9032 | ||
53fb38da | 9033 | - (void) _refreshIfPossible:(NSDate *)update { |
8c02abc8 | 9034 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
bc11cf5b | 9035 | |
45e21ffa | 9036 | bool recently = false; |
45e21ffa GP |
9037 | if (update != nil) { |
9038 | NSTimeInterval interval([update timeIntervalSinceNow]); | |
9039 | if (interval <= 0 && interval > -(15*60)) | |
9040 | recently = true; | |
9041 | } | |
9042 | ||
9043 | // Don't automatic refresh if: | |
9044 | // - We already refreshed recently. | |
9045 | // - We already auto-refreshed this launch. | |
9046 | // - Auto-refresh is disabled. | |
9047 | if (recently || loaded_ || ManualRefresh) { | |
35f0a3b5 | 9048 | // If we are cancelling, we need to make sure it knows it's already loaded. |
45e21ffa | 9049 | loaded_ = true; |
d13edf44 JF |
9050 | |
9051 | [self performSelectorOnMainThread:@selector(_loaded) withObject:nil waitUntilDone:NO]; | |
45e21ffa GP |
9052 | } else { |
9053 | // We are going to load, so remember that. | |
9054 | loaded_ = true; | |
45e21ffa | 9055 | |
d13edf44 JF |
9056 | SCNetworkReachabilityFlags flags; { |
9057 | SCNetworkReachabilityRef reachability(SCNetworkReachabilityCreateWithName(NULL, "cydia.saurik.com")); | |
9058 | SCNetworkReachabilityGetFlags(reachability, &flags); | |
9059 | CFRelease(reachability); | |
9060 | } | |
afb5333a | 9061 | |
d13edf44 JF |
9062 | // XXX: this elaborate mess is what Apple is using to determine this? :( |
9063 | // XXX: do we care if the user has to intervene? maybe that's ok? | |
9064 | bool reachable( | |
9065 | (flags & kSCNetworkReachabilityFlagsReachable) != 0 && ( | |
9066 | (flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0 || ( | |
9067 | (flags & kSCNetworkReachabilityFlagsConnectionOnDemand) != 0 || | |
9068 | (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0 | |
9069 | ) && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0 || | |
9070 | (flags & kSCNetworkReachabilityFlagsIsWWAN) != 0 | |
9071 | ) | |
9072 | ); | |
bc11cf5b | 9073 | |
d13edf44 JF |
9074 | // If we can reach the server, auto-refresh! |
9075 | if (reachable) | |
9076 | [tabbar_ performSelectorOnMainThread:@selector(setUpdate:) withObject:update waitUntilDone:NO]; | |
9077 | } | |
9aecdc9c | 9078 | |
8c02abc8 | 9079 | [pool release]; |
9aecdc9c GP |
9080 | } |
9081 | ||
9082 | - (void) refreshIfPossible { | |
53fb38da | 9083 | [NSThread detachNewThreadSelector:@selector(_refreshIfPossible:) toTarget:self withObject:[Metadata_ objectForKey:@"LastUpdate"]]; |
9aecdc9c GP |
9084 | } |
9085 | ||
e09e1589 JF |
9086 | - (void) reloadDataWithInvocation:(NSInvocation *)invocation { |
9087 | @synchronized (self) { | |
851f4a99 GP |
9088 | UIProgressHUD *hud(loaded_ ? [self addProgressHUD] : nil); |
9089 | [hud setText:UCLocalize("RELOADING_DATA")]; | |
dc5812ec | 9090 | |
4ba8f30a | 9091 | [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation]; |
d061f4ba | 9092 | |
36bb2ca2 | 9093 | size_t changes(0); |
9bedffaa | 9094 | |
a54b1c10 | 9095 | [essential_ removeAllObjects]; |
9bedffaa | 9096 | [broken_ removeAllObjects]; |
b4d89997 | 9097 | |
670a0494 | 9098 | NSArray *packages([database_ packages]); |
affeffc7 | 9099 | for (Package *package in packages) { |
9bedffaa JF |
9100 | if ([package half]) |
9101 | [broken_ addObject:package]; | |
31f3cfff | 9102 | if ([package upgradableAndEssential:NO]) { |
a54b1c10 JF |
9103 | if ([package essential]) |
9104 | [essential_ addObject:package]; | |
36bb2ca2 | 9105 | ++changes; |
a54b1c10 | 9106 | } |
36bb2ca2 | 9107 | } |
b4d89997 | 9108 | |
89571a5b | 9109 | UITabBarItem *changesItem = [[[tabbar_ viewControllers] objectAtIndex:2] tabBarItem]; |
36bb2ca2 | 9110 | if (changes != 0) { |
0e1784b4 | 9111 | _trace(); |
36bb2ca2 | 9112 | NSString *badge([[NSNumber numberWithInt:changes] stringValue]); |
45e21ffa | 9113 | [changesItem setBadgeValue:badge]; |
65a03a7a | 9114 | [changesItem setAnimatedBadge:([essential_ count] > 0)]; |
0e1784b4 | 9115 | [self setApplicationIconBadgeNumber:changes]; |
c25a610d | 9116 | } else { |
0e1784b4 | 9117 | _trace(); |
45e21ffa GP |
9118 | [changesItem setBadgeValue:nil]; |
9119 | [changesItem setAnimatedBadge:NO]; | |
0e1784b4 | 9120 | [self setApplicationIconBadgeNumber:0]; |
c25a610d | 9121 | } |
b4d89997 | 9122 | |
7623f855 | 9123 | [self _updateData]; |
be64dfbf JF |
9124 | |
9125 | if (hud != nil) | |
9126 | [self removeProgressHUD:hud]; | |
e09e1589 | 9127 | } } |
6d9712c4 | 9128 | |
7b0ce2da | 9129 | - (void) updateData { |
7623f855 | 9130 | [self _updateData]; |
b4d89997 JF |
9131 | } |
9132 | ||
7b0ce2da JF |
9133 | - (void) update_ { |
9134 | [database_ update]; | |
fca2f596 | 9135 | [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES]; |
7b0ce2da JF |
9136 | } |
9137 | ||
2e9123cb JF |
9138 | - (void) disemulate { |
9139 | if (emulated_ == nil) | |
9140 | return; | |
9141 | ||
9142 | [window_ addSubview:[tabbar_ view]]; | |
9143 | [[emulated_ view] removeFromSuperview]; | |
2e9123cb JF |
9144 | emulated_ = nil; |
9145 | [window_ setUserInteractionEnabled:YES]; | |
9146 | } | |
9147 | ||
9148 | - (void) presentModalViewController:(UIViewController *)controller force:(BOOL)force { | |
15f0d613 | 9149 | UINavigationController *navigation([[[UINavigationController alloc] initWithRootViewController:controller] autorelease]); |
6915b806 JF |
9150 | if (IsWildcat_) |
9151 | [navigation setModalPresentationStyle:UIModalPresentationFormSheet]; | |
2e9123cb JF |
9152 | |
9153 | UIViewController *parent; | |
9154 | if (emulated_ == nil) | |
9155 | parent = tabbar_; | |
9156 | else if (!force) | |
9157 | parent = emulated_; | |
9158 | else { | |
9159 | [self disemulate]; | |
9160 | parent = tabbar_; | |
9161 | } | |
9162 | ||
9163 | [parent presentModalViewController:navigation animated:YES]; | |
6915b806 JF |
9164 | } |
9165 | ||
9166 | - (ProgressController *) invokeNewProgress:(NSInvocation *)invocation forController:(UINavigationController *)navigation withTitle:(NSString *)title { | |
9167 | ProgressController *progress([[[ProgressController alloc] initWithDatabase:database_ delegate:self] autorelease]); | |
9168 | ||
9169 | if (navigation != nil) | |
9170 | [navigation pushViewController:progress animated:YES]; | |
9171 | else | |
2e9123cb | 9172 | [self presentModalViewController:progress force:YES]; |
6915b806 JF |
9173 | |
9174 | [progress invoke:invocation withTitle:title]; | |
9175 | return progress; | |
9176 | } | |
9177 | ||
9178 | - (void) detachNewProgressSelector:(SEL)selector toTarget:(id)target forController:(UINavigationController *)navigation title:(NSString *)title { | |
9179 | [self invokeNewProgress:[NSInvocation invocationWithSelector:selector forTarget:target] forController:navigation withTitle:title]; | |
9180 | } | |
9181 | ||
9182 | - (void) repairWithInvocation:(NSInvocation *)invocation { | |
9183 | _trace(); | |
8d5bc2ad | 9184 | [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"]; |
6915b806 JF |
9185 | _trace(); |
9186 | } | |
9187 | ||
9188 | - (void) repairWithSelector:(SEL)selector { | |
9189 | [self performSelectorOnMainThread:@selector(repairWithInvocation:) withObject:[NSInvocation invocationWithSelector:selector forTarget:database_] waitUntilDone:YES]; | |
9190 | } | |
9191 | ||
e09e1589 JF |
9192 | - (void) reloadData { |
9193 | [self reloadDataWithInvocation:nil]; | |
2925cbba JF |
9194 | if ([database_ progressDelegate] == nil) |
9195 | [self _loaded]; | |
e09e1589 JF |
9196 | } |
9197 | ||
7b0ce2da | 9198 | - (void) syncData { |
1fe5dc43 | 9199 | [self _saveConfig]; |
33e30380 JF |
9200 | [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"]; |
9201 | } | |
1fe5dc43 | 9202 | |
33e30380 | 9203 | - (void) addSource:(NSDictionary *) source { |
25c1dafb | 9204 | CydiaAddSource(source); |
33e30380 | 9205 | } |
7b0ce2da | 9206 | |
33e30380 | 9207 | - (void) addSource:(NSString *)href withDistribution:(NSString *)distribution andSections:(NSArray *)sections { |
25c1dafb | 9208 | CydiaAddSource(href, distribution, sections); |
7b0ce2da JF |
9209 | } |
9210 | ||
93460555 | 9211 | - (void) addTrivialSource:(NSString *)href { |
25c1dafb | 9212 | CydiaAddSource(href, @"./"); |
93460555 JF |
9213 | } |
9214 | ||
b3c8e69c JF |
9215 | - (void) updateValues { |
9216 | Changed_ = true; | |
9217 | } | |
9218 | ||
b4d89997 JF |
9219 | - (void) resolve { |
9220 | pkgProblemResolver *resolver = [database_ resolver]; | |
9221 | ||
9222 | resolver->InstallProtect(); | |
9223 | if (!resolver->Resolve(true)) | |
9224 | _error->Discard(); | |
2367a917 JF |
9225 | } |
9226 | ||
670a0494 | 9227 | - (bool) perform { |
d6c371f5 JF |
9228 | // XXX: this is a really crappy way of doing this. |
9229 | // like, seriously: this state machine is still broken, and cancelling this here doesn't really /fix/ that. | |
9230 | // for one, the user can still /start/ a reloading data event while they have a queue, which is stupid | |
9231 | // for two, this just means there is a race condition between the refresh completing and the confirmation controller appearing. | |
9232 | if ([tabbar_ updating]) | |
9233 | [tabbar_ cancelUpdate]; | |
9234 | ||
670a0494 JF |
9235 | if (![database_ prepare]) |
9236 | return false; | |
49048579 | 9237 | |
adb61bda | 9238 | ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]); |
affeffc7 | 9239 | [page setDelegate:self]; |
15f0d613 | 9240 | UINavigationController *confirm_([[[UINavigationController alloc] initWithRootViewController:page] autorelease]); |
49048579 | 9241 | |
36fbb2aa JF |
9242 | if (IsWildcat_) |
9243 | [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet]; | |
7585ce66 | 9244 | [tabbar_ presentModalViewController:confirm_ animated:YES]; |
670a0494 JF |
9245 | |
9246 | return true; | |
3178d79b JF |
9247 | } |
9248 | ||
dc63e78f JF |
9249 | - (void) queue { |
9250 | @synchronized (self) { | |
9251 | [self perform]; | |
9252 | } | |
9253 | } | |
9254 | ||
9255 | - (void) clearPackage:(Package *)package { | |
9256 | @synchronized (self) { | |
9257 | [package clear]; | |
9258 | [self resolve]; | |
9259 | [self perform]; | |
9260 | } | |
9261 | } | |
9262 | ||
77801ff1 JF |
9263 | - (void) installPackages:(NSArray *)packages { |
9264 | @synchronized (self) { | |
9265 | for (Package *package in packages) | |
9266 | [package install]; | |
9267 | [self resolve]; | |
9268 | [self perform]; | |
9269 | } | |
9270 | } | |
9271 | ||
36bb2ca2 JF |
9272 | - (void) installPackage:(Package *)package { |
9273 | @synchronized (self) { | |
9274 | [package install]; | |
9275 | [self resolve]; | |
9276 | [self perform]; | |
9277 | } | |
9278 | } | |
9279 | ||
9280 | - (void) removePackage:(Package *)package { | |
9281 | @synchronized (self) { | |
9282 | [package remove]; | |
9283 | [self resolve]; | |
9284 | [self perform]; | |
9285 | } | |
9286 | } | |
9287 | ||
9288 | - (void) distUpgrade { | |
9289 | @synchronized (self) { | |
670a0494 JF |
9290 | if (![database_ upgrade]) |
9291 | return; | |
36bb2ca2 JF |
9292 | [self perform]; |
9293 | } | |
b4d89997 JF |
9294 | } |
9295 | ||
fca2f596 JF |
9296 | - (void) perform_ { |
9297 | [database_ perform]; | |
9298 | [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES]; | |
9299 | } | |
9300 | ||
b5e7eebb | 9301 | - (void) confirmWithNavigationController:(UINavigationController *)navigation { |
f6371a33 | 9302 | Queuing_ = false; |
235f5487 | 9303 | ++locked_; |
fca2f596 | 9304 | [self detachNewProgressSelector:@selector(perform_) toTarget:self forController:navigation title:@"RUNNING"]; |
235f5487 | 9305 | --locked_; |
2925cbba | 9306 | [self refreshIfPossible]; |
dc5812ec JF |
9307 | } |
9308 | ||
21c6da4b | 9309 | - (void) showSettings { |
a54fed5b | 9310 | [self presentModalViewController:[[[SettingsController alloc] initWithDatabase:database_ delegate:self] autorelease] force:NO]; |
7b0ce2da JF |
9311 | } |
9312 | ||
54043703 JF |
9313 | - (void) retainNetworkActivityIndicator { |
9314 | if (activity_++ == 0) | |
9315 | [self setNetworkActivityIndicatorVisible:YES]; | |
848ed88b JF |
9316 | |
9317 | #if TraceLogging | |
9318 | NSLog(@"retainNetworkActivityIndicator->%d", activity_); | |
9319 | #endif | |
54043703 JF |
9320 | } |
9321 | ||
9322 | - (void) releaseNetworkActivityIndicator { | |
9323 | if (--activity_ == 0) | |
9324 | [self setNetworkActivityIndicatorVisible:NO]; | |
848ed88b JF |
9325 | |
9326 | #if TraceLogging | |
9327 | NSLog(@"releaseNetworkActivityIndicator->%d", activity_); | |
9328 | #endif | |
9329 | ||
54043703 JF |
9330 | } |
9331 | ||
674dce72 GP |
9332 | - (void) cancelAndClear:(bool)clear { |
9333 | @synchronized (self) { | |
9334 | if (clear) { | |
c6ca67ba | 9335 | [database_ clear]; |
b5e7eebb | 9336 | Queuing_ = false; |
674dce72 | 9337 | } else { |
b5e7eebb | 9338 | Queuing_ = true; |
6067f1b8 JF |
9339 | } |
9340 | ||
a4217bbb | 9341 | [self _updateData]; |
674dce72 | 9342 | } |
37d2b2a9 | 9343 | } |
7b0ce2da | 9344 | |
b5e7eebb GP |
9345 | - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |
9346 | NSString *context([alert context]); | |
bc11cf5b | 9347 | |
6915b806 JF |
9348 | if ([context isEqualToString:@"conffile"]) { |
9349 | FILE *input = [database_ input]; | |
9350 | if (button == [alert cancelButtonIndex]) | |
9351 | fprintf(input, "N\n"); | |
9352 | else if (button == [alert firstOtherButtonIndex]) | |
9353 | fprintf(input, "Y\n"); | |
9354 | fflush(input); | |
9355 | ||
9356 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; | |
9357 | } else if ([context isEqualToString:@"fixhalf"]) { | |
efa53fa9 | 9358 | if (button == [alert cancelButtonIndex]) { |
37d2b2a9 | 9359 | @synchronized (self) { |
7b33d201 | 9360 | for (Package *broken in (id) broken_) { |
37d2b2a9 GP |
9361 | [broken remove]; |
9362 | ||
9363 | NSString *id = [broken id]; | |
9364 | unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]); | |
9365 | unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]); | |
9366 | unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]); | |
9367 | unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]); | |
9368 | } | |
7b0ce2da | 9369 | |
37d2b2a9 GP |
9370 | [self resolve]; |
9371 | [self perform]; | |
9372 | } | |
efa53fa9 | 9373 | } else if (button == [alert firstOtherButtonIndex]) { |
37d2b2a9 GP |
9374 | [broken_ removeAllObjects]; |
9375 | [self _loaded]; | |
7b0ce2da JF |
9376 | } |
9377 | ||
37d2b2a9 | 9378 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 9379 | } else if ([context isEqualToString:@"upgrade"]) { |
37d2b2a9 GP |
9380 | if (button == [alert firstOtherButtonIndex]) { |
9381 | @synchronized (self) { | |
7b33d201 | 9382 | for (Package *essential in (id) essential_) |
37d2b2a9 | 9383 | [essential install]; |
7b0ce2da | 9384 | |
37d2b2a9 GP |
9385 | [self resolve]; |
9386 | [self perform]; | |
9387 | } | |
9388 | } else if (button == [alert firstOtherButtonIndex] + 1) { | |
9389 | [self distUpgrade]; | |
9390 | } else if (button == [alert cancelButtonIndex]) { | |
9391 | Ignored_ = YES; | |
7b0ce2da JF |
9392 | } |
9393 | ||
37d2b2a9 | 9394 | [alert dismissWithClickedButtonIndex:-1 animated:YES]; |
1cedb821 | 9395 | } |
7b0ce2da JF |
9396 | } |
9397 | ||
d13edf44 JF |
9398 | - (void) system:(NSString *)command { |
9399 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
9400 | ||
985d2dff | 9401 | _trace(); |
670a0494 | 9402 | system([command UTF8String]); |
985d2dff | 9403 | _trace(); |
d13edf44 JF |
9404 | |
9405 | [pool release]; | |
670a0494 JF |
9406 | } |
9407 | ||
9408 | - (void) applicationWillSuspend { | |
9409 | [database_ clean]; | |
9410 | [super applicationWillSuspend]; | |
bd150f54 JF |
9411 | } |
9412 | ||
235f5487 | 9413 | - (BOOL) isSafeToSuspend { |
5927fe03 JF |
9414 | if (locked_ != 0) { |
9415 | #if !ForRelease | |
9416 | NSLog(@"isSafeToSuspend: locked_ != 0"); | |
9417 | #endif | |
9418 | return false; | |
9419 | } | |
9420 | ||
262afe11 GP |
9421 | // Use external process status API internally. |
9422 | // This is probably a really bad idea. | |
235f5487 | 9423 | // XXX: what is the point of this? does this solve anything at all? |
262afe11 GP |
9424 | uint64_t status = 0; |
9425 | int notify_token; | |
9426 | if (notify_register_check("com.saurik.Cydia.status", ¬ify_token) == NOTIFY_STATUS_OK) { | |
9427 | notify_get_state(notify_token, &status); | |
9428 | notify_cancel(notify_token); | |
9429 | } | |
9430 | ||
5927fe03 JF |
9431 | if (status != 0) { |
9432 | #if !ForRelease | |
9433 | NSLog(@"isSafeToSuspend: status != 0"); | |
9434 | #endif | |
9435 | return false; | |
9436 | } | |
9437 | ||
9438 | #if !ForRelease | |
9439 | NSLog(@"isSafeToSuspend: -> true"); | |
9440 | #endif | |
9441 | return true; | |
235f5487 JF |
9442 | } |
9443 | ||
9444 | - (void) applicationSuspend:(__GSEvent *)event { | |
9445 | if ([self isSafeToSuspend]) | |
bd150f54 | 9446 | [super applicationSuspend:event]; |
bd150f54 JF |
9447 | } |
9448 | ||
6d9712c4 | 9449 | - (void) _animateSuspension:(BOOL)arg0 duration:(double)arg1 startTime:(double)arg2 scale:(float)arg3 { |
235f5487 | 9450 | if ([self isSafeToSuspend]) |
6d9712c4 JF |
9451 | [super _animateSuspension:arg0 duration:arg1 startTime:arg2 scale:arg3]; |
9452 | } | |
9453 | ||
9454 | - (void) _setSuspended:(BOOL)value { | |
235f5487 | 9455 | if ([self isSafeToSuspend]) |
6d9712c4 JF |
9456 | [super _setSuspended:value]; |
9457 | } | |
9458 | ||
7b0ce2da | 9459 | - (UIProgressHUD *) addProgressHUD { |
8c9453da | 9460 | UIProgressHUD *hud([[[UIProgressHUD alloc] init] autorelease]); |
04fe1349 JF |
9461 | [hud setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; |
9462 | ||
d061f4ba | 9463 | [window_ setUserInteractionEnabled:NO]; |
534e31fc | 9464 | |
f36e5eac JF |
9465 | UIViewController *target(tabbar_); |
9466 | if (UIViewController *modal = [target modalViewController]) | |
9467 | target = modal; | |
9468 | ||
22b6c4b8 | 9469 | [hud showInView:[target view]]; |
534e31fc | 9470 | |
235f5487 | 9471 | ++locked_; |
7b0ce2da JF |
9472 | return hud; |
9473 | } | |
9474 | ||
d061f4ba | 9475 | - (void) removeProgressHUD:(UIProgressHUD *)hud { |
f36e5eac | 9476 | --locked_; |
8c9453da | 9477 | [hud hide]; |
d061f4ba JF |
9478 | [hud removeFromSuperview]; |
9479 | [window_ setUserInteractionEnabled:YES]; | |
9480 | } | |
9481 | ||
cd79e8cf | 9482 | - (CyteViewController *) pageForPackage:(NSString *)name { |
57e8b225 | 9483 | return [[[CYPackageController alloc] initWithDatabase:database_ forPackage:name] autorelease]; |
c390d3ab JF |
9484 | } |
9485 | ||
cd79e8cf | 9486 | - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external { |
e47c4742 | 9487 | NSString *scheme([[url scheme] lowercaseString]); |
f6e13561 | 9488 | if ([[url absoluteString] length] <= [scheme length] + 3) |
e47c4742 | 9489 | return nil; |
f6e13561 | 9490 | NSString *path([[url absoluteString] substringFromIndex:[scheme length] + 3]); |
3a159223 | 9491 | NSArray *components([path componentsSeparatedByString:@"/"]); |
f6e13561 | 9492 | |
f5a17517 | 9493 | if ([scheme isEqualToString:@"apptapp"] && [components count] > 0 && [[components objectAtIndex:0] isEqualToString:@"package"]) |
f6e13561 GP |
9494 | return [self pageForPackage:[components objectAtIndex:1]]; |
9495 | ||
9496 | if ([components count] < 1 || ![scheme isEqualToString:@"cydia"]) | |
e47c4742 | 9497 | return nil; |
f6e13561 GP |
9498 | |
9499 | NSString *base([components objectAtIndex:0]); | |
9500 | ||
cd79e8cf | 9501 | CyteViewController *controller = nil; |
f5a17517 | 9502 | |
f70ea899 | 9503 | if ([base isEqualToString:@"url"]) { |
106d645f GP |
9504 | // This kind of URL can contain slashes in the argument, so we can't parse them below. |
9505 | NSString *destination = [[url absoluteString] substringFromIndex:([scheme length] + [@"://" length] + [base length] + [@"/" length])]; | |
a576488f | 9506 | controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:destination]] autorelease]; |
028dbd1c | 9507 | } else if (!external && [components count] == 1) { |
fe8e721f GP |
9508 | if ([base isEqualToString:@"manage"]) { |
9509 | controller = [[[ManageController alloc] init] autorelease]; | |
9510 | } | |
9511 | ||
76380d62 JF |
9512 | if ([base isEqualToString:@"storage"]) { |
9513 | controller = [[[CydiaWebViewController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/storage/", UI_]]] autorelease]; | |
9514 | } | |
9515 | ||
f6e13561 | 9516 | if ([base isEqualToString:@"sources"]) { |
f5a17517 | 9517 | controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9518 | } |
9519 | ||
9520 | if ([base isEqualToString:@"home"]) { | |
f5a17517 | 9521 | controller = [[[HomeController alloc] init] autorelease]; |
f6e13561 GP |
9522 | } |
9523 | ||
9524 | if ([base isEqualToString:@"sections"]) { | |
f5a17517 | 9525 | controller = [[[SectionsController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9526 | } |
9527 | ||
9528 | if ([base isEqualToString:@"search"]) { | |
43625891 | 9529 | controller = [[[SearchController alloc] initWithDatabase:database_ query:nil] autorelease]; |
f6e13561 GP |
9530 | } |
9531 | ||
9532 | if ([base isEqualToString:@"changes"]) { | |
ea3bb538 | 9533 | controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9534 | } |
9535 | ||
9536 | if ([base isEqualToString:@"installed"]) { | |
f5a17517 | 9537 | controller = [[[InstalledController alloc] initWithDatabase:database_] autorelease]; |
f6e13561 GP |
9538 | } |
9539 | } else if ([components count] == 2) { | |
9540 | NSString *argument = [components objectAtIndex:1]; | |
9541 | ||
9542 | if ([base isEqualToString:@"package"]) { | |
f5a17517 | 9543 | controller = [self pageForPackage:argument]; |
f6e13561 GP |
9544 | } |
9545 | ||
028dbd1c | 9546 | if (!external && [base isEqualToString:@"search"]) { |
43625891 | 9547 | controller = [[[SearchController alloc] initWithDatabase:database_ query:argument] autorelease]; |
f6e13561 GP |
9548 | } |
9549 | ||
028dbd1c | 9550 | if (!external && [base isEqualToString:@"sections"]) { |
f6e13561 GP |
9551 | if ([argument isEqualToString:@"all"]) |
9552 | argument = nil; | |
f5a17517 | 9553 | controller = [[[SectionController alloc] initWithDatabase:database_ section:argument] autorelease]; |
f6e13561 GP |
9554 | } |
9555 | ||
028dbd1c | 9556 | if (!external && [base isEqualToString:@"sources"]) { |
f6e13561 | 9557 | if ([argument isEqualToString:@"add"]) { |
f5a17517 GP |
9558 | controller = [[[SourcesController alloc] initWithDatabase:database_] autorelease]; |
9559 | [(SourcesController *)controller showAddSourcePrompt]; | |
f6e13561 | 9560 | } else { |
6cfdc306 | 9561 | Source *source = [database_ sourceWithKey:[argument stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; |
d669236d | 9562 | controller = [[[SourceController alloc] initWithDatabase:database_ source:source] autorelease]; |
f6e13561 GP |
9563 | } |
9564 | } | |
9565 | ||
028dbd1c | 9566 | if (!external && [base isEqualToString:@"launch"]) { |
f6e13561 | 9567 | [self launchApplicationWithIdentifier:argument suspended:NO]; |
f5a17517 | 9568 | return nil; |
f6e13561 | 9569 | } |
028dbd1c | 9570 | } else if (!external && [components count] == 3) { |
f6e13561 GP |
9571 | NSString *arg1 = [components objectAtIndex:1]; |
9572 | NSString *arg2 = [components objectAtIndex:2]; | |
9573 | ||
9574 | if ([base isEqualToString:@"package"]) { | |
9575 | if ([arg2 isEqualToString:@"settings"]) { | |
f5a17517 | 9576 | controller = [[[PackageSettingsController alloc] initWithDatabase:database_ package:arg1] autorelease]; |
f6e13561 GP |
9577 | } else if ([arg2 isEqualToString:@"files"]) { |
9578 | if (Package *package = [database_ packageWithName:arg1]) { | |
f5a17517 GP |
9579 | controller = [[[FileTable alloc] initWithDatabase:database_] autorelease]; |
9580 | [(FileTable *)controller setPackage:package]; | |
f6e13561 GP |
9581 | } |
9582 | } | |
c390d3ab JF |
9583 | } |
9584 | } | |
9585 | ||
f5a17517 GP |
9586 | [controller setDelegate:self]; |
9587 | return controller; | |
c390d3ab JF |
9588 | } |
9589 | ||
028dbd1c | 9590 | - (BOOL) openCydiaURL:(NSURL *)url forExternal:(BOOL)external { |
cd79e8cf | 9591 | CyteViewController *page([self pageForURL:url forExternal:external]); |
40364973 | 9592 | |
c713af59 | 9593 | if (page != nil) { |
15f0d613 | 9594 | UINavigationController *nav = [[[UINavigationController alloc] init] autorelease]; |
c713af59 | 9595 | [nav setViewControllers:[NSArray arrayWithObject:page]]; |
9f99f3da | 9596 | [tabbar_ setUnselectedViewController:nav]; |
c713af59 | 9597 | } |
40364973 | 9598 | |
f6e13561 | 9599 | return page != nil; |
40364973 GP |
9600 | } |
9601 | ||
c390d3ab JF |
9602 | - (void) applicationOpenURL:(NSURL *)url { |
9603 | [super applicationOpenURL:url]; | |
d817e4de | 9604 | |
7b33d201 JF |
9605 | if (!loaded_) |
9606 | starturl_ = url; | |
9607 | else | |
9608 | [self openCydiaURL:url forExternal:YES]; | |
c390d3ab JF |
9609 | } |
9610 | ||
bc11cf5b | 9611 | - (void) applicationWillResignActive:(UIApplication *)application { |
7eff7ea6 | 9612 | // Stop refreshing if you get a phone call or lock the device. |
7585ce66 JF |
9613 | if ([tabbar_ updating]) |
9614 | [tabbar_ cancelUpdate]; | |
bc11cf5b | 9615 | |
ca584c15 GP |
9616 | if ([[self superclass] instancesRespondToSelector:@selector(applicationWillResignActive:)]) |
9617 | [super applicationWillResignActive:application]; | |
7eff7ea6 GP |
9618 | } |
9619 | ||
9dd3045d | 9620 | - (void) saveState { |
35f0a3b5 | 9621 | [Metadata_ setObject:[tabbar_ navigationURLCollection] forKey:@"InterfaceState"]; |
fe8e721f GP |
9622 | [Metadata_ setObject:[NSDate date] forKey:@"LastClosed"]; |
9623 | [Metadata_ setObject:[NSNumber numberWithInt:[tabbar_ selectedIndex]] forKey:@"InterfaceIndex"]; | |
9dd3045d | 9624 | Changed_ = true; |
fe8e721f GP |
9625 | |
9626 | [self _saveConfig]; | |
9627 | } | |
9628 | ||
9dd3045d JF |
9629 | - (void) applicationWillTerminate:(UIApplication *)application { |
9630 | [self saveState]; | |
9631 | } | |
9632 | ||
6915b806 JF |
9633 | - (void) setConfigurationData:(NSString *)data { |
9634 | static Pcre conffile_r("^'(.*)' '(.*)' ([01]) ([01])$"); | |
9635 | ||
9636 | if (!conffile_r(data)) { | |
9637 | lprintf("E:invalid conffile\n"); | |
9638 | return; | |
9639 | } | |
9640 | ||
9641 | NSString *ofile = conffile_r[1]; | |
9642 | //NSString *nfile = conffile_r[2]; | |
9643 | ||
9644 | UIAlertView *alert = [[[UIAlertView alloc] | |
9645 | initWithTitle:UCLocalize("CONFIGURATION_UPGRADE") | |
9646 | message:[NSString stringWithFormat:@"%@\n\n%@", UCLocalize("CONFIGURATION_UPGRADE_EX"), ofile] | |
9647 | delegate:self | |
9648 | cancelButtonTitle:UCLocalize("KEEP_OLD_COPY") | |
9649 | otherButtonTitles: | |
9650 | UCLocalize("ACCEPT_NEW_COPY"), | |
9651 | // XXX: UCLocalize("SEE_WHAT_CHANGED"), | |
9652 | nil | |
9653 | ] autorelease]; | |
9654 | ||
9655 | [alert setContext:@"conffile"]; | |
a08145a8 | 9656 | [alert setNumberOfRows:2]; |
6915b806 JF |
9657 | [alert show]; |
9658 | } | |
9659 | ||
f3e11d24 | 9660 | - (void) addStashController { |
235f5487 | 9661 | ++locked_; |
7b33d201 | 9662 | stash_ = [[[StashController alloc] init] autorelease]; |
f3e11d24 GP |
9663 | [window_ addSubview:[stash_ view]]; |
9664 | } | |
9665 | ||
9666 | - (void) removeStashController { | |
9667 | [[stash_ view] removeFromSuperview]; | |
7b33d201 | 9668 | stash_ = nil; |
235f5487 | 9669 | --locked_; |
f3e11d24 GP |
9670 | } |
9671 | ||
9672 | - (void) stash { | |
9673 | [self setIdleTimerDisabled:YES]; | |
9674 | ||
9e1f1e91 | 9675 | [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque]; |
f3e11d24 | 9676 | UpdateExternalStatus(1); |
f3e11d24 | 9677 | [self yieldToSelector:@selector(system:) withObject:@"/usr/libexec/cydia/free.sh"]; |
f3e11d24 | 9678 | UpdateExternalStatus(0); |
f3e11d24 GP |
9679 | |
9680 | [self removeStashController]; | |
9681 | ||
d99e3659 JF |
9682 | pid_t pid(ExecFork()); |
9683 | if (pid == 0) { | |
f3e11d24 GP |
9684 | execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL); |
9685 | perror("launchctl stop"); | |
d99e3659 | 9686 | exit(0); |
f3e11d24 | 9687 | } |
d99e3659 JF |
9688 | |
9689 | ReapZombie(pid); | |
f3e11d24 GP |
9690 | } |
9691 | ||
f6e13561 | 9692 | - (void) setupViewControllers { |
7b33d201 | 9693 | tabbar_ = [[[CYTabBarController alloc] initWithDatabase:database_] autorelease]; |
851f4a99 GP |
9694 | |
9695 | NSMutableArray *items([NSMutableArray arrayWithObjects: | |
89571a5b GP |
9696 | [[[UITabBarItem alloc] initWithTitle:@"Cydia" image:[UIImage applicationImageNamed:@"home.png"] tag:0] autorelease], |
9697 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SECTIONS") image:[UIImage applicationImageNamed:@"install.png"] tag:0] autorelease], | |
9698 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("CHANGES") image:[UIImage applicationImageNamed:@"changes.png"] tag:0] autorelease], | |
9699 | [[[UITabBarItem alloc] initWithTitle:UCLocalize("SEARCH") image:[UIImage applicationImageNamed:@"search.png"] tag:0] autorelease], | |
f6e13561 GP |
9700 | nil]); |
9701 | ||
851f4a99 | 9702 | if (IsWildcat_) { |
89571a5b GP |
9703 | [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("SOURCES") image:[UIImage applicationImageNamed:@"source.png"] tag:0] autorelease] atIndex:3]; |
9704 | [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("INSTALLED") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3]; | |
851f4a99 | 9705 | } else { |
89571a5b | 9706 | [items insertObject:[[[UITabBarItem alloc] initWithTitle:UCLocalize("MANAGE") image:[UIImage applicationImageNamed:@"manage.png"] tag:0] autorelease] atIndex:3]; |
851f4a99 GP |
9707 | } |
9708 | ||
9709 | NSMutableArray *controllers([NSMutableArray array]); | |
851f4a99 | 9710 | for (UITabBarItem *item in items) { |
15f0d613 | 9711 | UINavigationController *controller([[[UINavigationController alloc] init] autorelease]); |
851f4a99 GP |
9712 | [controller setTabBarItem:item]; |
9713 | [controllers addObject:controller]; | |
9714 | } | |
851f4a99 | 9715 | [tabbar_ setViewControllers:controllers]; |
4305896c | 9716 | |
f6e13561 | 9717 | [tabbar_ setUpdateDelegate:self]; |
851f4a99 GP |
9718 | } |
9719 | ||
968afbcd JF |
9720 | - (void) _sendMemoryWarningNotification { |
9721 | [[NSNotificationCenter defaultCenter] postNotificationName:@"UIApplicationDidReceiveMemoryWarningNotification" object:[UIApplication sharedApplication]]; | |
9722 | } | |
9723 | ||
9724 | - (void) _sendMemoryWarningNotifications { | |
9725 | while (true) { | |
9726 | [self performSelectorOnMainThread:@selector(_sendMemoryWarningNotification) withObject:nil waitUntilDone:NO]; | |
9727 | usleep(250000); | |
9728 | } | |
9729 | } | |
9730 | ||
bd150f54 | 9731 | - (void) applicationDidFinishLaunching:(id)unused { |
968afbcd JF |
9732 | //[NSThread detachNewThreadSelector:@selector(_sendMemoryWarningNotifications) toTarget:self withObject:nil]; |
9733 | ||
7e30ba6d | 9734 | _trace(); |
1e94d48b JF |
9735 | if ([self respondsToSelector:@selector(setApplicationSupportsShakeToEdit:)]) |
9736 | [self setApplicationSupportsShakeToEdit:NO]; | |
9737 | ||
48f1762f JF |
9738 | @synchronized (HostConfig_) { |
9739 | [BridgedHosts_ addObject:[[NSURL URLWithString:CydiaURL(@"")] host]]; | |
9740 | } | |
3171f7fe | 9741 | |
4058b165 JF |
9742 | [NSURLCache setSharedURLCache:[[[CYURLCache alloc] |
9743 | initWithMemoryCapacity:524288 | |
9744 | diskCapacity:10485760 | |
9745 | diskPath:[NSString stringWithFormat:@"%@/Library/Caches/com.saurik.Cydia/SDURLCache", @"/var/root"] | |
9746 | ] autorelease]]; | |
71cc7be1 | 9747 | |
a576488f | 9748 | [CydiaWebViewController _initialize]; |
ea173384 | 9749 | |
bfc87a4d JF |
9750 | [NSURLProtocol registerClass:[CydiaURLProtocol class]]; |
9751 | ||
793aee35 JF |
9752 | // this would disallow http{,s} URLs from accessing this data |
9753 | //[WebView registerURLSchemeAsLocal:@"cydia"]; | |
9754 | ||
7b33d201 JF |
9755 | Font12_ = [UIFont systemFontOfSize:12]; |
9756 | Font12Bold_ = [UIFont boldSystemFontOfSize:12]; | |
9757 | Font14_ = [UIFont systemFontOfSize:14]; | |
9758 | Font18Bold_ = [UIFont boldSystemFontOfSize:18]; | |
9759 | Font22Bold_ = [UIFont boldSystemFontOfSize:22]; | |
f641a0e5 | 9760 | |
7b33d201 JF |
9761 | essential_ = [NSMutableArray arrayWithCapacity:4]; |
9762 | broken_ = [NSMutableArray arrayWithCapacity:4]; | |
bd150f54 | 9763 | |
4e89e880 | 9764 | // XXX: I really need this thing... like, seriously... I'm sorry |
29bb09d7 | 9765 | [[[AppCacheController alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/appcache/", UI_]]] reloadData]; |
4e89e880 | 9766 | |
7b33d201 | 9767 | window_ = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; |
f641a0e5 JF |
9768 | [window_ orderFront:self]; |
9769 | [window_ makeKey:self]; | |
c390d3ab | 9770 | [window_ setHidden:NO]; |
04fe1349 | 9771 | |
f3e11d24 GP |
9772 | if ( |
9773 | readlink("/Applications", NULL, 0) == -1 && errno == EINVAL || | |
9774 | readlink("/Library/Ringtones", NULL, 0) == -1 && errno == EINVAL || | |
9775 | readlink("/Library/Wallpaper", NULL, 0) == -1 && errno == EINVAL || | |
9776 | //readlink("/usr/bin", NULL, 0) == -1 && errno == EINVAL || | |
9777 | readlink("/usr/include", NULL, 0) == -1 && errno == EINVAL || | |
9778 | readlink("/usr/lib/pam", NULL, 0) == -1 && errno == EINVAL || | |
9779 | readlink("/usr/libexec", NULL, 0) == -1 && errno == EINVAL || | |
9780 | readlink("/usr/share", NULL, 0) == -1 && errno == EINVAL || | |
9781 | //readlink("/var/lib", NULL, 0) == -1 && errno == EINVAL || | |
9782 | false | |
9783 | ) { | |
9784 | [self addStashController]; | |
3931b718 JF |
9785 | // XXX: this would be much cleaner as a yieldToSelector: |
9786 | // that way the removeStashController could happen right here inline | |
9787 | // we also could no longer require the useless stash_ field anymore | |
f3e11d24 GP |
9788 | [self performSelector:@selector(stash) withObject:nil afterDelay:0]; |
9789 | return; | |
9790 | } | |
9791 | ||
770f2a8e | 9792 | database_ = [Database sharedInstance]; |
6915b806 | 9793 | [database_ setDelegate:self]; |
bfc87a4d | 9794 | |
89571a5b | 9795 | [window_ setUserInteractionEnabled:NO]; |
0be165c8 | 9796 | [self setupViewControllers]; |
6915b806 | 9797 | |
70750ab3 | 9798 | emulated_ = [[[CydiaLoadingViewController alloc] init] autorelease]; |
6915b806 | 9799 | [window_ addSubview:[emulated_ view]]; |
5ccb47d8 | 9800 | |
fed0d010 | 9801 | [self performSelector:@selector(loadData) withObject:nil afterDelay:0]; |
c626a63f | 9802 | _trace(); |
fed0d010 JF |
9803 | } |
9804 | ||
d3a28a81 GP |
9805 | - (NSArray *) defaultStartPages { |
9806 | NSMutableArray *standard = [NSMutableArray array]; | |
9807 | [standard addObject:[NSArray arrayWithObject:@"cydia://home"]]; | |
9808 | [standard addObject:[NSArray arrayWithObject:@"cydia://sections"]]; | |
9809 | [standard addObject:[NSArray arrayWithObject:@"cydia://changes"]]; | |
9810 | if (!IsWildcat_) { | |
9811 | [standard addObject:[NSArray arrayWithObject:@"cydia://manage"]]; | |
9812 | } else { | |
9813 | [standard addObject:[NSArray arrayWithObject:@"cydia://installed"]]; | |
9814 | [standard addObject:[NSArray arrayWithObject:@"cydia://sources"]]; | |
9815 | } | |
9816 | [standard addObject:[NSArray arrayWithObject:@"cydia://search"]]; | |
9817 | return standard; | |
9818 | } | |
9819 | ||
fed0d010 | 9820 | - (void) loadData { |
c626a63f | 9821 | _trace(); |
fed0d010 | 9822 | if (Role_ == nil) { |
0c1cb67a | 9823 | [window_ setUserInteractionEnabled:YES]; |
a54fed5b | 9824 | [self showSettings]; |
fed0d010 | 9825 | return; |
0c1cb67a | 9826 | } else { |
6915b806 JF |
9827 | if ([emulated_ modalViewController] != nil) |
9828 | [emulated_ dismissModalViewControllerAnimated:YES]; | |
0c1cb67a | 9829 | [window_ setUserInteractionEnabled:NO]; |
fed0d010 JF |
9830 | } |
9831 | ||
2925cbba JF |
9832 | [self reloadDataWithInvocation:nil]; |
9833 | [self refreshIfPossible]; | |
670a0494 | 9834 | PrintTimes(); |
5ccb47d8 | 9835 | |
2e9123cb | 9836 | [self disemulate]; |
5ccb47d8 | 9837 | |
d3a28a81 GP |
9838 | int savedIndex = [[Metadata_ objectForKey:@"InterfaceIndex"] intValue]; |
9839 | NSArray *saved = [[Metadata_ objectForKey:@"InterfaceState"] mutableCopy]; | |
9840 | int standardIndex = 0; | |
9841 | NSArray *standard = [self defaultStartPages]; | |
fe8e721f | 9842 | |
d3a28a81 GP |
9843 | BOOL valid = YES; |
9844 | ||
9845 | if (saved == nil) | |
9846 | valid = NO; | |
9847 | ||
9848 | NSDate *closed = [Metadata_ objectForKey:@"LastClosed"]; | |
9849 | if (valid && closed != nil) { | |
fe8e721f | 9850 | NSTimeInterval interval([closed timeIntervalSinceNow]); |
42e637ca JF |
9851 | // XXX: Is 60 minutes the optimal time here? |
9852 | if (interval <= -(60*60)) | |
d3a28a81 | 9853 | valid = NO; |
fe8e721f GP |
9854 | } |
9855 | ||
d3a28a81 GP |
9856 | if (valid && [saved count] != [standard count]) |
9857 | valid = NO; | |
efa53fa9 | 9858 | |
d3a28a81 GP |
9859 | if (valid) { |
9860 | for (unsigned int i = 0; i < [standard count]; i++) { | |
9861 | NSArray *std = [standard objectAtIndex:i], *sav = [saved objectAtIndex:i]; | |
9862 | // XXX: The "hasPrefix" sanity check here could be, in theory, fooled, | |
9863 | // but it's good enough for now. | |
9864 | if ([sav count] == 0 || ![[sav objectAtIndex:0] hasPrefix:[std objectAtIndex:0]]) { | |
9865 | valid = NO; | |
9866 | break; | |
9867 | } | |
fe8e721f | 9868 | } |
fe8e721f GP |
9869 | } |
9870 | ||
d3a28a81 GP |
9871 | NSArray *items = nil; |
9872 | if (valid) { | |
9873 | [tabbar_ setSelectedIndex:savedIndex]; | |
9874 | items = saved; | |
9875 | } else { | |
9876 | [tabbar_ setSelectedIndex:standardIndex]; | |
9877 | items = standard; | |
9878 | } | |
9879 | ||
fe8e721f GP |
9880 | for (unsigned int tab = 0; tab < [[tabbar_ viewControllers] count]; tab++) { |
9881 | NSArray *stack = [items objectAtIndex:tab]; | |
15f0d613 | 9882 | UINavigationController *navigation = [[tabbar_ viewControllers] objectAtIndex:tab]; |
fe8e721f GP |
9883 | NSMutableArray *current = [NSMutableArray array]; |
9884 | ||
9885 | for (unsigned int nav = 0; nav < [stack count]; nav++) { | |
9886 | NSString *addr = [stack objectAtIndex:nav]; | |
9887 | NSURL *url = [NSURL URLWithString:addr]; | |
cd79e8cf | 9888 | CyteViewController *page = [self pageForURL:url forExternal:NO]; |
fe8e721f GP |
9889 | if (page != nil) |
9890 | [current addObject:page]; | |
9891 | } | |
9892 | ||
9893 | [navigation setViewControllers:current]; | |
9894 | } | |
f6e13561 | 9895 | |
89571a5b | 9896 | // (Try to) show the startup URL. |
f6e13561 | 9897 | if (starturl_ != nil) { |
028dbd1c | 9898 | [self openCydiaURL:starturl_ forExternal:NO]; |
f6e13561 GP |
9899 | starturl_ = nil; |
9900 | } | |
bd150f54 JF |
9901 | } |
9902 | ||
b5e7eebb | 9903 | - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item { |
674dce72 | 9904 | if (item != nil && IsWildcat_) { |
b5e7eebb | 9905 | [sheet showFromBarButtonItem:item animated:YES]; |
674dce72 GP |
9906 | } else { |
9907 | [sheet showInView:window_]; | |
9908 | } | |
36bb2ca2 JF |
9909 | } |
9910 | ||
6915b806 JF |
9911 | - (void) addProgressEvent:(CydiaProgressEvent *)event forTask:(NSString *)task { |
9912 | id<ProgressDelegate> progress([database_ progressDelegate] ?: [self invokeNewProgress:nil forController:nil withTitle:task]); | |
9913 | [progress setTitle:task]; | |
9914 | [progress addProgressEvent:event]; | |
9915 | } | |
9916 | ||
9917 | - (void) addProgressEventForTask:(NSArray *)data { | |
9918 | CydiaProgressEvent *event([data objectAtIndex:0]); | |
9919 | NSString *task([data count] < 2 ? nil : [data objectAtIndex:1]); | |
9920 | [self addProgressEvent:event forTask:task]; | |
9921 | } | |
9922 | ||
9923 | - (void) addProgressEventOnMainThread:(CydiaProgressEvent *)event forTask:(NSString *)task { | |
9924 | [self performSelectorOnMainThread:@selector(addProgressEventForTask:) withObject:[NSArray arrayWithObjects:event, task, nil] waitUntilDone:YES]; | |
9925 | } | |
9926 | ||
dc5812ec JF |
9927 | @end |
9928 | ||
b4d89997 JF |
9929 | /*IMP alloc_; |
9930 | id Alloc_(id self, SEL selector) { | |
9931 | id object = alloc_(self, selector); | |
c390d3ab | 9932 | lprintf("[%s]A-%p\n", self->isa->name, object); |
b4d89997 JF |
9933 | return object; |
9934 | }*/ | |
9935 | ||
36bb2ca2 JF |
9936 | /*IMP dealloc_; |
9937 | id Dealloc_(id self, SEL selector) { | |
9938 | id object = dealloc_(self, selector); | |
c390d3ab | 9939 | lprintf("[%s]D-%p\n", self->isa->name, object); |
36bb2ca2 JF |
9940 | return object; |
9941 | }*/ | |
b4d89997 | 9942 | |
f79a4512 JF |
9943 | Class $WebDefaultUIKitDelegate; |
9944 | ||
d791dce4 | 9945 | MSHook(void, UIWebDocumentView$_setUIKitDelegate$, UIWebDocumentView *self, SEL _cmd, id delegate) { |
f79a4512 JF |
9946 | if (delegate == nil && $WebDefaultUIKitDelegate != nil) |
9947 | delegate = [$WebDefaultUIKitDelegate sharedUIKitDelegate]; | |
d791dce4 | 9948 | return _UIWebDocumentView$_setUIKitDelegate$(self, _cmd, delegate); |
f79a4512 JF |
9949 | } |
9950 | ||
baf82ed4 | 9951 | static NSSet *MobilizedFiles_; |
10d65752 | 9952 | |
baf82ed4 JF |
9953 | static NSURL *MobilizeURL(NSURL *url) { |
9954 | NSString *path([url path]); | |
9955 | if ([path hasPrefix:@"/var/root/"]) { | |
9956 | NSString *file([path substringFromIndex:10]); | |
9957 | if ([MobilizedFiles_ containsObject:file]) | |
9958 | url = [NSURL fileURLWithPath:[@"/var/mobile/" stringByAppendingString:file] isDirectory:NO]; | |
10d65752 | 9959 | } |
79b42fd1 | 9960 | |
baf82ed4 JF |
9961 | return url; |
9962 | } | |
79b42fd1 | 9963 | |
baf82ed4 JF |
9964 | Class $CFXPreferencesPropertyListSource; |
9965 | @class CFXPreferencesPropertyListSource; | |
79b42fd1 | 9966 | |
baf82ed4 JF |
9967 | MSHook(BOOL, CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, CFXPreferencesPropertyListSource *self, SEL _cmd) { |
9968 | NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url); | |
9969 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
9970 | url = MobilizeURL(url); | |
9971 | BOOL value(_CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(self, _cmd)); | |
9972 | //NSLog(@"%@ %s", [url absoluteString], value ? "YES" : "NO"); | |
9973 | url = old; | |
9974 | [pool release]; | |
9975 | return value; | |
9976 | } | |
79b42fd1 | 9977 | |
baf82ed4 JF |
9978 | MSHook(void *, CFXPreferencesPropertyListSource$createPlistFromDisk, CFXPreferencesPropertyListSource *self, SEL _cmd) { |
9979 | NSURL *&url(MSHookIvar<NSURL *>(self, "_url")), *old(url); | |
9980 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
9981 | url = MobilizeURL(url); | |
9982 | void *value(_CFXPreferencesPropertyListSource$createPlistFromDisk(self, _cmd)); | |
9983 | //NSLog(@"%@ %@", [url absoluteString], value); | |
9984 | url = old; | |
9985 | [pool release]; | |
9986 | return value; | |
79b42fd1 GP |
9987 | } |
9988 | ||
30c5be06 JF |
9989 | Class $NSURLConnection; |
9990 | ||
9991 | MSHook(id, NSURLConnection$init$, NSURLConnection *self, SEL _cmd, NSURLRequest *request, id delegate, BOOL usesCache, int64_t maxContentLength, BOOL startImmediately, NSDictionary *connectionProperties) { | |
9992 | NSMutableURLRequest *copy([request mutableCopy]); | |
9993 | ||
9994 | NSURL *url([copy URL]); | |
5e845121 | 9995 | |
30c5be06 | 9996 | NSString *host([url host]); |
e4b48f2f JF |
9997 | NSString *scheme([[url scheme] lowercaseString]); |
9998 | ||
9999 | NSString *compound([NSString stringWithFormat:@"%@:%@", scheme, host]); | |
30c5be06 | 10000 | |
48f1762f JF |
10001 | @synchronized (HostConfig_) { |
10002 | if ([copy respondsToSelector:@selector(setHTTPShouldUsePipelining:)]) | |
10003 | if ([PipelinedHosts_ containsObject:host] || [PipelinedHosts_ containsObject:compound]) | |
10004 | [copy setHTTPShouldUsePipelining:YES]; | |
5e845121 JF |
10005 | |
10006 | if (NSString *control = [copy valueForHTTPHeaderField:@"Cache-Control"]) | |
10007 | if ([control isEqualToString:@"max-age=0"]) | |
3a23d36e | 10008 | if ([CachedURLs_ containsObject:url]) { |
5e845121 | 10009 | #if !ForRelease |
3a23d36e | 10010 | NSLog(@"~~~: %@", url); |
5e845121 JF |
10011 | #endif |
10012 | ||
10013 | [copy setCachePolicy:NSURLRequestReturnCacheDataDontLoad]; | |
10014 | ||
10015 | [copy setValue:nil forHTTPHeaderField:@"Cache-Control"]; | |
10016 | [copy setValue:nil forHTTPHeaderField:@"If-Modified-Since"]; | |
10017 | [copy setValue:nil forHTTPHeaderField:@"If-None-Match"]; | |
10018 | } | |
48f1762f | 10019 | } |
30c5be06 JF |
10020 | |
10021 | if ((self = _NSURLConnection$init$(self, _cmd, copy, delegate, usesCache, maxContentLength, startImmediately, connectionProperties)) != nil) { | |
10022 | } return self; | |
10023 | } | |
10024 | ||
d13edf44 JF |
10025 | int main(int argc, char *argv[]) { |
10026 | NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]); | |
10027 | ||
d6dad1b4 | 10028 | _trace(); |
f79a4512 | 10029 | |
9a60abe5 JF |
10030 | UpdateExternalStatus(0); |
10031 | ||
01d93940 JF |
10032 | if (Class $UIDevice = objc_getClass("UIDevice")) { |
10033 | UIDevice *device([$UIDevice currentDevice]); | |
10034 | IsWildcat_ = [device respondsToSelector:@selector(isWildcat)] && [device isWildcat]; | |
10035 | } else | |
10036 | IsWildcat_ = false; | |
10037 | ||
57e8b225 JF |
10038 | UIScreen *screen([UIScreen mainScreen]); |
10039 | if ([screen respondsToSelector:@selector(scale)]) | |
10040 | ScreenScale_ = [screen scale]; | |
10041 | else | |
10042 | ScreenScale_ = 1; | |
10043 | ||
c138614d JF |
10044 | UIDevice *device([UIDevice currentDevice]); |
10045 | if (![device respondsToSelector:@selector(userInterfaceIdiom)]) | |
10046 | Idiom_ = @"iphone"; | |
10047 | else { | |
10048 | UIUserInterfaceIdiom idiom([device userInterfaceIdiom]); | |
10049 | if (idiom == UIUserInterfaceIdiomPhone) | |
10050 | Idiom_ = @"iphone"; | |
10051 | else if (idiom == UIUserInterfaceIdiomPad) | |
10052 | Idiom_ = @"ipad"; | |
10053 | else | |
10054 | NSLog(@"unknown UIUserInterfaceIdiom!"); | |
10055 | } | |
10056 | ||
9a4a4754 | 10057 | Pcre pattern("^([0-9]+\\.[0-9]+)"); |
fd825a2d | 10058 | |
9a4a4754 JF |
10059 | if (pattern([device systemVersion])) |
10060 | Firmware_ = pattern[1]; | |
fd825a2d JF |
10061 | if (pattern(Cydia_)) |
10062 | Major_ = pattern[1]; | |
9a4a4754 | 10063 | |
7b33d201 | 10064 | SessionData_ = [NSMutableDictionary dictionaryWithCapacity:4]; |
ef974f52 | 10065 | |
7b33d201 | 10066 | HostConfig_ = [[[NSObject alloc] init] autorelease]; |
48f1762f JF |
10067 | @synchronized (HostConfig_) { |
10068 | BridgedHosts_ = [NSMutableSet setWithCapacity:4]; | |
247bedb6 | 10069 | TokenHosts_ = [NSMutableSet setWithCapacity:4]; |
2e1652a9 | 10070 | InsecureHosts_ = [NSMutableSet setWithCapacity:4]; |
48f1762f | 10071 | PipelinedHosts_ = [NSMutableSet setWithCapacity:4]; |
5e845121 | 10072 | CachedURLs_ = [NSMutableSet setWithCapacity:32]; |
48f1762f | 10073 | } |
5df7ecfb | 10074 | |
de595d91 JF |
10075 | NSString *ui(@"ui/ios"); |
10076 | if (Idiom_ != nil) | |
10077 | ui = [ui stringByAppendingString:[NSString stringWithFormat:@"~%@", Idiom_]]; | |
fd825a2d | 10078 | ui = [ui stringByAppendingString:[NSString stringWithFormat:@"/%@", Major_]]; |
de595d91 | 10079 | UI_ = CydiaURL(ui); |
57e8b225 | 10080 | |
df213583 | 10081 | PackageName = reinterpret_cast<CYString &(*)(Package *, SEL)>(method_getImplementation(class_getInstanceMethod([Package class], @selector(cyname)))); |
677b8415 | 10082 | |
baf82ed4 JF |
10083 | MobilizedFiles_ = [NSMutableSet setWithObjects: |
10084 | @"Library/Preferences/com.apple.Accessibility.plist", | |
10085 | @"Library/Preferences/com.apple.preferences.sounds.plist", | |
10086 | nil]; | |
10087 | ||
7376b55c JF |
10088 | /* Library Hacks {{{ */ |
10089 | class_addMethod(objc_getClass("DOMNodeList"), @selector(countByEnumeratingWithState:objects:count:), (IMP) &DOMNodeList$countByEnumeratingWithState$objects$count$, "I20@0:4^{NSFastEnumerationState}8^@12I16"); | |
10090 | ||
baf82ed4 JF |
10091 | $CFXPreferencesPropertyListSource = objc_getClass("CFXPreferencesPropertyListSource"); |
10092 | ||
10093 | Method CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(_backingPlistChangedSinceLastSync))); | |
10094 | if (CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync != NULL) { | |
10095 | _CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync = reinterpret_cast<BOOL (*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync)); | |
10096 | method_setImplementation(CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$_backingPlistChangedSinceLastSync)); | |
10097 | } | |
10098 | ||
10099 | Method CFXPreferencesPropertyListSource$createPlistFromDisk(class_getInstanceMethod($CFXPreferencesPropertyListSource, @selector(createPlistFromDisk))); | |
10100 | if (CFXPreferencesPropertyListSource$createPlistFromDisk != NULL) { | |
10101 | _CFXPreferencesPropertyListSource$createPlistFromDisk = reinterpret_cast<void *(*)(CFXPreferencesPropertyListSource *, SEL)>(method_getImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk)); | |
10102 | method_setImplementation(CFXPreferencesPropertyListSource$createPlistFromDisk, reinterpret_cast<IMP>(&$CFXPreferencesPropertyListSource$createPlistFromDisk)); | |
10103 | } | |
10104 | ||
7376b55c JF |
10105 | $WebDefaultUIKitDelegate = objc_getClass("WebDefaultUIKitDelegate"); |
10106 | Method UIWebDocumentView$_setUIKitDelegate$(class_getInstanceMethod([WebView class], @selector(_setUIKitDelegate:))); | |
10107 | if (UIWebDocumentView$_setUIKitDelegate$ != NULL) { | |
10108 | _UIWebDocumentView$_setUIKitDelegate$ = reinterpret_cast<void (*)(UIWebDocumentView *, SEL, id)>(method_getImplementation(UIWebDocumentView$_setUIKitDelegate$)); | |
10109 | method_setImplementation(UIWebDocumentView$_setUIKitDelegate$, reinterpret_cast<IMP>(&$UIWebDocumentView$_setUIKitDelegate$)); | |
10110 | } | |
10d65752 | 10111 | |
30c5be06 JF |
10112 | $NSURLConnection = objc_getClass("NSURLConnection"); |
10113 | Method NSURLConnection$init$(class_getInstanceMethod($NSURLConnection, @selector(_initWithRequest:delegate:usesCache:maxContentLength:startImmediately:connectionProperties:))); | |
10114 | if (NSURLConnection$init$ != NULL) { | |
10115 | _NSURLConnection$init$ = reinterpret_cast<id (*)(NSURLConnection *, SEL, NSURLRequest *, id, BOOL, int64_t, BOOL, NSDictionary *)>(method_getImplementation(NSURLConnection$init$)); | |
10116 | method_setImplementation(NSURLConnection$init$, reinterpret_cast<IMP>(&$NSURLConnection$init$)); | |
10117 | } | |
7376b55c JF |
10118 | /* }}} */ |
10119 | /* Set Locale {{{ */ | |
f79a4512 | 10120 | Locale_ = CFLocaleCopyCurrent(); |
b1ce61ec | 10121 | Languages_ = [NSLocale preferredLanguages]; |
25fdc941 | 10122 | |
b1ce61ec | 10123 | //CFStringRef locale(CFLocaleGetIdentifier(Locale_)); |
18876387 | 10124 | //NSLog(@"%@", [Languages_ description]); |
78430d06 | 10125 | |
b1ce61ec | 10126 | const char *lang; |
25fdc941 JF |
10127 | if (Locale_ != NULL) |
10128 | lang = [(NSString *) CFLocaleGetIdentifier(Locale_) UTF8String]; | |
3caee0a4 JF |
10129 | else if (Languages_ != nil && [Languages_ count] != 0) |
10130 | lang = [[Languages_ objectAtIndex:0] UTF8String]; | |
10131 | else | |
78430d06 | 10132 | // XXX: consider just setting to C and then falling through? |
b1ce61ec | 10133 | lang = NULL; |
3caee0a4 JF |
10134 | |
10135 | if (lang != NULL) { | |
10136 | Pcre pattern("^([a-z][a-z])(?:-[A-Za-z]*)?(_[A-Z][A-Z])?$"); | |
10137 | lang = !pattern(lang) ? NULL : [pattern->*@"%1$@%2$@" UTF8String]; | |
78430d06 JF |
10138 | } |
10139 | ||
b1ce61ec | 10140 | NSLog(@"Setting Language: %s", lang); |
3caee0a4 JF |
10141 | |
10142 | if (lang != NULL) { | |
10143 | setenv("LANG", lang, true); | |
10144 | std::setlocale(LC_ALL, lang); | |
10145 | } | |
7376b55c | 10146 | /* }}} */ |
f79a4512 | 10147 | |
d791dce4 | 10148 | apr_app_initialize(&argc, const_cast<const char * const **>(&argv), NULL); |
f79a4512 | 10149 | |
7376b55c | 10150 | /* Parse Arguments {{{ */ |
de3b1ab4 JF |
10151 | bool substrate(false); |
10152 | ||
10153 | if (argc != 0) { | |
10154 | char **args(argv); | |
10155 | int arge(1); | |
10156 | ||
10157 | for (int argi(1); argi != argc; ++argi) | |
10158 | if (strcmp(argv[argi], "--") == 0) { | |
10159 | arge = argi; | |
10160 | argv[argi] = argv[0]; | |
10161 | argv += argi; | |
10162 | argc -= argi; | |
10163 | break; | |
10164 | } | |
10165 | ||
10166 | for (int argi(1); argi != arge; ++argi) | |
d791dce4 | 10167 | if (strcmp(args[argi], "--substrate") == 0) |
de3b1ab4 JF |
10168 | substrate = true; |
10169 | else | |
10170 | fprintf(stderr, "unknown argument: %s\n", args[argi]); | |
10171 | } | |
7376b55c | 10172 | /* }}} */ |
d73cede2 | 10173 | |
7376b55c | 10174 | App_ = [[NSBundle mainBundle] bundlePath]; |
d791dce4 | 10175 | Advanced_ = YES; |
7376b55c | 10176 | |
b4d89997 JF |
10177 | setuid(0); |
10178 | setgid(0); | |
10179 | ||
10180 | /*Method alloc = class_getClassMethod([NSObject class], @selector(alloc)); | |
10181 | alloc_ = alloc->method_imp; | |
10182 | alloc->method_imp = (IMP) &Alloc_;*/ | |
10183 | ||
36bb2ca2 JF |
10184 | /*Method dealloc = class_getClassMethod([NSObject class], @selector(dealloc)); |
10185 | dealloc_ = dealloc->method_imp; | |
10186 | dealloc->method_imp = (IMP) &Dealloc_;*/ | |
10187 | ||
d791dce4 | 10188 | /* System Information {{{ */ |
3178d79b | 10189 | size_t size; |
c390d3ab JF |
10190 | |
10191 | int maxproc; | |
10192 | size = sizeof(maxproc); | |
10193 | if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1) | |
10194 | perror("sysctlbyname(\"kern.maxproc\", ?)"); | |
10195 | else if (maxproc < 64) { | |
10196 | maxproc = 64; | |
10197 | if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1) | |
10198 | perror("sysctlbyname(\"kern.maxproc\", #)"); | |
10199 | } | |
10200 | ||
bfc87a4d JF |
10201 | sysctlbyname("kern.osversion", NULL, &size, NULL, 0); |
10202 | char *osversion = new char[size]; | |
10203 | if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) == -1) | |
10204 | perror("sysctlbyname(\"kern.osversion\", ?)"); | |
10205 | else | |
10206 | System_ = [NSString stringWithUTF8String:osversion]; | |
10207 | ||
3178d79b JF |
10208 | sysctlbyname("hw.machine", NULL, &size, NULL, 0); |
10209 | char *machine = new char[size]; | |
c390d3ab JF |
10210 | if (sysctlbyname("hw.machine", machine, &size, NULL, 0) == -1) |
10211 | perror("sysctlbyname(\"hw.machine\", ?)"); | |
10212 | else | |
10213 | Machine_ = machine; | |
3178d79b | 10214 | |
c31d7cdc JF |
10215 | SerialNumber_ = (NSString *) CYIOGetValue("IOService:/", @"IOPlatformSerialNumber"); |
10216 | ChipID_ = [CYHex((NSData *) CYIOGetValue("IODeviceTree:/chosen", @"unique-chip-id"), true) uppercaseString]; | |
10217 | BBSNum_ = CYHex((NSData *) CYIOGetValue("IOService:/AppleARMPE/baseband", @"snum"), false); | |
59dbe296 | 10218 | |
33e30380 | 10219 | UniqueID_ = [device uniqueIdentifier]; |
3178d79b | 10220 | |
3e9c9e85 JF |
10221 | if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:@"/Applications/MobileSafari.app/Info.plist"]) { |
10222 | Product_ = [info objectForKey:@"SafariProductVersion"]; | |
10223 | Safari_ = [info objectForKey:@"CFBundleVersion"]; | |
10224 | } | |
e967efd5 JF |
10225 | |
10226 | NSString *agent([NSString stringWithFormat:@"Cydia/%@ CF/%.2f", Cydia_, kCFCoreFoundationVersionNumber]); | |
10227 | ||
10228 | if (Pcre match = Pcre("^[0-9]+(\\.[0-9]+)+", Safari_)) | |
10229 | agent = [NSString stringWithFormat:@"Safari/%@ %@", match[0], agent]; | |
10230 | if (Pcre match = Pcre("^[0-9]+[A-Z][0-9]+[a-z]?", System_)) | |
10231 | agent = [NSString stringWithFormat:@"Mobile/%@ %@", match[0], agent]; | |
10232 | if (Pcre match = Pcre("^[0-9]+(\\.[0-9]+)+", Product_)) | |
10233 | agent = [NSString stringWithFormat:@"Version/%@ %@", match[0], agent]; | |
10234 | ||
10235 | UserAgent_ = agent; | |
d791dce4 | 10236 | /* }}} */ |
7376b55c | 10237 | /* Load Database {{{ */ |
d6dad1b4 | 10238 | _trace(); |
f79a4512 JF |
10239 | Metadata_ = [[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease]; |
10240 | _trace(); | |
10241 | SectionMap_ = [[[NSDictionary alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Sections" ofType:@"plist"]] autorelease]; | |
d6dad1b4 JF |
10242 | |
10243 | if (Metadata_ == NULL) | |
f79a4512 | 10244 | Metadata_ = [NSMutableDictionary dictionaryWithCapacity:2]; |
6d9712c4 | 10245 | else { |
2bdd73bd | 10246 | Settings_ = [Metadata_ objectForKey:@"Settings"]; |
7b0ce2da | 10247 | |
b4d89997 | 10248 | Packages_ = [Metadata_ objectForKey:@"Packages"]; |
b3c8e69c JF |
10249 | |
10250 | Values_ = [Metadata_ objectForKey:@"Values"]; | |
6d9712c4 | 10251 | Sections_ = [Metadata_ objectForKey:@"Sections"]; |
7b0ce2da | 10252 | Sources_ = [Metadata_ objectForKey:@"Sources"]; |
ef055c6c JF |
10253 | |
10254 | Token_ = [Metadata_ objectForKey:@"Token"]; | |
33e30380 JF |
10255 | |
10256 | Version_ = [Metadata_ objectForKey:@"Version"]; | |
7b0ce2da JF |
10257 | } |
10258 | ||
10259 | if (Settings_ != nil) | |
10260 | Role_ = [Settings_ objectForKey:@"Role"]; | |
10261 | ||
b3c8e69c JF |
10262 | if (Values_ == nil) { |
10263 | Values_ = [[[NSMutableDictionary alloc] initWithCapacity:4] autorelease]; | |
10264 | [Metadata_ setObject:Values_ forKey:@"Values"]; | |
10265 | } | |
10266 | ||
7b0ce2da JF |
10267 | if (Sections_ == nil) { |
10268 | Sections_ = [[[NSMutableDictionary alloc] initWithCapacity:32] autorelease]; | |
10269 | [Metadata_ setObject:Sections_ forKey:@"Sections"]; | |
10270 | } | |
10271 | ||
10272 | if (Sources_ == nil) { | |
10273 | Sources_ = [[[NSMutableDictionary alloc] initWithCapacity:0] autorelease]; | |
10274 | [Metadata_ setObject:Sources_ forKey:@"Sources"]; | |
6d9712c4 | 10275 | } |
33e30380 JF |
10276 | |
10277 | if (Version_ == nil) { | |
10278 | Version_ = [NSNumber numberWithUnsignedInt:0]; | |
10279 | [Metadata_ setObject:Version_ forKey:@"Version"]; | |
10280 | } | |
10281 | ||
33e30380 | 10282 | if ([Version_ unsignedIntValue] == 0) { |
25c1dafb JF |
10283 | CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]); |
10284 | CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]); | |
10285 | CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]); | |
10286 | CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./"); | |
33e30380 JF |
10287 | |
10288 | Version_ = [NSNumber numberWithUnsignedInt:1]; | |
10289 | [Metadata_ setObject:Version_ forKey:@"Version"]; | |
10290 | ||
a26ad329 JF |
10291 | [Metadata_ removeObjectForKey:@"LastUpdate"]; |
10292 | ||
33e30380 JF |
10293 | Changed_ = true; |
10294 | } | |
7376b55c | 10295 | /* }}} */ |
b4d89997 | 10296 | |
25c1dafb | 10297 | CydiaWriteSources(); |
33e30380 | 10298 | |
94b0b3e5 JF |
10299 | _trace(); |
10300 | MetaFile_.Open("/var/lib/cydia/metadata.cb0"); | |
10301 | _trace(); | |
10302 | ||
10303 | if (Packages_ != nil) { | |
c65611b9 JF |
10304 | bool fail(false); |
10305 | CFDictionaryApplyFunction((CFDictionaryRef) Packages_, &PackageImport, &fail); | |
94b0b3e5 | 10306 | _trace(); |
c65611b9 JF |
10307 | |
10308 | if (!fail) { | |
10309 | [Metadata_ removeObjectForKey:@"Packages"]; | |
10310 | Packages_ = nil; | |
10311 | Changed_ = true; | |
10312 | } | |
94b0b3e5 JF |
10313 | } |
10314 | ||
d791dce4 JF |
10315 | Finishes_ = [NSArray arrayWithObjects:@"return", @"reopen", @"restart", @"reload", @"reboot", nil]; |
10316 | ||
d71f3a07 | 10317 | #define MobileSubstrate_(name) \ |
d13577cf JF |
10318 | if (substrate && access("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", F_OK) == 0) { \ |
10319 | void *handle(dlopen("/Library/MobileSubstrate/DynamicLibraries/" #name ".dylib", RTLD_LAZY | RTLD_GLOBAL)); \ | |
10320 | if (handle == NULL) \ | |
10321 | NSLog(@"%s", dlerror()); \ | |
10322 | } | |
d71f3a07 JF |
10323 | |
10324 | MobileSubstrate_(Activator) | |
10325 | MobileSubstrate_(libstatusbar) | |
10326 | MobileSubstrate_(SimulatedKeyEvents) | |
10327 | MobileSubstrate_(WinterBoard) | |
10328 | ||
9dd60d81 JF |
10329 | /*if (substrate && access("/Library/MobileSubstrate/MobileSubstrate.dylib", F_OK) == 0) |
10330 | dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib", RTLD_LAZY | RTLD_GLOBAL);*/ | |
dddbc481 | 10331 | |
01d93940 JF |
10332 | int version([[NSString stringWithContentsOfFile:@"/var/lib/cydia/firmware.ver"] intValue]); |
10333 | ||
3b0f10b0 | 10334 | if (access("/tmp/.cydia.fw", F_OK) == 0) { |
ea173384 | 10335 | unlink("/tmp/.cydia.fw"); |
3b0f10b0 | 10336 | goto firmware; |
e967efd5 | 10337 | } else if (access("/User", F_OK) != 0 || version < 5) { |
3b0f10b0 | 10338 | firmware: |
d6dad1b4 | 10339 | _trace(); |
26c2dd8c | 10340 | system("/usr/libexec/cydia/firmware.sh"); |
d6dad1b4 JF |
10341 | _trace(); |
10342 | } | |
9e98e020 | 10343 | |
87f46a96 JF |
10344 | _assert([[NSFileManager defaultManager] |
10345 | createDirectoryAtPath:@"/var/cache/apt/archives/partial" | |
10346 | withIntermediateDirectories:YES | |
10347 | attributes:nil | |
10348 | error:NULL | |
10349 | ]); | |
10350 | ||
7376b55c JF |
10351 | if (access("/tmp/cydia.chk", F_OK) == 0) { |
10352 | if (unlink("/var/cache/apt/pkgcache.bin") == -1) | |
10353 | _assert(errno == ENOENT); | |
10354 | if (unlink("/var/cache/apt/srcpkgcache.bin") == -1) | |
10355 | _assert(errno == ENOENT); | |
10356 | } | |
10357 | ||
59dbe296 | 10358 | /* APT Initialization {{{ */ |
b1ce61ec JF |
10359 | _assert(pkgInitConfig(*_config)); |
10360 | _assert(pkgInitSystem(*_config, _system)); | |
10361 | ||
10362 | if (lang != NULL) | |
10363 | _config->Set("APT::Acquire::Translation", lang); | |
cb94ff21 JF |
10364 | |
10365 | // XXX: this timeout might be important :( | |
10366 | //_config->Set("Acquire::http::Timeout", 15); | |
10367 | ||
7623f855 | 10368 | _config->Set("Acquire::http::MaxParallel", 3); |
59dbe296 | 10369 | /* }}} */ |
7376b55c | 10370 | /* Color Choices {{{ */ |
36bb2ca2 JF |
10371 | space_ = CGColorSpaceCreateDeviceRGB(); |
10372 | ||
f641a0e5 | 10373 | Blue_.Set(space_, 0.2, 0.2, 1.0, 1.0); |
77fcccaf | 10374 | Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0); |
36bb2ca2 | 10375 | Black_.Set(space_, 0.0, 0.0, 0.0, 1.0); |
baf80942 | 10376 | Off_.Set(space_, 0.9, 0.9, 0.9, 1.0); |
36bb2ca2 | 10377 | White_.Set(space_, 1.0, 1.0, 1.0, 1.0); |
7b0ce2da | 10378 | Gray_.Set(space_, 0.4, 0.4, 0.4, 1.0); |
3bd1c2a2 JF |
10379 | Green_.Set(space_, 0.0, 0.5, 0.0, 1.0); |
10380 | Purple_.Set(space_, 0.0, 0.0, 0.7, 1.0); | |
10381 | Purplish_.Set(space_, 0.4, 0.4, 0.8, 1.0); | |
59dbe296 | 10382 | |
dc63e78f JF |
10383 | InstallingColor_ = [UIColor colorWithRed:0.88f green:1.00f blue:0.88f alpha:1.00f]; |
10384 | RemovingColor_ = [UIColor colorWithRed:1.00f green:0.88f blue:0.88f alpha:1.00f]; | |
7376b55c | 10385 | /* }}}*/ |
7376b55c | 10386 | /* UIKit Configuration {{{ */ |
f79a4512 JF |
10387 | void (*$GSFontSetUseLegacyFontMetrics)(BOOL)(reinterpret_cast<void (*)(BOOL)>(dlsym(RTLD_DEFAULT, "GSFontSetUseLegacyFontMetrics"))); |
10388 | if ($GSFontSetUseLegacyFontMetrics != NULL) | |
10389 | $GSFontSetUseLegacyFontMetrics(YES); | |
7b0ce2da | 10390 | |
600d005d JF |
10391 | // XXX: I have a feeling this was important |
10392 | //UIKeyboardDisableAutomaticAppearance(); | |
7376b55c | 10393 | /* }}} */ |
87f46a96 | 10394 | |
670a0494 | 10395 | Colon_ = UCLocalize("COLON_DELIMITED"); |
72fb3616 | 10396 | Elision_ = UCLocalize("ELISION"); |
670a0494 JF |
10397 | Error_ = UCLocalize("ERROR"); |
10398 | Warning_ = UCLocalize("WARNING"); | |
10399 | ||
d6dad1b4 | 10400 | _trace(); |
77df4f82 | 10401 | int value(UIApplicationMain(argc, argv, @"Cydia", @"Cydia")); |
36bb2ca2 JF |
10402 | |
10403 | CGColorSpaceRelease(space_); | |
199d0ba5 | 10404 | CFRelease(Locale_); |
36bb2ca2 | 10405 | |
d13edf44 | 10406 | [pool release]; |
36bb2ca2 | 10407 | return value; |
6d166849 | 10408 | } |