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) ((v)->ob_type == &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 */
238 int newlinetypes
= f
->f_newlinetypes
;
239 int skipnextlf
= f
->f_skipnextlf
;
240 int univ_newline
= f
->f_univ_newline
;
242 total_v_size
= n
> 0 ? n
: 100;
243 v
= PyString_FromStringAndSize((char *)NULL
, total_v_size
);
248 end
= buf
+ total_v_size
;
251 Py_BEGIN_ALLOW_THREADS
254 BZ2_bzRead(&bzerror
, f
->fp
, &c
, 1);
256 if (bzerror
!= BZ_OK
|| buf
== end
)
261 /* Seeing a \n here with
262 * skipnextlf true means we
265 newlinetypes
|= NEWLINE_CRLF
;
266 BZ2_bzRead(&bzerror
, f
->fp
,
268 if (bzerror
!= BZ_OK
)
271 newlinetypes
|= NEWLINE_CR
;
277 } else if ( c
== '\n')
278 newlinetypes
|= NEWLINE_LF
;
280 if (c
== '\n') break;
282 if (bzerror
== BZ_STREAM_END
&& skipnextlf
)
283 newlinetypes
|= NEWLINE_CR
;
284 } else /* If not universal newlines use the normal loop */
286 BZ2_bzRead(&bzerror
, f
->fp
, &c
, 1);
289 } while (bzerror
== BZ_OK
&& c
!= '\n' && buf
!= end
);
291 f
->f_newlinetypes
= newlinetypes
;
292 f
->f_skipnextlf
= skipnextlf
;
293 if (bzerror
== BZ_STREAM_END
) {
295 f
->mode
= MODE_READ_EOF
;
297 } else if (bzerror
!= BZ_OK
) {
298 Util_CatchBZ2Error(bzerror
);
304 /* Must be because buf == end */
307 used_v_size
= total_v_size
;
308 increment
= total_v_size
>> 2; /* mild exponential growth */
309 total_v_size
+= increment
;
310 if (total_v_size
> INT_MAX
) {
311 PyErr_SetString(PyExc_OverflowError
,
312 "line is longer than a Python string can hold");
316 if (_PyString_Resize(&v
, total_v_size
) < 0)
318 buf
= BUF(v
) + used_v_size
;
319 end
= BUF(v
) + total_v_size
;
322 used_v_size
= buf
- BUF(v
);
323 if (used_v_size
!= total_v_size
)
324 _PyString_Resize(&v
, used_v_size
);
328 /* This is a hacked version of Python's
329 * fileobject.c:Py_UniversalNewlineFread(). */
331 Util_UnivNewlineRead(int *bzerror
, BZFILE
*stream
,
332 char* buf
, size_t n
, BZ2FileObject
*f
)
335 int newlinetypes
, skipnextlf
;
338 assert(stream
!= NULL
);
340 if (!f
->f_univ_newline
)
341 return BZ2_bzRead(bzerror
, stream
, buf
, n
);
343 newlinetypes
= f
->f_newlinetypes
;
344 skipnextlf
= f
->f_skipnextlf
;
346 /* Invariant: n is the number of bytes remaining to be filled
354 nread
= BZ2_bzRead(bzerror
, stream
, dst
, n
);
356 n
-= nread
; /* assuming 1 byte out for each in; will adjust */
357 shortread
= n
!= 0; /* true iff EOF or error */
361 /* Save as LF and set flag to skip next LF. */
365 else if (skipnextlf
&& c
== '\n') {
366 /* Skip LF, and remember we saw CR LF. */
368 newlinetypes
|= NEWLINE_CRLF
;
372 /* Normal char to be stored in buffer. Also
373 * update the newlinetypes flag if either this
374 * is an LF or the previous char was a CR.
377 newlinetypes
|= NEWLINE_LF
;
379 newlinetypes
|= NEWLINE_CR
;
385 /* If this is EOF, update type flags. */
386 if (skipnextlf
&& *bzerror
== BZ_STREAM_END
)
387 newlinetypes
|= NEWLINE_CR
;
391 f
->f_newlinetypes
= newlinetypes
;
392 f
->f_skipnextlf
= skipnextlf
;
396 /* This is a hacked version of Python's fileobject.c:drop_readahead(). */
398 Util_DropReadAhead(BZ2FileObject
*f
)
400 if (f
->f_buf
!= NULL
) {
401 PyMem_Free(f
->f_buf
);
406 /* This is a hacked version of Python's fileobject.c:readahead(). */
408 Util_ReadAhead(BZ2FileObject
*f
, int bufsize
)
413 if (f
->f_buf
!= NULL
) {
414 if((f
->f_bufend
- f
->f_bufptr
) >= 1)
417 Util_DropReadAhead(f
);
419 if (f
->mode
== MODE_READ_EOF
) {
420 f
->f_bufptr
= f
->f_buf
;
421 f
->f_bufend
= f
->f_buf
;
424 if ((f
->f_buf
= PyMem_Malloc(bufsize
)) == NULL
) {
427 Py_BEGIN_ALLOW_THREADS
428 chunksize
= Util_UnivNewlineRead(&bzerror
, f
->fp
, f
->f_buf
,
432 if (bzerror
== BZ_STREAM_END
) {
434 f
->mode
= MODE_READ_EOF
;
435 } else if (bzerror
!= BZ_OK
) {
436 Util_CatchBZ2Error(bzerror
);
437 Util_DropReadAhead(f
);
440 f
->f_bufptr
= f
->f_buf
;
441 f
->f_bufend
= f
->f_buf
+ chunksize
;
445 /* This is a hacked version of Python's
446 * fileobject.c:readahead_get_line_skip(). */
447 static PyStringObject
*
448 Util_ReadAheadGetLineSkip(BZ2FileObject
*f
, int skip
, int bufsize
)
455 if (f
->f_buf
== NULL
)
456 if (Util_ReadAhead(f
, bufsize
) < 0)
459 len
= f
->f_bufend
- f
->f_bufptr
;
461 return (PyStringObject
*)
462 PyString_FromStringAndSize(NULL
, skip
);
463 bufptr
= memchr(f
->f_bufptr
, '\n', len
);
464 if (bufptr
!= NULL
) {
465 bufptr
++; /* Count the '\n' */
466 len
= bufptr
- f
->f_bufptr
;
467 s
= (PyStringObject
*)
468 PyString_FromStringAndSize(NULL
, skip
+len
);
471 memcpy(PyString_AS_STRING(s
)+skip
, f
->f_bufptr
, len
);
472 f
->f_bufptr
= bufptr
;
473 if (bufptr
== f
->f_bufend
)
474 Util_DropReadAhead(f
);
476 bufptr
= f
->f_bufptr
;
478 f
->f_buf
= NULL
; /* Force new readahead buffer */
479 s
= Util_ReadAheadGetLineSkip(f
, skip
+len
,
480 bufsize
+ (bufsize
>>2));
485 memcpy(PyString_AS_STRING(s
)+skip
, bufptr
, len
);
491 /* ===================================================================== */
492 /* Methods of BZ2File. */
494 PyDoc_STRVAR(BZ2File_read__doc__
,
495 "read([size]) -> string\n\
497 Read at most size uncompressed bytes, returned as a string. If the size\n\
498 argument is negative or omitted, read until EOF is reached.\n\
501 /* This is a hacked version of Python's fileobject.c:file_read(). */
503 BZ2File_read(BZ2FileObject
*self
, PyObject
*args
)
505 long bytesrequested
= -1;
506 size_t bytesread
, buffersize
, chunksize
;
508 PyObject
*ret
= NULL
;
510 if (!PyArg_ParseTuple(args
, "|l:read", &bytesrequested
))
514 switch (self
->mode
) {
518 ret
= PyString_FromString("");
521 PyErr_SetString(PyExc_ValueError
,
522 "I/O operation on closed file");
525 PyErr_SetString(PyExc_IOError
,
526 "file is not ready for reading");
530 if (bytesrequested
< 0)
531 buffersize
= Util_NewBufferSize((size_t)0);
533 buffersize
= bytesrequested
;
534 if (buffersize
> INT_MAX
) {
535 PyErr_SetString(PyExc_OverflowError
,
536 "requested number of bytes is "
537 "more than a Python string can hold");
540 ret
= PyString_FromStringAndSize((char *)NULL
, buffersize
);
546 Py_BEGIN_ALLOW_THREADS
547 chunksize
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
549 buffersize
-bytesread
,
551 self
->pos
+= chunksize
;
553 bytesread
+= chunksize
;
554 if (bzerror
== BZ_STREAM_END
) {
555 self
->size
= self
->pos
;
556 self
->mode
= MODE_READ_EOF
;
558 } else if (bzerror
!= BZ_OK
) {
559 Util_CatchBZ2Error(bzerror
);
564 if (bytesrequested
< 0) {
565 buffersize
= Util_NewBufferSize(buffersize
);
566 if (_PyString_Resize(&ret
, buffersize
) < 0)
572 if (bytesread
!= buffersize
)
573 _PyString_Resize(&ret
, bytesread
);
580 PyDoc_STRVAR(BZ2File_readline__doc__
,
581 "readline([size]) -> string\n\
583 Return the next line from the file, as a string, retaining newline.\n\
584 A non-negative size argument will limit the maximum number of bytes to\n\
585 return (an incomplete line may be returned then). Return an empty\n\
590 BZ2File_readline(BZ2FileObject
*self
, PyObject
*args
)
592 PyObject
*ret
= NULL
;
595 if (!PyArg_ParseTuple(args
, "|i:readline", &sizehint
))
599 switch (self
->mode
) {
603 ret
= PyString_FromString("");
606 PyErr_SetString(PyExc_ValueError
,
607 "I/O operation on closed file");
610 PyErr_SetString(PyExc_IOError
,
611 "file is not ready for reading");
616 ret
= PyString_FromString("");
618 ret
= Util_GetLine(self
, (sizehint
< 0) ? 0 : sizehint
);
625 PyDoc_STRVAR(BZ2File_readlines__doc__
,
626 "readlines([size]) -> list\n\
628 Call readline() repeatedly and return a list of lines read.\n\
629 The optional size argument, if given, is an approximate bound on the\n\
630 total number of bytes in the lines returned.\n\
633 /* This is a hacked version of Python's fileobject.c:file_readlines(). */
635 BZ2File_readlines(BZ2FileObject
*self
, PyObject
*args
)
638 PyObject
*list
= NULL
;
640 char small_buffer
[SMALLCHUNK
];
641 char *buffer
= small_buffer
;
642 size_t buffersize
= SMALLCHUNK
;
643 PyObject
*big_buffer
= NULL
;
646 size_t totalread
= 0;
652 if (!PyArg_ParseTuple(args
, "|l:readlines", &sizehint
))
656 switch (self
->mode
) {
660 list
= PyList_New(0);
663 PyErr_SetString(PyExc_ValueError
,
664 "I/O operation on closed file");
667 PyErr_SetString(PyExc_IOError
,
668 "file is not ready for reading");
672 if ((list
= PyList_New(0)) == NULL
)
676 Py_BEGIN_ALLOW_THREADS
677 nread
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
679 buffersize
-nfilled
, self
);
682 if (bzerror
== BZ_STREAM_END
) {
683 self
->size
= self
->pos
;
684 self
->mode
= MODE_READ_EOF
;
690 } else if (bzerror
!= BZ_OK
) {
691 Util_CatchBZ2Error(bzerror
);
698 p
= memchr(buffer
+nfilled
, '\n', nread
);
699 if (!shortread
&& p
== NULL
) {
700 /* Need a larger buffer to fit this line */
703 if (buffersize
> INT_MAX
) {
704 PyErr_SetString(PyExc_OverflowError
,
705 "line is longer than a Python string can hold");
708 if (big_buffer
== NULL
) {
709 /* Create the big buffer */
710 big_buffer
= PyString_FromStringAndSize(
712 if (big_buffer
== NULL
)
714 buffer
= PyString_AS_STRING(big_buffer
);
715 memcpy(buffer
, small_buffer
, nfilled
);
718 /* Grow the big buffer */
719 _PyString_Resize(&big_buffer
, buffersize
);
720 buffer
= PyString_AS_STRING(big_buffer
);
724 end
= buffer
+nfilled
+nread
;
727 /* Process complete lines */
729 line
= PyString_FromStringAndSize(q
, p
-q
);
732 err
= PyList_Append(list
, line
);
737 p
= memchr(q
, '\n', end
-q
);
739 /* Move the remaining incomplete line to the start */
741 memmove(buffer
, q
, nfilled
);
743 if (totalread
>= (size_t)sizehint
)
751 /* Partial last line */
752 line
= PyString_FromStringAndSize(buffer
, nfilled
);
756 /* Need to complete the last line */
757 PyObject
*rest
= Util_GetLine(self
, 0);
762 PyString_Concat(&line
, rest
);
767 err
= PyList_Append(list
, line
);
776 Py_DECREF(big_buffer
);
781 PyDoc_STRVAR(BZ2File_xreadlines__doc__
,
782 "xreadlines() -> self\n\
784 For backward compatibility. BZ2File objects now include the performance\n\
785 optimizations previously implemented in the xreadlines module.\n\
788 PyDoc_STRVAR(BZ2File_write__doc__
,
789 "write(data) -> None\n\
791 Write the 'data' string to file. Note that due to buffering, close() may\n\
792 be needed before the file on disk reflects the data written.\n\
795 /* This is a hacked version of Python's fileobject.c:file_write(). */
797 BZ2File_write(BZ2FileObject
*self
, PyObject
*args
)
799 PyObject
*ret
= NULL
;
804 if (!PyArg_ParseTuple(args
, "s#:write", &buf
, &len
))
808 switch (self
->mode
) {
813 PyErr_SetString(PyExc_ValueError
,
814 "I/O operation on closed file");
818 PyErr_SetString(PyExc_IOError
,
819 "file is not ready for writing");
823 self
->f_softspace
= 0;
825 Py_BEGIN_ALLOW_THREADS
826 BZ2_bzWrite (&bzerror
, self
->fp
, buf
, len
);
830 if (bzerror
!= BZ_OK
) {
831 Util_CatchBZ2Error(bzerror
);
843 PyDoc_STRVAR(BZ2File_writelines__doc__
,
844 "writelines(sequence_of_strings) -> None\n\
846 Write the sequence of strings to the file. Note that newlines are not\n\
847 added. The sequence can be any iterable object producing strings. This is\n\
848 equivalent to calling write() for each string.\n\
851 /* This is a hacked version of Python's fileobject.c:file_writelines(). */
853 BZ2File_writelines(BZ2FileObject
*self
, PyObject
*seq
)
855 #define CHUNKSIZE 1000
856 PyObject
*list
= NULL
;
857 PyObject
*iter
= NULL
;
858 PyObject
*ret
= NULL
;
860 int i
, j
, index
, len
, islist
;
864 switch (self
->mode
) {
869 PyErr_SetString(PyExc_ValueError
,
870 "I/O operation on closed file");
874 PyErr_SetString(PyExc_IOError
,
875 "file is not ready for writing");
879 islist
= PyList_Check(seq
);
881 iter
= PyObject_GetIter(seq
);
883 PyErr_SetString(PyExc_TypeError
,
884 "writelines() requires an iterable argument");
887 list
= PyList_New(CHUNKSIZE
);
892 /* Strategy: slurp CHUNKSIZE lines into a private list,
893 checking that they are all strings, then write that list
894 without holding the interpreter lock, then come back for more. */
895 for (index
= 0; ; index
+= CHUNKSIZE
) {
898 list
= PyList_GetSlice(seq
, index
, index
+CHUNKSIZE
);
901 j
= PyList_GET_SIZE(list
);
904 for (j
= 0; j
< CHUNKSIZE
; j
++) {
905 line
= PyIter_Next(iter
);
907 if (PyErr_Occurred())
911 PyList_SetItem(list
, j
, line
);
917 /* Check that all entries are indeed strings. If not,
918 apply the same rules as for file.write() and
919 convert the rets to strings. This is slow, but
920 seems to be the only way since all conversion APIs
921 could potentially execute Python code. */
922 for (i
= 0; i
< j
; i
++) {
923 PyObject
*v
= PyList_GET_ITEM(list
, i
);
924 if (!PyString_Check(v
)) {
927 if (PyObject_AsCharBuffer(v
, &buffer
, &len
)) {
928 PyErr_SetString(PyExc_TypeError
,
935 line
= PyString_FromStringAndSize(buffer
,
940 PyList_SET_ITEM(list
, i
, line
);
944 self
->f_softspace
= 0;
946 /* Since we are releasing the global lock, the
947 following code may *not* execute Python code. */
948 Py_BEGIN_ALLOW_THREADS
949 for (i
= 0; i
< j
; i
++) {
950 line
= PyList_GET_ITEM(list
, i
);
951 len
= PyString_GET_SIZE(line
);
952 BZ2_bzWrite (&bzerror
, self
->fp
,
953 PyString_AS_STRING(line
), len
);
954 if (bzerror
!= BZ_OK
) {
956 Util_CatchBZ2Error(bzerror
);
977 PyDoc_STRVAR(BZ2File_seek__doc__
,
978 "seek(offset [, whence]) -> None\n\
980 Move to new file position. Argument offset is a byte count. Optional\n\
981 argument whence defaults to 0 (offset from start of file, offset\n\
982 should be >= 0); other values are 1 (move relative to current position,\n\
983 positive or negative), and 2 (move relative to end of file, usually\n\
984 negative, although many platforms allow seeking beyond the end of a file).\n\
986 Note that seeking of bz2 files is emulated, and depending on the parameters\n\
987 the operation may be extremely slow.\n\
991 BZ2File_seek(BZ2FileObject
*self
, PyObject
*args
)
996 char small_buffer
[SMALLCHUNK
];
997 char *buffer
= small_buffer
;
998 size_t buffersize
= SMALLCHUNK
;
1003 PyObject
*ret
= NULL
;
1005 if (!PyArg_ParseTuple(args
, "O|i:seek", &offobj
, &where
))
1007 #if !defined(HAVE_LARGEFILE_SUPPORT)
1008 offset
= PyInt_AsLong(offobj
);
1010 offset
= PyLong_Check(offobj
) ?
1011 PyLong_AsLongLong(offobj
) : PyInt_AsLong(offobj
);
1013 if (PyErr_Occurred())
1017 Util_DropReadAhead(self
);
1018 switch (self
->mode
) {
1024 PyErr_SetString(PyExc_ValueError
,
1025 "I/O operation on closed file");
1029 PyErr_SetString(PyExc_IOError
,
1030 "seek works only while reading");
1035 if (self
->size
== -1) {
1036 assert(self
->mode
!= MODE_READ_EOF
);
1038 Py_BEGIN_ALLOW_THREADS
1039 chunksize
= Util_UnivNewlineRead(
1043 self
->pos
+= chunksize
;
1044 Py_END_ALLOW_THREADS
1046 bytesread
+= chunksize
;
1047 if (bzerror
== BZ_STREAM_END
) {
1049 } else if (bzerror
!= BZ_OK
) {
1050 Util_CatchBZ2Error(bzerror
);
1054 self
->mode
= MODE_READ_EOF
;
1055 self
->size
= self
->pos
;
1058 offset
= self
->size
+ offset
;
1059 } else if (where
== 1) {
1060 offset
= self
->pos
+ offset
;
1063 /* Before getting here, offset must be the absolute position the file
1064 * pointer should be set to. */
1066 if (offset
>= self
->pos
) {
1067 /* we can move forward */
1068 offset
-= self
->pos
;
1070 /* we cannot move back, so rewind the stream */
1071 BZ2_bzReadClose(&bzerror
, self
->fp
);
1072 if (bzerror
!= BZ_OK
) {
1073 Util_CatchBZ2Error(bzerror
);
1076 ret
= PyObject_CallMethod(self
->file
, "seek", "(i)", 0);
1082 self
->fp
= BZ2_bzReadOpen(&bzerror
, PyFile_AsFile(self
->file
),
1084 if (bzerror
!= BZ_OK
) {
1085 Util_CatchBZ2Error(bzerror
);
1088 self
->mode
= MODE_READ
;
1091 if (offset
<= 0 || self
->mode
== MODE_READ_EOF
)
1094 /* Before getting here, offset must be set to the number of bytes
1095 * to walk forward. */
1097 if (offset
-bytesread
> buffersize
)
1098 readsize
= buffersize
;
1100 /* offset might be wider that readsize, but the result
1101 * of the subtraction is bound by buffersize (see the
1102 * condition above). buffersize is 8192. */
1103 readsize
= (size_t)(offset
-bytesread
);
1104 Py_BEGIN_ALLOW_THREADS
1105 chunksize
= Util_UnivNewlineRead(&bzerror
, self
->fp
,
1106 buffer
, readsize
, self
);
1107 self
->pos
+= chunksize
;
1108 Py_END_ALLOW_THREADS
1109 bytesread
+= chunksize
;
1110 if (bzerror
== BZ_STREAM_END
) {
1111 self
->size
= self
->pos
;
1112 self
->mode
= MODE_READ_EOF
;
1114 } else if (bzerror
!= BZ_OK
) {
1115 Util_CatchBZ2Error(bzerror
);
1118 if (bytesread
== offset
)
1131 PyDoc_STRVAR(BZ2File_tell__doc__
,
1134 Return the current file position, an integer (may be a long integer).\n\
1138 BZ2File_tell(BZ2FileObject
*self
, PyObject
*args
)
1140 PyObject
*ret
= NULL
;
1142 if (self
->mode
== MODE_CLOSED
) {
1143 PyErr_SetString(PyExc_ValueError
,
1144 "I/O operation on closed file");
1148 #if !defined(HAVE_LARGEFILE_SUPPORT)
1149 ret
= PyInt_FromLong(self
->pos
);
1151 ret
= PyLong_FromLongLong(self
->pos
);
1158 PyDoc_STRVAR(BZ2File_close__doc__
,
1159 "close() -> None or (perhaps) an integer\n\
1161 Close the file. Sets data attribute .closed to true. A closed file\n\
1162 cannot be used for further I/O operations. close() may be called more\n\
1163 than once without error.\n\
1167 BZ2File_close(BZ2FileObject
*self
)
1169 PyObject
*ret
= NULL
;
1170 int bzerror
= BZ_OK
;
1173 switch (self
->mode
) {
1176 BZ2_bzReadClose(&bzerror
, self
->fp
);
1179 BZ2_bzWriteClose(&bzerror
, self
->fp
,
1183 self
->mode
= MODE_CLOSED
;
1184 ret
= PyObject_CallMethod(self
->file
, "close", NULL
);
1185 if (bzerror
!= BZ_OK
) {
1186 Util_CatchBZ2Error(bzerror
);
1195 static PyObject
*BZ2File_getiter(BZ2FileObject
*self
);
1197 static PyMethodDef BZ2File_methods
[] = {
1198 {"read", (PyCFunction
)BZ2File_read
, METH_VARARGS
, BZ2File_read__doc__
},
1199 {"readline", (PyCFunction
)BZ2File_readline
, METH_VARARGS
, BZ2File_readline__doc__
},
1200 {"readlines", (PyCFunction
)BZ2File_readlines
, METH_VARARGS
, BZ2File_readlines__doc__
},
1201 {"xreadlines", (PyCFunction
)BZ2File_getiter
, METH_VARARGS
, BZ2File_xreadlines__doc__
},
1202 {"write", (PyCFunction
)BZ2File_write
, METH_VARARGS
, BZ2File_write__doc__
},
1203 {"writelines", (PyCFunction
)BZ2File_writelines
, METH_O
, BZ2File_writelines__doc__
},
1204 {"seek", (PyCFunction
)BZ2File_seek
, METH_VARARGS
, BZ2File_seek__doc__
},
1205 {"tell", (PyCFunction
)BZ2File_tell
, METH_NOARGS
, BZ2File_tell__doc__
},
1206 {"close", (PyCFunction
)BZ2File_close
, METH_NOARGS
, BZ2File_close__doc__
},
1207 {NULL
, NULL
} /* sentinel */
1211 /* ===================================================================== */
1212 /* Getters and setters of BZ2File. */
1214 /* This is a hacked version of Python's fileobject.c:get_newlines(). */
1216 BZ2File_get_newlines(BZ2FileObject
*self
, void *closure
)
1218 switch (self
->f_newlinetypes
) {
1219 case NEWLINE_UNKNOWN
:
1223 return PyString_FromString("\r");
1225 return PyString_FromString("\n");
1226 case NEWLINE_CR
|NEWLINE_LF
:
1227 return Py_BuildValue("(ss)", "\r", "\n");
1229 return PyString_FromString("\r\n");
1230 case NEWLINE_CR
|NEWLINE_CRLF
:
1231 return Py_BuildValue("(ss)", "\r", "\r\n");
1232 case NEWLINE_LF
|NEWLINE_CRLF
:
1233 return Py_BuildValue("(ss)", "\n", "\r\n");
1234 case NEWLINE_CR
|NEWLINE_LF
|NEWLINE_CRLF
:
1235 return Py_BuildValue("(sss)", "\r", "\n", "\r\n");
1237 PyErr_Format(PyExc_SystemError
,
1238 "Unknown newlines value 0x%x\n",
1239 self
->f_newlinetypes
);
1245 BZ2File_get_closed(BZ2FileObject
*self
, void *closure
)
1247 return PyInt_FromLong(self
->mode
== MODE_CLOSED
);
1251 BZ2File_get_mode(BZ2FileObject
*self
, void *closure
)
1253 return PyObject_GetAttrString(self
->file
, "mode");
1257 BZ2File_get_name(BZ2FileObject
*self
, void *closure
)
1259 return PyObject_GetAttrString(self
->file
, "name");
1262 static PyGetSetDef BZ2File_getset
[] = {
1263 {"closed", (getter
)BZ2File_get_closed
, NULL
,
1264 "True if the file is closed"},
1265 {"newlines", (getter
)BZ2File_get_newlines
, NULL
,
1266 "end-of-line convention used in this file"},
1267 {"mode", (getter
)BZ2File_get_mode
, NULL
,
1268 "file mode ('r', 'w', or 'U')"},
1269 {"name", (getter
)BZ2File_get_name
, NULL
,
1271 {NULL
} /* Sentinel */
1275 /* ===================================================================== */
1276 /* Members of BZ2File_Type. */
1279 #define OFF(x) offsetof(BZ2FileObject, x)
1281 static PyMemberDef BZ2File_members
[] = {
1282 {"softspace", T_INT
, OFF(f_softspace
), 0,
1283 "flag indicating that a space needs to be printed; used by print"},
1284 {NULL
} /* Sentinel */
1287 /* ===================================================================== */
1288 /* Slot definitions for BZ2File_Type. */
1291 BZ2File_init(BZ2FileObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1293 static char *kwlist
[] = {"filename", "mode", "buffering",
1294 "compresslevel", 0};
1298 int compresslevel
= 9;
1304 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "O|sii:BZ2File",
1305 kwlist
, &name
, &mode
, &buffering
,
1309 if (compresslevel
< 1 || compresslevel
> 9) {
1310 PyErr_SetString(PyExc_ValueError
,
1311 "compresslevel must be between 1 and 9");
1330 self
->f_univ_newline
= 0;
1332 self
->f_univ_newline
= 1;
1341 PyErr_Format(PyExc_ValueError
,
1342 "invalid mode char %c", *mode
);
1350 if (mode_char
== 0) {
1354 mode
= (mode_char
== 'r') ? "rb" : "wb";
1356 self
->file
= PyObject_CallFunction((PyObject
*)&PyFile_Type
, "(Osi)",
1357 name
, mode
, buffering
);
1358 if (self
->file
== NULL
)
1361 /* From now on, we have stuff to dealloc, so jump to error label
1362 * instead of returning */
1365 self
->lock
= PyThread_allocate_lock();
1367 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1372 if (mode_char
== 'r')
1373 self
->fp
= BZ2_bzReadOpen(&bzerror
,
1374 PyFile_AsFile(self
->file
),
1377 self
->fp
= BZ2_bzWriteOpen(&bzerror
,
1378 PyFile_AsFile(self
->file
),
1379 compresslevel
, 0, 0);
1381 if (bzerror
!= BZ_OK
) {
1382 Util_CatchBZ2Error(bzerror
);
1386 self
->mode
= (mode_char
== 'r') ? MODE_READ
: MODE_WRITE
;
1391 Py_CLEAR(self
->file
);
1394 PyThread_free_lock(self
->lock
);
1402 BZ2File_dealloc(BZ2FileObject
*self
)
1407 PyThread_free_lock(self
->lock
);
1409 switch (self
->mode
) {
1412 BZ2_bzReadClose(&bzerror
, self
->fp
);
1415 BZ2_bzWriteClose(&bzerror
, self
->fp
,
1419 Util_DropReadAhead(self
);
1420 Py_XDECREF(self
->file
);
1421 self
->ob_type
->tp_free((PyObject
*)self
);
1424 /* This is a hacked version of Python's fileobject.c:file_getiter(). */
1426 BZ2File_getiter(BZ2FileObject
*self
)
1428 if (self
->mode
== MODE_CLOSED
) {
1429 PyErr_SetString(PyExc_ValueError
,
1430 "I/O operation on closed file");
1433 Py_INCREF((PyObject
*)self
);
1434 return (PyObject
*)self
;
1437 /* This is a hacked version of Python's fileobject.c:file_iternext(). */
1438 #define READAHEAD_BUFSIZE 8192
1440 BZ2File_iternext(BZ2FileObject
*self
)
1442 PyStringObject
* ret
;
1444 if (self
->mode
== MODE_CLOSED
) {
1445 PyErr_SetString(PyExc_ValueError
,
1446 "I/O operation on closed file");
1449 ret
= Util_ReadAheadGetLineSkip(self
, 0, READAHEAD_BUFSIZE
);
1451 if (ret
== NULL
|| PyString_GET_SIZE(ret
) == 0) {
1455 return (PyObject
*)ret
;
1458 /* ===================================================================== */
1459 /* BZ2File_Type definition. */
1461 PyDoc_VAR(BZ2File__doc__
) =
1463 "BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object\n\
1465 Open a bz2 file. The mode can be 'r' or 'w', for reading (default) or\n\
1466 writing. When opened for writing, the file will be created if it doesn't\n\
1467 exist, and truncated otherwise. If the buffering argument is given, 0 means\n\
1468 unbuffered, and larger numbers specify the buffer size. If compresslevel\n\
1469 is given, must be a number between 1 and 9.\n\
1473 Add a 'U' to mode to open the file for input with universal newline\n\
1474 support. Any line ending in the input file will be seen as a '\\n' in\n\
1475 Python. Also, a file so opened gains the attribute 'newlines'; the value\n\
1476 for this attribute is one of None (no newline read yet), '\\r', '\\n',\n\
1477 '\\r\\n' or a tuple containing all the newline types seen. Universal\n\
1478 newlines are available only when reading.\n\
1482 static PyTypeObject BZ2File_Type
= {
1483 PyObject_HEAD_INIT(NULL
)
1485 "bz2.BZ2File", /*tp_name*/
1486 sizeof(BZ2FileObject
), /*tp_basicsize*/
1488 (destructor
)BZ2File_dealloc
, /*tp_dealloc*/
1495 0, /*tp_as_sequence*/
1496 0, /*tp_as_mapping*/
1500 PyObject_GenericGetAttr
,/*tp_getattro*/
1501 PyObject_GenericSetAttr
,/*tp_setattro*/
1503 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1504 BZ2File__doc__
, /*tp_doc*/
1507 0, /*tp_richcompare*/
1508 0, /*tp_weaklistoffset*/
1509 (getiterfunc
)BZ2File_getiter
, /*tp_iter*/
1510 (iternextfunc
)BZ2File_iternext
, /*tp_iternext*/
1511 BZ2File_methods
, /*tp_methods*/
1512 BZ2File_members
, /*tp_members*/
1513 BZ2File_getset
, /*tp_getset*/
1518 0, /*tp_dictoffset*/
1519 (initproc
)BZ2File_init
, /*tp_init*/
1520 PyType_GenericAlloc
, /*tp_alloc*/
1521 PyType_GenericNew
, /*tp_new*/
1522 _PyObject_Del
, /*tp_free*/
1527 /* ===================================================================== */
1528 /* Methods of BZ2Comp. */
1530 PyDoc_STRVAR(BZ2Comp_compress__doc__
,
1531 "compress(data) -> string\n\
1533 Provide more data to the compressor object. It will return chunks of\n\
1534 compressed data whenever possible. When you've finished providing data\n\
1535 to compress, call the flush() method to finish the compression process,\n\
1536 and return what is left in the internal buffers.\n\
1540 BZ2Comp_compress(BZ2CompObject
*self
, PyObject
*args
)
1544 int bufsize
= SMALLCHUNK
;
1545 PY_LONG_LONG totalout
;
1546 PyObject
*ret
= NULL
;
1547 bz_stream
*bzs
= &self
->bzs
;
1550 if (!PyArg_ParseTuple(args
, "s#:compress", &data
, &datasize
))
1554 return PyString_FromString("");
1557 if (!self
->running
) {
1558 PyErr_SetString(PyExc_ValueError
,
1559 "this object was already flushed");
1563 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1567 bzs
->next_in
= data
;
1568 bzs
->avail_in
= datasize
;
1569 bzs
->next_out
= BUF(ret
);
1570 bzs
->avail_out
= bufsize
;
1572 totalout
= BZS_TOTAL_OUT(bzs
);
1575 Py_BEGIN_ALLOW_THREADS
1576 bzerror
= BZ2_bzCompress(bzs
, BZ_RUN
);
1577 Py_END_ALLOW_THREADS
1578 if (bzerror
!= BZ_RUN_OK
) {
1579 Util_CatchBZ2Error(bzerror
);
1582 if (bzs
->avail_out
== 0) {
1583 bufsize
= Util_NewBufferSize(bufsize
);
1584 if (_PyString_Resize(&ret
, bufsize
) < 0) {
1585 BZ2_bzCompressEnd(bzs
);
1588 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1590 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1591 } else if (bzs
->avail_in
== 0) {
1596 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1607 PyDoc_STRVAR(BZ2Comp_flush__doc__
,
1608 "flush() -> string\n\
1610 Finish the compression process and return what is left in internal buffers.\n\
1611 You must not use the compressor object after calling this method.\n\
1615 BZ2Comp_flush(BZ2CompObject
*self
)
1617 int bufsize
= SMALLCHUNK
;
1618 PyObject
*ret
= NULL
;
1619 bz_stream
*bzs
= &self
->bzs
;
1620 PY_LONG_LONG totalout
;
1624 if (!self
->running
) {
1625 PyErr_SetString(PyExc_ValueError
, "object was already "
1631 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1635 bzs
->next_out
= BUF(ret
);
1636 bzs
->avail_out
= bufsize
;
1638 totalout
= BZS_TOTAL_OUT(bzs
);
1641 Py_BEGIN_ALLOW_THREADS
1642 bzerror
= BZ2_bzCompress(bzs
, BZ_FINISH
);
1643 Py_END_ALLOW_THREADS
1644 if (bzerror
== BZ_STREAM_END
) {
1646 } else if (bzerror
!= BZ_FINISH_OK
) {
1647 Util_CatchBZ2Error(bzerror
);
1650 if (bzs
->avail_out
== 0) {
1651 bufsize
= Util_NewBufferSize(bufsize
);
1652 if (_PyString_Resize(&ret
, bufsize
) < 0)
1654 bzs
->next_out
= BUF(ret
);
1655 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1657 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1661 if (bzs
->avail_out
!= 0)
1662 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1673 static PyMethodDef BZ2Comp_methods
[] = {
1674 {"compress", (PyCFunction
)BZ2Comp_compress
, METH_VARARGS
,
1675 BZ2Comp_compress__doc__
},
1676 {"flush", (PyCFunction
)BZ2Comp_flush
, METH_NOARGS
,
1677 BZ2Comp_flush__doc__
},
1678 {NULL
, NULL
} /* sentinel */
1682 /* ===================================================================== */
1683 /* Slot definitions for BZ2Comp_Type. */
1686 BZ2Comp_init(BZ2CompObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1688 int compresslevel
= 9;
1690 static char *kwlist
[] = {"compresslevel", 0};
1692 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "|i:BZ2Compressor",
1693 kwlist
, &compresslevel
))
1696 if (compresslevel
< 1 || compresslevel
> 9) {
1697 PyErr_SetString(PyExc_ValueError
,
1698 "compresslevel must be between 1 and 9");
1703 self
->lock
= PyThread_allocate_lock();
1705 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1710 memset(&self
->bzs
, 0, sizeof(bz_stream
));
1711 bzerror
= BZ2_bzCompressInit(&self
->bzs
, compresslevel
, 0, 0);
1712 if (bzerror
!= BZ_OK
) {
1713 Util_CatchBZ2Error(bzerror
);
1723 PyThread_free_lock(self
->lock
);
1731 BZ2Comp_dealloc(BZ2CompObject
*self
)
1735 PyThread_free_lock(self
->lock
);
1737 BZ2_bzCompressEnd(&self
->bzs
);
1738 self
->ob_type
->tp_free((PyObject
*)self
);
1742 /* ===================================================================== */
1743 /* BZ2Comp_Type definition. */
1745 PyDoc_STRVAR(BZ2Comp__doc__
,
1746 "BZ2Compressor([compresslevel=9]) -> compressor object\n\
1748 Create a new compressor object. This object may be used to compress\n\
1749 data sequentially. If you want to compress data in one shot, use the\n\
1750 compress() function instead. The compresslevel parameter, if given,\n\
1751 must be a number between 1 and 9.\n\
1754 static PyTypeObject BZ2Comp_Type
= {
1755 PyObject_HEAD_INIT(NULL
)
1757 "bz2.BZ2Compressor", /*tp_name*/
1758 sizeof(BZ2CompObject
), /*tp_basicsize*/
1760 (destructor
)BZ2Comp_dealloc
, /*tp_dealloc*/
1767 0, /*tp_as_sequence*/
1768 0, /*tp_as_mapping*/
1772 PyObject_GenericGetAttr
,/*tp_getattro*/
1773 PyObject_GenericSetAttr
,/*tp_setattro*/
1775 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1776 BZ2Comp__doc__
, /*tp_doc*/
1779 0, /*tp_richcompare*/
1780 0, /*tp_weaklistoffset*/
1783 BZ2Comp_methods
, /*tp_methods*/
1790 0, /*tp_dictoffset*/
1791 (initproc
)BZ2Comp_init
, /*tp_init*/
1792 PyType_GenericAlloc
, /*tp_alloc*/
1793 PyType_GenericNew
, /*tp_new*/
1794 _PyObject_Del
, /*tp_free*/
1799 /* ===================================================================== */
1800 /* Members of BZ2Decomp. */
1803 #define OFF(x) offsetof(BZ2DecompObject, x)
1805 static PyMemberDef BZ2Decomp_members
[] = {
1806 {"unused_data", T_OBJECT
, OFF(unused_data
), RO
},
1807 {NULL
} /* Sentinel */
1811 /* ===================================================================== */
1812 /* Methods of BZ2Decomp. */
1814 PyDoc_STRVAR(BZ2Decomp_decompress__doc__
,
1815 "decompress(data) -> string\n\
1817 Provide more data to the decompressor object. It will return chunks\n\
1818 of decompressed data whenever possible. If you try to decompress data\n\
1819 after the end of stream is found, EOFError will be raised. If any data\n\
1820 was found after the end of stream, it'll be ignored and saved in\n\
1821 unused_data attribute.\n\
1825 BZ2Decomp_decompress(BZ2DecompObject
*self
, PyObject
*args
)
1829 int bufsize
= SMALLCHUNK
;
1830 PY_LONG_LONG totalout
;
1831 PyObject
*ret
= NULL
;
1832 bz_stream
*bzs
= &self
->bzs
;
1835 if (!PyArg_ParseTuple(args
, "s#:decompress", &data
, &datasize
))
1839 if (!self
->running
) {
1840 PyErr_SetString(PyExc_EOFError
, "end of stream was "
1845 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
1849 bzs
->next_in
= data
;
1850 bzs
->avail_in
= datasize
;
1851 bzs
->next_out
= BUF(ret
);
1852 bzs
->avail_out
= bufsize
;
1854 totalout
= BZS_TOTAL_OUT(bzs
);
1857 Py_BEGIN_ALLOW_THREADS
1858 bzerror
= BZ2_bzDecompress(bzs
);
1859 Py_END_ALLOW_THREADS
1860 if (bzerror
== BZ_STREAM_END
) {
1861 if (bzs
->avail_in
!= 0) {
1862 Py_DECREF(self
->unused_data
);
1864 PyString_FromStringAndSize(bzs
->next_in
,
1870 if (bzerror
!= BZ_OK
) {
1871 Util_CatchBZ2Error(bzerror
);
1874 if (bzs
->avail_out
== 0) {
1875 bufsize
= Util_NewBufferSize(bufsize
);
1876 if (_PyString_Resize(&ret
, bufsize
) < 0) {
1877 BZ2_bzDecompressEnd(bzs
);
1880 bzs
->next_out
= BUF(ret
);
1881 bzs
->next_out
= BUF(ret
) + (BZS_TOTAL_OUT(bzs
)
1883 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
1884 } else if (bzs
->avail_in
== 0) {
1889 if (bzs
->avail_out
!= 0)
1890 _PyString_Resize(&ret
, (Py_ssize_t
)(BZS_TOTAL_OUT(bzs
) - totalout
));
1901 static PyMethodDef BZ2Decomp_methods
[] = {
1902 {"decompress", (PyCFunction
)BZ2Decomp_decompress
, METH_VARARGS
, BZ2Decomp_decompress__doc__
},
1903 {NULL
, NULL
} /* sentinel */
1907 /* ===================================================================== */
1908 /* Slot definitions for BZ2Decomp_Type. */
1911 BZ2Decomp_init(BZ2DecompObject
*self
, PyObject
*args
, PyObject
*kwargs
)
1915 if (!PyArg_ParseTuple(args
, ":BZ2Decompressor"))
1919 self
->lock
= PyThread_allocate_lock();
1921 PyErr_SetString(PyExc_MemoryError
, "unable to allocate lock");
1926 self
->unused_data
= PyString_FromString("");
1927 if (!self
->unused_data
)
1930 memset(&self
->bzs
, 0, sizeof(bz_stream
));
1931 bzerror
= BZ2_bzDecompressInit(&self
->bzs
, 0, 0);
1932 if (bzerror
!= BZ_OK
) {
1933 Util_CatchBZ2Error(bzerror
);
1944 PyThread_free_lock(self
->lock
);
1948 Py_CLEAR(self
->unused_data
);
1953 BZ2Decomp_dealloc(BZ2DecompObject
*self
)
1957 PyThread_free_lock(self
->lock
);
1959 Py_XDECREF(self
->unused_data
);
1960 BZ2_bzDecompressEnd(&self
->bzs
);
1961 self
->ob_type
->tp_free((PyObject
*)self
);
1965 /* ===================================================================== */
1966 /* BZ2Decomp_Type definition. */
1968 PyDoc_STRVAR(BZ2Decomp__doc__
,
1969 "BZ2Decompressor() -> decompressor object\n\
1971 Create a new decompressor object. This object may be used to decompress\n\
1972 data sequentially. If you want to decompress data in one shot, use the\n\
1973 decompress() function instead.\n\
1976 static PyTypeObject BZ2Decomp_Type
= {
1977 PyObject_HEAD_INIT(NULL
)
1979 "bz2.BZ2Decompressor", /*tp_name*/
1980 sizeof(BZ2DecompObject
), /*tp_basicsize*/
1982 (destructor
)BZ2Decomp_dealloc
, /*tp_dealloc*/
1989 0, /*tp_as_sequence*/
1990 0, /*tp_as_mapping*/
1994 PyObject_GenericGetAttr
,/*tp_getattro*/
1995 PyObject_GenericSetAttr
,/*tp_setattro*/
1997 Py_TPFLAGS_DEFAULT
|Py_TPFLAGS_BASETYPE
, /*tp_flags*/
1998 BZ2Decomp__doc__
, /*tp_doc*/
2001 0, /*tp_richcompare*/
2002 0, /*tp_weaklistoffset*/
2005 BZ2Decomp_methods
, /*tp_methods*/
2006 BZ2Decomp_members
, /*tp_members*/
2012 0, /*tp_dictoffset*/
2013 (initproc
)BZ2Decomp_init
, /*tp_init*/
2014 PyType_GenericAlloc
, /*tp_alloc*/
2015 PyType_GenericNew
, /*tp_new*/
2016 _PyObject_Del
, /*tp_free*/
2021 /* ===================================================================== */
2022 /* Module functions. */
2024 PyDoc_STRVAR(bz2_compress__doc__
,
2025 "compress(data [, compresslevel=9]) -> string\n\
2027 Compress data in one shot. If you want to compress data sequentially,\n\
2028 use an instance of BZ2Compressor instead. The compresslevel parameter, if\n\
2029 given, must be a number between 1 and 9.\n\
2033 bz2_compress(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
2035 int compresslevel
=9;
2039 PyObject
*ret
= NULL
;
2041 bz_stream
*bzs
= &_bzs
;
2043 static char *kwlist
[] = {"data", "compresslevel", 0};
2045 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "s#|i",
2046 kwlist
, &data
, &datasize
,
2050 if (compresslevel
< 1 || compresslevel
> 9) {
2051 PyErr_SetString(PyExc_ValueError
,
2052 "compresslevel must be between 1 and 9");
2056 /* Conforming to bz2 manual, this is large enough to fit compressed
2057 * data in one shot. We will check it later anyway. */
2058 bufsize
= datasize
+ (datasize
/100+1) + 600;
2060 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
2064 memset(bzs
, 0, sizeof(bz_stream
));
2066 bzs
->next_in
= data
;
2067 bzs
->avail_in
= datasize
;
2068 bzs
->next_out
= BUF(ret
);
2069 bzs
->avail_out
= bufsize
;
2071 bzerror
= BZ2_bzCompressInit(bzs
, compresslevel
, 0, 0);
2072 if (bzerror
!= BZ_OK
) {
2073 Util_CatchBZ2Error(bzerror
);
2079 Py_BEGIN_ALLOW_THREADS
2080 bzerror
= BZ2_bzCompress(bzs
, BZ_FINISH
);
2081 Py_END_ALLOW_THREADS
2082 if (bzerror
== BZ_STREAM_END
) {
2084 } else if (bzerror
!= BZ_FINISH_OK
) {
2085 BZ2_bzCompressEnd(bzs
);
2086 Util_CatchBZ2Error(bzerror
);
2090 if (bzs
->avail_out
== 0) {
2091 bufsize
= Util_NewBufferSize(bufsize
);
2092 if (_PyString_Resize(&ret
, bufsize
) < 0) {
2093 BZ2_bzCompressEnd(bzs
);
2097 bzs
->next_out
= BUF(ret
) + BZS_TOTAL_OUT(bzs
);
2098 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
2102 if (bzs
->avail_out
!= 0)
2103 _PyString_Resize(&ret
, (Py_ssize_t
)BZS_TOTAL_OUT(bzs
));
2104 BZ2_bzCompressEnd(bzs
);
2109 PyDoc_STRVAR(bz2_decompress__doc__
,
2110 "decompress(data) -> decompressed data\n\
2112 Decompress data in one shot. If you want to decompress data sequentially,\n\
2113 use an instance of BZ2Decompressor instead.\n\
2117 bz2_decompress(PyObject
*self
, PyObject
*args
)
2121 int bufsize
= SMALLCHUNK
;
2124 bz_stream
*bzs
= &_bzs
;
2127 if (!PyArg_ParseTuple(args
, "s#:decompress", &data
, &datasize
))
2131 return PyString_FromString("");
2133 ret
= PyString_FromStringAndSize(NULL
, bufsize
);
2137 memset(bzs
, 0, sizeof(bz_stream
));
2139 bzs
->next_in
= data
;
2140 bzs
->avail_in
= datasize
;
2141 bzs
->next_out
= BUF(ret
);
2142 bzs
->avail_out
= bufsize
;
2144 bzerror
= BZ2_bzDecompressInit(bzs
, 0, 0);
2145 if (bzerror
!= BZ_OK
) {
2146 Util_CatchBZ2Error(bzerror
);
2152 Py_BEGIN_ALLOW_THREADS
2153 bzerror
= BZ2_bzDecompress(bzs
);
2154 Py_END_ALLOW_THREADS
2155 if (bzerror
== BZ_STREAM_END
) {
2157 } else if (bzerror
!= BZ_OK
) {
2158 BZ2_bzDecompressEnd(bzs
);
2159 Util_CatchBZ2Error(bzerror
);
2163 if (bzs
->avail_out
== 0) {
2164 bufsize
= Util_NewBufferSize(bufsize
);
2165 if (_PyString_Resize(&ret
, bufsize
) < 0) {
2166 BZ2_bzDecompressEnd(bzs
);
2170 bzs
->next_out
= BUF(ret
) + BZS_TOTAL_OUT(bzs
);
2171 bzs
->avail_out
= bufsize
- (bzs
->next_out
- BUF(ret
));
2172 } else if (bzs
->avail_in
== 0) {
2173 BZ2_bzDecompressEnd(bzs
);
2174 PyErr_SetString(PyExc_ValueError
,
2175 "couldn't find end of stream");
2181 if (bzs
->avail_out
!= 0)
2182 _PyString_Resize(&ret
, (Py_ssize_t
)BZS_TOTAL_OUT(bzs
));
2183 BZ2_bzDecompressEnd(bzs
);
2188 static PyMethodDef bz2_methods
[] = {
2189 {"compress", (PyCFunction
) bz2_compress
, METH_VARARGS
|METH_KEYWORDS
,
2190 bz2_compress__doc__
},
2191 {"decompress", (PyCFunction
) bz2_decompress
, METH_VARARGS
,
2192 bz2_decompress__doc__
},
2193 {NULL
, NULL
} /* sentinel */
2196 /* ===================================================================== */
2197 /* Initialization function. */
2199 PyDoc_STRVAR(bz2__doc__
,
2200 "The python bz2 module provides a comprehensive interface for\n\
2201 the bz2 compression library. It implements a complete file\n\
2202 interface, one shot (de)compression functions, and types for\n\
2203 sequential (de)compression.\n\
2211 BZ2File_Type
.ob_type
= &PyType_Type
;
2212 BZ2Comp_Type
.ob_type
= &PyType_Type
;
2213 BZ2Decomp_Type
.ob_type
= &PyType_Type
;
2215 m
= Py_InitModule3("bz2", bz2_methods
, bz2__doc__
);
2219 PyModule_AddObject(m
, "__author__", PyString_FromString(__author__
));
2221 Py_INCREF(&BZ2File_Type
);
2222 PyModule_AddObject(m
, "BZ2File", (PyObject
*)&BZ2File_Type
);
2224 Py_INCREF(&BZ2Comp_Type
);
2225 PyModule_AddObject(m
, "BZ2Compressor", (PyObject
*)&BZ2Comp_Type
);
2227 Py_INCREF(&BZ2Decomp_Type
);
2228 PyModule_AddObject(m
, "BZ2Decompressor", (PyObject
*)&BZ2Decomp_Type
);