Botan 1.10.17
Botan::Bzip_Decompression Class Reference

#include <bzip2.h>

Inheritance diagram for Botan::Bzip_Decompression:
Botan::Filter

Public Member Functions

virtual bool attachable ()
 Bzip_Decompression (bool=false)
void end_msg ()
std::string name () const
void start_msg ()
void write (const byte input[], size_t length)
 ~Bzip_Decompression ()

Protected Member Functions

void send (byte in)
void send (const byte in[], size_t length)
void send (const MemoryRegion< byte > &in)
void send (const MemoryRegion< byte > &in, size_t length)

Detailed Description

Bzip Decompression Filter

Definition at line 43 of file bzip2.h.

Constructor & Destructor Documentation

◆ Bzip_Decompression()

Botan::Bzip_Decompression::Bzip_Decompression ( bool s = false)

Definition at line 184 of file bzip2.cpp.

184 :
185 small_mem(s), buffer(DEFAULT_BUFFERSIZE)
186 {
187 no_writes = true;
188 bz = 0;
189 }

◆ ~Bzip_Decompression()

Botan::Bzip_Decompression::~Bzip_Decompression ( )
inline

Definition at line 53 of file bzip2.h.

53{ clear(); }

Member Function Documentation

◆ attachable()

virtual bool Botan::Filter::attachable ( )
inlinevirtualinherited

Check whether this filter is an attachable filter.

Returns
true if this filter is attachable, false otherwise

Reimplemented in Botan::DataSink, and Botan::SecureQueue.

Definition at line 50 of file filter.h.

50{ return true; }

◆ end_msg()

void Botan::Bzip_Decompression::end_msg ( )
virtual

Notify that the current message is finished; flush buffers and do end-of-message processing (if any).

Reimplemented from Botan::Filter.

Definition at line 255 of file bzip2.cpp.

256 {
257 if(no_writes) return;
258 bz->stream.next_in = 0;
259 bz->stream.avail_in = 0;
260
261 int rc = BZ_OK;
262 while(rc != BZ_STREAM_END)
263 {
264 bz->stream.next_out = reinterpret_cast<char*>(buffer.begin());
265 bz->stream.avail_out = buffer.size();
266 rc = BZ2_bzDecompress(&(bz->stream));
267
268 if(rc != BZ_OK && rc != BZ_STREAM_END)
269 {
270 clear();
271 throw Decoding_Error("Bzip_Decompression: Error finalizing");
272 }
273
274 send(buffer, buffer.size() - bz->stream.avail_out);
275 }
276
277 clear();
278 }
void send(const byte in[], size_t length)
Definition filter.cpp:28
Decoding_Error(const std::string &name)
Definition exceptn.h:140

References Botan::Decoding_Error::Decoding_Error(), and Botan::Filter::send().

◆ name()

std::string Botan::Bzip_Decompression::name ( ) const
inlinevirtual
Returns
descriptive name for this filter

Implements Botan::Filter.

Definition at line 46 of file bzip2.h.

46{ return "Bzip_Decompression"; }

◆ send() [1/4]

void Botan::Filter::send ( byte in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 63 of file filter.h.

63{ send(&in, 1); }

References send().

Referenced by send().

◆ send() [2/4]

void Botan::Filter::send ( const byte in[],
size_t length )
protectedinherited

◆ send() [3/4]

void Botan::Filter::send ( const MemoryRegion< byte > & in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 68 of file filter.h.

68{ send(&in[0], in.size()); }

References send(), and Botan::MemoryRegion< T >::size().

Referenced by send().

◆ send() [4/4]

void Botan::Filter::send ( const MemoryRegion< byte > & in,
size_t length )
inlineprotectedinherited
Parameters
insome input for the filter
lengththe number of bytes of in to send

Definition at line 74 of file filter.h.

75 {
76 send(&in[0], length);
77 }

References send().

◆ start_msg()

void Botan::Bzip_Decompression::start_msg ( )
virtual

Start a new message. Must be closed by end_msg() before another message can be started.

Reimplemented from Botan::Filter.

Definition at line 241 of file bzip2.cpp.

242 {
243 clear();
244 bz = new Bzip_Stream;
245
246 if(BZ2_bzDecompressInit(&(bz->stream), 0, small_mem) != BZ_OK)
247 throw Memory_Exhaustion();
248
249 no_writes = true;
250 }

Referenced by write().

◆ write()

void Botan::Bzip_Decompression::write ( const byte input[],
size_t length )
virtual

Write a portion of a message to this filter.

Parameters
inputthe input as a byte array
lengththe length of the byte array input

Implements Botan::Filter.

Definition at line 194 of file bzip2.cpp.

195 {
196 if(length) no_writes = false;
197
198 char* input = reinterpret_cast<char*>(const_cast<byte*>(input_arr));
199
200 bz->stream.next_in = input;
201 bz->stream.avail_in = length;
202
203 while(bz->stream.avail_in != 0)
204 {
205 bz->stream.next_out = reinterpret_cast<char*>(buffer.begin());
206 bz->stream.avail_out = buffer.size();
207
208 int rc = BZ2_bzDecompress(&(bz->stream));
209
210 if(rc != BZ_OK && rc != BZ_STREAM_END)
211 {
212 clear();
213
214 if(rc == BZ_DATA_ERROR)
215 throw Decoding_Error("Bzip_Decompression: Data integrity error");
216 else if(rc == BZ_DATA_ERROR_MAGIC)
217 throw Decoding_Error("Bzip_Decompression: Invalid input");
218 else if(rc == BZ_MEM_ERROR)
219 throw Memory_Exhaustion();
220 else
221 throw std::runtime_error("Bzip2 decompression: Unknown error");
222 }
223
224 send(buffer, buffer.size() - bz->stream.avail_out);
225
226 if(rc == BZ_STREAM_END)
227 {
228 size_t read_from_block = length - bz->stream.avail_in;
229 start_msg();
230 bz->stream.next_in = input + read_from_block;
231 bz->stream.avail_in = length - read_from_block;
232 input += read_from_block;
233 length -= read_from_block;
234 }
235 }
236 }

References Botan::Decoding_Error::Decoding_Error(), Botan::Filter::send(), and start_msg().


The documentation for this class was generated from the following files: