3 python-bz2 - python bz2 library interface
5 Copyright (c) 2002 Gustavo Niemeyer <niemeyer@conectiva.com>
6 Copyright (c) 2002 Python Software Foundation; All Rights Reserved
13 #include "structmember.h"
19 static char __author__
[] =
20 "The bz2 python module was written by:\n\
22 Gustavo Niemeyer <niemeyer@conectiva.com>\n\
25 /* Our very own off_t-like type, 64-bit if possible */
26 /* copied from Objects/fileobject.c */
27 #if !defined(HAVE_LARGEFILE_SUPPORT)
28 typedef off_t Py_off_t
;
29 #elif SIZEOF_OFF_T >= 8
30 typedef off_t Py_off_t
;
31 #elif SIZEOF_FPOS_T >= 8
32 typedef fpos_t Py_off_t
;
34 #error "Large file support, but neither off_t nor fpos_t is large enough."
37 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
41 #define MODE_READ_EOF 2
44 #define BZ2FileObject_Check(v) (Py_TYPE(v) == &BZ2File_Type)
47 #ifdef BZ_CONFIG_ERROR
50 #define BZS_TOTAL_OUT(bzs) \
51 (((long)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
52 #elif SIZEOF_LONG_LONG >= 8
53 #define BZS_TOTAL_OUT(bzs) \
54 (((PY_LONG_LONG)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
56 #define BZS_TOTAL_OUT(bzs) \
60 #else /* ! BZ_CONFIG_ERROR */
62 #define BZ2_bzRead bzRead
63 #define BZ2_bzReadOpen bzReadOpen
64 #define BZ2_bzReadClose bzReadClose
65 #define BZ2_bzWrite bzWrite
66 #define BZ2_bzWriteOpen bzWriteOpen
67 #define BZ2_bzWriteClose bzWriteClose
68 #define BZ2_bzCompress bzCompress
69 #define BZ2_bzCompressInit bzCompressInit
70 #define BZ2_bzCompressEnd bzCompressEnd
71 #define BZ2_bzDecompress bzDecompress
72 #define BZ2_bzDecompressInit bzDecompressInit
73 #define BZ2_bzDecompressEnd bzDecompressEnd
75 #define BZS_TOTAL_OUT(bzs) bzs->total_out
77 #endif /* ! BZ_CONFIG_ERROR */
81 #define ACQUIRE_LOCK(obj) PyThread_acquire_lock(obj->lock, 1)
82 #define RELEASE_LOCK(obj) PyThread_release_lock(obj->lock)
84 #define ACQUIRE_LOCK(obj)
85 #define RELEASE_LOCK(obj)
88 /* Bits in f_newlinetypes */
89 #define NEWLINE_UNKNOWN 0 /* No newline seen, yet */
90 #define NEWLINE_CR 1 /* \r newline seen */
91 #define NEWLINE_LF 2 /* \n newline seen */
92 #define NEWLINE_CRLF 4 /* \r\n newline seen */
94 /* ===================================================================== */
95 /* Structure definitions. */
101 char* f_buf
; /* Allocated readahead buffer */
102 char* f_bufend
; /* Points after last occupied position */
103 char* f_bufptr
; /* Current buffer position */
105 int f_softspace
; /* Flag used by 'print' command */
107 int f_univ_newline
; /* Handle any newline convention */
108 int f_newlinetypes
; /* Types of newlines seen */
109 int f_skipnextlf
; /* Skip next \n */
116 PyThread_type_lock lock
;
125 PyThread_type_lock lock
;
133 PyObject
*unused_data
;
135 PyThread_type_lock lock
;
139 /* ===================================================================== */
140 /* Utility functions. */
143 Util_CatchBZ2Error(int bzerror
)
151 #ifdef BZ_CONFIG_ERROR
152 case BZ_CONFIG_ERROR
:
153 PyErr_SetString(PyExc_SystemError
,
154 "the bz2 library was not compiled "
161 PyErr_SetString(PyExc_ValueError
,
162 "the bz2 library has received wrong "
173 case BZ_DATA_ERROR_MAGIC
:
174 PyErr_SetString(PyExc_IOError
, "invalid data stream");
179 PyErr_SetString(PyExc_IOError
, "unknown IO error");
183 case BZ_UNEXPECTED_EOF
:
184 PyErr_SetString(PyExc_EOFError
,
185 "compressed file ended before the "
186 "logical end-of-stream was detected");
190 case BZ_SEQUENCE_ERROR
:
191 PyErr_SetString(PyExc_RuntimeError
,
192 "wrong sequence of bz2 library "
201 #define SMALLCHUNK 8192
203 #define SMALLCHUNK BUFSIZ
207 #define BIGCHUNK (512 * 32)
209 #define BIGCHUNK (512 * 1024)
212 /* This is a hacked version of Python's fileobject.c:new_buffersize(). */
214 Util_NewBufferSize(size_t currentsize
)
216 if (currentsize
> SMALLCHUNK
) {
217 /* Keep doubling until we reach BIGCHUNK;
218 then keep adding BIGCHUNK. */
219 if (currentsize
<= BIGCHUNK
)
220 return currentsize
+ currentsize
;
222 return currentsize
+ BIGCHUNK
;
224 return currentsize
+ SMALLCHUNK
;
227 /* This is a hacked version of Python's fileobject.c:get_line(). */
229 Util_GetLine(BZ2FileObject
*f
, int n
)
233 size_t total_v_size
; /* total # of slots in buffer */
234 size_t used_v_size
; /* # used slots in buffer */
235 size_t increment
; /* amount to increment the buffer */
239 int newlinetypes
= f
->f_newlinetypes
;
240 int skipnextlf
= f
->f_skipnextlf
;
241 int univ_newline
= f
->f_univ_newline
;
243 total_v_size
= n
> 0 ? n
: 100;
244 v
= PyString_FromStringAndSize((char *)NULL
, total_v_size
);
249 end
= buf
+ total_v_size
;
252 Py_BEGIN_ALLOW_THREADS
254 bytes_read
= BZ2_bzRead(&bzerror
, f
->fp
, &c
, 1);
256 if (bytes_read
== 0) break;
261 /* Seeing a \n here with skipnextlf true means we
264 newlinetypes
|= NEWLINE_CRLF
;
265 if (bzerror
!= BZ_OK
) break;
266 bytes_read
= BZ2_bzRead(&bzerror
, f
->fp
, &c
, 1);
268 if (bytes_read
== 0) break;
270 newlinetypes
|= NEWLINE_CR
;
276 } else if (c
== '\n')
277 newlinetypes
|= NEWLINE_LF
;
280 if (bzerror
!= BZ_OK
|| c
== '\n') break;
282 if (univ_newline
&& bzerror
== BZ_STREAM_END
&& skipnextlf
)
283 newlinetypes
|= NEWLINE_CR
;
285 f
->f_newlinetypes
= newlinetypes
;
286 f
->f_skipnextlf
= skipnextlf
;
287 if (bzerror
== BZ_STREAM_END
) {
289 f
->mode
= MODE_READ_EOF
;
291 } else if (bzerror
!= BZ_OK
) {
292 Util_CatchBZ2Error(bzerror
);
298 /* Must be because buf == end */
301 used_v_size
= total_v_size
;
302 increment
= total_v_size
>> 2; /* mild exponential growth */
303 total_v_size
+= increment
;
304 if (total_v_size
> INT_MAX
) {
305 PyErr_SetString(PyExc_OverflowError
,
306 "line is longer than a Python string can hold");
310 if (_PyString_Resize(&v
, total_v_size
) < 0)
312 buf
= BUF(v
) + used_v_size
;
313 end
= BUF(v
) + total_v_size
;
316 used_v_size
= buf
- BUF(v
);
317 if (used_v_size
!= total_v_size
)
318 _PyString_Resize(&v
, used_v_size
);
322 /* This is a hacked version of Python's
323 * fileobject.c:Py_UniversalNewlineFread(). */
325 Util_UnivNewlineRead(int *bzerror
, BZFILE
*stream
,
326 char* buf
, size_t n
, BZ2FileObject
*f
)
329 int newlinetypes
, skipnextlf
;
332 assert(stream
!= NULL
);
334 if (!f
->f_univ_newline
)
335 return BZ2_bzRead(bzerror
, stream
, buf
, n
);
337 newlinetypes
= f
->f_newlinetypes
;
338 skipnextlf
= f
->f_skipnextlf
;
340 /* Invariant: n is the number of bytes remaining to be filled
348 nread
= BZ2_bzRead(bzerror
, stream
, dst
, n
);
350 n
-= nread
; /* assuming 1 byte out for each in; will adjust */
351 shortread
= n
!= 0; /* true iff EOF or error */
355 /* Save as LF and set flag to skip next LF. */
359 else if (skipnextlf
&& c
== '\n') {
360 /* Skip LF, and remember we saw CR LF. */
362 newlinetypes
|= NEWLINE_CRLF
;
366 /* Normal char to be stored in buffer. Also
367 * update the newlinetypes flag if either this
368 * is an LF or the previous char was a CR.
371 newlinetypes
|= NEWLINE_LF
;
373 newlinetypes
|= NEWLINE_CR
;
379 /* If this is EOF, update type flags. */
380 if (skipnextlf
&& *bzerror
== BZ_STREAM_END
)
381 newlinetypes
|= NEWLINE_CR
;
385 f
->f_newlinetypes
= newlinetypes
;
386 f
->f_skipnextlf
= skipnextlf
;
390 /* This is a hacked version of Python's fileobject.c:drop_readahead(). */
392 Util_DropReadAhead(BZ2FileObject
*f
)
394 if (f
->f_buf
!= NULL
) {
395 PyMem_Free(f
->f_buf
);
400 /* This is a hacked version of Python's fileobject.c:readahead(). */
402 Util_ReadAhead(BZ2FileObject
*f
, int bufsize
)
407 if (f
->f_buf
!= NULL
) {
408 if((f
->f_bufend
- f
->f_bufptr
) >= 1)
411 Util_DropReadAhead(f
);
413 if (f
->mode
== MODE_READ_EOF
) {
414 f
->f_bufptr
= f
->f_buf
;
415 f
->f_bufend
= f
->f_buf
;
418 if ((f
->f_buf
= PyMem_Malloc(bufsize
)) == NULL
) {
421 Py_BEGIN_ALLOW_THREADS
422 chunksize
= Util_UnivNewlineRead(&bzerror
, f
->fp
, f
->f_buf
,
426 if (bzerror
== BZ_STREAM_END
) {
428 f
->mode
= MODE_READ_EOF
;
429 } else if (bzerror
!= BZ_OK
) {
430 Util_CatchBZ2Error(bzerror
);
431 Util_DropReadAhead(f
);
434 f
->f_bufptr
= f
->f_buf
;
435 f
->f_bufend
= f
->f_buf
+ chunksize
;
439 /* This is a hacked version of Python's
440 * fileobject.c:readahead_get_line_skip(). */
441 static PyStringObject
*
442 Util_ReadAheadGetLineSkip(BZ2FileObject
*f
, int skip
, int bufsize
)
449 if (f
->f_buf
== NULL
)
450 if (Util_ReadAhead(f
, bufsize
) < 0)
453 len
= f
->f_bufend
- f
->f_bufptr
;
455 return (PyStringObject
*)
456 PyString_FromStringAndSize(NULL
, skip
);
457 bufptr
= memchr(f
->f_bufptr
, '\n', len
);
458 if (bufptr
!= NULL
) {
459 bufptr
++; /* Count the '\n' */
460 len
= bufptr
- f
->f_bufptr
;
461 s
= (PyStringObject
*)
462 PyString_FromStringAndSize(NULL
, skip
+len
);
465 memcpy(PyString_AS_STRING(s
)+skip
, f
->f_bufptr
, len
);
466 f
->f_bufptr
= bufptr
;
467 if (bufptr
== f
->f_bufend
)
468 Util_DropReadAhead(f
);
470 bufptr
= f
->f_bufptr
;
472 f
->f_buf
= NULL
; /* Force new readahead buffer */
473 s
= Util_ReadAheadGetLineSkip(f
, skip
+len
,
474 bufsize
+ (bufsize
>>2));
479 memcpy(PyString_AS_STRING(s
)+skip
, bufptr
, len
);
485 /* ===================================================================== */
486 /* Methods of BZ2File. */
488 PyDoc_STRVAR(BZ2File_read__doc__
,
489 "read([size]) -> string\n\
491 Read at most size uncompressed bytes, returned as a string. If the size\n\
492 argument is negative or omitted, read until EOF is reached.\n\
495 /* This is a hacked version of Python's fileobject.c:file_read(). */
497 BZ2File_read(BZ2FileObject
*self
, PyObject
*args
)
499 long bytesrequested
= -1;
500 size_t bytesread
, buffersize
, chunksize
;
502 PyObject
*ret
= NULL
;
504 if (!PyArg_ParseTuple(args
, "|l:read", &bytesrequested
))
508 switch (self
->mode
) {
512 ret
= PyString_FromString("");
515 PyErr_SetString(PyExc_ValueError
,
516 "I/O operation on closed file");
519 PyErr_SetString(PyExc_IOError
,
520 "file is not ready for reading");
524 if (bytesrequested
< 0)
525 buffersize
= Util_NewBufferSize((size_t)0);
527 buffersize
= bytesrequested
;
528 if (buffersize
> INT_MAX
) {
529 PyErr_SetString(PyExc_OverflowError
,
530 "requested number of bytes is "
531 "more than a Python string can hold");
534 ret
= PyString_FromStringAndSize((char *)NULL
, buffersize
);
540 Py_BEGIN_ALLOW_THREADS
541 chunksize
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
543 buffersize
-bytesread
,
545 self
->pos
+= chunksize
;
547 bytesread
+= chunksize
;
548 if (bzerror
== BZ_STREAM_END
) {
549 self
->size
= self
->pos
;
550 self
->mode
= MODE_READ_EOF
;
552 } else if (bzerror
!= BZ_OK
) {
553 Util_CatchBZ2Error(bzerror
);
558 if (bytesrequested
< 0) {
559 buffersize
= Util_NewBufferSize(buffersize
);
560 if (_PyString_Resize(&ret
, buffersize
) < 0)
566 if (bytesread
!= buffersize
)
567 _PyString_Resize(&ret
, bytesread
);
574 PyDoc_STRVAR(BZ2File_readline__doc__
,
575 "readline([size]) -> string\n\
577 Return the next line from the file, as a string, retaining newline.\n\
578 A non-negative size argument will limit the maximum number of bytes to\n\
579 return (an incomplete line may be returned then). Return an empty\n\
584 BZ2File_readline(BZ2FileObject
*self
, PyObject
*args
)
586 PyObject
*ret
= NULL
;
589 if (!PyArg_ParseTuple(args
, "|i:readline", &sizehint
))
593 switch (self
->mode
) {
597 ret
= PyString_FromString("");
600 PyErr_SetString(PyExc_ValueError
,
601 "I/O operation on closed file");
604 PyErr_SetString(PyExc_IOError
,
605 "file is not ready for reading");
610 ret
= PyString_FromString("");
612 ret
= Util_GetLine(self
, (sizehint
< 0) ? 0 : sizehint
);
619 PyDoc_STRVAR(BZ2File_readlines__doc__
,
620 "readlines([size]) -> list\n\
622 Call readline() repeatedly and return a list of lines read.\n\
623 The optional size argument, if given, is an approximate bound on the\n\
624 total number of bytes in the lines returned.\n\
627 /* This is a hacked version of Python's fileobject.c:file_readlines(). */
629 BZ2File_readlines(BZ2FileObject
*self
, PyObject
*args
)
632 PyObject
*list
= NULL
;
634 char small_buffer
[SMALLCHUNK
];
635 char *buffer
= small_buffer
;
636 size_t buffersize
= SMALLCHUNK
;
637 PyObject
*big_buffer
= NULL
;
640 size_t totalread
= 0;
646 if (!PyArg_ParseTuple(args
, "|l:readlines", &sizehint
))
650 switch (self
->mode
) {
654 list
= PyList_New(0);
657 PyErr_SetString(PyExc_ValueError
,
658 "I/O operation on closed file");
661 PyErr_SetString(PyExc_IOError
,
662 "file is not ready for reading");
666 if ((list
= PyList_New(0)) == NULL
)
670 Py_BEGIN_ALLOW_THREADS
671 nread
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
673 buffersize
-nfilled
, self
);
676 if (bzerror
== BZ_STREAM_END
) {
677 self
->size
= self
->pos
;
678 self
->mode
= MODE_READ_EOF
;
684 } else if (bzerror
!= BZ_OK
) {
685 Util_CatchBZ2Error(bzerror
);
692 p
= memchr(buffer
+nfilled
, '\n', nread
);
693 if (!shortread
&& p
== NULL
) {
694 /* Need a larger buffer to fit this line */
697 if (buffersize
> INT_MAX
) {
698 PyErr_SetString(PyExc_OverflowError
,
699 "line is longer than a Python string can hold");
702 if (big_buffer
== NULL
) {
703 /* Create the big buffer */
704 big_buffer
= PyString_FromStringAndSize(
706 if (big_buffer
== NULL
)
708 buffer
= PyString_AS_STRING(big_buffer
);
709 memcpy(buffer
, small_buffer
, nfilled
);
712 /* Grow the big buffer */
713 _PyString_Resize(&big_buffer
, buffersize
);
714 buffer
= PyString_AS_STRING(big_buffer
);
718 end
= buffer
+nfilled
+nread
;
721 /* Process complete lines */
723 line
= PyString_FromStringAndSize(q
, p
-q
);
726 err
= PyList_Append(list
, line
);
731 p
= memchr(q
, '\n', end
-q
);
733 /* Move the remaining incomplete line to the start */
735 memmove(buffer
, q
, nfilled
);
737 if (totalread
>= (size_t)sizehint
)
745 /* Partial last line */
746 line
= PyString_FromStringAndSize(buffer
, nfilled
);
750 /* Need to complete the last line */
751 PyObject
*rest
= Util_GetLine(self
, 0);
756 PyString_Concat(&line
, rest
);
761 err
= PyList_Append(list
, line
);
770 Py_DECREF(big_buffer
);
775 PyDoc_STRVAR(BZ2File_xreadlines__doc__
,
776 "xreadlines() -> self\n\
778 For backward compatibility. BZ2File objects now include the performance\n\
779 optimizations previously implemented in the xreadlines module.\n\
782 PyDoc_STRVAR(BZ2File_write__doc__
,
783 "write(data) -> None\n\
785 Write the 'data' string to file. Note that due to buffering, close() may\n\
786 be needed before the file on disk reflects the data written.\n\
789 /* This is a hacked version of Python's fileobject.c:file_write(). */
791 BZ2File_write(BZ2FileObject
*self
, PyObject
*args
)
793 PyObject
*ret
= NULL
;
798 if (!PyArg_ParseTuple(args
, "s#:write", &buf
, &len
))
802 switch (self
->mode
) {
807 PyErr_SetString(PyExc_ValueError
,
808 "I/O operation on closed file");
812 PyErr_SetString(PyExc_IOError
,
813 "file is not ready for writing");
817 self
->f_softspace
= 0;
819 Py_BEGIN_ALLOW_THREADS
820 BZ2_bzWrite (&bzerror
, self
->fp
, buf
, len
);
824 if (bzerror
!= BZ_OK
) {
825 Util_CatchBZ2Error(bzerror
);
837 PyDoc_STRVAR(BZ2File_writelines__doc__
,
838 "writelines(sequence_of_strings) -> None\n\
840 Write the sequence of strings to the file. Note that newlines are not\n\
841 added. The sequence can be any iterable object producing strings. This is\n\
842 equivalent to calling write() for each string.\n\
845 /* This is a hacked version of Python's fileobject.c:file_writelines(). */
847 BZ2File_writelines(BZ2FileObject
*self
, PyObject
*seq
)
849 #define CHUNKSIZE 1000
850 PyObject
*list
= NULL
;
851 PyObject
*iter
= NULL
;
852 PyObject
*ret
= NULL
;
854 int i
, j
, index
, len
, islist
;
858 switch (self
->mode
) {
863 PyErr_SetString(PyExc_ValueError
,
864 "I/O operation on closed file");
868 PyErr_SetString(PyExc_IOError
,
869 "file is not ready for writing");
873 islist
= PyList_Check(seq
);
875 iter
= PyObject_GetIter(seq
);
877 PyErr_SetString(PyExc_TypeError
,
878 "writelines() requires an iterable argument");
881 list
= PyList_New(CHUNKSIZE
);
886 /* Strategy: slurp CHUNKSIZE lines into a private list,
887 checking that they are all strings, then write that list
888 without holding the interpreter lock, then come back for more. */
889 for (index
= 0; ; index
+= CHUNKSIZE
) {
892 list
= PyList_GetSlice(seq
, index
, index
+CHUNKSIZE
);
895 j
= PyList_GET_SIZE(list
);
898 for (j
= 0; j
< CHUNKSIZE
; j
++) {
899 line
= PyIter_Next(iter
);
901 if (PyErr_Occurred())
905 PyList_SetItem(list
, j
, line
);
911 /* Check that all entries are indeed strings. If not,
912 apply the same rules as for file.write() and
913 convert the rets to strings. This is slow, but
914 seems to be the only way since all conversion APIs
915 could potentially execute Python code. */
916 for (i
= 0; i
< j
; i
++) {
917 PyObject
*v
= PyList_GET_ITEM(list
, i
);
918 if (!PyString_Check(v
)) {
921 if (PyObject_AsCharBuffer(v
, &buffer
, &len
)) {
922 PyErr_SetString(PyExc_TypeError
,
929 line
= PyString_FromStringAndSize(buffer
,
934 PyList_SET_ITEM(list
, i
, line
);
938 self
->f_softspace
= 0;
940 /* Since we are releasing the global lock, the
941 following code may *not* execute Python code. */
942 Py_BEGIN_ALLOW_THREADS
943 for (i
= 0; i
< j
; i
++) {
944 line
= PyList_GET_ITEM(list
, i
);
945 len
= PyString_GET_SIZE(line
);
946 BZ2_bzWrite (&bzerror
, self
->fp
,
947 PyString_AS_STRING(line
), len
);
948 if (bzerror
!= BZ_OK
) {
950 Util_CatchBZ2Error(bzerror
);
971 PyDoc_STRVAR(BZ2File_seek__doc__
,
972 "seek(offset [, whence]) -> None\n\
974 Move to new file position. Argument offset is a byte count. Optional\n\
975 argument whence defaults to 0 (offset from start of file, offset\n\
976 should be >= 0); other values are 1 (move relative to current position,\n\
977 positive or negative), and 2 (move relative to end of file, usually\n\
978 negative, although many platforms allow seeking beyond the end of a file).\n\
980 Note that seeking of bz2 files is emulated, and depending on the parameters\n\
981 the operation may be extremely slow.\n\
985 BZ2File_seek(BZ2FileObject
*self
, PyObject
*args
)
990 char small_buffer
[SMALLCHUNK
];
991 char *buffer
= small_buffer
;
992 size_t buffersize
= SMALLCHUNK
;
993 Py_off_t bytesread
= 0;
997 PyObject
*ret
= NULL
;
999 if (!PyArg_ParseTuple(args
, "O|i:seek", &offobj
, &where
))
1001 #if !defined(HAVE_LARGEFILE_SUPPORT)
1002 offset
= PyInt_AsLong(offobj
);
1004 offset
= PyLong_Check(offobj
) ?
1005 PyLong_AsLongLong(offobj
) : PyInt_AsLong(offobj
);
1007 if (PyErr_Occurred())
1011 Util_DropReadAhead(self
);
1012 switch (self
->mode
) {
1018 PyErr_SetString(PyExc_ValueError
,
1019 "I/O operation on closed file");
1023 PyErr_SetString(PyExc_IOError
,
1024 "seek works only while reading");
1029 if (self
->size
== -1) {
1030 assert(self
->mode
!= MODE_READ_EOF
);
1032 Py_BEGIN_ALLOW_THREADS
1033 chunksize
= Util_UnivNewlineRead(
1037 self
->pos
+= chunksize
;
1038 Py_END_ALLOW_THREADS
1040 bytesread
+= chunksize
;
1041 if (bzerror
== BZ_STREAM_END
) {
1043 } else if (bzerror
!= BZ_OK
) {
1044 Util_CatchBZ2Error(bzerror
);
1048 self
->mode
= MODE_READ_EOF
;
1049 self
->size
= self
->pos
;
1052 offset
= self
->size
+ offset
;
1053 } else if (where
== 1) {
1054 offset
= self
->pos
+ offset
;
1057 /* Before getting here, offset must be the absolute position the file
1058 * pointer should be set to. */
1060 if (offset
>= self
->pos
) {
1061 /* we can move forward */
1062 offset
-= self
->pos
;
1064 /* we cannot move back, so rewind the stream */
1065 BZ2_bzReadClose(&bzerror
, self
->fp
);
1066 if (bzerror
!= BZ_OK
) {
1067 Util_CatchBZ2Error(bzerror
);
1070 ret
= PyObject_CallMethod(self
->file
, "seek", "(i)", 0);
1076 self
->fp
= BZ2_bzReadOpen(&bzerror
, PyFile_AsFile(self
->file
),
1078 if (bzerror
!= BZ_OK
) {
1079 Util_CatchBZ2Error(bzerror
);
1082 self
->mode
= MODE_READ
;
1085 if (offset
<= 0 || self
->mode
== MODE_READ_EOF
)
1088 /* Before getting here, offset must be set to the number of bytes
1089 * to walk forward. */
1091 if (offset
-bytesread
> buffersize
)
1092 readsize
= buffersize
;
1094 /* offset might be wider that readsize, but the result
1095 * of the subtraction is bound by buffersize (see the
1096 * condition above). buffersize is 8192. */
1097 readsize
= (size_t)(offset
-bytesread
);
1098 Py_BEGIN_ALLOW_THREADS
1099 chunksize
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
1100 buffer
, readsize
, self
);
1101 self
->pos
+= chunksize
;
1102 Py_END_ALLOW_THREADS
1103 bytesread
+= chunksize
;
1104 if (bzerror
== BZ_STREAM_END
) {
1105 self
->size
= self
->pos
;
1106 self
->mode
= MODE_READ_EOF
;
1108 } else if (bzerror
!= BZ_OK
) {
1109 Util_CatchBZ2Error(bzerror
);
1112 if (bytesread
== offset
)
1125 PyDoc_STRVAR(BZ2File_tell__doc__
,
1128 Return the current file position, an integer (may be a long integer).\n\
1132 BZ2File_tell(BZ2FileObject
*self
, PyObject
*args
)
1134 PyObject
*ret
= NULL
;
1136 if (self
->mode
== MODE_CLOSED
) {
1137 PyErr_SetString(PyExc_ValueError
,
1138 "I/O operation on closed file");
1142 #if !defined(HAVE_LARGEFILE_SUPPORT)
1143 ret
= PyInt_FromLong(self
->pos
);
1145 ret
= PyLong_FromLongLong(self
->pos
);
1152 PyDoc_STRVAR(BZ2File_close__doc__
,
1153 "close() -> None or (perhaps) an integer\n\
1155 Close the file. Sets data attribute .closed to true. A closed file\n\
1156 cannot be used for further I/O operations. close() may be called more\n\
1157 than once without error.\n\
1161 BZ2File_close(BZ2FileObject
*self
)
1163 PyObject
*ret
= NULL
;
1164 int bzerror
= BZ_OK
;
1167 switch (self
->mode
) {
1170 BZ2_bzReadClose(&bzerror
, self
->fp
);
1173 BZ2_bzWriteClose(&bzerror
, self
->fp
,
1177 self
->mode
= MODE_CLOSED
;
1178 ret
= PyObject_CallMethod(self
->file
, "close", NULL
);
1179 if (bzerror
!= BZ_OK
) {
1180 Util_CatchBZ2Error(bzerror
);
1189 static PyObject
*BZ2File_getiter(BZ2FileObject
*self
);
1191 static PyMethodDef BZ2File_methods
[] = {
1192 {"read", (PyCFunction
)BZ2File_read
, METH_VARARGS
, BZ2File_read__doc__
},
1193 {"readline", (PyCFunction
)BZ2File_readline
, METH_VARARGS
, BZ2File_readline__doc__
},
1194 {"readlines", (PyCFunction
)BZ2File_readlines
, METH_VARARGS
, BZ2File_readlines__doc__
},
1195 {"xreadlines", (PyCFunction
)BZ2File_getiter
, METH_VARARGS
, BZ2File_xreadlines__doc__
},
1196 {"write", (PyCFunction
)BZ2File_write
, METH_VARARGS
, BZ2File_write__doc__
},
1197 {"writelines", (PyCFunction
)BZ2File_writelines
, METH_O
, BZ2File_writelines__doc__
},
1198 {"seek", (PyCFunction
)BZ2File_seek
, METH_VARARGS
, BZ2File_seek__doc__
},
1199 {"tell", (PyCFunction
)BZ2File_tell
, METH_NOARGS
, BZ2File_tell__doc__
},
1200 {"close", (PyCFunction
)BZ2File_close
, METH_NOARGS
, BZ2File_close__doc__
},
1201 {NULL
, NULL
} /* sentinel */
1205 /* ===================================================================== */
1206 /* Getters and setters of BZ2File. */
1208 /* This is a hacked version of Python's fileobject.c:get_newlines(). */
1210 BZ2File_get_newlines(BZ2FileObject
*self
, void *closure
)
1212 switch (self
->f_newlinetypes
) {
1213 case NEWLINE_UNKNOWN
:
1217 return PyString_FromString("\r");
1219 return PyString_FromString("\n");
1220 case NEWLINE_CR
|NEWLINE_LF
:
1221 return Py_BuildValue("(ss)", "\r", "\n");
1223 return PyString_FromString("\r\n");
1224 case NEWLINE_CR
|NEWLINE_CRLF
:
1225 return Py_BuildValue("(ss)", "\r", "\r\n");
1226 case NEWLINE_LF
|NEWLINE_CRLF
:
1227 return Py_BuildValue("(ss)", "\n", "\r\n");
1228 case NEWLINE_CR
|NEWLINE_LF
|NEWLINE_CRLF
:
1229 return Py_BuildValue("(sss)", "\r", "\n", "\r\n");
1231 PyErr_Format(PyExc_SystemError
,
1232 "Unknown newlines value 0x%x\n",
1233 self
->f_newlinetypes
);
1239 BZ2File_get_closed(BZ2FileObject
*self
, void *closure
)
1241 return PyInt_FromLong(self
->mode
== MODE_CLOSED
);
1245 BZ2File_get_mode(BZ2FileObject
*self
, void *closure
)
1247 return PyObject_GetAttrString(self
->file
, "mode");
1251 BZ2File_get_name(BZ2FileObject
*self
, void *closure
)
1253 return PyObject_GetAttrString(self
->file
, "name");
1256 static PyGetSetDef BZ2File_getset
[] = {
1257 {"closed", (getter
)BZ2File_get_closed
, NULL
,
1258 "True if the file is closed"},
1259 {"newlines", (getter
)BZ2File_get_newlines
, NULL
,
1260 "end-of-line convention used in this file"},
1261 {"mode", (getter
)BZ2File_get_mode
, NULL
,
1262 "file mode ('r', 'w', or 'U')"},
1263 {"name", (getter
)BZ2File_get_name
, NULL
,
1265 {NULL
} /* Sentinel */
1269 /* ===================================================================== */
1270 /* Members of BZ2File_Type. */
1273 #define OFF(x) offsetof(BZ2FileObject, x)
1275 static PyMemberDef BZ2File_members
[] = {
1276 {"softspace", T_INT
, OFF(f_softspace
), 0,
1277 "flag indicating that a space needs to be printed; used by print"},
1278 {NULL
} /* Sentinel */
1281 /* ===================================================================== */
1282 /* Slot definitions for BZ2File_Type. */
1285 BZ2File_init(BZ2FileObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1287 static char *kwlist
[] = {"filename", "mode", "buffering",
1288 "compresslevel", 0};
1292 int compresslevel
= 9;
1298 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "O|sii:BZ2File",
1299 kwlist
, &name
, &mode
, &buffering
,
1303 if (compresslevel
< 1 || compresslevel
> 9) {
1304 PyErr_SetString(PyExc_ValueError
,
1305 "compresslevel must be between 1 and 9");
1324 self
->f_univ_newline
= 0;
1326 self
->f_univ_newline
= 1;
1335 PyErr_Format(PyExc_ValueError
,
1336 "invalid mode char %c", *mode
);
1344 if (mode_char
== 0) {
1348 mode
= (mode_char
== 'r') ? "rb" : "wb";
1350 self
->file
= PyObject_CallFunction((PyObject
*)&PyFile_Type
, "(Osi)",
1351 name
, mode
, buffering
);
1352 if (self
->file
== NULL
)
1355 /* From now on, we have stuff to dealloc, so jump to error label
1356 * instead of returning */
1359 self
->lock
= PyThread_allocate_lock();
1361 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1366 if (mode_char
== 'r')
1367 self
->fp
= BZ2_bzReadOpen(&bzerror
,
1368 PyFile_AsFile(self
->file
),
1371 self
->fp
= BZ2_bzWriteOpen(&bzerror
,
1372 PyFile_AsFile(self
->file
),
1373 compresslevel
, 0, 0);
1375 if (bzerror
!= BZ_OK
) {
1376 Util_CatchBZ2Error(bzerror
);
1380 self
->mode
= (mode_char
== 'r') ? MODE_READ
: MODE_WRITE
;
1385 Py_CLEAR(self
->file
);
1388 PyThread_free_lock(self
->lock
);
1396 BZ2File_dealloc(BZ2FileObject
*self
)
1401 PyThread_free_lock(self
->lock
);
1403 switch (self
->mode
) {
1406 BZ2_bzReadClose(&bzerror
, self
->fp
);
1409 BZ2_bzWriteClose(&bzerror
, self
->fp
,
1413 Util_DropReadAhead(self
);
1414 Py_XDECREF(self
->file
);
1415 Py_TYPE(self
)->tp_free((PyObject
*)self
);
1418 /* This is a hacked version of Python's fileobject.c:file_getiter(). */
1420 BZ2File_getiter(BZ2FileObject
*self
)
1422 if (self
->mode
== MODE_CLOSED
) {
1423 PyErr_SetString(PyExc_ValueError
,
1424 "I/O operation on closed file");
1427 Py_INCREF((PyObject
*)self
);
1428 return (PyObject
*)self
;
1431 /* This is a hacked version of Python's fileobject.c:file_iternext(). */
1432 #define READAHEAD_BUFSIZE 8192
1434 BZ2File_iternext(BZ2FileObject
*self
)
1436 PyStringObject
* ret
;
1438 if (self
->mode
== MODE_CLOSED
) {
1439 PyErr_SetString(PyExc_ValueError
,
1440 "I/O operation on closed file");
1443 ret
= Util_ReadAheadGetLineSkip(self
, 0, READAHEAD_BUFSIZE
);
1445 if (ret
== NULL
|| PyString_GET_SIZE(ret
) == 0) {
1449 return (PyObject
*)ret
;
1452 /* ===================================================================== */
1453 /* BZ2File_Type definition. */
1455 PyDoc_VAR(BZ2File__doc__
) =
1457 "BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object\n\
1459 Open a bz2 file. The mode can be 'r' or 'w', for reading (default) or\n\
1460 writing. When opened for writing, the file will be created if it doesn't\n\
1461 exist, and truncated otherwise. If the buffering argument is given, 0 means\n\
1462 unbuffered, and larger numbers specify the buffer size. If compresslevel\n\
1463 is given, must be a number between 1 and 9.\n\
1467 Add a 'U' to mode to open the file for input with universal newline\n\
1468 support. Any line ending in the input file will be seen as a '\\n' in\n\
1469 Python. Also, a file so opened gains the attribute 'newlines'; the value\n\
1470 for this attribute is one of None (no newline read yet), '\\r', '\\n',\n\
1471 '\\r\\n' or a tuple containing all the newline types seen. Universal\n\
1472 newlines are available only when reading.\n\
1476 static PyTypeObject BZ2File_Type
= {
1477 PyVarObject_HEAD_INIT(NULL
, 0)
1478 "bz2.BZ2File", /*tp_name*/
1479 sizeof(BZ2FileObject
), /*tp_basicsize*/
1481 (destructor
)BZ2File_dealloc
, /*tp_dealloc*/
1488 0, /*tp_as_sequence*/
1489 0, /*tp_as_mapping*/
1493 PyObject_GenericGetAttr
,/*tp_getattro*/
1494 PyObject_GenericSetAttr
,/*tp_setattro*/
1496 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1497 BZ2File__doc__
, /*tp_doc*/
1500 0, /*tp_richcompare*/
1501 0, /*tp_weaklistoffset*/
1502 (getiterfunc
)BZ2File_getiter
, /*tp_iter*/
1503 (iternextfunc
)BZ2File_iternext
, /*tp_iternext*/
1504 BZ2File_methods
, /*tp_methods*/
1505 BZ2File_members
, /*tp_members*/
1506 BZ2File_getset
, /*tp_getset*/
1511 0, /*tp_dictoffset*/
1512 (initproc
)BZ2File_init
, /*tp_init*/
1513 PyType_GenericAlloc
, /*tp_alloc*/
1514 PyType_GenericNew
, /*tp_new*/
1515 _PyObject_Del
, /*tp_free*/
1520 /* ===================================================================== */
1521 /* Methods of BZ2Comp. */
1523 PyDoc_STRVAR(BZ2Comp_compress__doc__
,
1524 "compress(data) -> string\n\
1526 Provide more data to the compressor object. It will return chunks of\n\
1527 compressed data whenever possible. When you've finished providing data\n\
1528 to compress, call the flush() method to finish the compression process,\n\
1529 and return what is left in the internal buffers.\n\
1533 BZ2Comp_compress(BZ2CompObject
*self
, PyObject
*args
)
1537 int bufsize
= SMALLCHUNK
;
1538 PY_LONG_LONG totalout
;
1539 PyObject
*ret
= NULL
;
1540 bz_stream
*bzs
= &self
->bzs
;
1543 if (!PyArg_ParseTuple(args
, "s#:compress", &data
, &datasize
))
1547 return PyString_FromString("");
1550 if (!self
->running
) {
1551 PyErr_SetString(PyExc_ValueError
,
1552 "this object was already flushed");
1556 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1560 bzs
->next_in
= data
;
1561 bzs
->avail_in
= datasize
;
1562 bzs
->next_out
= BUF(ret
);
1563 bzs
->avail_out
= bufsize
;
1565 totalout
= BZS_TOTAL_OUT(bzs
);
1568 Py_BEGIN_ALLOW_THREADS
1569 bzerror
= BZ2_bzCompress(bzs
, BZ_RUN
);
1570 Py_END_ALLOW_THREADS
1571 if (bzerror
!= BZ_RUN_OK
) {
1572 Util_CatchBZ2Error(bzerror
);
1575 if (bzs
->avail_in
== 0)
1576 break; /* no more input data */
1577 if (bzs
->avail_out
== 0) {
1578 bufsize
= Util_NewBufferSize(bufsize
);
1579 if (_PyString_Resize(&ret
, bufsize
) < 0) {
1580 BZ2_bzCompressEnd(bzs
);
1583 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1585 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1589 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1600 PyDoc_STRVAR(BZ2Comp_flush__doc__
,
1601 "flush() -> string\n\
1603 Finish the compression process and return what is left in internal buffers.\n\
1604 You must not use the compressor object after calling this method.\n\
1608 BZ2Comp_flush(BZ2CompObject
*self
)
1610 int bufsize
= SMALLCHUNK
;
1611 PyObject
*ret
= NULL
;
1612 bz_stream
*bzs
= &self
->bzs
;
1613 PY_LONG_LONG totalout
;
1617 if (!self
->running
) {
1618 PyErr_SetString(PyExc_ValueError
, "object was already "
1624 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1628 bzs
->next_out
= BUF(ret
);
1629 bzs
->avail_out
= bufsize
;
1631 totalout
= BZS_TOTAL_OUT(bzs
);
1634 Py_BEGIN_ALLOW_THREADS
1635 bzerror
= BZ2_bzCompress(bzs
, BZ_FINISH
);
1636 Py_END_ALLOW_THREADS
1637 if (bzerror
== BZ_STREAM_END
) {
1639 } else if (bzerror
!= BZ_FINISH_OK
) {
1640 Util_CatchBZ2Error(bzerror
);
1643 if (bzs
->avail_out
== 0) {
1644 bufsize
= Util_NewBufferSize(bufsize
);
1645 if (_PyString_Resize(&ret
, bufsize
) < 0)
1647 bzs
->next_out
= BUF(ret
);
1648 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1650 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1654 if (bzs
->avail_out
!= 0)
1655 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1666 static PyMethodDef BZ2Comp_methods
[] = {
1667 {"compress", (PyCFunction
)BZ2Comp_compress
, METH_VARARGS
,
1668 BZ2Comp_compress__doc__
},
1669 {"flush", (PyCFunction
)BZ2Comp_flush
, METH_NOARGS
,
1670 BZ2Comp_flush__doc__
},
1671 {NULL
, NULL
} /* sentinel */
1675 /* ===================================================================== */
1676 /* Slot definitions for BZ2Comp_Type. */
1679 BZ2Comp_init(BZ2CompObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1681 int compresslevel
= 9;
1683 static char *kwlist
[] = {"compresslevel", 0};
1685 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "|i:BZ2Compressor",
1686 kwlist
, &compresslevel
))
1689 if (compresslevel
< 1 || compresslevel
> 9) {
1690 PyErr_SetString(PyExc_ValueError
,
1691 "compresslevel must be between 1 and 9");
1696 self
->lock
= PyThread_allocate_lock();
1698 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1703 memset(&self
->bzs
, 0, sizeof(bz_stream
));
1704 bzerror
= BZ2_bzCompressInit(&self
->bzs
, compresslevel
, 0, 0);
1705 if (bzerror
!= BZ_OK
) {
1706 Util_CatchBZ2Error(bzerror
);
1716 PyThread_free_lock(self
->lock
);
1724 BZ2Comp_dealloc(BZ2CompObject
*self
)
1728 PyThread_free_lock(self
->lock
);
1730 BZ2_bzCompressEnd(&self
->bzs
);
1731 Py_TYPE(self
)->tp_free((PyObject
*)self
);
1735 /* ===================================================================== */
1736 /* BZ2Comp_Type definition. */
1738 PyDoc_STRVAR(BZ2Comp__doc__
,
1739 "BZ2Compressor([compresslevel=9]) -> compressor object\n\
1741 Create a new compressor object. This object may be used to compress\n\
1742 data sequentially. If you want to compress data in one shot, use the\n\
1743 compress() function instead. The compresslevel parameter, if given,\n\
1744 must be a number between 1 and 9.\n\
1747 static PyTypeObject BZ2Comp_Type
= {
1748 PyVarObject_HEAD_INIT(NULL
, 0)
1749 "bz2.BZ2Compressor", /*tp_name*/
1750 sizeof(BZ2CompObject
), /*tp_basicsize*/
1752 (destructor
)BZ2Comp_dealloc
, /*tp_dealloc*/
1759 0, /*tp_as_sequence*/
1760 0, /*tp_as_mapping*/
1764 PyObject_GenericGetAttr
,/*tp_getattro*/
1765 PyObject_GenericSetAttr
,/*tp_setattro*/
1767 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1768 BZ2Comp__doc__
, /*tp_doc*/
1771 0, /*tp_richcompare*/
1772 0, /*tp_weaklistoffset*/
1775 BZ2Comp_methods
, /*tp_methods*/
1782 0, /*tp_dictoffset*/
1783 (initproc
)BZ2Comp_init
, /*tp_init*/
1784 PyType_GenericAlloc
, /*tp_alloc*/
1785 PyType_GenericNew
, /*tp_new*/
1786 _PyObject_Del
, /*tp_free*/
1791 /* ===================================================================== */
1792 /* Members of BZ2Decomp. */
1795 #define OFF(x) offsetof(BZ2DecompObject, x)
1797 static PyMemberDef BZ2Decomp_members
[] = {
1798 {"unused_data", T_OBJECT
, OFF(unused_data
), RO
},
1799 {NULL
} /* Sentinel */
1803 /* ===================================================================== */
1804 /* Methods of BZ2Decomp. */
1806 PyDoc_STRVAR(BZ2Decomp_decompress__doc__
,
1807 "decompress(data) -> string\n\
1809 Provide more data to the decompressor object. It will return chunks\n\
1810 of decompressed data whenever possible. If you try to decompress data\n\
1811 after the end of stream is found, EOFError will be raised. If any data\n\
1812 was found after the end of stream, it'll be ignored and saved in\n\
1813 unused_data attribute.\n\
1817 BZ2Decomp_decompress(BZ2DecompObject
*self
, PyObject
*args
)
1821 int bufsize
= SMALLCHUNK
;
1822 PY_LONG_LONG totalout
;
1823 PyObject
*ret
= NULL
;
1824 bz_stream
*bzs
= &self
->bzs
;
1827 if (!PyArg_ParseTuple(args
, "s#:decompress", &data
, &datasize
))
1831 if (!self
->running
) {
1832 PyErr_SetString(PyExc_EOFError
, "end of stream was "
1837 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1841 bzs
->next_in
= data
;
1842 bzs
->avail_in
= datasize
;
1843 bzs
->next_out
= BUF(ret
);
1844 bzs
->avail_out
= bufsize
;
1846 totalout
= BZS_TOTAL_OUT(bzs
);
1849 Py_BEGIN_ALLOW_THREADS
1850 bzerror
= BZ2_bzDecompress(bzs
);
1851 Py_END_ALLOW_THREADS
1852 if (bzerror
== BZ_STREAM_END
) {
1853 if (bzs
->avail_in
!= 0) {
1854 Py_DECREF(self
->unused_data
);
1856 PyString_FromStringAndSize(bzs
->next_in
,
1862 if (bzerror
!= BZ_OK
) {
1863 Util_CatchBZ2Error(bzerror
);
1866 if (bzs
->avail_in
== 0)
1867 break; /* no more input data */
1868 if (bzs
->avail_out
== 0) {
1869 bufsize
= Util_NewBufferSize(bufsize
);
1870 if (_PyString_Resize(&ret
, bufsize
) < 0) {
1871 BZ2_bzDecompressEnd(bzs
);
1874 bzs
->next_out
= BUF(ret
);
1875 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1877 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1881 if (bzs
->avail_out
!= 0)
1882 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1893 static PyMethodDef BZ2Decomp_methods
[] = {
1894 {"decompress", (PyCFunction
)BZ2Decomp_decompress
, METH_VARARGS
, BZ2Decomp_decompress__doc__
},
1895 {NULL
, NULL
} /* sentinel */
1899 /* ===================================================================== */
1900 /* Slot definitions for BZ2Decomp_Type. */
1903 BZ2Decomp_init(BZ2DecompObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1907 if (!PyArg_ParseTuple(args
, ":BZ2Decompressor"))
1911 self
->lock
= PyThread_allocate_lock();
1913 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1918 self
->unused_data
= PyString_FromString("");
1919 if (!self
->unused_data
)
1922 memset(&self
->bzs
, 0, sizeof(bz_stream
));
1923 bzerror
= BZ2_bzDecompressInit(&self
->bzs
, 0, 0);
1924 if (bzerror
!= BZ_OK
) {
1925 Util_CatchBZ2Error(bzerror
);
1936 PyThread_free_lock(self
->lock
);
1940 Py_CLEAR(self
->unused_data
);
1945 BZ2Decomp_dealloc(BZ2DecompObject
*self
)
1949 PyThread_free_lock(self
->lock
);
1951 Py_XDECREF(self
->unused_data
);
1952 BZ2_bzDecompressEnd(&self
->bzs
);
1953 Py_TYPE(self
)->tp_free((PyObject
*)self
);
1957 /* ===================================================================== */
1958 /* BZ2Decomp_Type definition. */
1960 PyDoc_STRVAR(BZ2Decomp__doc__
,
1961 "BZ2Decompressor() -> decompressor object\n\
1963 Create a new decompressor object. This object may be used to decompress\n\
1964 data sequentially. If you want to decompress data in one shot, use the\n\
1965 decompress() function instead.\n\
1968 static PyTypeObject BZ2Decomp_Type
= {
1969 PyVarObject_HEAD_INIT(NULL
, 0)
1970 "bz2.BZ2Decompressor", /*tp_name*/
1971 sizeof(BZ2DecompObject
), /*tp_basicsize*/
1973 (destructor
)BZ2Decomp_dealloc
, /*tp_dealloc*/
1980 0, /*tp_as_sequence*/
1981 0, /*tp_as_mapping*/
1985 PyObject_GenericGetAttr
,/*tp_getattro*/
1986 PyObject_GenericSetAttr
,/*tp_setattro*/
1988 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1989 BZ2Decomp__doc__
, /*tp_doc*/
1992 0, /*tp_richcompare*/
1993 0, /*tp_weaklistoffset*/
1996 BZ2Decomp_methods
, /*tp_methods*/
1997 BZ2Decomp_members
, /*tp_members*/
2003 0, /*tp_dictoffset*/
2004 (initproc
)BZ2Decomp_init
, /*tp_init*/
2005 PyType_GenericAlloc
, /*tp_alloc*/
2006 PyType_GenericNew
, /*tp_new*/
2007 _PyObject_Del
, /*tp_free*/
2012 /* ===================================================================== */
2013 /* Module functions. */
2015 PyDoc_STRVAR(bz2_compress__doc__
,
2016 "compress(data [, compresslevel=9]) -> string\n\
2018 Compress data in one shot. If you want to compress data sequentially,\n\
2019 use an instance of BZ2Compressor instead. The compresslevel parameter, if\n\
2020 given, must be a number between 1 and 9.\n\
2024 bz2_compress(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
2026 int compresslevel
=9;
2030 PyObject
*ret
= NULL
;
2032 bz_stream
*bzs
= &_bzs
;
2034 static char *kwlist
[] = {"data", "compresslevel", 0};
2036 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "s#|i",
2037 kwlist
, &data
, &datasize
,
2041 if (compresslevel
< 1 || compresslevel
> 9) {
2042 PyErr_SetString(PyExc_ValueError
,
2043 "compresslevel must be between 1 and 9");
2047 /* Conforming to bz2 manual, this is large enough to fit compressed
2048 * data in one shot. We will check it later anyway. */
2049 bufsize
= datasize
+ (datasize
/100+1) + 600;
2051 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
2055 memset(bzs
, 0, sizeof(bz_stream
));
2057 bzs
->next_in
= data
;
2058 bzs
->avail_in
= datasize
;
2059 bzs
->next_out
= BUF(ret
);
2060 bzs
->avail_out
= bufsize
;
2062 bzerror
= BZ2_bzCompressInit(bzs
, compresslevel
, 0, 0);
2063 if (bzerror
!= BZ_OK
) {
2064 Util_CatchBZ2Error(bzerror
);
2070 Py_BEGIN_ALLOW_THREADS
2071 bzerror
= BZ2_bzCompress(bzs
, BZ_FINISH
);
2072 Py_END_ALLOW_THREADS
2073 if (bzerror
== BZ_STREAM_END
) {
2075 } else if (bzerror
!= BZ_FINISH_OK
) {
2076 BZ2_bzCompressEnd(bzs
);
2077 Util_CatchBZ2Error(bzerror
);
2081 if (bzs
->avail_out
== 0) {
2082 bufsize
= Util_NewBufferSize(bufsize
);
2083 if (_PyString_Resize(&ret
, bufsize
) < 0) {
2084 BZ2_bzCompressEnd(bzs
);
2088 bzs
->next_out
= BUF(ret
) + BZS_TOTAL_OUT(bzs
);
2089 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
2093 if (bzs
->avail_out
!= 0)
2094 _PyString_Resize(&ret
, (Py_ssize_t
)BZS_TOTAL_OUT(bzs
));
2095 BZ2_bzCompressEnd(bzs
);
2100 PyDoc_STRVAR(bz2_decompress__doc__
,
2101 "decompress(data) -> decompressed data\n\
2103 Decompress data in one shot. If you want to decompress data sequentially,\n\
2104 use an instance of BZ2Decompressor instead.\n\
2108 bz2_decompress(PyObject
*self
, PyObject
*args
)
2112 int bufsize
= SMALLCHUNK
;
2115 bz_stream
*bzs
= &_bzs
;
2118 if (!PyArg_ParseTuple(args
, "s#:decompress", &data
, &datasize
))
2122 return PyString_FromString("");
2124 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
2128 memset(bzs
, 0, sizeof(bz_stream
));
2130 bzs
->next_in
= data
;
2131 bzs
->avail_in
= datasize
;
2132 bzs
->next_out
= BUF(ret
);
2133 bzs
->avail_out
= bufsize
;
2135 bzerror
= BZ2_bzDecompressInit(bzs
, 0, 0);
2136 if (bzerror
!= BZ_OK
) {
2137 Util_CatchBZ2Error(bzerror
);
2143 Py_BEGIN_ALLOW_THREADS
2144 bzerror
= BZ2_bzDecompress(bzs
);
2145 Py_END_ALLOW_THREADS
2146 if (bzerror
== BZ_STREAM_END
) {
2148 } else if (bzerror
!= BZ_OK
) {
2149 BZ2_bzDecompressEnd(bzs
);
2150 Util_CatchBZ2Error(bzerror
);
2154 if (bzs
->avail_in
== 0) {
2155 BZ2_bzDecompressEnd(bzs
);
2156 PyErr_SetString(PyExc_ValueError
,
2157 "couldn't find end of stream");
2161 if (bzs
->avail_out
== 0) {
2162 bufsize
= Util_NewBufferSize(bufsize
);
2163 if (_PyString_Resize(&ret
, bufsize
) < 0) {
2164 BZ2_bzDecompressEnd(bzs
);
2168 bzs
->next_out
= BUF(ret
) + BZS_TOTAL_OUT(bzs
);
2169 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
2173 if (bzs
->avail_out
!= 0)
2174 _PyString_Resize(&ret
, (Py_ssize_t
)BZS_TOTAL_OUT(bzs
));
2175 BZ2_bzDecompressEnd(bzs
);
2180 static PyMethodDef bz2_methods
[] = {
2181 {"compress", (PyCFunction
) bz2_compress
, METH_VARARGS
|METH_KEYWORDS
,
2182 bz2_compress__doc__
},
2183 {"decompress", (PyCFunction
) bz2_decompress
, METH_VARARGS
,
2184 bz2_decompress__doc__
},
2185 {NULL
, NULL
} /* sentinel */
2188 /* ===================================================================== */
2189 /* Initialization function. */
2191 PyDoc_STRVAR(bz2__doc__
,
2192 "The python bz2 module provides a comprehensive interface for\n\
2193 the bz2 compression library. It implements a complete file\n\
2194 interface, one shot (de)compression functions, and types for\n\
2195 sequential (de)compression.\n\
2203 Py_TYPE(&BZ2File_Type
) = &PyType_Type
;
2204 Py_TYPE(&BZ2Comp_Type
) = &PyType_Type
;
2205 Py_TYPE(&BZ2Decomp_Type
) = &PyType_Type
;
2207 m
= Py_InitModule3("bz2", bz2_methods
, bz2__doc__
);
2211 PyModule_AddObject(m
, "__author__", PyString_FromString(__author__
));
2213 Py_INCREF(&BZ2File_Type
);
2214 PyModule_AddObject(m
, "BZ2File", (PyObject
*)&BZ2File_Type
);
2216 Py_INCREF(&BZ2Comp_Type
);
2217 PyModule_AddObject(m
, "BZ2Compressor", (PyObject
*)&BZ2Comp_Type
);
2219 Py_INCREF(&BZ2Decomp_Type
);
2220 PyModule_AddObject(m
, "BZ2Decompressor", (PyObject
*)&BZ2Decomp_Type
);