1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
#import <Foundation/Foundation.h>
#import "LhaArchive.h"
#import "FileInfo.h"
#import "NSString+Custom.h"
#import "Preferences.h"
#import "NSArray+Custom.h"
@interface LhaArchive (PrivateAPI)
- (NSData *)dataByRunningLha;
@end
@implementation LhaArchive : Archive
/**
* register our supported file extensions with our superclass.
*/
+ (void)initialize
{
[self registerFileExtension:@"lha" forArchiveClass:self];
}
+ (NSString *)archiveExecutable
{
return [Preferences lhaExecutable];
}
+ (NSString *)unarchiveExecutable
{
return [Preferences lhaExecutable];
}
/**
* lha archives <em>do</em> contain info about compression ratio.
*/
+ (BOOL)hasRatio;
{
return YES;
}
+ (ArchiveType)archiveType
{
return LHA;
}
//------------------------------------------------------------------------------
// expanding the archive
//------------------------------------------------------------------------------
- (int)expandFiles:(NSArray *)files withPathInfo:(BOOL)usePathInfo toPath:(NSString *)path
{
FileInfo *fileInfo;
NSMutableArray *args;
NSString *argString;
argString = @"e";
if (usePathInfo == NO)
{
argString = [argString stringByAppendingString:@"i"];
}
// destination dir
argString = [argString stringByAppendingString:@"w="];
argString = [argString stringByAppendingString:path];
args = [NSMutableArray array];
[args addObject:argString];
// protect against archives and files starting with -
[args addObject:@"--"];
[args addObject:[self path]];
if (files != nil)
{
NSEnumerator *cursor = [files objectEnumerator];
while ((fileInfo = [cursor nextObject]) != nil)
{
[args addObject:[fileInfo fullPath]];
}
}
return [self runUnarchiverWithArguments:args];
}
- (NSArray *)listContents
{
NSEnumerator *cursor;
NSString *line;
NSMutableArray *results = [NSMutableArray array];
NSData *data = [self dataByRunningLha];
NSString *string = [[[NSString alloc] initWithData:data
encoding:NSASCIIStringEncoding] autorelease];
NSArray *lines = [string componentsSeparatedByString:@"\n"];
// take out first 2 lines (header) and last 2 lines (footer)
lines = [lines subarrayWithRange:NSMakeRange(2, [lines count] - 2)];
lines = [lines subarrayWithRange:NSMakeRange(0, [lines count] - 3)];
cursor = [lines objectEnumerator];
while ((line = [cursor nextObject]) != nil)
{
NSArray *components;
int length;
NSString *path, *ratio, *month, *day, *year, *dateString;
NSCalendarDate *date;
FileInfo *info;
if ([line hasSuffix:@"/"])
{
// skip directory entries
continue;
}
components = [line componentsSeparatedByString:@" "];
components = [components arrayByRemovingEmptyStrings];
length = [[components objectAtIndex:3] intValue];
path = [components objectAtIndex:10];
ratio = [components objectAtIndex:4];
month = [components objectAtIndex:7];
day = [components objectAtIndex:8];
year = [components objectAtIndex:9];
dateString = [NSString stringWithFormat:@"%@ %@ %@", month, day, year];
date = [NSCalendarDate dateWithString:dateString calendarFormat:@"%b %d %Y"];
info = [FileInfo newWithPath:path date:date size:[NSNumber numberWithInt:length]
ratio:ratio];
[results addObject:info];
}
return results;
}
//------------------------------------------------------------------------------
// creating archives
//------------------------------------------------------------------------------
+ (void)createArchive:(NSString *)archivePath withFiles:(NSArray *)filenames archiveType: (ArchiveType) archiveType
{
NSEnumerator *filenameCursor;
NSString *filename;
NSString *workdir;
NSMutableArray *arguments;
// make sure archivePath has the correct suffix
if ([archivePath hasSuffix:@".lha"] == NO)
{
archivePath = [archivePath stringByAppendingString:@".lha"];
}
// build arguments for commandline: lha a filename <list of files>
arguments = [NSMutableArray array];
[arguments addObject:@"a"];
[arguments addObject:archivePath];
// filenames contains absolute paths, convert them to relative paths. This works
// because you can select only files/directories below a current directory in
// GWorkspace so all the files *have* to have a common filesystem root.
filenameCursor = [filenames objectEnumerator];
while ((filename = [filenameCursor nextObject]) != nil)
{
[arguments addObject:[filename lastPathComponent]];
}
// change into this directory when running the task
workdir = [[filenames objectAtIndex:0] stringByDeletingLastPathComponent];
[self runArchiverWithArguments:arguments inDirectory:workdir];
}
//------------------------------------------------------------------------------
// private API
//------------------------------------------------------------------------------
- (NSData *)dataByRunningLha
{
NSData *data;
NSArray *args = [NSArray arrayWithObjects:@"v", @"--", [self path], nil];
data = [self dataByRunningUnachiverWithArguments:args];
return data;
}
@end
|