blob: d2dc5e50ab0f35c5fcf11abff2d50a676a7e5251 [file] [log] [blame]
Reid Spencer460eb632004-10-04 10:49:41 +00001//===- lib/Support/Compressor.cpp -------------------------------*- C++ -*-===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Reid Spencer460eb632004-10-04 10:49:41 +00003// The LLVM Compiler Infrastructure
4//
Misha Brukmanf976c852005-04-21 22:55:34 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer460eb632004-10-04 10:49:41 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
Reid Spencer460eb632004-10-04 10:49:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the llvm::Compressor class, an abstraction for memory
11// block compression.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Config/config.h"
16#include "llvm/Support/Compressor.h"
17#include "llvm/ADT/StringExtras.h"
18#include <cassert>
19#include <string>
Chris Lattner5ae35712005-01-29 17:17:18 +000020#include <ostream>
Reid Spencerf6a0acd2004-11-25 19:38:16 +000021#include "bzip2/bzlib.h"
Chris Lattner52b87522005-01-29 16:53:02 +000022using namespace llvm;
Reid Spencer460eb632004-10-04 10:49:41 +000023
Reid Spencerf6a0acd2004-11-25 19:38:16 +000024enum CompressionTypes {
25 COMP_TYPE_NONE = '0',
26 COMP_TYPE_BZIP2 = '2',
27};
28
Misha Brukmanf976c852005-04-21 22:55:34 +000029static int getdata(char*& buffer, size_t &size,
Reid Spencer469c34b2004-10-04 17:29:25 +000030 llvm::Compressor::OutputDataCallback* cb, void* context) {
Reid Spencer460eb632004-10-04 10:49:41 +000031 buffer = 0;
32 size = 0;
Reid Spencer469c34b2004-10-04 17:29:25 +000033 int result = (*cb)(buffer, size, context);
Reid Spencer460eb632004-10-04 10:49:41 +000034 assert(buffer != 0 && "Invalid result from Compressor callback");
35 assert(size != 0 && "Invalid result from Compressor callback");
36 return result;
37}
38
Misha Brukmanf976c852005-04-21 22:55:34 +000039static int getdata_uns(char*& buffer, unsigned &size,
Misha Brukman3c944972005-04-22 04:08:30 +000040 llvm::Compressor::OutputDataCallback* cb, void* context)
41{
Tanya Lattner445cdd32005-01-29 23:08:01 +000042 size_t SizeOut;
43 int Res = getdata(buffer, SizeOut, cb, context);
44 size = SizeOut;
45 return Res;
46}
47
Reid Spencer460eb632004-10-04 10:49:41 +000048//===----------------------------------------------------------------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +000049//=== NULLCOMP - a compression like set of routines that just copies data
Reid Spencer047c0092004-10-04 17:45:44 +000050//=== without doing any compression. This is provided so that if the
51//=== configured environment doesn't have a compression library the
52//=== program can still work, albeit using more data/memory.
Reid Spencer460eb632004-10-04 10:49:41 +000053//===----------------------------------------------------------------------===//
54
Reid Spencer047c0092004-10-04 17:45:44 +000055struct NULLCOMP_stream {
Reid Spencer460eb632004-10-04 10:49:41 +000056 // User provided fields
Chris Lattner5ae35712005-01-29 17:17:18 +000057 char* next_in;
58 size_t avail_in;
59 char* next_out;
60 size_t avail_out;
Reid Spencer460eb632004-10-04 10:49:41 +000061
62 // Information fields
Chris Lattner5ae35712005-01-29 17:17:18 +000063 size_t output_count; // Total count of output bytes
Reid Spencer460eb632004-10-04 10:49:41 +000064};
65
Chris Lattner52b87522005-01-29 16:53:02 +000066static void NULLCOMP_init(NULLCOMP_stream* s) {
Reid Spencer460eb632004-10-04 10:49:41 +000067 s->output_count = 0;
Reid Spencer460eb632004-10-04 10:49:41 +000068}
69
Chris Lattner52b87522005-01-29 16:53:02 +000070static bool NULLCOMP_compress(NULLCOMP_stream* s) {
Reid Spencer047c0092004-10-04 17:45:44 +000071 assert(s && "Invalid NULLCOMP_stream");
Reid Spencer460eb632004-10-04 10:49:41 +000072 assert(s->next_in != 0);
73 assert(s->next_out != 0);
74 assert(s->avail_in >= 1);
75 assert(s->avail_out >= 1);
76
Reid Spencer460eb632004-10-04 10:49:41 +000077 if (s->avail_out >= s->avail_in) {
78 ::memcpy(s->next_out, s->next_in, s->avail_in);
79 s->output_count += s->avail_in;
80 s->avail_out -= s->avail_in;
81 s->next_in += s->avail_in;
82 s->avail_in = 0;
83 return true;
84 } else {
85 ::memcpy(s->next_out, s->next_in, s->avail_out);
86 s->output_count += s->avail_out;
87 s->avail_in -= s->avail_out;
88 s->next_in += s->avail_out;
89 s->avail_out = 0;
90 return false;
91 }
92}
93
Chris Lattner52b87522005-01-29 16:53:02 +000094static bool NULLCOMP_decompress(NULLCOMP_stream* s) {
Reid Spencer047c0092004-10-04 17:45:44 +000095 assert(s && "Invalid NULLCOMP_stream");
Reid Spencer460eb632004-10-04 10:49:41 +000096 assert(s->next_in != 0);
97 assert(s->next_out != 0);
98 assert(s->avail_in >= 1);
99 assert(s->avail_out >= 1);
100
Reid Spencer460eb632004-10-04 10:49:41 +0000101 if (s->avail_out >= s->avail_in) {
102 ::memcpy(s->next_out, s->next_in, s->avail_in);
103 s->output_count += s->avail_in;
104 s->avail_out -= s->avail_in;
105 s->next_in += s->avail_in;
106 s->avail_in = 0;
107 return true;
108 } else {
109 ::memcpy(s->next_out, s->next_in, s->avail_out);
110 s->output_count += s->avail_out;
111 s->avail_in -= s->avail_out;
112 s->next_in += s->avail_out;
113 s->avail_out = 0;
114 return false;
115 }
116}
117
Chris Lattner52b87522005-01-29 16:53:02 +0000118static void NULLCOMP_end(NULLCOMP_stream* strm) {
Reid Spencer460eb632004-10-04 10:49:41 +0000119}
120
Chris Lattner52b87522005-01-29 16:53:02 +0000121namespace {
122
Reid Spencere3c6ad72004-11-14 22:04:46 +0000123/// This structure is only used when a bytecode file is compressed.
124/// As bytecode is being decompressed, the memory buffer might need
Misha Brukmanf976c852005-04-21 22:55:34 +0000125/// to be reallocated. The buffer allocation is handled in a callback
Reid Spencere3c6ad72004-11-14 22:04:46 +0000126/// and this structure is needed to retain information across calls
127/// to the callback.
128/// @brief An internal buffer object used for handling decompression
129struct BufferContext {
130 char* buff;
Chris Lattner5ae35712005-01-29 17:17:18 +0000131 size_t size;
Misha Brukmanf976c852005-04-21 22:55:34 +0000132 BufferContext(size_t compressedSize) {
Reid Spencere3c6ad72004-11-14 22:04:46 +0000133 // Null to indicate malloc of a new block
Misha Brukmanf976c852005-04-21 22:55:34 +0000134 buff = 0;
Reid Spencere3c6ad72004-11-14 22:04:46 +0000135
136 // Compute the initial length of the uncompression buffer. Note that this
137 // is twice the length of the compressed buffer and will be doubled again
Misha Brukmanf976c852005-04-21 22:55:34 +0000138 // in the callback for an initial allocation of 4x compressedSize. This
139 // calculation is based on the typical compression ratio of bzip2 on LLVM
140 // bytecode files which typically ranges in the 50%-75% range. Since we
141 // typically get at least 50%, doubling is insufficient. By using a 4x
Reid Spencere3c6ad72004-11-14 22:04:46 +0000142 // multiplier on the first allocation, we minimize the impact of having to
143 // copy the buffer on reallocation.
Misha Brukmanf976c852005-04-21 22:55:34 +0000144 size = compressedSize*2;
Reid Spencere3c6ad72004-11-14 22:04:46 +0000145 }
146
Chris Lattner8c2cb422005-01-29 17:05:56 +0000147 /// trimTo - Reduce the size of the buffer down to the specified amount. This
148 /// is useful after have read in the bytecode file to discard extra unused
149 /// memory.
150 ///
151 void trimTo(size_t NewSize) {
152 buff = (char*)::realloc(buff, NewSize);
153 size = NewSize;
154 }
155
Reid Spencere3c6ad72004-11-14 22:04:46 +0000156 /// This function handles allocation of the buffer used for decompression of
157 /// compressed bytecode files. It is called by Compressor::decompress which is
Misha Brukmanf976c852005-04-21 22:55:34 +0000158 /// called by BytecodeReader::ParseBytecode.
Chris Lattner5ae35712005-01-29 17:17:18 +0000159 static size_t callback(char*&buff, size_t &sz, void* ctxt){
Reid Spencere3c6ad72004-11-14 22:04:46 +0000160 // Case the context variable to our BufferContext
161 BufferContext* bc = reinterpret_cast<BufferContext*>(ctxt);
162
163 // Compute the new, doubled, size of the block
Chris Lattner5ae35712005-01-29 17:17:18 +0000164 size_t new_size = bc->size * 2;
Reid Spencere3c6ad72004-11-14 22:04:46 +0000165
166 // Extend or allocate the block (realloc(0,n) == malloc(n))
167 char* new_buff = (char*) ::realloc(bc->buff, new_size);
168
169 // Figure out what to return to the Compressor. If this is the first call,
170 // then bc->buff will be null. In this case we want to return the entire
171 // buffer because there was no previous allocation. Otherwise, when the
Misha Brukmanf976c852005-04-21 22:55:34 +0000172 // buffer is reallocated, we save the new base pointer in the
173 // BufferContext.buff field but return the address of only the extension,
174 // mid-way through the buffer (since its size was doubled). Furthermore,
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000175 // the sz result must be 1/2 the total size of the buffer.
Reid Spencere3c6ad72004-11-14 22:04:46 +0000176 if (bc->buff == 0 ) {
177 buff = bc->buff = new_buff;
178 sz = new_size;
179 } else {
180 bc->buff = new_buff;
181 buff = new_buff + bc->size;
182 sz = bc->size;
183 }
184
185 // Retain the size of the allocated block
186 bc->size = new_size;
187
188 // Make sure we fail (return 1) if we didn't get any memory.
189 return (bc->buff == 0 ? 1 : 0);
190 }
191};
192
Misha Brukmanf976c852005-04-21 22:55:34 +0000193} // end anonymous namespace
Chris Lattner52b87522005-01-29 16:53:02 +0000194
195
196namespace {
197
Reid Spencere3c6ad72004-11-14 22:04:46 +0000198// This structure retains the context when compressing the bytecode file. The
199// WriteCompressedData function below uses it to keep track of the previously
Misha Brukmanf976c852005-04-21 22:55:34 +0000200// filled chunk of memory (which it writes) and how many bytes have been
Reid Spencere3c6ad72004-11-14 22:04:46 +0000201// written.
202struct WriterContext {
203 // Initialize the context
Misha Brukmanf976c852005-04-21 22:55:34 +0000204 WriterContext(std::ostream*OS, size_t CS)
Reid Spencere3c6ad72004-11-14 22:04:46 +0000205 : chunk(0), sz(0), written(0), compSize(CS), Out(OS) {}
206
207 // Make sure we clean up memory
208 ~WriterContext() {
209 if (chunk)
210 delete [] chunk;
211 }
212
213 // Write the chunk
Chris Lattner5ae35712005-01-29 17:17:18 +0000214 void write(size_t size = 0) {
215 size_t write_size = (size == 0 ? sz : size);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000216 Out->write(chunk,write_size);
217 written += write_size;
218 delete [] chunk;
219 chunk = 0;
220 sz = 0;
221 }
222
Misha Brukmanf976c852005-04-21 22:55:34 +0000223 // This function is a callback used by the Compressor::compress function to
Reid Spencere3c6ad72004-11-14 22:04:46 +0000224 // allocate memory for the compression buffer. This function fulfills that
225 // responsibility but also writes the previous (now filled) buffer out to the
Misha Brukmanf976c852005-04-21 22:55:34 +0000226 // stream.
Chris Lattner5ae35712005-01-29 17:17:18 +0000227 static size_t callback(char*& buffer, size_t &size, void* context) {
Reid Spencere3c6ad72004-11-14 22:04:46 +0000228 // Cast the context to the structure it must point to.
Chris Lattner5ae35712005-01-29 17:17:18 +0000229 WriterContext* ctxt = reinterpret_cast<WriterContext*>(context);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000230
231 // If there's a previously allocated chunk, it must now be filled with
232 // compressed data, so we write it out and deallocate it.
233 if (ctxt->chunk != 0 && ctxt->sz > 0 ) {
234 ctxt->write();
235 }
236
237 // Compute the size of the next chunk to allocate. We attempt to allocate
238 // enough memory to handle the compression in a single memory allocation. In
239 // general, the worst we do on compression of bytecode is about 50% so we
240 // conservatively estimate compSize / 2 as the size needed for the
241 // compression buffer. compSize is the size of the compressed data, provided
242 // by WriteBytecodeToFile.
243 size = ctxt->sz = ctxt->compSize / 2;
244
245 // Allocate the chunks
246 buffer = ctxt->chunk = new char [size];
247
248 // We must return 1 if the allocation failed so that the Compressor knows
249 // not to use the buffer pointer.
250 return (ctxt->chunk == 0 ? 1 : 0);
251 }
252
253 char* chunk; // pointer to the chunk of memory filled by compression
Chris Lattner5ae35712005-01-29 17:17:18 +0000254 size_t sz; // size of chunk
255 size_t written; // aggregate total of bytes written in all chunks
256 size_t compSize; // size of the uncompressed buffer
Reid Spencere3c6ad72004-11-14 22:04:46 +0000257 std::ostream* Out; // The stream we write the data to.
258};
259
Chris Lattner52b87522005-01-29 16:53:02 +0000260} // end anonymous namespace
Reid Spencer460eb632004-10-04 10:49:41 +0000261
262// Compress in one of three ways
Misha Brukmanf976c852005-04-21 22:55:34 +0000263size_t Compressor::compress(const char* in, size_t size,
Chris Lattner5ae35712005-01-29 17:17:18 +0000264 OutputDataCallback* cb, void* context) {
Reid Spencer460eb632004-10-04 10:49:41 +0000265 assert(in && "Can't compress null buffer");
266 assert(size && "Can't compress empty buffer");
267 assert(cb && "Can't compress without a callback function");
268
Chris Lattner5ae35712005-01-29 17:17:18 +0000269 size_t result = 0;
Reid Spencer460eb632004-10-04 10:49:41 +0000270
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000271 // For small files, we just don't bother compressing. bzip2 isn't very good
272 // with tiny files and can actually make the file larger, so we just avoid
273 // it altogether.
Reid Spencera7a5cc82004-11-30 07:13:34 +0000274 if (size > 64*1024) {
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000275 // Set up the bz_stream
276 bz_stream bzdata;
277 bzdata.bzalloc = 0;
278 bzdata.bzfree = 0;
279 bzdata.opaque = 0;
280 bzdata.next_in = (char*)in;
281 bzdata.avail_in = size;
282 bzdata.next_out = 0;
283 bzdata.avail_out = 0;
284 switch ( BZ2_bzCompressInit(&bzdata, 5, 0, 100) ) {
285 case BZ_CONFIG_ERROR: throw std::string("bzip2 library mis-compiled");
286 case BZ_PARAM_ERROR: throw std::string("Compressor internal error");
287 case BZ_MEM_ERROR: throw std::string("Out of memory");
288 case BZ_OK:
289 default:
290 break;
291 }
Reid Spencer460eb632004-10-04 10:49:41 +0000292
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000293 // Get a block of memory
Tanya Lattner5c3fa1e2005-01-29 23:29:55 +0000294 if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) {
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000295 BZ2_bzCompressEnd(&bzdata);
296 throw std::string("Can't allocate output buffer");
297 }
298
299 // Put compression code in first byte
300 (*bzdata.next_out++) = COMP_TYPE_BZIP2;
301 bzdata.avail_out--;
302
303 // Compress it
304 int bzerr = BZ_FINISH_OK;
305 while (BZ_FINISH_OK == (bzerr = BZ2_bzCompress(&bzdata, BZ_FINISH))) {
Tanya Lattner5c3fa1e2005-01-29 23:29:55 +0000306 if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000307 BZ2_bzCompressEnd(&bzdata);
308 throw std::string("Can't allocate output buffer");
309 }
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000310 }
311 switch (bzerr) {
312 case BZ_SEQUENCE_ERROR:
313 case BZ_PARAM_ERROR: throw std::string("Param/Sequence error");
314 case BZ_FINISH_OK:
315 case BZ_STREAM_END: break;
316 default: throw std::string("Oops: ") + utostr(unsigned(bzerr));
Reid Spencer460eb632004-10-04 10:49:41 +0000317 }
318
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000319 // Finish
Chris Lattner5ae35712005-01-29 17:17:18 +0000320 result = bzdata.total_out_lo32 + 1;
321 if (sizeof(size_t) == sizeof(uint64_t))
322 result |= static_cast<uint64_t>(bzdata.total_out_hi32) << 32;
Reid Spencer460eb632004-10-04 10:49:41 +0000323
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000324 BZ2_bzCompressEnd(&bzdata);
325 } else {
326 // Do null compression, for small files
327 NULLCOMP_stream sdata;
328 sdata.next_in = (char*)in;
329 sdata.avail_in = size;
330 NULLCOMP_init(&sdata);
Reid Spencer460eb632004-10-04 10:49:41 +0000331
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000332 if (0 != getdata(sdata.next_out, sdata.avail_out,cb,context)) {
333 throw std::string("Can't allocate output buffer");
Reid Spencer460eb632004-10-04 10:49:41 +0000334 }
335
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000336 *(sdata.next_out++) = COMP_TYPE_NONE;
337 sdata.avail_out--;
Reid Spencer460eb632004-10-04 10:49:41 +0000338
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000339 while (!NULLCOMP_compress(&sdata)) {
Reid Spencer469c34b2004-10-04 17:29:25 +0000340 if (0 != getdata(sdata.next_out, sdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000341 throw std::string("Can't allocate output buffer");
342 }
Reid Spencer460eb632004-10-04 10:49:41 +0000343 }
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000344
345 result = sdata.output_count + 1;
346 NULLCOMP_end(&sdata);
Reid Spencer460eb632004-10-04 10:49:41 +0000347 }
348 return result;
349}
350
Chris Lattner5ae35712005-01-29 17:17:18 +0000351size_t Compressor::compressToNewBuffer(const char* in, size_t size, char*&out) {
Reid Spencere3c6ad72004-11-14 22:04:46 +0000352 BufferContext bc(size);
Chris Lattner5ae35712005-01-29 17:17:18 +0000353 size_t result = compress(in,size,BufferContext::callback,(void*)&bc);
Chris Lattner8c2cb422005-01-29 17:05:56 +0000354 bc.trimTo(result);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000355 out = bc.buff;
356 return result;
357}
358
Misha Brukmanf976c852005-04-21 22:55:34 +0000359size_t
Chris Lattner5ae35712005-01-29 17:17:18 +0000360Compressor::compressToStream(const char*in, size_t size, std::ostream& out) {
Reid Spencere3c6ad72004-11-14 22:04:46 +0000361 // Set up the context and writer
Chris Lattner5ae35712005-01-29 17:17:18 +0000362 WriterContext ctxt(&out, size / 2);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000363
Chris Lattner5ae35712005-01-29 17:17:18 +0000364 // Compress everything after the magic number (which we'll alter).
365 size_t zipSize = Compressor::compress(in,size,
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000366 WriterContext::callback, (void*)&ctxt);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000367
368 if (ctxt.chunk) {
369 ctxt.write(zipSize - ctxt.written);
370 }
371 return zipSize;
372}
373
Reid Spencer460eb632004-10-04 10:49:41 +0000374// Decompress in one of three ways
Chris Lattner5ae35712005-01-29 17:17:18 +0000375size_t Compressor::decompress(const char *in, size_t size,
376 OutputDataCallback* cb, void* context) {
Reid Spencer460eb632004-10-04 10:49:41 +0000377 assert(in && "Can't decompress null buffer");
378 assert(size > 1 && "Can't decompress empty buffer");
379 assert(cb && "Can't decompress without a callback function");
380
Chris Lattner5ae35712005-01-29 17:17:18 +0000381 size_t result = 0;
Reid Spencer460eb632004-10-04 10:49:41 +0000382
383 switch (*in++) {
384 case COMP_TYPE_BZIP2: {
Reid Spencer460eb632004-10-04 10:49:41 +0000385 // Set up the bz_stream
386 bz_stream bzdata;
387 bzdata.bzalloc = 0;
388 bzdata.bzfree = 0;
389 bzdata.opaque = 0;
Reid Spencere3c6ad72004-11-14 22:04:46 +0000390 bzdata.next_in = (char*)in;
Reid Spencer460eb632004-10-04 10:49:41 +0000391 bzdata.avail_in = size - 1;
392 bzdata.next_out = 0;
393 bzdata.avail_out = 0;
394 switch ( BZ2_bzDecompressInit(&bzdata, 0, 0) ) {
395 case BZ_CONFIG_ERROR: throw std::string("bzip2 library mis-compiled");
396 case BZ_PARAM_ERROR: throw std::string("Compressor internal error");
397 case BZ_MEM_ERROR: throw std::string("Out of memory");
398 case BZ_OK:
399 default:
400 break;
401 }
402
403 // Get a block of memory
Tanya Lattner5c3fa1e2005-01-29 23:29:55 +0000404 if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000405 BZ2_bzDecompressEnd(&bzdata);
406 throw std::string("Can't allocate output buffer");
407 }
408
409 // Decompress it
410 int bzerr = BZ_OK;
411 while (BZ_OK == (bzerr = BZ2_bzDecompress(&bzdata))) {
Tanya Lattner5c3fa1e2005-01-29 23:29:55 +0000412 if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000413 BZ2_bzDecompressEnd(&bzdata);
414 throw std::string("Can't allocate output buffer");
415 }
416 }
417
418 switch (bzerr) {
419 case BZ_PARAM_ERROR: throw std::string("Compressor internal error");
420 case BZ_MEM_ERROR: throw std::string("Out of memory");
421 case BZ_DATA_ERROR: throw std::string("Data integrity error");
422 case BZ_DATA_ERROR_MAGIC:throw std::string("Data is not BZIP2");
423 default: throw("Ooops");
424 case BZ_STREAM_END:
425 break;
426 }
427
428 // Finish
Chris Lattner5ae35712005-01-29 17:17:18 +0000429 result = bzdata.total_out_lo32;
430 if (sizeof(size_t) == sizeof(uint64_t))
431 result |= (static_cast<uint64_t>(bzdata.total_out_hi32) << 32);
Reid Spencer460eb632004-10-04 10:49:41 +0000432 BZ2_bzDecompressEnd(&bzdata);
433 break;
Chris Lattnerebe989c2004-10-04 16:33:25 +0000434 }
Reid Spencer460eb632004-10-04 10:49:41 +0000435
Reid Spencerf6a0acd2004-11-25 19:38:16 +0000436 case COMP_TYPE_NONE: {
Reid Spencer047c0092004-10-04 17:45:44 +0000437 NULLCOMP_stream sdata;
Reid Spencere3c6ad72004-11-14 22:04:46 +0000438 sdata.next_in = (char*)in;
Reid Spencer460eb632004-10-04 10:49:41 +0000439 sdata.avail_in = size - 1;
Reid Spencer047c0092004-10-04 17:45:44 +0000440 NULLCOMP_init(&sdata);
Reid Spencer460eb632004-10-04 10:49:41 +0000441
Reid Spencer469c34b2004-10-04 17:29:25 +0000442 if (0 != getdata(sdata.next_out, sdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000443 throw std::string("Can't allocate output buffer");
444 }
445
Reid Spencer047c0092004-10-04 17:45:44 +0000446 while (!NULLCOMP_decompress(&sdata)) {
Reid Spencer469c34b2004-10-04 17:29:25 +0000447 if (0 != getdata(sdata.next_out, sdata.avail_out,cb,context)) {
Reid Spencer460eb632004-10-04 10:49:41 +0000448 throw std::string("Can't allocate output buffer");
449 }
450 }
451
452 result = sdata.output_count;
Reid Spencer047c0092004-10-04 17:45:44 +0000453 NULLCOMP_end(&sdata);
Reid Spencer460eb632004-10-04 10:49:41 +0000454 break;
455 }
456
457 default:
458 throw std::string("Unknown type of compressed data");
459 }
460
461 return result;
462}
463
Misha Brukmanf976c852005-04-21 22:55:34 +0000464size_t
Chris Lattner5ae35712005-01-29 17:17:18 +0000465Compressor::decompressToNewBuffer(const char* in, size_t size, char*&out) {
Reid Spencere3c6ad72004-11-14 22:04:46 +0000466 BufferContext bc(size);
Chris Lattner5ae35712005-01-29 17:17:18 +0000467 size_t result = decompress(in,size,BufferContext::callback,(void*)&bc);
Reid Spencere3c6ad72004-11-14 22:04:46 +0000468 out = bc.buff;
469 return result;
470}
Chris Lattner5ae35712005-01-29 17:17:18 +0000471
Misha Brukmanf976c852005-04-21 22:55:34 +0000472size_t
Chris Lattner5ae35712005-01-29 17:17:18 +0000473Compressor::decompressToStream(const char*in, size_t size, std::ostream& out){
Reid Spencere3c6ad72004-11-14 22:04:46 +0000474 // Set up the context and writer
475 WriterContext ctxt(&out,size / 2);
476
477 // Compress everything after the magic number (which we'll alter)
Chris Lattner5ae35712005-01-29 17:17:18 +0000478 size_t zipSize = Compressor::decompress(in,size,
Reid Spencere3c6ad72004-11-14 22:04:46 +0000479 WriterContext::callback, (void*)&ctxt);
480
481 if (ctxt.chunk) {
482 ctxt.write(zipSize - ctxt.written);
483 }
484 return zipSize;
485}
486
Reid Spencer460eb632004-10-04 10:49:41 +0000487// vim: sw=2 ai