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
|
/*
ArjArchive.m
Zipper
Copyright (C) 2012 Free Software Foundation, Inc
Authors: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
This application is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details
*/
#import <Foundation/Foundation.h>
#import "ArjArchive.h"
#import "FileInfo.h"
#import "NSString+Custom.h"
#import "Preferences.h"
#import "NSArray+Custom.h"
#import "common.h"
static NSData *_magicBytes;
@interface ArjArchive (PrivateAPI)
- (NSData *)dataByRunningArj;
@end
@implementation ArjArchive : Archive
/**
* register our supported file extensions with our superclass.
*/
+ (void)initialize
{
// arj starts with 0xea60
char arjBytes[] = { 0xea, 0x60 };
_magicBytes = [[NSData dataWithBytes:arjBytes length:2] retain];
[self registerFileExtension:@"arj" forArchiveClass:self];
}
+ (NSString *)unarchiveExecutable
{
return [Preferences unarjExecutable];
}
/**
* arj archives <em>do</em> contain info about compression ratio.
*/
+ (BOOL)hasRatio;
{
return YES;
}
+ (ArchiveType)archiveType
{
return ARJ;
}
+ (NSData *)magicBytes
{
return _magicBytes;
}
//------------------------------------------------------------------------------
// expanding the archive
//------------------------------------------------------------------------------
- (int)expandFiles:(NSArray *)files withPathInfo:(BOOL)usePathInfo toPath:(NSString *)path
{
//FileInfo *fileInfo;
NSMutableArray *args;
args = [NSMutableArray array];
[args addObject:@"x"];
[args addObject:[self path]];
// this doesn't work with unarj, either extract
// whole archive, or nothing
/* if (files != nil)
{
NSEnumerator *cursor = [files objectEnumerator];
while ((fileInfo = [cursor nextObject]) != nil)
{
[args addObject:[fileInfo fullPath]];
}
} */
// there is no parameter allowing to specify destination dir
return [self runUnarchiverWithArguments:args inDirectory:path];
}
- (NSArray *)listContents
{
NSUInteger lineCount, i;
NSString *path = nil;
NSMutableArray *results = [NSMutableArray array];
NSData *data = [self dataByRunningArj];
NSString *string = [[[NSString alloc] initWithData:data
encoding:NSASCIIStringEncoding] autorelease];
NSArray *lines = [string componentsSeparatedByString:@"\n"];
// take out first 7 lines (header) and last 2 lines (footer)
lines = [lines subarrayWithRange:NSMakeRange(6, [lines count] - 6)];
lines = [lines subarrayWithRange:NSMakeRange(0, [lines count] - 3)];
lineCount = [lines count];
for (i = 0; i < lineCount; i++)
{
NSString *line = nil;
NSArray *components;
NSString *date, *ratio;
int length;
NSCalendarDate *calendarDate;
FileInfo *info;
line = [lines objectAtIndex:i];
components = [[line componentsSeparatedByString:@" "] arrayByRemovingEmptyStrings];
path = [components objectAtIndex:0];
length = [[components objectAtIndex:1] intValue];
ratio = [components objectAtIndex:3];
date = [components objectAtIndex:4];
date = [NSString stringWithFormat:@"%@ %@", date, [components objectAtIndex:5]];
calendarDate = [NSCalendarDate dateWithString:date
calendarFormat:@"%d-%m-%y %H:%M:%S"];
info = [FileInfo newWithPath:path date:calendarDate
size:[NSNumber numberWithInt:length] ratio:ratio];
[results addObject:info];
}
return results;
}
//------------------------------------------------------------------------------
// private API
//------------------------------------------------------------------------------
- (NSData *)dataByRunningArj
{
// Args for unarj:
// l view contents of archive
NSArray *args = [NSArray arrayWithObjects:@"l", [self path], nil];
return [self dataByRunningUnachiverWithArguments:args];
}
@end
|