-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathPyBZ2File.java
More file actions
476 lines (392 loc) · 13.7 KB
/
PyBZ2File.java
File metadata and controls
476 lines (392 loc) · 13.7 KB
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
package org.python.modules.bz2;
import java.io.BufferedInputStream;
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.io.OutputStream;
import java.nio.ByteBuffer;
import java.util.Iterator;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream;
import org.python.core.ArgParser;
import org.python.core.Py;
import org.python.core.PyException;
import org.python.core.PyIterator;
import org.python.core.PyList;
import org.python.core.PyLong;
import org.python.core.PyNone;
import org.python.core.PyObject;
import org.python.core.PySequence;
import org.python.core.PyString;
import org.python.core.PyType;
import org.python.core.Untraversable;
import org.python.core.finalization.FinalizablePyObject;
import org.python.core.finalization.FinalizableBuiltin;
import org.python.core.finalization.FinalizeTrigger;
import org.python.core.io.BinaryIOWrapper;
import org.python.core.io.BufferedReader;
import org.python.core.io.BufferedWriter;
import org.python.core.io.IOBase;
import org.python.core.io.StreamIO;
import org.python.core.io.TextIOBase;
import org.python.core.io.UniversalIOWrapper;
import org.python.expose.ExposedGet;
import org.python.expose.ExposedMethod;
import org.python.expose.ExposedNew;
import org.python.expose.ExposedType;
@Untraversable
@ExposedType(name = "bz2.BZ2File")
public class PyBZ2File extends PyObject implements FinalizablePyObject, FinalizableBuiltin {
public static final PyType TYPE = PyType.fromClass(PyBZ2File.class);
private int buffering;
@ExposedGet(name = "newlines")
public PyObject PyBZ2File_newlines() {
if (buffer != null) {
return buffer.getNewlines();
} else {
return Py.None;
}
}
private TextIOBase buffer;
private String fileName = null;
private boolean inIterMode = false;
private boolean inUniversalNewlineMode = false;
private boolean needReadBufferInit = false;
private boolean inReadMode = false;
private boolean inWriteMode = false;
public PyBZ2File() {
super(TYPE);
FinalizeTrigger.ensureFinalizer(this);
}
public PyBZ2File(PyType subType) {
super(subType);
FinalizeTrigger.ensureFinalizer(this);
}
@Override
public void __del_builtin__() {
BZ2File_close();
}
@ExposedNew
@ExposedMethod
final void BZ2File___init__(PyObject[] args, String[] kwds) {
ArgParser ap = new ArgParser("bz2file", args, kwds, new String[] {
"filename", "mode", "buffering", "compresslevel" }, 1);
PyObject filename = ap.getPyObject(0);
if (!(filename instanceof PyString)) {
throw Py.TypeError("coercing to Unicode: need string, '"
+ filename.getType().fastGetName() + "' type found");
}
String mode = ap.getString(1, "r");
int buffering = ap.getInt(2, 0);
int compresslevel = ap.getInt(3, 9);
BZ2File___init__((PyString) filename, mode, buffering, compresslevel);
}
private void BZ2File___init__(PyString inFileName, String mode,
int buffering, int compresslevel) {
try {
fileName = inFileName.asString();
this.buffering = buffering;
// check universal newline mode
if (mode.contains("U")) {
inUniversalNewlineMode = true;
}
if (mode.contains("w")) {
inWriteMode = true;
File f = new File(fileName);
if (!f.exists()) {
f.createNewFile();
}
BZip2CompressorOutputStream writeStream = new BZip2CompressorOutputStream(
new FileOutputStream(fileName), compresslevel);
buffer = new BinaryIOWrapper(
new BufferedWriter(
new SkippableStreamIO(writeStream, true),
buffering));
} else {
File f = new File(fileName);
if (!f.exists()) {
throw new FileNotFoundException();
}
inReadMode = true;
needReadBufferInit = true;
}
} catch (IOException e) {
throw Py.IOError("File " + fileName + " not found,");
}
}
private void makeReadBuffer() {
try {
FileInputStream fin = new FileInputStream(fileName);
BufferedInputStream bin = new BufferedInputStream(fin);
BZip2CompressorInputStream bZin = new BZip2CompressorInputStream(
bin, true);
BufferedReader bufferedReader = new BufferedReader(
new SkippableStreamIO(bZin, true), buffering);
if (inUniversalNewlineMode) {
buffer = new UniversalIOWrapper(bufferedReader);
} else {
buffer = new BinaryIOWrapper(bufferedReader);
}
} catch (FileNotFoundException fileNotFoundException) {
throw Py.IOError(fileNotFoundException);
} catch (IOException ioe) {
throw Py.EOFError(ioe.getMessage());
}
}
@Override
@ExposedMethod
public void __del__() {
BZ2File_close();
}
@ExposedMethod
public void BZ2File_close() {
needReadBufferInit = false;
BZ2File_flush();
if (buffer != null) {
buffer.close();
}
}
private void BZ2File_flush() {
if (buffer != null) {
buffer.flush();
}
}
@ExposedMethod
public PyObject BZ2File_read(PyObject[] args, String[] kwds) {
checkInIterMode();
checkReadBufferInit();
ArgParser ap = new ArgParser("read", args, kwds,
new String[] { "size" }, 0);
int size = ap.getInt(0, -1);
if (size == 0) { return Py.EmptyString; }
if (size < 0) { return new PyString(buffer.readall()); }
StringBuilder data = new StringBuilder(size);
while (data.length() < size) {
String chunk = buffer.read(size - data.length());
if (chunk.length() == 0) {
break;
}
data.append(chunk);
}
return new PyString(data.toString());
}
@ExposedMethod
public PyObject BZ2File_next(PyObject[] args, String[] kwds) {
checkReadBufferInit();
if (buffer == null || buffer.closed()) {
throw Py.ValueError("Cannot call next() on closed file");
}
inIterMode = true;
return null;
}
@ExposedMethod
public PyString BZ2File_readline(PyObject[] args, String[] kwds) {
checkInIterMode();
checkReadBufferInit();
ArgParser ap = new ArgParser("read", args, kwds,
new String[] { "size" }, 0);
int size = ap.getInt(0, -1);
return new PyString(buffer.readline(size));
}
@ExposedMethod
public PyList BZ2File_readlines(PyObject[] args, String[] kwds) {
checkInIterMode();
checkReadBufferInit();
// make sure file data valid
if (buffer == null || buffer.closed()) {
throw Py.ValueError("Cannot call readlines() on a closed file");
}
PyList lineList = new PyList();
PyString line = null;
while (!(line = BZ2File_readline(args, kwds)).equals(Py.EmptyString)) {
lineList.add(line);
}
return lineList;
}
private void checkInIterMode() {
if (inReadMode && inIterMode) {
throw Py.ValueError("Cannot mix iteration and reads");
}
}
private void checkReadBufferInit() {
if (inReadMode && needReadBufferInit) {
makeReadBuffer();
needReadBufferInit = false;
}
}
@ExposedMethod
public PyList BZ2File_xreadlines() {
return BZ2File_readlines(new PyObject[0], new String[0]);
}
@ExposedMethod
public void BZ2File_seek(PyObject[] args, String[] kwds) {
if (!inReadMode) {
Py.IOError("seek works only while reading");
}
ArgParser ap = new ArgParser("seek", args, kwds, new String[] {
"offset", "whence" }, 1);
checkReadBufferInit();
int newOffset = ap.getInt(0);
int whence = ap.getInt(1, 0);
// normalise offset
long currentPos = buffer.tell();
long finalOffset = 0;
switch (whence) {
case 0: // offset from start of file
finalOffset = newOffset;
break;
case 1: // move relative to current position
finalOffset = currentPos + newOffset;
break;
case 2: // move relative to end of file
long fileSize = currentPos;
// in order to seek from the end of the stream we need to fully read
// the decompressed stream to get the size
for (;;) {
final String data = buffer.read(IOBase.DEFAULT_BUFFER_SIZE);
if (data.isEmpty()) {
break;
}
fileSize += data.length();
}
finalOffset = fileSize + newOffset;
// close and reset the buffer
buffer.close();
makeReadBuffer();
break;
}
if (finalOffset < 0) {
finalOffset = 0;
}
// can't seek backwards so close and reopen the stream at the start
if (whence != 2 && finalOffset < currentPos) {
buffer.close();
makeReadBuffer();
}
// seek operation
buffer.seek(finalOffset, 0);
}
@ExposedMethod
public PyLong BZ2File_tell() {
checkReadBufferInit();
if (buffer == null) {
return Py.newLong(0);
} else {
return Py.newLong(buffer.tell());
}
}
@ExposedMethod
public void BZ2File_write(PyObject[] args, String[] kwds) {
checkFileWritable();
ArgParser ap = new ArgParser("write", args, kwds,
new String[] { "data" }, 0);
PyObject data = ap.getPyObject(0);
if (data.getType() == PyNone.TYPE) {
throw Py.TypeError("Expecting str argument");
}
buffer.write(ap.getString(0));
}
@ExposedMethod
public void BZ2File_writelines(PyObject[] args, String[] kwds) {
checkFileWritable();
ArgParser ap = new ArgParser("writelines", args, kwds,
new String[] { "sequence_of_strings" }, 0);
PySequence seq = (PySequence) ap.getPyObject(0);
for (Iterator<PyObject> iterator = seq.asIterable().iterator(); iterator
.hasNext();) {
PyObject line = iterator.next();
BZ2File_write(new PyObject[] { line }, new String[] { "data" });
}
}
private void checkFileWritable() {
if (inReadMode) {
throw Py.IOError("File in read-only mode");
}
if (buffer == null || buffer.closed()) {
throw Py.ValueError("Stream closed");
}
}
@Override
@ExposedMethod
public PyObject __iter__() {
return new BZ2FileIterator();
}
private class BZ2FileIterator extends PyIterator {
@Override
public PyObject __iternext__() {
PyString s = BZ2File_readline(new PyObject[0], new String[0]);
if (s.equals(Py.EmptyString)) {
return null;
} else {
return s;
}
}
}
@ExposedMethod
public PyObject BZ2File___enter__() {
if (inWriteMode) {
if (buffer == null) {
throw Py.ValueError("Stream closed");
}
} else if (inReadMode && !needReadBufferInit) {
if (buffer == null || buffer.closed()) {
throw Py.ValueError("Stream closed");
}
}
return this;
}
@ExposedMethod
public boolean BZ2File___exit__(PyObject exc_type, PyObject exc_value,
PyObject traceback) {
BZ2File_close();
return false;
}
private static class SkippableStreamIO extends StreamIO {
private long position = 0;
public SkippableStreamIO(InputStream inputStream, boolean closefd) {
super(inputStream, closefd);
}
public SkippableStreamIO(OutputStream outputStream, boolean closefd) {
super(outputStream, closefd);
}
@Override
public int readinto(ByteBuffer buf) {
int bytesRead = 0;
try {
bytesRead = super.readinto(buf);
} catch (PyException pyex) {
// translate errors on read of decompressed stream to EOFError
throw Py.EOFError(pyex.value.asStringOrNull());
}
position += bytesRead;
return bytesRead;
}
@Override
public long tell() {
return position;
}
@Override
public long seek(long offset, int whence) {
long skipBytes = offset - position;
if (whence != 0 || skipBytes < 0) {
throw Py.IOError("can only seek forward");
}
if (skipBytes == 0) {
return position;
} else {
long skipped = 0;
try {
skipped = asInputStream().skip(skipBytes);
} catch (IOException ex) {
throw Py.IOError(ex);
}
long newPosition = position + skipped;
position = newPosition;
return newPosition;
}
}
}
}