#include <apt-pkg/acquire-item.h>
#include <apt-pkg/algorithms.h>
#include <apt-pkg/cachefile.h>
+#include <apt-pkg/clean.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/debmetaindex.h>
#include <apt-pkg/error.h>
static const int ButtonBarHeight_ = 48;
static const float KeyboardTime_ = 0.4f;
+#ifndef Cydia_
+#define Cydia_ ""
+#endif
+
+static CGColor Blueish_;
static CGColor Black_;
static CGColor Clear_;
static CGColor Red_;
bugfix <= BugFix_))
bool bootstrap_;
-bool restart_;
+bool reload_;
static NSMutableDictionary *Metadata_;
static NSMutableDictionary *Packages_;
Status status_;
Progress progress_;
+ int cydiafd_;
int statusfd_;
FILE *input_;
}
+- (void) _readCydia:(NSNumber *)fd;
- (void) _readStatus:(NSNumber *)fd;
- (void) _readOutput:(NSNumber *)fd;
NSString *tagline_;
NSString *icon_;
NSString *website_;
+ Address *author_;
NSArray *relationships_;
}
- (BOOL) essential;
- (BOOL) broken;
+- (BOOL) half;
+- (BOOL) halfConfigured;
+- (BOOL) halfInstalled;
+- (BOOL) hasMode;
+- (NSString *) mode;
+
- (NSString *) id;
- (NSString *) name;
- (NSString *) tagline;
- (NSString *) icon;
- (NSString *) website;
+- (Address *) author;
- (NSArray *) relationships;
[icon_ release];
if (website_ != nil)
[website_ release];
+ if (author_ != nil)
+ [author_ release];
if (relationships_ != nil)
[relationships_ release];
icon_ = Scour("Icon", begin, end);
if (icon_ != nil)
icon_ = [icon_ retain];
- website_ = Scour("Website", begin, end);
+ website_ = Scour("Homepage", begin, end);
+ if (website_ == nil)
+ website_ = Scour("Website", begin, end);
if (website_ != nil)
website_ = [website_ retain];
+ NSString *author = Scour("Author", begin, end);
+ if (author != nil)
+ author_ = [Address addressWithString:author];
}
NSMutableDictionary *metadata = [Packages_ objectForKey:id_];
}
- (BOOL) broken {
- return (*[database_ cache])[iterator_].InstBroken();
+ return [database_ cache][iterator_].InstBroken();
+}
+
+- (BOOL) half {
+ unsigned char current = iterator_->CurrentState;
+ return current == pkgCache::State::HalfConfigured || current == pkgCache::State::HalfInstalled;
+}
+
+- (BOOL) halfConfigured {
+ return iterator_->CurrentState == pkgCache::State::HalfConfigured;
+}
+
+- (BOOL) halfInstalled {
+ return iterator_->CurrentState == pkgCache::State::HalfInstalled;
+}
+
+- (BOOL) hasMode {
+ pkgDepCache::StateCache &state([database_ cache][iterator_]);
+ return state.Mode != pkgDepCache::ModeKeep;
+}
+
+- (NSString *) mode {
+ pkgDepCache::StateCache &state([database_ cache][iterator_]);
+
+ switch (state.Mode) {
+ case pkgDepCache::ModeDelete:
+ if ((state.iFlags & pkgDepCache::Purge) != 0)
+ return @"Purge";
+ else
+ return @"Remove";
+ _assert(false);
+ case pkgDepCache::ModeKeep:
+ if ((state.iFlags & pkgDepCache::AutoKept) != 0)
+ return nil;
+ else
+ return nil;
+ _assert(false);
+ case pkgDepCache::ModeInstall:
+ if ((state.iFlags & pkgDepCache::ReInstall) != 0)
+ return @"Reinstall";
+ else switch (state.Status) {
+ case -1:
+ return @"Downgrade";
+ case 0:
+ return @"Install";
+ case 1:
+ return @"Upgrade";
+ case 2:
+ return @"New Install";
+ default:
+ _assert(false);
+ }
+ default:
+ _assert(false);
+ }
}
- (NSString *) id {
return website_;
}
+- (Address *) author {
+ return author_;
+}
+
- (NSArray *) relationships {
return relationships_;
}
[super dealloc];
}
+- (void) _readCydia:(NSNumber *)fd {
+ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+
+ __gnu_cxx::stdio_filebuf<char> ib([fd intValue], std::ios::in);
+ std::istream is(&ib);
+ std::string line;
+
+ while (std::getline(is, line)) {
+ const char *data(line.c_str());
+ //size_t size = line.size();
+ fprintf(stderr, "C:%s\n", data);
+ }
+
+ [pool release];
+ _assert(false);
+}
+
- (void) _readStatus:(NSNumber *)fd {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
while (std::getline(is, line)) {
const char *data(line.c_str());
size_t size = line.size();
- fprintf(stderr, "%s\n", data);
+ fprintf(stderr, "S:%s\n", data);
if (conffile_r(data, size)) {
[delegate_ setConfigurationData:conffile_r[1]];
std::string line;
while (std::getline(is, line)) {
- fprintf(stderr, "%s\n", line.c_str());
+ fprintf(stderr, "O:%s\n", line.c_str());
[delegate_ addProgressOutput:[NSString stringWithUTF8String:line.c_str()]];
}
int fds[2];
+ _assert(pipe(fds) != -1);
+ cydiafd_ = fds[1];
+
+ _config->Set("APT::Keep-Fds::", cydiafd_);
+ setenv("CYDIA", [[[[NSNumber numberWithInt:cydiafd_] stringValue] stringByAppendingString:@" 0"] UTF8String], _not(int));
+
+ [NSThread
+ detachNewThreadSelector:@selector(_readCydia:)
+ toTarget:self
+ withObject:[[NSNumber numberWithInt:fds[0]] retain]
+ ];
+
_assert(pipe(fds) != -1);
statusfd_ = fds[1];
list_ = new pkgSourceList();
_assert(list_->ReadMainList());
+ _assert(cache_->DelCount() == 0 && cache_->InstCount() == 0);
+ _assert(pkgApplyStatus(cache_));
+
+ if (cache_->BrokenCount() != 0) {
+ _assert(pkgFixBroken(cache_));
+ _assert(cache_->BrokenCount() == 0);
+ _assert(pkgMinimizeUpgrade(cache_));
+ }
+
[sources_ removeAllObjects];
for (pkgSourceList::const_iterator source = list_->begin(); source != list_->end(); ++source) {
std::vector<pkgIndexFile *> *indices = (*source)->GetIndexFiles();
system([dpkg UTF8String]);
}
+- (void) clean {
+ if (lock_ != NULL)
+ return;
+
+ FileFd Lock;
+ Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
+ _assert(!_error->PendingError());
+
+ pkgAcquire fetcher;
+ fetcher.Clean(_config->FindDir("Dir::Cache::Archives"));
+
+ class LogCleaner :
+ public pkgArchiveCleaner
+ {
+ protected:
+ virtual void Erase(const char *File, std::string Pkg, std::string Ver, struct stat &St) {
+ unlink(File);
+ }
+ } cleaner;
+
+ if (!cleaner.Go(_config->FindDir("Dir::Cache::Archives") + "partial/", cache_)) {
+ std::string error;
+ while (_error->PopMessage(error))
+ fprintf(stderr, "ArchiveCleaner: %s\n", error.c_str());
+ }
+}
+
- (void) prepare {
pkgRecords records(cache_);
}
- (void) upgrade {
- _assert(cache_->DelCount() == 0 && cache_->InstCount() == 0);
- _assert(pkgApplyStatus(cache_));
-
- if (cache_->BrokenCount() != 0) {
- _assert(pkgFixBroken(cache_));
- _assert(cache_->BrokenCount() == 0);
- _assert(pkgMinimizeUpgrade(cache_));
- }
-
_assert(pkgDistUpgrade(cache_));
}
}
- (void) alertSheet:(UIAlertSheet *)sheet buttonClicked:(int)button {
- [essential_ dismiss];
- [self cancel];
+ NSString *context = [sheet context];
+
+ if ([context isEqualToString:@"remove"])
+ switch (button) {
+ case 1:
+ [delegate_ confirm];
+ break;
+ case 2:
+ [self cancel];
+ break;
+ default:
+ _assert(false);
+ }
+ else if ([context isEqualToString:@"unable"])
+ [self cancel];
+
+ [sheet dismiss];
}
- (int) numberOfGroupsInPreferencesTable:(UIPreferencesTable *)table {
if (!remove)
essential_ = nil;
- else {
+ else if (Advanced_ || true) {
+ essential_ = [[UIAlertSheet alloc]
+ initWithTitle:@"Remove Essential?"
+ buttons:[NSArray arrayWithObjects:
+ @"Yes (Force Removal)",
+ @"No (Safe, Recommended)",
+ nil]
+ defaultButtonIndex:1
+ delegate:self
+ context:@"remove"
+ ];
+
+ [essential_ setDestructiveButton:[[essential_ buttons] objectAtIndex:0]];
+ [essential_ setBodyText:@"This operation requires the removal of one or more packages that are required for the continued operation of either Cydia or the iPhoneOS. If you continue you will almost certainly break something past Cydia's ability to fix it. Are you absolutely certain you wish to continue?"];
+ } else {
essential_ = [[UIAlertSheet alloc]
initWithTitle:@"Unable to Comply"
buttons:[NSArray arrayWithObjects:@"Okay", nil]
defaultButtonIndex:0
delegate:self
- context:@"remove"
+ context:@"unable"
];
- [essential_ setBodyText:@"One or more of the packages you are about to remove are marked 'Essential' and cannot be removed by Cydia. Please use apt-get."];
+ [essential_ setBodyText:@"This operation requires the removal of one or more packages that are required for the continued operation of either Cydia or the iPhoneOS. In order to continue and force this operation you will need to be activate the Advanced mode undder to continue and force this operation you will need to be activate the Advanced mode under Settings."];
}
AddTextView(fields_, installing, @"Installing");
case 1:
fprintf(input, "N\n");
fflush(input);
- break;
-
+ break;
case 2:
fprintf(input, "Y\n");
fflush(input);
- break;
-
- default: _assert(false);
+ break;
+ default:
+ _assert(false);
}
}
UITextLabel *name_;
UITextLabel *description_;
UITextLabel *source_;
- UIImageView *trusted_;
+ //UIImageView *trusted_;
+ UIImageView *badge_;
+ UITextLabel *status_;
}
- (PackageCell *) init;
- (void) setSelected:(BOOL)selected withFade:(BOOL)fade;
- (void) _setSelectionFadeFraction:(float)fraction;
++ (int) heightForPackage:(Package *)package;
+
@end
@implementation PackageCell
[name_ release];
[description_ release];
[source_ release];
- [trusted_ release];
+ [badge_ release];
+ [status_ release];
+ //[trusted_ release];
[super dealloc];
}
[description_ setBackgroundColor:Clear_];
[description_ setFont:small];
- trusted_ = [[UIImageView alloc] initWithFrame:CGRectMake(30, 30, 16, 16)];
- [trusted_ setImage:[UIImage applicationImageNamed:@"trusted.png"]];
+ /*trusted_ = [[UIImageView alloc] initWithFrame:CGRectMake(30, 30, 16, 16)];
+ [trusted_ setImage:[UIImage applicationImageNamed:@"trusted.png"]];*/
+
+ badge_ = [[UIImageView alloc] initWithFrame:CGRectMake(17, 70, 16, 16)];
+
+ status_ = [[UITextLabel alloc] initWithFrame:CGRectMake(48, 68, 280, 20)];
+ [status_ setBackgroundColor:Clear_];
+ [status_ setFont:small];
[self addSubview:icon_];
[self addSubview:name_];
[self addSubview:description_];
[self addSubview:source_];
+ [self addSubview:badge_];
+ [self addSubview:status_];
CFRelease(small);
CFRelease(large);
[source_ setText:from];
- if (trusted)
- [self addSubview:trusted_];
- else
- [trusted_ removeFromSuperview];
+ if (NSString *mode = [package mode]) {
+ [badge_ setImage:[UIImage applicationImageNamed:
+ [mode isEqualToString:@"Remove"] || [mode isEqualToString:@"Purge"] ? @"removing.png" : @"installing.png"
+ ]];
+
+ [status_ setText:[NSString stringWithFormat:@"Queued for %@", mode]];
+ [status_ setColor:Blueish_];
+ } else if ([package half]) {
+ [badge_ setImage:[UIImage applicationImageNamed:@"damaged.png"]];
+ [status_ setText:@"Package Damaged"];
+ [status_ setColor:Red_];
+ } else {
+ [badge_ setImage:nil];
+ [status_ setText:nil];
+ }
}
- (void) _setSelected:(float)fraction {
[super _setSelectionFadeFraction:fraction];
}
++ (int) heightForPackage:(Package *)package {
+ if ([package hasMode] || [package half])
+ return 96;
+ else
+ return 73;
+}
+
@end
/* }}} */
/* Section Cell {{{ */
- (int) preferencesTable:(UIPreferencesTable *)table numberOfRowsInGroup:(int)group {
if (group-- == 0) {
int number = 1;
+ if ([package_ author] != nil)
+ ++number;
if (description_ != nil)
++number;
if ([package_ website] != nil)
if (row-- == 0) {
[cell setTitle:[package_ name]];
[cell setValue:[package_ latest]];
+ } else if ([package_ author] != nil && row-- == 0) {
+ [cell setTitle:@"Author"];
+ [cell setValue:[[package_ author] name]];
+ [cell setShowDisclosure:YES];
+ [cell setShowSelection:YES];
} else if (description_ != nil && row-- == 0) {
[cell addSubview:description_];
} else if ([package_ website] != nil && row-- == 0) {
return YES;
}
+// XXX: this is now unmaintainable
- (void) tableRowSelected:(NSNotification *)notification {
int row = [table_ selectedRow];
NSString *website = [package_ website];
+ Address *author = [package_ author];
BOOL trusted = [[package_ source] trusted];
NSString *installed = [package_ installed];
+ Address *maintainer = [package_ maintainer];
- if (row == 7
+ if (maintainer != nil && row == 7
+ + (author == nil ? 0 : 1)
+ (website == nil ? 0 : 1)
+ (trusted ? 1 : 0)
+ (installed == nil ? 0 : 3)
- )
+ ) {
[delegate_ openURL:[NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@?subject=%@",
- [[package_ maintainer] email],
+ [maintainer email],
[[NSString stringWithFormat:@"regarding apt package \"%@\"", [package_ name]] stringByAddingPercentEscapes]
]]];
- else if (installed && row == 5
+ } else if (installed && row == 5
+ + (author == nil ? 0 : 1)
+ (website == nil ? 0 : 1)
+ (trusted ? 1 : 0)
) {
[files setDelegate:delegate_];
[files setPackage:package_];
[book_ pushPage:files];
- } else if (website != nil && row == 3) {
+ } else if (author != nil && row == 2) {
+ [delegate_ openURL:[NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@?subject=%@",
+ [author email],
+ [[NSString stringWithFormat:@"regarding apt package \"%@\"", [package_ name]] stringByAddingPercentEscapes]
+ ]]];
+ } else if (website != nil && row == (author == nil ? 3 : 4)) {
NSURL *url = [NSURL URLWithString:website];
BrowserView *browser = [[[BrowserView alloc] initWithBook:book_ database:database_] autorelease];
[browser setDelegate:delegate_];
}
- (float) table:(UITable *)table heightForRow:(int)row {
- return 73;
+ return [PackageCell heightForPackage:[packages_ objectAtIndex:row]];
}
- (UITableCell *) table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col reusing:(UITableCell *)reusing {
}
- (float) table:(UITable *)table heightForRow:(int)row {
- return 73;
+ return [PackageCell heightForPackage:[packages_ objectAtIndex:row]];
}
- (UITableCell *) table:(UITable *)table cellForRow:(int)row column:(UITableColumn *)col reusing:(UITableCell *)reusing {
prompt_ = [[UITextLabel alloc] initWithFrame:prmrect];
- [prompt_ setColor:(Advanced_ ? White_ : Black_)];
+ [prompt_ setColor:(Advanced_ ? White_ : Blueish_)];
[prompt_ setBackgroundColor:Clear_];
[prompt_ setFont:font];
UIButtonBar *buttonbar_;
ConfirmationView *confirm_;
+
NSMutableArray *essential_;
+ NSMutableArray *broken_;
Database *database_;
ProgressView *progress_;
@implementation Cydia
+- (void) _loaded {
+ if ([broken_ count] != 0) {
+ int count = [broken_ count];
+
+ UIAlertSheet *sheet = [[[UIAlertSheet alloc]
+ initWithTitle:[NSString stringWithFormat:@"%d Half-Installed Package%@", count, (count == 1 ? @"" : @"s")]
+ buttons:[NSArray arrayWithObjects:
+ @"Forcibly Clear",
+ @"Ignore (Temporary)",
+ nil]
+ defaultButtonIndex:0
+ delegate:self
+ context:@"fixhalf"
+ ] autorelease];
+
+ [sheet setBodyText:@"When the shell scripts associated with packages fail, they are left in a state known as either half-configured or half-installed. These errors don't go away and instead continue to cause issues. These scripts can be deleted and the packages forcibly removed."];
+ [sheet popupAlertAnimated:YES];
+ } else if (!Ignored_ && [essential_ count] != 0) {
+ int count = [essential_ count];
+
+ UIAlertSheet *sheet = [[[UIAlertSheet alloc]
+ initWithTitle:[NSString stringWithFormat:@"%d Essential Upgrade%@", count, (count == 1 ? @"" : @"s")]
+ buttons:[NSArray arrayWithObjects:@"Upgrade Essential", @"Ignore (Temporary)", nil]
+ defaultButtonIndex:0
+ delegate:self
+ context:@"upgrade"
+ ] autorelease];
+
+ [sheet setBodyText:@"One or more essential packages are currently out of date. If these packages are not upgraded you are likely to encounter errors."];
+ [sheet popupAlertAnimated:YES];
+ }
+}
+
- (void) _reloadData {
/*UIProgressHUD *hud = [[UIProgressHUD alloc] initWithWindow:window_];
[hud setText:@"Reloading Data"];
}
size_t changes(0);
+
[essential_ removeAllObjects];
+ [broken_ removeAllObjects];
NSArray *packages = [database_ packages];
for (int i(0), e([packages count]); i != e; ++i) {
Package *package = [packages objectAtIndex:i];
+ if ([package half])
+ [broken_ addObject:package];
if ([package upgradable]) {
if ([package essential])
[essential_ addObject:package];
[book_ reloadData];
if ([packages count] == 0);
- else if (!Loaded_) {
+ else if (Loaded_)
+ [self _loaded];
+ else {
Loaded_ = YES;
[book_ update];
- } else if (!Ignored_ && [essential_ count] != 0) {
- int count = [essential_ count];
-
- UIAlertSheet *sheet = [[[UIAlertSheet alloc]
- initWithTitle:[NSString stringWithFormat:@"%d Essential Upgrade%@", count, (count == 1 ? @"" : @"s")]
- buttons:[NSArray arrayWithObjects:@"Upgrade Essential", @"Ignore (Temporary)", nil]
- defaultButtonIndex:0
- delegate:self
- context:@"upgrade"
- ] autorelease];
-
- [sheet setBodyText:@"One or more essential packages are currently out of date. If these packages are not upgraded you are likely to encounter errors."];
- [sheet popupAlertAnimated:YES];
}
/*[hud show:NO];
- (void) confirm {
[overlay_ removeFromSuperview];
- restart_ = true;
+ reload_ = true;
[progress_
detachNewThreadSelector:@selector(perform)
- (void) alertSheet:(UIAlertSheet *)sheet buttonClicked:(int)button {
NSString *context = [sheet context];
- if ([context isEqualToString:@"upgrade"])
+ if ([context isEqualToString:@"fixhalf"])
+ switch (button) {
+ case 1:
+ @synchronized (self) {
+ for (int i = 0, e = [broken_ count]; i != e; ++i) {
+ Package *broken = [broken_ objectAtIndex:i];
+ [broken remove];
+
+ NSString *id = [broken id];
+ unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.prerm", id] UTF8String]);
+ unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postrm", id] UTF8String]);
+ unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.preinst", id] UTF8String]);
+ unlink([[NSString stringWithFormat:@"/var/lib/dpkg/info/%@.postinst", id] UTF8String]);
+ }
+
+ [self resolve];
+ [self perform];
+ }
+ break;
+
+ case 2:
+ [broken_ removeAllObjects];
+ [self _loaded];
+ break;
+
+ default:
+ _assert(false);
+ }
+ else if ([context isEqualToString:@"upgrade"])
switch (button) {
case 1:
@synchronized (self) {
Ignored_ = YES;
break;
- default: _assert(false);
+ default:
+ _assert(false);
}
[sheet dismiss];
- (void) applicationWillSuspend {
[super applicationWillSuspend];
- if (restart_)
- if (FW_LEAST(1,1,3))
- notify_post("com.apple.language.changed");
- else
- system("launchctl stop com.apple.SpringBoard");
+ [database_ clean];
+
+ if (reload_) {
+ pid_t pid = ExecFork();
+ if (pid == 0) {
+ sleep(1);
+ execlp("launchctl", "launchctl", "stop", "com.apple.SpringBoard", NULL);
+ exit(0);
+ }
+ }
}
- (void) applicationDidFinishLaunching:(id)unused {
tag_ = 1;
essential_ = [[NSMutableArray alloc] initWithCapacity:4];
+ broken_ = [[NSMutableArray alloc] initWithCapacity:4];
CGRect screenrect = [UIHardware fullScreenApplicationContentRect];
window_ = [[UIWindow alloc] initWithContentRect:screenrect];
}
- (void) slideUp:(UIAlertSheet *)alert {
- [alert presentSheetInView:overlay_];
+ if (Advanced_)
+ [alert presentSheetFromButtonBar:buttonbar_];
+ else
+ [alert presentSheetInView:overlay_];
}
@end
else
Packages_ = [Metadata_ objectForKey:@"Packages"];
- setenv("CYDIA", "", _not(int));
if (access("/User", F_OK) != 0)
system("/usr/libexec/cydia/firmware.sh");
space_ = CGColorSpaceCreateDeviceRGB();
+ Blueish_.Set(space_, 0x19/255.f, 0x32/255.f, 0x50/255.f, 1.0);
Black_.Set(space_, 0.0, 0.0, 0.0, 1.0);
Clear_.Set(space_, 0.0, 0.0, 0.0, 0.0);
Red_.Set(space_, 1.0, 0.0, 0.0, 1.0);