aboutsummaryrefslogtreecommitdiff
path: root/src/stable/bzip2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/bzip2.h')
-rw-r--r--src/stable/bzip2.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/stable/bzip2.h b/src/stable/bzip2.h
new file mode 100644
index 0000000..9a8d172
--- /dev/null
+++ b/src/stable/bzip2.h
@@ -0,0 +1,49 @@
1/*
2 * Copyright (C) 2007-2011 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
8#ifndef BU_BZIP2_H
9#define BU_BZIP2_H
10
11#include <stdint.h>
12
13#include "bu/filter.h"
14
15namespace Bu
16{
17 /**
18 * Provides BZip2 type compression and decompression.
19 *
20 *@ingroup Streams
21 *@ingroup Compression
22 */
23 class BZip2 : public Bu::Filter
24 {
25 public:
26 BZip2( Bu::Stream &rNext, int nCompression=9 );
27 virtual ~BZip2();
28
29 virtual void start();
30 virtual Bu::size stop();
31 virtual Bu::size read( void *pBuf, Bu::size nBytes );
32 virtual Bu::size write( const void *pBuf, Bu::size nBytes );
33
34 virtual bool isOpen();
35
36 Bu::size getCompressedSize();
37
38 private:
39 void bzError( int code );
40 void *prState;
41 bool bReading;
42 int nCompression;
43 char *pBuf;
44 uint32_t nBufSize;
45 Bu::size sTotalOut;
46 };
47}
48
49#endif