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
|
/*
RarArchive.m
Zipper
Copyright (C) 2012 Free Software Foundation, Inc
Authors:
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 "RarArchive.h"
#import "FileInfo.h"
#import "NSString+Custom.h"
#import "Preferences.h"
#import "NSArray+Custom.h"
#import "common.h"
static NSData *_magicBytes;
@interface RarArchive (PrivateAPI)
- (NSData *)dataByRunningRar;
@end
@implementation RarArchive : Archive
/**
* register our supported file extensions with our superclass.
*/
+ (void)initialize
{
// rar files start with 'R a r !'
char rarBytes[] = { 'R', 'a', 'r', '!' };
_magicBytes = [[NSData dataWithBytes:rarBytes length:4] retain];
[self registerFileExtension:@"rar" forArchiveClass:self];
}
+ (NSString *)unarchiveExecutable
{
return [Preferences rarExecutable];
}
/**
* rar archives <em>do</em> contain info about compression ratio.
*/
+ (BOOL)hasRatio;
{
return YES;
}
+ (ArchiveType)archiveType
{
return RAR;
}
+ (NSData *)magicBytes
{
return _magicBytes;
}
//------------------------------------------------------------------------------
// expanding the archive
//------------------------------------------------------------------------------
- (int)expandFiles:(NSArray *)files withPathInfo:(BOOL)usePathInfo toPath:(NSString *)path
{
FileInfo *fileInfo;
NSMutableArray *args;
args = [NSMutableArray array];
if (usePathInfo)
{
[args addObject:@"x"];
}
else
{
[args addObject:@"e"];
}
// 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]];
}
}
// destination dir
[args addObject:path];
return [self runUnarchiverWithArguments:args];
}
- (NSArray *)listContents
{
NSUInteger lineCount, i;
NSString *path = nil;
NSMutableArray *results = [NSMutableArray array];
NSData *data = [self dataByRunningRar];
NSString *string = [[[NSString alloc] initWithData:data
encoding:NSASCIIStringEncoding] autorelease];
NSArray *lines = [string componentsSeparatedByString:@"\n"];
// take out first 9 lines (header) and last 3 lines (footer)
lines = [lines subarrayWithRange:NSMakeRange(8, [lines count] - 8)];
lines = [lines subarrayWithRange:NSMakeRange(0, [lines count] - 4)];
lineCount = [lines count];
for (i = 0; i < lineCount; i++)
{
NSString *line = nil;
line = [lines objectAtIndex:i];
if ((i % 2) == 0)
{
path = [line stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
}
else
{
NSArray *components;
NSString *date, *ratio;
int length;
NSCalendarDate *calendarDate;
FileInfo *info;
components = [[line componentsSeparatedByString:@" "] arrayByRemovingEmptyStrings];
// continue only for non-directory entries
if ([[components objectAtIndex:5] hasPrefix:@"d"] == NO)
{
length = [[components objectAtIndex:0] intValue];
ratio = [components objectAtIndex:2];
date = [components objectAtIndex:3];
date = [NSString stringWithFormat:@"%@ %@", date, [components objectAtIndex:4]];
calendarDate = [NSCalendarDate dateWithString:date
calendarFormat:@"%d-%m-%y %H:%M"];
info = [FileInfo newWithPath:path date:calendarDate
size:[NSNumber numberWithInt:length] ratio:ratio];
[results addObject:info];
}
}
}
return results;
}
//------------------------------------------------------------------------------
// private API
//------------------------------------------------------------------------------
- (NSData *)dataByRunningRar
{
// Args for rar:
// v view contents of archive
// -c- suppress archive comment
NSArray *args = [NSArray arrayWithObjects:@"v", @"-c-", @"--", [self path], nil];
return [self dataByRunningUnachiverWithArguments:args];
}
@end
|