Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | python-bz2 - python bz2 library interface |
| 4 | |
| 5 | Copyright (c) 2002 Gustavo Niemeyer <niemeyer@conectiva.com> |
| 6 | Copyright (c) 2002 Python Software Foundation; All Rights Reserved |
| 7 | |
| 8 | */ |
| 9 | |
Martin v. Löwis | e17af7b | 2002-11-23 09:16:19 +0000 | [diff] [blame] | 10 | #include "Python.h" |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 11 | #include <stdio.h> |
| 12 | #include <bzlib.h> |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 13 | #include "structmember.h" |
| 14 | |
| 15 | #ifdef WITH_THREAD |
| 16 | #include "pythread.h" |
| 17 | #endif |
| 18 | |
| 19 | static char __author__[] = |
| 20 | "The bz2 python module was written by:\n\ |
| 21 | \n\ |
| 22 | Gustavo Niemeyer <niemeyer@conectiva.com>\n\ |
| 23 | "; |
| 24 | |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 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; |
| 33 | #else |
| 34 | #error "Large file support, but neither off_t nor fpos_t is large enough." |
| 35 | #endif |
| 36 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 37 | #define BUF(v) PyString_AS_STRING(v) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 38 | |
| 39 | #define MODE_CLOSED 0 |
| 40 | #define MODE_READ 1 |
| 41 | #define MODE_READ_EOF 2 |
| 42 | #define MODE_WRITE 3 |
| 43 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 44 | #define BZ2FileObject_Check(v) (Py_Type(v) == &BZ2File_Type) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 45 | |
Gustavo Niemeyer | 7628f1f | 2003-04-27 06:25:24 +0000 | [diff] [blame] | 46 | |
| 47 | #ifdef BZ_CONFIG_ERROR |
| 48 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 49 | #if SIZEOF_LONG >= 8 |
| 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) \ |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 54 | (((PY_LONG_LONG)bzs->total_out_hi32 << 32) + bzs->total_out_lo32) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 55 | #else |
| 56 | #define BZS_TOTAL_OUT(bzs) \ |
Neal Norwitz | 20bad74 | 2006-01-17 05:27:39 +0000 | [diff] [blame] | 57 | bzs->total_out_lo32 |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 58 | #endif |
| 59 | |
Gustavo Niemeyer | 7628f1f | 2003-04-27 06:25:24 +0000 | [diff] [blame] | 60 | #else /* ! BZ_CONFIG_ERROR */ |
| 61 | |
| 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 |
| 74 | |
| 75 | #define BZS_TOTAL_OUT(bzs) bzs->total_out |
| 76 | |
| 77 | #endif /* ! BZ_CONFIG_ERROR */ |
| 78 | |
| 79 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 80 | #ifdef WITH_THREAD |
| 81 | #define ACQUIRE_LOCK(obj) PyThread_acquire_lock(obj->lock, 1) |
| 82 | #define RELEASE_LOCK(obj) PyThread_release_lock(obj->lock) |
| 83 | #else |
| 84 | #define ACQUIRE_LOCK(obj) |
| 85 | #define RELEASE_LOCK(obj) |
| 86 | #endif |
| 87 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 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 */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 93 | |
| 94 | /* ===================================================================== */ |
| 95 | /* Structure definitions. */ |
| 96 | |
| 97 | typedef struct { |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 98 | PyObject_HEAD |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 99 | FILE *rawfp; |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 100 | |
| 101 | char* f_buf; /* Allocated readahead buffer */ |
| 102 | char* f_bufend; /* Points after last occupied position */ |
| 103 | char* f_bufptr; /* Current buffer position */ |
| 104 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 105 | BZFILE *fp; |
| 106 | int mode; |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 107 | Py_off_t pos; |
| 108 | Py_off_t size; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 109 | #ifdef WITH_THREAD |
| 110 | PyThread_type_lock lock; |
| 111 | #endif |
| 112 | } BZ2FileObject; |
| 113 | |
| 114 | typedef struct { |
| 115 | PyObject_HEAD |
| 116 | bz_stream bzs; |
| 117 | int running; |
| 118 | #ifdef WITH_THREAD |
| 119 | PyThread_type_lock lock; |
| 120 | #endif |
| 121 | } BZ2CompObject; |
| 122 | |
| 123 | typedef struct { |
| 124 | PyObject_HEAD |
| 125 | bz_stream bzs; |
| 126 | int running; |
| 127 | PyObject *unused_data; |
| 128 | #ifdef WITH_THREAD |
| 129 | PyThread_type_lock lock; |
| 130 | #endif |
| 131 | } BZ2DecompObject; |
| 132 | |
| 133 | /* ===================================================================== */ |
| 134 | /* Utility functions. */ |
| 135 | |
| 136 | static int |
| 137 | Util_CatchBZ2Error(int bzerror) |
| 138 | { |
| 139 | int ret = 0; |
| 140 | switch(bzerror) { |
| 141 | case BZ_OK: |
| 142 | case BZ_STREAM_END: |
| 143 | break; |
| 144 | |
Gustavo Niemeyer | 7628f1f | 2003-04-27 06:25:24 +0000 | [diff] [blame] | 145 | #ifdef BZ_CONFIG_ERROR |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 146 | case BZ_CONFIG_ERROR: |
| 147 | PyErr_SetString(PyExc_SystemError, |
| 148 | "the bz2 library was not compiled " |
| 149 | "correctly"); |
| 150 | ret = 1; |
| 151 | break; |
Gustavo Niemeyer | 7628f1f | 2003-04-27 06:25:24 +0000 | [diff] [blame] | 152 | #endif |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 153 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 154 | case BZ_PARAM_ERROR: |
| 155 | PyErr_SetString(PyExc_ValueError, |
| 156 | "the bz2 library has received wrong " |
| 157 | "parameters"); |
| 158 | ret = 1; |
| 159 | break; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 160 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 161 | case BZ_MEM_ERROR: |
| 162 | PyErr_NoMemory(); |
| 163 | ret = 1; |
| 164 | break; |
| 165 | |
| 166 | case BZ_DATA_ERROR: |
| 167 | case BZ_DATA_ERROR_MAGIC: |
| 168 | PyErr_SetString(PyExc_IOError, "invalid data stream"); |
| 169 | ret = 1; |
| 170 | break; |
| 171 | |
| 172 | case BZ_IO_ERROR: |
| 173 | PyErr_SetString(PyExc_IOError, "unknown IO error"); |
| 174 | ret = 1; |
| 175 | break; |
| 176 | |
| 177 | case BZ_UNEXPECTED_EOF: |
| 178 | PyErr_SetString(PyExc_EOFError, |
| 179 | "compressed file ended before the " |
| 180 | "logical end-of-stream was detected"); |
| 181 | ret = 1; |
| 182 | break; |
| 183 | |
| 184 | case BZ_SEQUENCE_ERROR: |
| 185 | PyErr_SetString(PyExc_RuntimeError, |
| 186 | "wrong sequence of bz2 library " |
| 187 | "commands used"); |
| 188 | ret = 1; |
| 189 | break; |
| 190 | } |
| 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | #if BUFSIZ < 8192 |
| 195 | #define SMALLCHUNK 8192 |
| 196 | #else |
| 197 | #define SMALLCHUNK BUFSIZ |
| 198 | #endif |
| 199 | |
| 200 | #if SIZEOF_INT < 4 |
| 201 | #define BIGCHUNK (512 * 32) |
| 202 | #else |
| 203 | #define BIGCHUNK (512 * 1024) |
| 204 | #endif |
| 205 | |
| 206 | /* This is a hacked version of Python's fileobject.c:new_buffersize(). */ |
| 207 | static size_t |
| 208 | Util_NewBufferSize(size_t currentsize) |
| 209 | { |
| 210 | if (currentsize > SMALLCHUNK) { |
| 211 | /* Keep doubling until we reach BIGCHUNK; |
| 212 | then keep adding BIGCHUNK. */ |
| 213 | if (currentsize <= BIGCHUNK) |
| 214 | return currentsize + currentsize; |
| 215 | else |
| 216 | return currentsize + BIGCHUNK; |
| 217 | } |
| 218 | return currentsize + SMALLCHUNK; |
| 219 | } |
| 220 | |
| 221 | /* This is a hacked version of Python's fileobject.c:get_line(). */ |
| 222 | static PyObject * |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 223 | Util_GetLine(BZ2FileObject *f, int n) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 224 | { |
| 225 | char c; |
| 226 | char *buf, *end; |
| 227 | size_t total_v_size; /* total # of slots in buffer */ |
| 228 | size_t used_v_size; /* # used slots in buffer */ |
| 229 | size_t increment; /* amount to increment the buffer */ |
| 230 | PyObject *v; |
| 231 | int bzerror; |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 232 | int bytes_read; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 233 | |
| 234 | total_v_size = n > 0 ? n : 100; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 235 | v = PyString_FromStringAndSize((char *)NULL, total_v_size); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 236 | if (v == NULL) |
| 237 | return NULL; |
| 238 | |
| 239 | buf = BUF(v); |
| 240 | end = buf + total_v_size; |
| 241 | |
| 242 | for (;;) { |
| 243 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 244 | do { |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 245 | bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1); |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 246 | f->pos++; |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 247 | if (bytes_read == 0) |
| 248 | break; |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 249 | *buf++ = c; |
| 250 | } while (bzerror == BZ_OK && c != '\n' && buf != end); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 251 | Py_END_ALLOW_THREADS |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 252 | if (bzerror == BZ_STREAM_END) { |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 253 | f->size = f->pos; |
| 254 | f->mode = MODE_READ_EOF; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 255 | break; |
| 256 | } else if (bzerror != BZ_OK) { |
| 257 | Util_CatchBZ2Error(bzerror); |
| 258 | Py_DECREF(v); |
| 259 | return NULL; |
| 260 | } |
| 261 | if (c == '\n') |
| 262 | break; |
| 263 | /* Must be because buf == end */ |
| 264 | if (n > 0) |
| 265 | break; |
| 266 | used_v_size = total_v_size; |
| 267 | increment = total_v_size >> 2; /* mild exponential growth */ |
| 268 | total_v_size += increment; |
| 269 | if (total_v_size > INT_MAX) { |
| 270 | PyErr_SetString(PyExc_OverflowError, |
| 271 | "line is longer than a Python string can hold"); |
| 272 | Py_DECREF(v); |
| 273 | return NULL; |
| 274 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 275 | if (_PyString_Resize(&v, total_v_size) < 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 276 | return NULL; |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 277 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 278 | buf = BUF(v) + used_v_size; |
| 279 | end = BUF(v) + total_v_size; |
| 280 | } |
| 281 | |
| 282 | used_v_size = buf - BUF(v); |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 283 | if (used_v_size != total_v_size) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 284 | if (_PyString_Resize(&v, used_v_size) < 0) { |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 285 | v = NULL; |
| 286 | } |
| 287 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 288 | return v; |
| 289 | } |
| 290 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 291 | /* This is a hacked version of Python's fileobject.c:drop_readahead(). */ |
| 292 | static void |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 293 | Util_DropReadAhead(BZ2FileObject *f) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 294 | { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 295 | if (f->f_buf != NULL) { |
| 296 | PyMem_Free(f->f_buf); |
| 297 | f->f_buf = NULL; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | /* This is a hacked version of Python's fileobject.c:readahead(). */ |
| 302 | static int |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 303 | Util_ReadAhead(BZ2FileObject *f, int bufsize) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 304 | { |
| 305 | int chunksize; |
| 306 | int bzerror; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 307 | |
| 308 | if (f->f_buf != NULL) { |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 309 | if((f->f_bufend - f->f_bufptr) >= 1) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 310 | return 0; |
| 311 | else |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 312 | Util_DropReadAhead(f); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 313 | } |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 314 | if (f->mode == MODE_READ_EOF) { |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 315 | f->f_bufptr = f->f_buf; |
| 316 | f->f_bufend = f->f_buf; |
| 317 | return 0; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 318 | } |
| 319 | if ((f->f_buf = PyMem_Malloc(bufsize)) == NULL) { |
| 320 | return -1; |
| 321 | } |
| 322 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 323 | chunksize = BZ2_bzRead(&bzerror, f->fp, f->f_buf, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 324 | Py_END_ALLOW_THREADS |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 325 | f->pos += chunksize; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 326 | if (bzerror == BZ_STREAM_END) { |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 327 | f->size = f->pos; |
| 328 | f->mode = MODE_READ_EOF; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 329 | } else if (bzerror != BZ_OK) { |
| 330 | Util_CatchBZ2Error(bzerror); |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 331 | Util_DropReadAhead(f); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 332 | return -1; |
| 333 | } |
| 334 | f->f_bufptr = f->f_buf; |
| 335 | f->f_bufend = f->f_buf + chunksize; |
| 336 | return 0; |
| 337 | } |
| 338 | |
| 339 | /* This is a hacked version of Python's |
| 340 | * fileobject.c:readahead_get_line_skip(). */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 341 | static PyStringObject * |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 342 | Util_ReadAheadGetLineSkip(BZ2FileObject *f, int skip, int bufsize) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 343 | { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 344 | PyStringObject* s; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 345 | char *bufptr; |
| 346 | char *buf; |
| 347 | int len; |
| 348 | |
| 349 | if (f->f_buf == NULL) |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 350 | if (Util_ReadAhead(f, bufsize) < 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 351 | return NULL; |
| 352 | |
| 353 | len = f->f_bufend - f->f_bufptr; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 354 | if (len == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 355 | return (PyStringObject *) |
| 356 | PyString_FromStringAndSize(NULL, skip); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 357 | bufptr = memchr(f->f_bufptr, '\n', len); |
| 358 | if (bufptr != NULL) { |
| 359 | bufptr++; /* Count the '\n' */ |
| 360 | len = bufptr - f->f_bufptr; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 361 | s = (PyStringObject *) |
| 362 | PyString_FromStringAndSize(NULL, skip+len); |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 363 | if (s == NULL) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 364 | return NULL; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 365 | memcpy(PyString_AS_STRING(s)+skip, f->f_bufptr, len); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 366 | f->f_bufptr = bufptr; |
| 367 | if (bufptr == f->f_bufend) |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 368 | Util_DropReadAhead(f); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 369 | } else { |
| 370 | bufptr = f->f_bufptr; |
| 371 | buf = f->f_buf; |
| 372 | f->f_buf = NULL; /* Force new readahead buffer */ |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 373 | s = Util_ReadAheadGetLineSkip(f, skip+len, |
| 374 | bufsize + (bufsize>>2)); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 375 | if (s == NULL) { |
| 376 | PyMem_Free(buf); |
| 377 | return NULL; |
| 378 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 379 | memcpy(PyString_AS_STRING(s)+skip, bufptr, len); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 380 | PyMem_Free(buf); |
| 381 | } |
| 382 | return s; |
| 383 | } |
| 384 | |
| 385 | /* ===================================================================== */ |
| 386 | /* Methods of BZ2File. */ |
| 387 | |
| 388 | PyDoc_STRVAR(BZ2File_read__doc__, |
| 389 | "read([size]) -> string\n\ |
| 390 | \n\ |
| 391 | Read at most size uncompressed bytes, returned as a string. If the size\n\ |
| 392 | argument is negative or omitted, read until EOF is reached.\n\ |
| 393 | "); |
| 394 | |
| 395 | /* This is a hacked version of Python's fileobject.c:file_read(). */ |
| 396 | static PyObject * |
| 397 | BZ2File_read(BZ2FileObject *self, PyObject *args) |
| 398 | { |
| 399 | long bytesrequested = -1; |
| 400 | size_t bytesread, buffersize, chunksize; |
| 401 | int bzerror; |
| 402 | PyObject *ret = NULL; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 403 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 404 | if (!PyArg_ParseTuple(args, "|l:read", &bytesrequested)) |
| 405 | return NULL; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 406 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 407 | ACQUIRE_LOCK(self); |
| 408 | switch (self->mode) { |
| 409 | case MODE_READ: |
| 410 | break; |
| 411 | case MODE_READ_EOF: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 412 | ret = PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 413 | goto cleanup; |
| 414 | case MODE_CLOSED: |
| 415 | PyErr_SetString(PyExc_ValueError, |
| 416 | "I/O operation on closed file"); |
| 417 | goto cleanup; |
| 418 | default: |
| 419 | PyErr_SetString(PyExc_IOError, |
| 420 | "file is not ready for reading"); |
| 421 | goto cleanup; |
| 422 | } |
| 423 | |
| 424 | if (bytesrequested < 0) |
| 425 | buffersize = Util_NewBufferSize((size_t)0); |
| 426 | else |
| 427 | buffersize = bytesrequested; |
| 428 | if (buffersize > INT_MAX) { |
| 429 | PyErr_SetString(PyExc_OverflowError, |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 430 | "requested number of bytes is " |
| 431 | "more than a Python string can hold"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 432 | goto cleanup; |
| 433 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 434 | ret = PyString_FromStringAndSize((char *)NULL, buffersize); |
Guido van Rossum | 75c26bc | 2007-08-07 23:29:20 +0000 | [diff] [blame] | 435 | if (ret == NULL || buffersize == 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 436 | goto cleanup; |
| 437 | bytesread = 0; |
| 438 | |
| 439 | for (;;) { |
| 440 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 441 | chunksize = BZ2_bzRead(&bzerror, self->fp, |
| 442 | BUF(ret)+bytesread, |
| 443 | buffersize-bytesread); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 444 | self->pos += chunksize; |
| 445 | Py_END_ALLOW_THREADS |
| 446 | bytesread += chunksize; |
| 447 | if (bzerror == BZ_STREAM_END) { |
| 448 | self->size = self->pos; |
| 449 | self->mode = MODE_READ_EOF; |
| 450 | break; |
| 451 | } else if (bzerror != BZ_OK) { |
| 452 | Util_CatchBZ2Error(bzerror); |
| 453 | Py_DECREF(ret); |
| 454 | ret = NULL; |
| 455 | goto cleanup; |
| 456 | } |
| 457 | if (bytesrequested < 0) { |
| 458 | buffersize = Util_NewBufferSize(buffersize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 459 | if (_PyString_Resize(&ret, buffersize) < 0) { |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 460 | ret = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 461 | goto cleanup; |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 462 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 463 | } else { |
| 464 | break; |
| 465 | } |
| 466 | } |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 467 | if (bytesread != buffersize) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 468 | if (_PyString_Resize(&ret, bytesread) < 0) { |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 469 | ret = NULL; |
| 470 | } |
| 471 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 472 | |
| 473 | cleanup: |
| 474 | RELEASE_LOCK(self); |
| 475 | return ret; |
| 476 | } |
| 477 | |
| 478 | PyDoc_STRVAR(BZ2File_readline__doc__, |
| 479 | "readline([size]) -> string\n\ |
| 480 | \n\ |
| 481 | Return the next line from the file, as a string, retaining newline.\n\ |
| 482 | A non-negative size argument will limit the maximum number of bytes to\n\ |
| 483 | return (an incomplete line may be returned then). Return an empty\n\ |
| 484 | string at EOF.\n\ |
| 485 | "); |
| 486 | |
| 487 | static PyObject * |
| 488 | BZ2File_readline(BZ2FileObject *self, PyObject *args) |
| 489 | { |
| 490 | PyObject *ret = NULL; |
| 491 | int sizehint = -1; |
| 492 | |
| 493 | if (!PyArg_ParseTuple(args, "|i:readline", &sizehint)) |
| 494 | return NULL; |
| 495 | |
| 496 | ACQUIRE_LOCK(self); |
| 497 | switch (self->mode) { |
| 498 | case MODE_READ: |
| 499 | break; |
| 500 | case MODE_READ_EOF: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 501 | ret = PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 502 | goto cleanup; |
| 503 | case MODE_CLOSED: |
| 504 | PyErr_SetString(PyExc_ValueError, |
| 505 | "I/O operation on closed file"); |
| 506 | goto cleanup; |
| 507 | default: |
| 508 | PyErr_SetString(PyExc_IOError, |
| 509 | "file is not ready for reading"); |
| 510 | goto cleanup; |
| 511 | } |
| 512 | |
| 513 | if (sizehint == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 514 | ret = PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 515 | else |
| 516 | ret = Util_GetLine(self, (sizehint < 0) ? 0 : sizehint); |
| 517 | |
| 518 | cleanup: |
| 519 | RELEASE_LOCK(self); |
| 520 | return ret; |
| 521 | } |
| 522 | |
| 523 | PyDoc_STRVAR(BZ2File_readlines__doc__, |
| 524 | "readlines([size]) -> list\n\ |
| 525 | \n\ |
| 526 | Call readline() repeatedly and return a list of lines read.\n\ |
| 527 | The optional size argument, if given, is an approximate bound on the\n\ |
| 528 | total number of bytes in the lines returned.\n\ |
| 529 | "); |
| 530 | |
| 531 | /* This is a hacked version of Python's fileobject.c:file_readlines(). */ |
| 532 | static PyObject * |
| 533 | BZ2File_readlines(BZ2FileObject *self, PyObject *args) |
| 534 | { |
| 535 | long sizehint = 0; |
| 536 | PyObject *list = NULL; |
| 537 | PyObject *line; |
| 538 | char small_buffer[SMALLCHUNK]; |
| 539 | char *buffer = small_buffer; |
| 540 | size_t buffersize = SMALLCHUNK; |
| 541 | PyObject *big_buffer = NULL; |
| 542 | size_t nfilled = 0; |
| 543 | size_t nread; |
| 544 | size_t totalread = 0; |
| 545 | char *p, *q, *end; |
| 546 | int err; |
| 547 | int shortread = 0; |
| 548 | int bzerror; |
| 549 | |
| 550 | if (!PyArg_ParseTuple(args, "|l:readlines", &sizehint)) |
| 551 | return NULL; |
| 552 | |
| 553 | ACQUIRE_LOCK(self); |
| 554 | switch (self->mode) { |
| 555 | case MODE_READ: |
| 556 | break; |
| 557 | case MODE_READ_EOF: |
| 558 | list = PyList_New(0); |
| 559 | goto cleanup; |
| 560 | case MODE_CLOSED: |
| 561 | PyErr_SetString(PyExc_ValueError, |
| 562 | "I/O operation on closed file"); |
| 563 | goto cleanup; |
| 564 | default: |
| 565 | PyErr_SetString(PyExc_IOError, |
| 566 | "file is not ready for reading"); |
| 567 | goto cleanup; |
| 568 | } |
| 569 | |
| 570 | if ((list = PyList_New(0)) == NULL) |
| 571 | goto cleanup; |
| 572 | |
| 573 | for (;;) { |
| 574 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 575 | nread = BZ2_bzRead(&bzerror, self->fp, |
| 576 | buffer+nfilled, buffersize-nfilled); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 577 | self->pos += nread; |
| 578 | Py_END_ALLOW_THREADS |
| 579 | if (bzerror == BZ_STREAM_END) { |
| 580 | self->size = self->pos; |
| 581 | self->mode = MODE_READ_EOF; |
| 582 | if (nread == 0) { |
| 583 | sizehint = 0; |
| 584 | break; |
| 585 | } |
| 586 | shortread = 1; |
| 587 | } else if (bzerror != BZ_OK) { |
| 588 | Util_CatchBZ2Error(bzerror); |
| 589 | error: |
| 590 | Py_DECREF(list); |
| 591 | list = NULL; |
| 592 | goto cleanup; |
| 593 | } |
| 594 | totalread += nread; |
| 595 | p = memchr(buffer+nfilled, '\n', nread); |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 596 | if (!shortread && p == NULL) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 597 | /* Need a larger buffer to fit this line */ |
| 598 | nfilled += nread; |
| 599 | buffersize *= 2; |
| 600 | if (buffersize > INT_MAX) { |
| 601 | PyErr_SetString(PyExc_OverflowError, |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 602 | "line is longer than a Python string can hold"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 603 | goto error; |
| 604 | } |
| 605 | if (big_buffer == NULL) { |
| 606 | /* Create the big buffer */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 607 | big_buffer = PyString_FromStringAndSize( |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 608 | NULL, buffersize); |
| 609 | if (big_buffer == NULL) |
| 610 | goto error; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 611 | buffer = PyString_AS_STRING(big_buffer); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 612 | memcpy(buffer, small_buffer, nfilled); |
| 613 | } |
| 614 | else { |
| 615 | /* Grow the big buffer */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 616 | if (_PyString_Resize(&big_buffer, buffersize) < 0){ |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 617 | big_buffer = NULL; |
| 618 | goto error; |
| 619 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 620 | buffer = PyString_AS_STRING(big_buffer); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 621 | } |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 622 | continue; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 623 | } |
| 624 | end = buffer+nfilled+nread; |
| 625 | q = buffer; |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 626 | while (p != NULL) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 627 | /* Process complete lines */ |
| 628 | p++; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 629 | line = PyString_FromStringAndSize(q, p-q); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 630 | if (line == NULL) |
| 631 | goto error; |
| 632 | err = PyList_Append(list, line); |
| 633 | Py_DECREF(line); |
| 634 | if (err != 0) |
| 635 | goto error; |
| 636 | q = p; |
| 637 | p = memchr(q, '\n', end-q); |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 638 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 639 | /* Move the remaining incomplete line to the start */ |
| 640 | nfilled = end-q; |
| 641 | memmove(buffer, q, nfilled); |
| 642 | if (sizehint > 0) |
| 643 | if (totalread >= (size_t)sizehint) |
| 644 | break; |
| 645 | if (shortread) { |
| 646 | sizehint = 0; |
| 647 | break; |
| 648 | } |
| 649 | } |
| 650 | if (nfilled != 0) { |
| 651 | /* Partial last line */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 652 | line = PyString_FromStringAndSize(buffer, nfilled); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 653 | if (line == NULL) |
| 654 | goto error; |
| 655 | if (sizehint > 0) { |
| 656 | /* Need to complete the last line */ |
| 657 | PyObject *rest = Util_GetLine(self, 0); |
| 658 | if (rest == NULL) { |
| 659 | Py_DECREF(line); |
| 660 | goto error; |
| 661 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 662 | PyString_Concat(&line, rest); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 663 | Py_DECREF(rest); |
| 664 | if (line == NULL) |
| 665 | goto error; |
| 666 | } |
| 667 | err = PyList_Append(list, line); |
| 668 | Py_DECREF(line); |
| 669 | if (err != 0) |
| 670 | goto error; |
| 671 | } |
| 672 | |
| 673 | cleanup: |
| 674 | RELEASE_LOCK(self); |
| 675 | if (big_buffer) { |
| 676 | Py_DECREF(big_buffer); |
| 677 | } |
| 678 | return list; |
| 679 | } |
| 680 | |
| 681 | PyDoc_STRVAR(BZ2File_write__doc__, |
| 682 | "write(data) -> None\n\ |
| 683 | \n\ |
| 684 | Write the 'data' string to file. Note that due to buffering, close() may\n\ |
| 685 | be needed before the file on disk reflects the data written.\n\ |
| 686 | "); |
| 687 | |
| 688 | /* This is a hacked version of Python's fileobject.c:file_write(). */ |
| 689 | static PyObject * |
| 690 | BZ2File_write(BZ2FileObject *self, PyObject *args) |
| 691 | { |
| 692 | PyObject *ret = NULL; |
| 693 | char *buf; |
| 694 | int len; |
| 695 | int bzerror; |
| 696 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 697 | if (!PyArg_ParseTuple(args, "y#:write", &buf, &len)) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 698 | return NULL; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 699 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 700 | ACQUIRE_LOCK(self); |
| 701 | switch (self->mode) { |
| 702 | case MODE_WRITE: |
| 703 | break; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 704 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 705 | case MODE_CLOSED: |
| 706 | PyErr_SetString(PyExc_ValueError, |
| 707 | "I/O operation on closed file"); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 708 | goto cleanup; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 709 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 710 | default: |
| 711 | PyErr_SetString(PyExc_IOError, |
| 712 | "file is not ready for writing"); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 713 | goto cleanup; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 716 | Py_BEGIN_ALLOW_THREADS |
| 717 | BZ2_bzWrite (&bzerror, self->fp, buf, len); |
| 718 | self->pos += len; |
| 719 | Py_END_ALLOW_THREADS |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 720 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 721 | if (bzerror != BZ_OK) { |
| 722 | Util_CatchBZ2Error(bzerror); |
| 723 | goto cleanup; |
| 724 | } |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 725 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 726 | Py_INCREF(Py_None); |
| 727 | ret = Py_None; |
| 728 | |
| 729 | cleanup: |
| 730 | RELEASE_LOCK(self); |
| 731 | return ret; |
| 732 | } |
| 733 | |
| 734 | PyDoc_STRVAR(BZ2File_writelines__doc__, |
| 735 | "writelines(sequence_of_strings) -> None\n\ |
| 736 | \n\ |
| 737 | Write the sequence of strings to the file. Note that newlines are not\n\ |
| 738 | added. The sequence can be any iterable object producing strings. This is\n\ |
| 739 | equivalent to calling write() for each string.\n\ |
| 740 | "); |
| 741 | |
| 742 | /* This is a hacked version of Python's fileobject.c:file_writelines(). */ |
| 743 | static PyObject * |
| 744 | BZ2File_writelines(BZ2FileObject *self, PyObject *seq) |
| 745 | { |
| 746 | #define CHUNKSIZE 1000 |
| 747 | PyObject *list = NULL; |
| 748 | PyObject *iter = NULL; |
| 749 | PyObject *ret = NULL; |
| 750 | PyObject *line; |
| 751 | int i, j, index, len, islist; |
| 752 | int bzerror; |
| 753 | |
| 754 | ACQUIRE_LOCK(self); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 755 | switch (self->mode) { |
| 756 | case MODE_WRITE: |
| 757 | break; |
| 758 | |
| 759 | case MODE_CLOSED: |
| 760 | PyErr_SetString(PyExc_ValueError, |
| 761 | "I/O operation on closed file"); |
| 762 | goto error; |
| 763 | |
| 764 | default: |
| 765 | PyErr_SetString(PyExc_IOError, |
| 766 | "file is not ready for writing"); |
| 767 | goto error; |
| 768 | } |
| 769 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 770 | islist = PyList_Check(seq); |
| 771 | if (!islist) { |
| 772 | iter = PyObject_GetIter(seq); |
| 773 | if (iter == NULL) { |
| 774 | PyErr_SetString(PyExc_TypeError, |
| 775 | "writelines() requires an iterable argument"); |
| 776 | goto error; |
| 777 | } |
| 778 | list = PyList_New(CHUNKSIZE); |
| 779 | if (list == NULL) |
| 780 | goto error; |
| 781 | } |
| 782 | |
| 783 | /* Strategy: slurp CHUNKSIZE lines into a private list, |
| 784 | checking that they are all strings, then write that list |
| 785 | without holding the interpreter lock, then come back for more. */ |
| 786 | for (index = 0; ; index += CHUNKSIZE) { |
| 787 | if (islist) { |
| 788 | Py_XDECREF(list); |
| 789 | list = PyList_GetSlice(seq, index, index+CHUNKSIZE); |
| 790 | if (list == NULL) |
| 791 | goto error; |
| 792 | j = PyList_GET_SIZE(list); |
| 793 | } |
| 794 | else { |
| 795 | for (j = 0; j < CHUNKSIZE; j++) { |
| 796 | line = PyIter_Next(iter); |
| 797 | if (line == NULL) { |
| 798 | if (PyErr_Occurred()) |
| 799 | goto error; |
| 800 | break; |
| 801 | } |
| 802 | PyList_SetItem(list, j, line); |
| 803 | } |
| 804 | } |
| 805 | if (j == 0) |
| 806 | break; |
| 807 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 808 | /* Check that all entries are indeed byte strings. If not, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 809 | apply the same rules as for file.write() and |
| 810 | convert the rets to strings. This is slow, but |
| 811 | seems to be the only way since all conversion APIs |
| 812 | could potentially execute Python code. */ |
| 813 | for (i = 0; i < j; i++) { |
| 814 | PyObject *v = PyList_GET_ITEM(list, i); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 815 | if (!PyString_Check(v)) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 816 | const char *buffer; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 817 | Py_ssize_t len; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 818 | if (PyObject_AsCharBuffer(v, &buffer, &len)) { |
| 819 | PyErr_SetString(PyExc_TypeError, |
| 820 | "writelines() " |
| 821 | "argument must be " |
| 822 | "a sequence of " |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 823 | "bytes objects"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 824 | goto error; |
| 825 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 826 | line = PyString_FromStringAndSize(buffer, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 827 | len); |
| 828 | if (line == NULL) |
| 829 | goto error; |
| 830 | Py_DECREF(v); |
| 831 | PyList_SET_ITEM(list, i, line); |
| 832 | } |
| 833 | } |
| 834 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 835 | /* Since we are releasing the global lock, the |
| 836 | following code may *not* execute Python code. */ |
| 837 | Py_BEGIN_ALLOW_THREADS |
| 838 | for (i = 0; i < j; i++) { |
| 839 | line = PyList_GET_ITEM(list, i); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 840 | len = PyString_GET_SIZE(line); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 841 | BZ2_bzWrite (&bzerror, self->fp, |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 842 | PyString_AS_STRING(line), len); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 843 | if (bzerror != BZ_OK) { |
| 844 | Py_BLOCK_THREADS |
| 845 | Util_CatchBZ2Error(bzerror); |
| 846 | goto error; |
| 847 | } |
| 848 | } |
| 849 | Py_END_ALLOW_THREADS |
| 850 | |
| 851 | if (j < CHUNKSIZE) |
| 852 | break; |
| 853 | } |
| 854 | |
| 855 | Py_INCREF(Py_None); |
| 856 | ret = Py_None; |
| 857 | |
| 858 | error: |
| 859 | RELEASE_LOCK(self); |
| 860 | Py_XDECREF(list); |
| 861 | Py_XDECREF(iter); |
| 862 | return ret; |
| 863 | #undef CHUNKSIZE |
| 864 | } |
| 865 | |
| 866 | PyDoc_STRVAR(BZ2File_seek__doc__, |
| 867 | "seek(offset [, whence]) -> None\n\ |
| 868 | \n\ |
| 869 | Move to new file position. Argument offset is a byte count. Optional\n\ |
| 870 | argument whence defaults to 0 (offset from start of file, offset\n\ |
| 871 | should be >= 0); other values are 1 (move relative to current position,\n\ |
| 872 | positive or negative), and 2 (move relative to end of file, usually\n\ |
| 873 | negative, although many platforms allow seeking beyond the end of a file).\n\ |
| 874 | \n\ |
| 875 | Note that seeking of bz2 files is emulated, and depending on the parameters\n\ |
| 876 | the operation may be extremely slow.\n\ |
| 877 | "); |
| 878 | |
| 879 | static PyObject * |
| 880 | BZ2File_seek(BZ2FileObject *self, PyObject *args) |
| 881 | { |
| 882 | int where = 0; |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 883 | PyObject *offobj; |
| 884 | Py_off_t offset; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 885 | char small_buffer[SMALLCHUNK]; |
| 886 | char *buffer = small_buffer; |
| 887 | size_t buffersize = SMALLCHUNK; |
Thomas Wouters | 902d6eb | 2007-01-09 23:18:33 +0000 | [diff] [blame] | 888 | Py_off_t bytesread = 0; |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 889 | size_t readsize; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 890 | int chunksize; |
| 891 | int bzerror; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 892 | PyObject *ret = NULL; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 893 | |
Georg Brandl | 33a5f2a | 2005-08-21 14:16:04 +0000 | [diff] [blame] | 894 | if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where)) |
| 895 | return NULL; |
| 896 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 897 | offset = PyInt_AsLong(offobj); |
| 898 | #else |
| 899 | offset = PyLong_Check(offobj) ? |
| 900 | PyLong_AsLongLong(offobj) : PyInt_AsLong(offobj); |
| 901 | #endif |
| 902 | if (PyErr_Occurred()) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 903 | return NULL; |
| 904 | |
| 905 | ACQUIRE_LOCK(self); |
| 906 | Util_DropReadAhead(self); |
| 907 | switch (self->mode) { |
| 908 | case MODE_READ: |
| 909 | case MODE_READ_EOF: |
| 910 | break; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 911 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 912 | case MODE_CLOSED: |
| 913 | PyErr_SetString(PyExc_ValueError, |
| 914 | "I/O operation on closed file"); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 915 | goto cleanup; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 916 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 917 | default: |
| 918 | PyErr_SetString(PyExc_IOError, |
| 919 | "seek works only while reading"); |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 920 | goto cleanup; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 921 | } |
| 922 | |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 923 | if (where == 2) { |
| 924 | if (self->size == -1) { |
| 925 | assert(self->mode != MODE_READ_EOF); |
| 926 | for (;;) { |
| 927 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 928 | chunksize = BZ2_bzRead(&bzerror, self->fp, |
| 929 | buffer, buffersize); |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 930 | self->pos += chunksize; |
| 931 | Py_END_ALLOW_THREADS |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 932 | |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 933 | bytesread += chunksize; |
| 934 | if (bzerror == BZ_STREAM_END) { |
| 935 | break; |
| 936 | } else if (bzerror != BZ_OK) { |
| 937 | Util_CatchBZ2Error(bzerror); |
| 938 | goto cleanup; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 939 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 940 | } |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 941 | self->mode = MODE_READ_EOF; |
| 942 | self->size = self->pos; |
| 943 | bytesread = 0; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 944 | } |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 945 | offset = self->size + offset; |
| 946 | } else if (where == 1) { |
| 947 | offset = self->pos + offset; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 950 | /* Before getting here, offset must be the absolute position the file |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 951 | * pointer should be set to. */ |
| 952 | |
| 953 | if (offset >= self->pos) { |
| 954 | /* we can move forward */ |
| 955 | offset -= self->pos; |
| 956 | } else { |
| 957 | /* we cannot move back, so rewind the stream */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 958 | BZ2_bzReadClose(&bzerror, self->fp); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 959 | if (bzerror != BZ_OK) { |
| 960 | Util_CatchBZ2Error(bzerror); |
| 961 | goto cleanup; |
| 962 | } |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 963 | rewind(self->rawfp); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 964 | self->pos = 0; |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 965 | self->fp = BZ2_bzReadOpen(&bzerror, self->rawfp, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 966 | 0, 0, NULL, 0); |
| 967 | if (bzerror != BZ_OK) { |
| 968 | Util_CatchBZ2Error(bzerror); |
| 969 | goto cleanup; |
| 970 | } |
| 971 | self->mode = MODE_READ; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Georg Brandl | 47fab92 | 2006-02-18 21:57:25 +0000 | [diff] [blame] | 974 | if (offset <= 0 || self->mode == MODE_READ_EOF) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 975 | goto exit; |
| 976 | |
| 977 | /* Before getting here, offset must be set to the number of bytes |
| 978 | * to walk forward. */ |
| 979 | for (;;) { |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 980 | if (offset-bytesread > buffersize) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 981 | readsize = buffersize; |
| 982 | else |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 983 | /* offset might be wider that readsize, but the result |
| 984 | * of the subtraction is bound by buffersize (see the |
| 985 | * condition above). buffersize is 8192. */ |
| 986 | readsize = (size_t)(offset-bytesread); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 987 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 988 | chunksize = BZ2_bzRead(&bzerror, self->fp, buffer, readsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 989 | self->pos += chunksize; |
| 990 | Py_END_ALLOW_THREADS |
| 991 | bytesread += chunksize; |
| 992 | if (bzerror == BZ_STREAM_END) { |
| 993 | self->size = self->pos; |
| 994 | self->mode = MODE_READ_EOF; |
| 995 | break; |
| 996 | } else if (bzerror != BZ_OK) { |
| 997 | Util_CatchBZ2Error(bzerror); |
| 998 | goto cleanup; |
| 999 | } |
| 1000 | if (bytesread == offset) |
| 1001 | break; |
| 1002 | } |
| 1003 | |
| 1004 | exit: |
| 1005 | Py_INCREF(Py_None); |
| 1006 | ret = Py_None; |
| 1007 | |
| 1008 | cleanup: |
| 1009 | RELEASE_LOCK(self); |
| 1010 | return ret; |
| 1011 | } |
| 1012 | |
| 1013 | PyDoc_STRVAR(BZ2File_tell__doc__, |
| 1014 | "tell() -> int\n\ |
| 1015 | \n\ |
| 1016 | Return the current file position, an integer (may be a long integer).\n\ |
| 1017 | "); |
| 1018 | |
| 1019 | static PyObject * |
| 1020 | BZ2File_tell(BZ2FileObject *self, PyObject *args) |
| 1021 | { |
| 1022 | PyObject *ret = NULL; |
| 1023 | |
| 1024 | if (self->mode == MODE_CLOSED) { |
| 1025 | PyErr_SetString(PyExc_ValueError, |
| 1026 | "I/O operation on closed file"); |
| 1027 | goto cleanup; |
| 1028 | } |
| 1029 | |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 1030 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1031 | ret = PyInt_FromLong(self->pos); |
Georg Brandl | a8bcecc | 2005-09-03 07:49:53 +0000 | [diff] [blame] | 1032 | #else |
| 1033 | ret = PyLong_FromLongLong(self->pos); |
| 1034 | #endif |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1035 | |
| 1036 | cleanup: |
| 1037 | return ret; |
| 1038 | } |
| 1039 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1040 | PyDoc_STRVAR(BZ2File_close__doc__, |
| 1041 | "close() -> None or (perhaps) an integer\n\ |
| 1042 | \n\ |
| 1043 | Close the file. Sets data attribute .closed to true. A closed file\n\ |
| 1044 | cannot be used for further I/O operations. close() may be called more\n\ |
| 1045 | than once without error.\n\ |
| 1046 | "); |
| 1047 | |
| 1048 | static PyObject * |
| 1049 | BZ2File_close(BZ2FileObject *self) |
| 1050 | { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1051 | PyObject *ret = NULL; |
| 1052 | int bzerror = BZ_OK; |
| 1053 | |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1054 | if (self->mode == MODE_CLOSED) { |
| 1055 | Py_RETURN_NONE; |
| 1056 | } |
| 1057 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1058 | ACQUIRE_LOCK(self); |
| 1059 | switch (self->mode) { |
| 1060 | case MODE_READ: |
| 1061 | case MODE_READ_EOF: |
| 1062 | BZ2_bzReadClose(&bzerror, self->fp); |
| 1063 | break; |
| 1064 | case MODE_WRITE: |
| 1065 | BZ2_bzWriteClose(&bzerror, self->fp, |
| 1066 | 0, NULL, NULL); |
| 1067 | break; |
| 1068 | } |
| 1069 | self->mode = MODE_CLOSED; |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1070 | fclose(self->rawfp); |
| 1071 | self->rawfp = NULL; |
| 1072 | if (bzerror == BZ_OK) { |
| 1073 | Py_INCREF(Py_None); |
| 1074 | ret = Py_None; |
| 1075 | } |
| 1076 | else { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1077 | Util_CatchBZ2Error(bzerror); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1080 | RELEASE_LOCK(self); |
| 1081 | return ret; |
| 1082 | } |
| 1083 | |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1084 | static PyObject *BZ2File_getiter(BZ2FileObject *self); |
| 1085 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1086 | static PyMethodDef BZ2File_methods[] = { |
| 1087 | {"read", (PyCFunction)BZ2File_read, METH_VARARGS, BZ2File_read__doc__}, |
| 1088 | {"readline", (PyCFunction)BZ2File_readline, METH_VARARGS, BZ2File_readline__doc__}, |
| 1089 | {"readlines", (PyCFunction)BZ2File_readlines, METH_VARARGS, BZ2File_readlines__doc__}, |
| 1090 | {"write", (PyCFunction)BZ2File_write, METH_VARARGS, BZ2File_write__doc__}, |
| 1091 | {"writelines", (PyCFunction)BZ2File_writelines, METH_O, BZ2File_writelines__doc__}, |
| 1092 | {"seek", (PyCFunction)BZ2File_seek, METH_VARARGS, BZ2File_seek__doc__}, |
| 1093 | {"tell", (PyCFunction)BZ2File_tell, METH_NOARGS, BZ2File_tell__doc__}, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1094 | {"close", (PyCFunction)BZ2File_close, METH_NOARGS, BZ2File_close__doc__}, |
| 1095 | {NULL, NULL} /* sentinel */ |
| 1096 | }; |
| 1097 | |
| 1098 | |
| 1099 | /* ===================================================================== */ |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1100 | /* Getters and setters of BZ2File. */ |
| 1101 | |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1102 | static PyObject * |
| 1103 | BZ2File_get_closed(BZ2FileObject *self, void *closure) |
| 1104 | { |
| 1105 | return PyInt_FromLong(self->mode == MODE_CLOSED); |
| 1106 | } |
| 1107 | |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1108 | static PyGetSetDef BZ2File_getset[] = { |
| 1109 | {"closed", (getter)BZ2File_get_closed, NULL, |
| 1110 | "True if the file is closed"}, |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1111 | {NULL} /* Sentinel */ |
| 1112 | }; |
| 1113 | |
| 1114 | |
| 1115 | /* ===================================================================== */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1116 | /* Slot definitions for BZ2File_Type. */ |
| 1117 | |
| 1118 | static int |
| 1119 | BZ2File_init(BZ2FileObject *self, PyObject *args, PyObject *kwargs) |
| 1120 | { |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 1121 | static char *kwlist[] = {"filename", "mode", "buffering", |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1122 | "compresslevel", 0}; |
| 1123 | char *name; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1124 | char *mode = "r"; |
| 1125 | int buffering = -1; |
| 1126 | int compresslevel = 9; |
| 1127 | int bzerror; |
| 1128 | int mode_char = 0; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1129 | |
| 1130 | self->size = -1; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 1131 | |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1132 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|sii:BZ2File", |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1133 | kwlist, &name, &mode, &buffering, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1134 | &compresslevel)) |
| 1135 | return -1; |
| 1136 | |
| 1137 | if (compresslevel < 1 || compresslevel > 9) { |
| 1138 | PyErr_SetString(PyExc_ValueError, |
| 1139 | "compresslevel must be between 1 and 9"); |
| 1140 | return -1; |
| 1141 | } |
| 1142 | |
| 1143 | for (;;) { |
| 1144 | int error = 0; |
| 1145 | switch (*mode) { |
| 1146 | case 'r': |
| 1147 | case 'w': |
| 1148 | if (mode_char) |
| 1149 | error = 1; |
| 1150 | mode_char = *mode; |
| 1151 | break; |
| 1152 | |
| 1153 | case 'b': |
| 1154 | break; |
| 1155 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1156 | default: |
| 1157 | error = 1; |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1158 | break; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1159 | } |
| 1160 | if (error) { |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1161 | PyErr_Format(PyExc_ValueError, |
| 1162 | "invalid mode char %c", *mode); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1163 | return -1; |
| 1164 | } |
| 1165 | mode++; |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1166 | if (*mode == '\0') |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1167 | break; |
| 1168 | } |
| 1169 | |
Georg Brandl | 6b95f1d | 2005-06-03 19:47:00 +0000 | [diff] [blame] | 1170 | if (mode_char == 0) { |
| 1171 | mode_char = 'r'; |
| 1172 | } |
| 1173 | |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1174 | mode = (mode_char == 'r') ? "rb" : "wb"; |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 1175 | |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1176 | self->rawfp = fopen(name, mode); |
| 1177 | if (self->rawfp == NULL) { |
| 1178 | PyErr_SetFromErrno(PyExc_IOError); |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1179 | return -1; |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1180 | } |
| 1181 | /* XXX Ignore buffering */ |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1182 | |
| 1183 | /* From now on, we have stuff to dealloc, so jump to error label |
| 1184 | * instead of returning */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1185 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1186 | #ifdef WITH_THREAD |
| 1187 | self->lock = PyThread_allocate_lock(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1188 | if (!self->lock) { |
| 1189 | PyErr_SetString(PyExc_MemoryError, "unable to allocate lock"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1190 | goto error; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1191 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1192 | #endif |
| 1193 | |
| 1194 | if (mode_char == 'r') |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1195 | self->fp = BZ2_bzReadOpen(&bzerror, self->rawfp, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1196 | 0, 0, NULL, 0); |
| 1197 | else |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1198 | self->fp = BZ2_bzWriteOpen(&bzerror, self->rawfp, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1199 | compresslevel, 0, 0); |
| 1200 | |
| 1201 | if (bzerror != BZ_OK) { |
| 1202 | Util_CatchBZ2Error(bzerror); |
| 1203 | goto error; |
| 1204 | } |
| 1205 | |
| 1206 | self->mode = (mode_char == 'r') ? MODE_READ : MODE_WRITE; |
| 1207 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1208 | return 0; |
| 1209 | |
| 1210 | error: |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1211 | fclose(self->rawfp); |
| 1212 | self->rawfp = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1213 | #ifdef WITH_THREAD |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1214 | if (self->lock) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1215 | PyThread_free_lock(self->lock); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1216 | self->lock = NULL; |
| 1217 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1218 | #endif |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1219 | return -1; |
| 1220 | } |
| 1221 | |
| 1222 | static void |
| 1223 | BZ2File_dealloc(BZ2FileObject *self) |
| 1224 | { |
| 1225 | int bzerror; |
| 1226 | #ifdef WITH_THREAD |
| 1227 | if (self->lock) |
| 1228 | PyThread_free_lock(self->lock); |
| 1229 | #endif |
| 1230 | switch (self->mode) { |
| 1231 | case MODE_READ: |
| 1232 | case MODE_READ_EOF: |
| 1233 | BZ2_bzReadClose(&bzerror, self->fp); |
| 1234 | break; |
| 1235 | case MODE_WRITE: |
| 1236 | BZ2_bzWriteClose(&bzerror, self->fp, |
| 1237 | 0, NULL, NULL); |
| 1238 | break; |
| 1239 | } |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1240 | Util_DropReadAhead(self); |
Guido van Rossum | f09ca14 | 2007-06-13 00:03:05 +0000 | [diff] [blame] | 1241 | if (self->rawfp != NULL) |
| 1242 | fclose(self->rawfp); |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1243 | Py_Type(self)->tp_free((PyObject *)self); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | /* This is a hacked version of Python's fileobject.c:file_getiter(). */ |
| 1247 | static PyObject * |
| 1248 | BZ2File_getiter(BZ2FileObject *self) |
| 1249 | { |
| 1250 | if (self->mode == MODE_CLOSED) { |
| 1251 | PyErr_SetString(PyExc_ValueError, |
| 1252 | "I/O operation on closed file"); |
| 1253 | return NULL; |
| 1254 | } |
| 1255 | Py_INCREF((PyObject*)self); |
| 1256 | return (PyObject *)self; |
| 1257 | } |
| 1258 | |
| 1259 | /* This is a hacked version of Python's fileobject.c:file_iternext(). */ |
| 1260 | #define READAHEAD_BUFSIZE 8192 |
| 1261 | static PyObject * |
| 1262 | BZ2File_iternext(BZ2FileObject *self) |
| 1263 | { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1264 | PyStringObject* ret; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1265 | ACQUIRE_LOCK(self); |
| 1266 | if (self->mode == MODE_CLOSED) { |
| 1267 | PyErr_SetString(PyExc_ValueError, |
| 1268 | "I/O operation on closed file"); |
| 1269 | return NULL; |
| 1270 | } |
| 1271 | ret = Util_ReadAheadGetLineSkip(self, 0, READAHEAD_BUFSIZE); |
| 1272 | RELEASE_LOCK(self); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1273 | if (ret == NULL || PyString_GET_SIZE(ret) == 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1274 | Py_XDECREF(ret); |
| 1275 | return NULL; |
| 1276 | } |
| 1277 | return (PyObject *)ret; |
| 1278 | } |
| 1279 | |
| 1280 | /* ===================================================================== */ |
| 1281 | /* BZ2File_Type definition. */ |
| 1282 | |
| 1283 | PyDoc_VAR(BZ2File__doc__) = |
| 1284 | PyDoc_STR( |
| 1285 | "BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object\n\ |
| 1286 | \n\ |
| 1287 | Open a bz2 file. The mode can be 'r' or 'w', for reading (default) or\n\ |
| 1288 | writing. When opened for writing, the file will be created if it doesn't\n\ |
| 1289 | exist, and truncated otherwise. If the buffering argument is given, 0 means\n\ |
| 1290 | unbuffered, and larger numbers specify the buffer size. If compresslevel\n\ |
| 1291 | is given, must be a number between 1 and 9.\n\ |
Guido van Rossum | 88e860c | 2007-06-13 01:46:31 +0000 | [diff] [blame] | 1292 | Data read is always returned in bytes; data written ought to be bytes.\n\ |
| 1293 | "); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1294 | |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1295 | static PyTypeObject BZ2File_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1296 | PyVarObject_HEAD_INIT(NULL, 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1297 | "bz2.BZ2File", /*tp_name*/ |
| 1298 | sizeof(BZ2FileObject), /*tp_basicsize*/ |
| 1299 | 0, /*tp_itemsize*/ |
| 1300 | (destructor)BZ2File_dealloc, /*tp_dealloc*/ |
| 1301 | 0, /*tp_print*/ |
| 1302 | 0, /*tp_getattr*/ |
| 1303 | 0, /*tp_setattr*/ |
| 1304 | 0, /*tp_compare*/ |
| 1305 | 0, /*tp_repr*/ |
| 1306 | 0, /*tp_as_number*/ |
| 1307 | 0, /*tp_as_sequence*/ |
| 1308 | 0, /*tp_as_mapping*/ |
| 1309 | 0, /*tp_hash*/ |
| 1310 | 0, /*tp_call*/ |
| 1311 | 0, /*tp_str*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1312 | PyObject_GenericGetAttr,/*tp_getattro*/ |
| 1313 | PyObject_GenericSetAttr,/*tp_setattro*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1314 | 0, /*tp_as_buffer*/ |
| 1315 | Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /*tp_flags*/ |
| 1316 | BZ2File__doc__, /*tp_doc*/ |
| 1317 | 0, /*tp_traverse*/ |
| 1318 | 0, /*tp_clear*/ |
| 1319 | 0, /*tp_richcompare*/ |
| 1320 | 0, /*tp_weaklistoffset*/ |
| 1321 | (getiterfunc)BZ2File_getiter, /*tp_iter*/ |
| 1322 | (iternextfunc)BZ2File_iternext, /*tp_iternext*/ |
| 1323 | BZ2File_methods, /*tp_methods*/ |
Guido van Rossum | 79139b2 | 2007-02-09 23:20:19 +0000 | [diff] [blame] | 1324 | 0, /*tp_members*/ |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1325 | BZ2File_getset, /*tp_getset*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1326 | 0, /*tp_base*/ |
| 1327 | 0, /*tp_dict*/ |
| 1328 | 0, /*tp_descr_get*/ |
| 1329 | 0, /*tp_descr_set*/ |
| 1330 | 0, /*tp_dictoffset*/ |
| 1331 | (initproc)BZ2File_init, /*tp_init*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1332 | PyType_GenericAlloc, /*tp_alloc*/ |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1333 | PyType_GenericNew, /*tp_new*/ |
Neal Norwitz | 30d1c51 | 2007-08-19 22:48:23 +0000 | [diff] [blame] | 1334 | PyObject_Free, /*tp_free*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1335 | 0, /*tp_is_gc*/ |
| 1336 | }; |
| 1337 | |
| 1338 | |
| 1339 | /* ===================================================================== */ |
| 1340 | /* Methods of BZ2Comp. */ |
| 1341 | |
| 1342 | PyDoc_STRVAR(BZ2Comp_compress__doc__, |
| 1343 | "compress(data) -> string\n\ |
| 1344 | \n\ |
| 1345 | Provide more data to the compressor object. It will return chunks of\n\ |
| 1346 | compressed data whenever possible. When you've finished providing data\n\ |
| 1347 | to compress, call the flush() method to finish the compression process,\n\ |
| 1348 | and return what is left in the internal buffers.\n\ |
| 1349 | "); |
| 1350 | |
| 1351 | static PyObject * |
| 1352 | BZ2Comp_compress(BZ2CompObject *self, PyObject *args) |
| 1353 | { |
| 1354 | char *data; |
| 1355 | int datasize; |
| 1356 | int bufsize = SMALLCHUNK; |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 1357 | PY_LONG_LONG totalout; |
Gustavo Niemeyer | 7d7930b | 2002-11-05 18:41:53 +0000 | [diff] [blame] | 1358 | PyObject *ret = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1359 | bz_stream *bzs = &self->bzs; |
| 1360 | int bzerror; |
| 1361 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1362 | if (!PyArg_ParseTuple(args, "y#:compress", &data, &datasize)) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1363 | return NULL; |
| 1364 | |
Gustavo Niemeyer | a6e436e | 2004-02-14 00:02:45 +0000 | [diff] [blame] | 1365 | if (datasize == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1366 | return PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | a6e436e | 2004-02-14 00:02:45 +0000 | [diff] [blame] | 1367 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1368 | ACQUIRE_LOCK(self); |
| 1369 | if (!self->running) { |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1370 | PyErr_SetString(PyExc_ValueError, |
| 1371 | "this object was already flushed"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1372 | goto error; |
| 1373 | } |
| 1374 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1375 | ret = PyString_FromStringAndSize(NULL, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1376 | if (!ret) |
| 1377 | goto error; |
| 1378 | |
| 1379 | bzs->next_in = data; |
| 1380 | bzs->avail_in = datasize; |
| 1381 | bzs->next_out = BUF(ret); |
| 1382 | bzs->avail_out = bufsize; |
| 1383 | |
| 1384 | totalout = BZS_TOTAL_OUT(bzs); |
| 1385 | |
| 1386 | for (;;) { |
| 1387 | Py_BEGIN_ALLOW_THREADS |
| 1388 | bzerror = BZ2_bzCompress(bzs, BZ_RUN); |
| 1389 | Py_END_ALLOW_THREADS |
| 1390 | if (bzerror != BZ_RUN_OK) { |
| 1391 | Util_CatchBZ2Error(bzerror); |
| 1392 | goto error; |
| 1393 | } |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1394 | if (bzs->avail_in == 0) |
| 1395 | break; /* no more input data */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1396 | if (bzs->avail_out == 0) { |
| 1397 | bufsize = Util_NewBufferSize(bufsize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1398 | if (_PyString_Resize(&ret, bufsize) < 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1399 | BZ2_bzCompressEnd(bzs); |
| 1400 | goto error; |
| 1401 | } |
| 1402 | bzs->next_out = BUF(ret) + (BZS_TOTAL_OUT(bzs) |
| 1403 | - totalout); |
| 1404 | bzs->avail_out = bufsize - (bzs->next_out - BUF(ret)); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1405 | } |
| 1406 | } |
| 1407 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1408 | if (_PyString_Resize(&ret, |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1409 | (Py_ssize_t)(BZS_TOTAL_OUT(bzs) - totalout)) < 0) |
| 1410 | goto error; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1411 | |
| 1412 | RELEASE_LOCK(self); |
| 1413 | return ret; |
| 1414 | |
| 1415 | error: |
| 1416 | RELEASE_LOCK(self); |
| 1417 | Py_XDECREF(ret); |
| 1418 | return NULL; |
| 1419 | } |
| 1420 | |
| 1421 | PyDoc_STRVAR(BZ2Comp_flush__doc__, |
| 1422 | "flush() -> string\n\ |
| 1423 | \n\ |
| 1424 | Finish the compression process and return what is left in internal buffers.\n\ |
| 1425 | You must not use the compressor object after calling this method.\n\ |
| 1426 | "); |
| 1427 | |
| 1428 | static PyObject * |
| 1429 | BZ2Comp_flush(BZ2CompObject *self) |
| 1430 | { |
| 1431 | int bufsize = SMALLCHUNK; |
Gustavo Niemeyer | 7d7930b | 2002-11-05 18:41:53 +0000 | [diff] [blame] | 1432 | PyObject *ret = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1433 | bz_stream *bzs = &self->bzs; |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 1434 | PY_LONG_LONG totalout; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1435 | int bzerror; |
| 1436 | |
| 1437 | ACQUIRE_LOCK(self); |
| 1438 | if (!self->running) { |
| 1439 | PyErr_SetString(PyExc_ValueError, "object was already " |
| 1440 | "flushed"); |
| 1441 | goto error; |
| 1442 | } |
| 1443 | self->running = 0; |
| 1444 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1445 | ret = PyString_FromStringAndSize(NULL, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1446 | if (!ret) |
| 1447 | goto error; |
| 1448 | |
| 1449 | bzs->next_out = BUF(ret); |
| 1450 | bzs->avail_out = bufsize; |
| 1451 | |
| 1452 | totalout = BZS_TOTAL_OUT(bzs); |
| 1453 | |
| 1454 | for (;;) { |
| 1455 | Py_BEGIN_ALLOW_THREADS |
| 1456 | bzerror = BZ2_bzCompress(bzs, BZ_FINISH); |
| 1457 | Py_END_ALLOW_THREADS |
| 1458 | if (bzerror == BZ_STREAM_END) { |
| 1459 | break; |
| 1460 | } else if (bzerror != BZ_FINISH_OK) { |
| 1461 | Util_CatchBZ2Error(bzerror); |
| 1462 | goto error; |
| 1463 | } |
| 1464 | if (bzs->avail_out == 0) { |
| 1465 | bufsize = Util_NewBufferSize(bufsize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1466 | if (_PyString_Resize(&ret, bufsize) < 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1467 | goto error; |
| 1468 | bzs->next_out = BUF(ret); |
| 1469 | bzs->next_out = BUF(ret) + (BZS_TOTAL_OUT(bzs) |
| 1470 | - totalout); |
| 1471 | bzs->avail_out = bufsize - (bzs->next_out - BUF(ret)); |
| 1472 | } |
| 1473 | } |
| 1474 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1475 | if (bzs->avail_out != 0) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1476 | if (_PyString_Resize(&ret, |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1477 | (Py_ssize_t)(BZS_TOTAL_OUT(bzs) - totalout)) < 0) |
| 1478 | goto error; |
| 1479 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1480 | |
| 1481 | RELEASE_LOCK(self); |
| 1482 | return ret; |
| 1483 | |
| 1484 | error: |
| 1485 | RELEASE_LOCK(self); |
| 1486 | Py_XDECREF(ret); |
| 1487 | return NULL; |
| 1488 | } |
| 1489 | |
| 1490 | static PyMethodDef BZ2Comp_methods[] = { |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1491 | {"compress", (PyCFunction)BZ2Comp_compress, METH_VARARGS, |
| 1492 | BZ2Comp_compress__doc__}, |
| 1493 | {"flush", (PyCFunction)BZ2Comp_flush, METH_NOARGS, |
| 1494 | BZ2Comp_flush__doc__}, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1495 | {NULL, NULL} /* sentinel */ |
| 1496 | }; |
| 1497 | |
| 1498 | |
| 1499 | /* ===================================================================== */ |
| 1500 | /* Slot definitions for BZ2Comp_Type. */ |
| 1501 | |
| 1502 | static int |
| 1503 | BZ2Comp_init(BZ2CompObject *self, PyObject *args, PyObject *kwargs) |
| 1504 | { |
| 1505 | int compresslevel = 9; |
| 1506 | int bzerror; |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 1507 | static char *kwlist[] = {"compresslevel", 0}; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1508 | |
| 1509 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:BZ2Compressor", |
| 1510 | kwlist, &compresslevel)) |
| 1511 | return -1; |
| 1512 | |
| 1513 | if (compresslevel < 1 || compresslevel > 9) { |
| 1514 | PyErr_SetString(PyExc_ValueError, |
| 1515 | "compresslevel must be between 1 and 9"); |
| 1516 | goto error; |
| 1517 | } |
| 1518 | |
| 1519 | #ifdef WITH_THREAD |
| 1520 | self->lock = PyThread_allocate_lock(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1521 | if (!self->lock) { |
| 1522 | PyErr_SetString(PyExc_MemoryError, "unable to allocate lock"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1523 | goto error; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1524 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1525 | #endif |
| 1526 | |
| 1527 | memset(&self->bzs, 0, sizeof(bz_stream)); |
| 1528 | bzerror = BZ2_bzCompressInit(&self->bzs, compresslevel, 0, 0); |
| 1529 | if (bzerror != BZ_OK) { |
| 1530 | Util_CatchBZ2Error(bzerror); |
| 1531 | goto error; |
| 1532 | } |
| 1533 | |
| 1534 | self->running = 1; |
| 1535 | |
| 1536 | return 0; |
| 1537 | error: |
| 1538 | #ifdef WITH_THREAD |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1539 | if (self->lock) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1540 | PyThread_free_lock(self->lock); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1541 | self->lock = NULL; |
| 1542 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1543 | #endif |
| 1544 | return -1; |
| 1545 | } |
| 1546 | |
| 1547 | static void |
| 1548 | BZ2Comp_dealloc(BZ2CompObject *self) |
| 1549 | { |
| 1550 | #ifdef WITH_THREAD |
| 1551 | if (self->lock) |
| 1552 | PyThread_free_lock(self->lock); |
| 1553 | #endif |
| 1554 | BZ2_bzCompressEnd(&self->bzs); |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1555 | Py_Type(self)->tp_free((PyObject *)self); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1556 | } |
| 1557 | |
| 1558 | |
| 1559 | /* ===================================================================== */ |
| 1560 | /* BZ2Comp_Type definition. */ |
| 1561 | |
| 1562 | PyDoc_STRVAR(BZ2Comp__doc__, |
| 1563 | "BZ2Compressor([compresslevel=9]) -> compressor object\n\ |
| 1564 | \n\ |
| 1565 | Create a new compressor object. This object may be used to compress\n\ |
| 1566 | data sequentially. If you want to compress data in one shot, use the\n\ |
| 1567 | compress() function instead. The compresslevel parameter, if given,\n\ |
| 1568 | must be a number between 1 and 9.\n\ |
| 1569 | "); |
| 1570 | |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1571 | static PyTypeObject BZ2Comp_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1572 | PyVarObject_HEAD_INIT(NULL, 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1573 | "bz2.BZ2Compressor", /*tp_name*/ |
| 1574 | sizeof(BZ2CompObject), /*tp_basicsize*/ |
| 1575 | 0, /*tp_itemsize*/ |
| 1576 | (destructor)BZ2Comp_dealloc, /*tp_dealloc*/ |
| 1577 | 0, /*tp_print*/ |
| 1578 | 0, /*tp_getattr*/ |
| 1579 | 0, /*tp_setattr*/ |
| 1580 | 0, /*tp_compare*/ |
| 1581 | 0, /*tp_repr*/ |
| 1582 | 0, /*tp_as_number*/ |
| 1583 | 0, /*tp_as_sequence*/ |
| 1584 | 0, /*tp_as_mapping*/ |
| 1585 | 0, /*tp_hash*/ |
| 1586 | 0, /*tp_call*/ |
| 1587 | 0, /*tp_str*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1588 | PyObject_GenericGetAttr,/*tp_getattro*/ |
| 1589 | PyObject_GenericSetAttr,/*tp_setattro*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1590 | 0, /*tp_as_buffer*/ |
| 1591 | Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /*tp_flags*/ |
| 1592 | BZ2Comp__doc__, /*tp_doc*/ |
| 1593 | 0, /*tp_traverse*/ |
| 1594 | 0, /*tp_clear*/ |
| 1595 | 0, /*tp_richcompare*/ |
| 1596 | 0, /*tp_weaklistoffset*/ |
| 1597 | 0, /*tp_iter*/ |
| 1598 | 0, /*tp_iternext*/ |
| 1599 | BZ2Comp_methods, /*tp_methods*/ |
| 1600 | 0, /*tp_members*/ |
| 1601 | 0, /*tp_getset*/ |
| 1602 | 0, /*tp_base*/ |
| 1603 | 0, /*tp_dict*/ |
| 1604 | 0, /*tp_descr_get*/ |
| 1605 | 0, /*tp_descr_set*/ |
| 1606 | 0, /*tp_dictoffset*/ |
| 1607 | (initproc)BZ2Comp_init, /*tp_init*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1608 | PyType_GenericAlloc, /*tp_alloc*/ |
| 1609 | PyType_GenericNew, /*tp_new*/ |
Neal Norwitz | 30d1c51 | 2007-08-19 22:48:23 +0000 | [diff] [blame] | 1610 | PyObject_Free, /*tp_free*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1611 | 0, /*tp_is_gc*/ |
| 1612 | }; |
| 1613 | |
| 1614 | |
| 1615 | /* ===================================================================== */ |
| 1616 | /* Members of BZ2Decomp. */ |
| 1617 | |
Gustavo Niemeyer | a33d0aa | 2003-02-11 18:46:20 +0000 | [diff] [blame] | 1618 | #undef OFF |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1619 | #define OFF(x) offsetof(BZ2DecompObject, x) |
| 1620 | |
| 1621 | static PyMemberDef BZ2Decomp_members[] = { |
Guido van Rossum | 33d2689 | 2007-08-05 15:29:28 +0000 | [diff] [blame] | 1622 | {"unused_data", T_OBJECT, OFF(unused_data), READONLY}, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1623 | {NULL} /* Sentinel */ |
| 1624 | }; |
| 1625 | |
| 1626 | |
| 1627 | /* ===================================================================== */ |
| 1628 | /* Methods of BZ2Decomp. */ |
| 1629 | |
| 1630 | PyDoc_STRVAR(BZ2Decomp_decompress__doc__, |
| 1631 | "decompress(data) -> string\n\ |
| 1632 | \n\ |
| 1633 | Provide more data to the decompressor object. It will return chunks\n\ |
| 1634 | of decompressed data whenever possible. If you try to decompress data\n\ |
| 1635 | after the end of stream is found, EOFError will be raised. If any data\n\ |
| 1636 | was found after the end of stream, it'll be ignored and saved in\n\ |
| 1637 | unused_data attribute.\n\ |
| 1638 | "); |
| 1639 | |
| 1640 | static PyObject * |
| 1641 | BZ2Decomp_decompress(BZ2DecompObject *self, PyObject *args) |
| 1642 | { |
| 1643 | char *data; |
| 1644 | int datasize; |
| 1645 | int bufsize = SMALLCHUNK; |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 1646 | PY_LONG_LONG totalout; |
Neal Norwitz | 18142c0 | 2002-11-05 18:17:32 +0000 | [diff] [blame] | 1647 | PyObject *ret = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1648 | bz_stream *bzs = &self->bzs; |
| 1649 | int bzerror; |
| 1650 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1651 | if (!PyArg_ParseTuple(args, "y#:decompress", &data, &datasize)) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1652 | return NULL; |
| 1653 | |
| 1654 | ACQUIRE_LOCK(self); |
| 1655 | if (!self->running) { |
| 1656 | PyErr_SetString(PyExc_EOFError, "end of stream was " |
| 1657 | "already found"); |
| 1658 | goto error; |
| 1659 | } |
| 1660 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1661 | ret = PyString_FromStringAndSize(NULL, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1662 | if (!ret) |
| 1663 | goto error; |
| 1664 | |
| 1665 | bzs->next_in = data; |
| 1666 | bzs->avail_in = datasize; |
| 1667 | bzs->next_out = BUF(ret); |
| 1668 | bzs->avail_out = bufsize; |
| 1669 | |
| 1670 | totalout = BZS_TOTAL_OUT(bzs); |
| 1671 | |
| 1672 | for (;;) { |
| 1673 | Py_BEGIN_ALLOW_THREADS |
| 1674 | bzerror = BZ2_bzDecompress(bzs); |
| 1675 | Py_END_ALLOW_THREADS |
| 1676 | if (bzerror == BZ_STREAM_END) { |
| 1677 | if (bzs->avail_in != 0) { |
| 1678 | Py_DECREF(self->unused_data); |
| 1679 | self->unused_data = |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1680 | PyString_FromStringAndSize(bzs->next_in, |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1681 | bzs->avail_in); |
| 1682 | } |
| 1683 | self->running = 0; |
| 1684 | break; |
| 1685 | } |
| 1686 | if (bzerror != BZ_OK) { |
| 1687 | Util_CatchBZ2Error(bzerror); |
| 1688 | goto error; |
| 1689 | } |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1690 | if (bzs->avail_in == 0) |
| 1691 | break; /* no more input data */ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1692 | if (bzs->avail_out == 0) { |
| 1693 | bufsize = Util_NewBufferSize(bufsize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1694 | if (_PyString_Resize(&ret, bufsize) < 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1695 | BZ2_bzDecompressEnd(bzs); |
| 1696 | goto error; |
| 1697 | } |
| 1698 | bzs->next_out = BUF(ret); |
| 1699 | bzs->next_out = BUF(ret) + (BZS_TOTAL_OUT(bzs) |
| 1700 | - totalout); |
| 1701 | bzs->avail_out = bufsize - (bzs->next_out - BUF(ret)); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1702 | } |
| 1703 | } |
| 1704 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1705 | if (bzs->avail_out != 0) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1706 | if (_PyString_Resize(&ret, |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1707 | (Py_ssize_t)(BZS_TOTAL_OUT(bzs) - totalout)) < 0) |
| 1708 | goto error; |
| 1709 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1710 | |
| 1711 | RELEASE_LOCK(self); |
| 1712 | return ret; |
| 1713 | |
| 1714 | error: |
| 1715 | RELEASE_LOCK(self); |
| 1716 | Py_XDECREF(ret); |
| 1717 | return NULL; |
| 1718 | } |
| 1719 | |
| 1720 | static PyMethodDef BZ2Decomp_methods[] = { |
| 1721 | {"decompress", (PyCFunction)BZ2Decomp_decompress, METH_VARARGS, BZ2Decomp_decompress__doc__}, |
| 1722 | {NULL, NULL} /* sentinel */ |
| 1723 | }; |
| 1724 | |
| 1725 | |
| 1726 | /* ===================================================================== */ |
| 1727 | /* Slot definitions for BZ2Decomp_Type. */ |
| 1728 | |
| 1729 | static int |
| 1730 | BZ2Decomp_init(BZ2DecompObject *self, PyObject *args, PyObject *kwargs) |
| 1731 | { |
| 1732 | int bzerror; |
| 1733 | |
| 1734 | if (!PyArg_ParseTuple(args, ":BZ2Decompressor")) |
| 1735 | return -1; |
| 1736 | |
| 1737 | #ifdef WITH_THREAD |
| 1738 | self->lock = PyThread_allocate_lock(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1739 | if (!self->lock) { |
| 1740 | PyErr_SetString(PyExc_MemoryError, "unable to allocate lock"); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1741 | goto error; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1742 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1743 | #endif |
| 1744 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1745 | self->unused_data = PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1746 | if (!self->unused_data) |
| 1747 | goto error; |
| 1748 | |
| 1749 | memset(&self->bzs, 0, sizeof(bz_stream)); |
| 1750 | bzerror = BZ2_bzDecompressInit(&self->bzs, 0, 0); |
| 1751 | if (bzerror != BZ_OK) { |
| 1752 | Util_CatchBZ2Error(bzerror); |
| 1753 | goto error; |
| 1754 | } |
| 1755 | |
| 1756 | self->running = 1; |
| 1757 | |
| 1758 | return 0; |
| 1759 | |
| 1760 | error: |
| 1761 | #ifdef WITH_THREAD |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1762 | if (self->lock) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1763 | PyThread_free_lock(self->lock); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1764 | self->lock = NULL; |
| 1765 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1766 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1767 | Py_CLEAR(self->unused_data); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1768 | return -1; |
| 1769 | } |
| 1770 | |
| 1771 | static void |
| 1772 | BZ2Decomp_dealloc(BZ2DecompObject *self) |
| 1773 | { |
| 1774 | #ifdef WITH_THREAD |
| 1775 | if (self->lock) |
| 1776 | PyThread_free_lock(self->lock); |
| 1777 | #endif |
| 1778 | Py_XDECREF(self->unused_data); |
| 1779 | BZ2_bzDecompressEnd(&self->bzs); |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1780 | Py_Type(self)->tp_free((PyObject *)self); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1781 | } |
| 1782 | |
| 1783 | |
| 1784 | /* ===================================================================== */ |
| 1785 | /* BZ2Decomp_Type definition. */ |
| 1786 | |
| 1787 | PyDoc_STRVAR(BZ2Decomp__doc__, |
| 1788 | "BZ2Decompressor() -> decompressor object\n\ |
| 1789 | \n\ |
| 1790 | Create a new decompressor object. This object may be used to decompress\n\ |
| 1791 | data sequentially. If you want to decompress data in one shot, use the\n\ |
| 1792 | decompress() function instead.\n\ |
| 1793 | "); |
| 1794 | |
Gustavo Niemeyer | 49ea7be | 2002-11-08 14:31:49 +0000 | [diff] [blame] | 1795 | static PyTypeObject BZ2Decomp_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1796 | PyVarObject_HEAD_INIT(NULL, 0) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1797 | "bz2.BZ2Decompressor", /*tp_name*/ |
| 1798 | sizeof(BZ2DecompObject), /*tp_basicsize*/ |
| 1799 | 0, /*tp_itemsize*/ |
| 1800 | (destructor)BZ2Decomp_dealloc, /*tp_dealloc*/ |
| 1801 | 0, /*tp_print*/ |
| 1802 | 0, /*tp_getattr*/ |
| 1803 | 0, /*tp_setattr*/ |
| 1804 | 0, /*tp_compare*/ |
| 1805 | 0, /*tp_repr*/ |
| 1806 | 0, /*tp_as_number*/ |
| 1807 | 0, /*tp_as_sequence*/ |
| 1808 | 0, /*tp_as_mapping*/ |
| 1809 | 0, /*tp_hash*/ |
| 1810 | 0, /*tp_call*/ |
| 1811 | 0, /*tp_str*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1812 | PyObject_GenericGetAttr,/*tp_getattro*/ |
| 1813 | PyObject_GenericSetAttr,/*tp_setattro*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1814 | 0, /*tp_as_buffer*/ |
| 1815 | Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /*tp_flags*/ |
| 1816 | BZ2Decomp__doc__, /*tp_doc*/ |
| 1817 | 0, /*tp_traverse*/ |
| 1818 | 0, /*tp_clear*/ |
| 1819 | 0, /*tp_richcompare*/ |
| 1820 | 0, /*tp_weaklistoffset*/ |
| 1821 | 0, /*tp_iter*/ |
| 1822 | 0, /*tp_iternext*/ |
| 1823 | BZ2Decomp_methods, /*tp_methods*/ |
| 1824 | BZ2Decomp_members, /*tp_members*/ |
| 1825 | 0, /*tp_getset*/ |
| 1826 | 0, /*tp_base*/ |
| 1827 | 0, /*tp_dict*/ |
| 1828 | 0, /*tp_descr_get*/ |
| 1829 | 0, /*tp_descr_set*/ |
| 1830 | 0, /*tp_dictoffset*/ |
| 1831 | (initproc)BZ2Decomp_init, /*tp_init*/ |
Jason Tishler | fb8595d | 2003-01-06 12:41:26 +0000 | [diff] [blame] | 1832 | PyType_GenericAlloc, /*tp_alloc*/ |
| 1833 | PyType_GenericNew, /*tp_new*/ |
Neal Norwitz | 30d1c51 | 2007-08-19 22:48:23 +0000 | [diff] [blame] | 1834 | PyObject_Free, /*tp_free*/ |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1835 | 0, /*tp_is_gc*/ |
| 1836 | }; |
| 1837 | |
| 1838 | |
| 1839 | /* ===================================================================== */ |
| 1840 | /* Module functions. */ |
| 1841 | |
| 1842 | PyDoc_STRVAR(bz2_compress__doc__, |
| 1843 | "compress(data [, compresslevel=9]) -> string\n\ |
| 1844 | \n\ |
| 1845 | Compress data in one shot. If you want to compress data sequentially,\n\ |
| 1846 | use an instance of BZ2Compressor instead. The compresslevel parameter, if\n\ |
| 1847 | given, must be a number between 1 and 9.\n\ |
| 1848 | "); |
| 1849 | |
| 1850 | static PyObject * |
| 1851 | bz2_compress(PyObject *self, PyObject *args, PyObject *kwargs) |
| 1852 | { |
| 1853 | int compresslevel=9; |
| 1854 | char *data; |
| 1855 | int datasize; |
| 1856 | int bufsize; |
Gustavo Niemeyer | 7d7930b | 2002-11-05 18:41:53 +0000 | [diff] [blame] | 1857 | PyObject *ret = NULL; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1858 | bz_stream _bzs; |
| 1859 | bz_stream *bzs = &_bzs; |
| 1860 | int bzerror; |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 1861 | static char *kwlist[] = {"data", "compresslevel", 0}; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1862 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1863 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y#|i", |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1864 | kwlist, &data, &datasize, |
| 1865 | &compresslevel)) |
| 1866 | return NULL; |
| 1867 | |
| 1868 | if (compresslevel < 1 || compresslevel > 9) { |
| 1869 | PyErr_SetString(PyExc_ValueError, |
| 1870 | "compresslevel must be between 1 and 9"); |
| 1871 | return NULL; |
| 1872 | } |
| 1873 | |
| 1874 | /* Conforming to bz2 manual, this is large enough to fit compressed |
| 1875 | * data in one shot. We will check it later anyway. */ |
| 1876 | bufsize = datasize + (datasize/100+1) + 600; |
| 1877 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1878 | ret = PyString_FromStringAndSize(NULL, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1879 | if (!ret) |
| 1880 | return NULL; |
| 1881 | |
| 1882 | memset(bzs, 0, sizeof(bz_stream)); |
| 1883 | |
| 1884 | bzs->next_in = data; |
| 1885 | bzs->avail_in = datasize; |
| 1886 | bzs->next_out = BUF(ret); |
| 1887 | bzs->avail_out = bufsize; |
| 1888 | |
| 1889 | bzerror = BZ2_bzCompressInit(bzs, compresslevel, 0, 0); |
| 1890 | if (bzerror != BZ_OK) { |
| 1891 | Util_CatchBZ2Error(bzerror); |
| 1892 | Py_DECREF(ret); |
| 1893 | return NULL; |
| 1894 | } |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 1895 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1896 | for (;;) { |
| 1897 | Py_BEGIN_ALLOW_THREADS |
| 1898 | bzerror = BZ2_bzCompress(bzs, BZ_FINISH); |
| 1899 | Py_END_ALLOW_THREADS |
| 1900 | if (bzerror == BZ_STREAM_END) { |
| 1901 | break; |
| 1902 | } else if (bzerror != BZ_FINISH_OK) { |
| 1903 | BZ2_bzCompressEnd(bzs); |
| 1904 | Util_CatchBZ2Error(bzerror); |
| 1905 | Py_DECREF(ret); |
| 1906 | return NULL; |
| 1907 | } |
| 1908 | if (bzs->avail_out == 0) { |
| 1909 | bufsize = Util_NewBufferSize(bufsize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1910 | if (_PyString_Resize(&ret, bufsize) < 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1911 | BZ2_bzCompressEnd(bzs); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1912 | return NULL; |
| 1913 | } |
| 1914 | bzs->next_out = BUF(ret) + BZS_TOTAL_OUT(bzs); |
| 1915 | bzs->avail_out = bufsize - (bzs->next_out - BUF(ret)); |
| 1916 | } |
| 1917 | } |
| 1918 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1919 | if (bzs->avail_out != 0) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1920 | if (_PyString_Resize(&ret, (Py_ssize_t)BZS_TOTAL_OUT(bzs)) < 0) { |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 1921 | ret = NULL; |
| 1922 | } |
| 1923 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1924 | BZ2_bzCompressEnd(bzs); |
| 1925 | |
| 1926 | return ret; |
| 1927 | } |
| 1928 | |
| 1929 | PyDoc_STRVAR(bz2_decompress__doc__, |
| 1930 | "decompress(data) -> decompressed data\n\ |
| 1931 | \n\ |
| 1932 | Decompress data in one shot. If you want to decompress data sequentially,\n\ |
| 1933 | use an instance of BZ2Decompressor instead.\n\ |
| 1934 | "); |
| 1935 | |
| 1936 | static PyObject * |
| 1937 | bz2_decompress(PyObject *self, PyObject *args) |
| 1938 | { |
| 1939 | char *data; |
| 1940 | int datasize; |
| 1941 | int bufsize = SMALLCHUNK; |
| 1942 | PyObject *ret; |
| 1943 | bz_stream _bzs; |
| 1944 | bz_stream *bzs = &_bzs; |
| 1945 | int bzerror; |
| 1946 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1947 | if (!PyArg_ParseTuple(args, "y#:decompress", &data, &datasize)) |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1948 | return NULL; |
| 1949 | |
| 1950 | if (datasize == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1951 | return PyString_FromStringAndSize("", 0); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1952 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1953 | ret = PyString_FromStringAndSize(NULL, bufsize); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1954 | if (!ret) |
| 1955 | return NULL; |
| 1956 | |
| 1957 | memset(bzs, 0, sizeof(bz_stream)); |
| 1958 | |
| 1959 | bzs->next_in = data; |
| 1960 | bzs->avail_in = datasize; |
| 1961 | bzs->next_out = BUF(ret); |
| 1962 | bzs->avail_out = bufsize; |
| 1963 | |
| 1964 | bzerror = BZ2_bzDecompressInit(bzs, 0, 0); |
| 1965 | if (bzerror != BZ_OK) { |
| 1966 | Util_CatchBZ2Error(bzerror); |
| 1967 | Py_DECREF(ret); |
| 1968 | return NULL; |
| 1969 | } |
Tim Peters | e322809 | 2002-11-09 04:21:44 +0000 | [diff] [blame] | 1970 | |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1971 | for (;;) { |
| 1972 | Py_BEGIN_ALLOW_THREADS |
| 1973 | bzerror = BZ2_bzDecompress(bzs); |
| 1974 | Py_END_ALLOW_THREADS |
| 1975 | if (bzerror == BZ_STREAM_END) { |
| 1976 | break; |
| 1977 | } else if (bzerror != BZ_OK) { |
| 1978 | BZ2_bzDecompressEnd(bzs); |
| 1979 | Util_CatchBZ2Error(bzerror); |
| 1980 | Py_DECREF(ret); |
| 1981 | return NULL; |
| 1982 | } |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1983 | if (bzs->avail_in == 0) { |
| 1984 | BZ2_bzDecompressEnd(bzs); |
| 1985 | PyErr_SetString(PyExc_ValueError, |
| 1986 | "couldn't find end of stream"); |
| 1987 | Py_DECREF(ret); |
| 1988 | return NULL; |
| 1989 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1990 | if (bzs->avail_out == 0) { |
| 1991 | bufsize = Util_NewBufferSize(bufsize); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1992 | if (_PyString_Resize(&ret, bufsize) < 0) { |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1993 | BZ2_bzDecompressEnd(bzs); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1994 | return NULL; |
| 1995 | } |
| 1996 | bzs->next_out = BUF(ret) + BZS_TOTAL_OUT(bzs); |
| 1997 | bzs->avail_out = bufsize - (bzs->next_out - BUF(ret)); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 1998 | } |
| 1999 | } |
| 2000 | |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 2001 | if (bzs->avail_out != 0) { |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2002 | if (_PyString_Resize(&ret, (Py_ssize_t)BZS_TOTAL_OUT(bzs)) < 0) { |
Guido van Rossum | 522a6c6 | 2007-05-22 23:13:45 +0000 | [diff] [blame] | 2003 | ret = NULL; |
| 2004 | } |
| 2005 | } |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 2006 | BZ2_bzDecompressEnd(bzs); |
| 2007 | |
| 2008 | return ret; |
| 2009 | } |
| 2010 | |
| 2011 | static PyMethodDef bz2_methods[] = { |
| 2012 | {"compress", (PyCFunction) bz2_compress, METH_VARARGS|METH_KEYWORDS, |
| 2013 | bz2_compress__doc__}, |
| 2014 | {"decompress", (PyCFunction) bz2_decompress, METH_VARARGS, |
| 2015 | bz2_decompress__doc__}, |
| 2016 | {NULL, NULL} /* sentinel */ |
| 2017 | }; |
| 2018 | |
| 2019 | /* ===================================================================== */ |
| 2020 | /* Initialization function. */ |
| 2021 | |
| 2022 | PyDoc_STRVAR(bz2__doc__, |
| 2023 | "The python bz2 module provides a comprehensive interface for\n\ |
| 2024 | the bz2 compression library. It implements a complete file\n\ |
| 2025 | interface, one shot (de)compression functions, and types for\n\ |
| 2026 | sequential (de)compression.\n\ |
| 2027 | "); |
| 2028 | |
Neal Norwitz | 21d896c | 2003-07-01 20:15:21 +0000 | [diff] [blame] | 2029 | PyMODINIT_FUNC |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 2030 | initbz2(void) |
| 2031 | { |
| 2032 | PyObject *m; |
| 2033 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 2034 | Py_Type(&BZ2File_Type) = &PyType_Type; |
| 2035 | Py_Type(&BZ2Comp_Type) = &PyType_Type; |
| 2036 | Py_Type(&BZ2Decomp_Type) = &PyType_Type; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 2037 | |
| 2038 | m = Py_InitModule3("bz2", bz2_methods, bz2__doc__); |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 2039 | if (m == NULL) |
| 2040 | return; |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 2041 | |
Neal Norwitz | 53cbdaa | 2007-08-23 21:42:55 +0000 | [diff] [blame] | 2042 | PyModule_AddObject(m, "__author__", PyUnicode_FromString(__author__)); |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 2043 | |
| 2044 | Py_INCREF(&BZ2File_Type); |
| 2045 | PyModule_AddObject(m, "BZ2File", (PyObject *)&BZ2File_Type); |
| 2046 | |
| 2047 | Py_INCREF(&BZ2Comp_Type); |
| 2048 | PyModule_AddObject(m, "BZ2Compressor", (PyObject *)&BZ2Comp_Type); |
| 2049 | |
| 2050 | Py_INCREF(&BZ2Decomp_Type); |
| 2051 | PyModule_AddObject(m, "BZ2Decompressor", (PyObject *)&BZ2Decomp_Type); |
| 2052 | } |