forked from mjwoodcock/riscosarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
riscosarc.java
251 lines (229 loc) · 8.14 KB
/
riscosarc.java
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// vim:ts=2:sw=2:expandtab:ai
import riscos.archive.CRC;
import riscos.archive.LimitOutputStream;
import riscos.archive.container.ArchiveEntry;
import riscos.archive.container.ArchiveFile;
import riscos.archive.container.ArchiveFileFactory;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
public class riscosarc {
public static void usage() {
System.err.println("Usage: java riscosarc <command> <argument> <archiveFile> [filename]");
System.err.println(" command can be:");
System.err.println(" -l: list contents of file");
System.err.println(" -x: extract file");
System.err.println(" argument can be:");
System.err.println(" -c: extract console");
System.err.println(" -d<path>: extract files to <path>");
System.err.println(" -d- to extract to dirname of archive file");
System.err.println(" -g<password>: set password to <password>");
System.err.println(" -i: ignore errors where possible");
System.err.println(" -n: don't overwrite files");
System.err.println(" -r: extract raw compressed data");
System.err.println(" -v: verbose list contents of file");
System.err.println(" -D: don't set the timestamp on the extracted file");
System.err.println(" -T: make the extracted file timestamp match the archive");
System.err.println(" -F: append RISC OS filetype to file name");
System.err.println(" --delete-archive: delete archive after extraction");
System.err.println("Supported archive types are:");
String[] formats = ArchiveFileFactory.getReaderFormatNames();
int[] filetypes = ArchiveFileFactory.getReaderFiletypes();
for (int i = 0; i < formats.length && i < filetypes.length; i++) {
System.err.println(" " + Integer.toHexString(filetypes[i]) + ": " + formats[i]);
}
System.exit(1);
}
public static void main(String[] args) {
boolean doList = false;
boolean doOverwrite = true;
boolean doVerbose = false;
boolean doExtract = false;
boolean extractRaw = false;
boolean consoleOutput = false;
boolean appendFiletype = false;
boolean deleteArchive = false;
boolean doTimestamp = true;
boolean useArchiveTimestamp = false;
int options = 0;
String outputDirectory = ".";
String password = null;
String suffix = "";
boolean error = false;
int archiveFileArg = -1;
String fileToExtract = null;
String archiveFilename = null;
long archiveTimestamp = 0;
if (args.length < 2) {
riscosarc.usage();
}
for (int i = 0; i < args.length; i++) {
if (args[i].startsWith("-c")) {
consoleOutput = true;
} else if (args[i].startsWith("-d")) {
outputDirectory = args[i].substring(2);
} else if (args[i].startsWith("-g")) {
password = args[i].substring(2);
} else if (args[i].startsWith("-i")) {
options = ArchiveFile.IGNORE_BAD_ZIP_ENTRY_OPT;
} else if (args[i].equals("-l")) {
doList = true;
} else if (args[i].equals("-n")) {
doOverwrite = false;
} else if (args[i].equals("-r")) {
extractRaw = true;
suffix = ".raw";
} else if (args[i].equals("-v")) {
doVerbose = true;
} else if (args[i].equals("-x")) {
doExtract = true;
} else if (args[i].equals("-D")) {
doTimestamp = false;
} else if (args[i].equals("-F")) {
appendFiletype = true;
} else if (args[i].equals("-T")) {
useArchiveTimestamp = true;
} else if (args[i].equals("--delete-archive")) {
deleteArchive = true;
} else if (args[i].charAt(0) == '-') {
riscosarc.usage();
} else {
archiveFileArg = i;
break;
}
}
if (!(doExtract || doList || doVerbose) || archiveFileArg == -1) {
riscosarc.usage();
}
if (archiveFileArg < args.length - 1) {
fileToExtract = args[archiveFileArg + 1];
}
Enumeration<ArchiveEntry> ent = null;
ArchiveFileFactory aff = null;
ArchiveFile af = null;
try {
archiveFilename = args[archiveFileArg];
File f = new File(archiveFilename);
if (useArchiveTimestamp) {
archiveTimestamp = f.lastModified();
}
if (outputDirectory.equals("-")) {
outputDirectory = f.getParent();
if (outputDirectory == null) {
outputDirectory = ".";
}
}
aff = new ArchiveFileFactory(archiveFilename, password,
appendFiletype, options);
af = aff.getArchiveFile();
ent = af.entries();
} catch (FileNotFoundException ex) {
System.err.println("Can not open archive file: " + archiveFilename);
System.exit(1);
} catch (Exception ex) {
error = true;
af = null;
}
if (ent == null) {
System.err.println("Invalid archive file: " + archiveFilename);
System.exit(1);
}
try {
while (ent.hasMoreElements()) {
ArchiveEntry entry = ent.nextElement();
if (doList) {
System.out.println(entry.getLocalFilename());
} else if (doVerbose) {
entry.printEntryData();
}
if (fileToExtract != null && !fileToExtract.equals(entry.getLocalFilename())) {
continue;
}
if (doExtract && !doOverwrite && entry.fileExists(outputDirectory)) {
System.out.println("Not overwriting " + outputDirectory + File.separator + entry.getLocalFilename());
} else if (doExtract) {
CRC crc = af.getCRCInstance();
crc.setDataLength(entry.getUncompressedLength());
entry.cleanOldFile(outputDirectory);
entry.mkDir(outputDirectory);
try {
InputStream fis = null;
if (extractRaw) {
fis = af.getRawInputStream(entry);
} else {
fis = af.getInputStream(entry);
}
if (fis == null) {
System.err.println("Can not get input stream");
System.exit(1);
}
FileOutputStream fos = null;
LimitOutputStream los = null;
if (consoleOutput) {
los = new LimitOutputStream(System.out, entry.getUncompressedLength());
} else {
fos = new FileOutputStream(outputDirectory + File.separator
+ entry.getLocalFilename() + suffix);
los = new LimitOutputStream(fos, entry.getUncompressedLength());
}
int len = 0;
byte[] buf = new byte[1024];
do {
len = fis.read(buf, 0, buf.length);
if (len != -1) {
crc.update(buf, 0, len);
los.write(buf, 0, len);
}
} while (len != -1);
if (!consoleOutput) {
if (los != null) {
los.close();
}
if (fos != null) {
fos.close();
}
if (doTimestamp) {
if (useArchiveTimestamp) {
entry.setFileTime(outputDirectory, archiveTimestamp);
} else {
entry.setFileTime(outputDirectory);
}
}
}
if (!extractRaw && !crc.compare(entry.getCrcValue())) {
System.out.println("CRC check failed");
error = true;
}
} catch (Exception ex) {
System.out.println(ex.toString());
ex.printStackTrace(System.out);
error = true;
}
}
}
} catch (Exception ex) {
System.err.println(ex.toString());
ex.printStackTrace(System.out);
error = true;
}
if (error) {
System.exit(1);
} else if (deleteArchive && doExtract) {
try {
if (af != null) {
af.close();
}
File arc = new File(archiveFilename);
if (arc.delete() == false) {
System.out.println("Failed to delete " + archiveFilename);
}
} catch (IOException e) {
System.out.println("Failed to close file");
}
}
}
}