]> git.tdb.fi Git - libs/core.git/blob - source/io/zlibcompressed.h
Move non-oneliner functions out of RefPtr class declaration
[libs/core.git] / source / io / zlibcompressed.h
1 #ifndef MSP_IO_ZLIBCOMPRESSED_H_
2 #define MSP_IO_ZLIBCOMPRESSED_H_
3
4 #include <stdexcept>
5 #include <string>
6 #include <sigc++/trackable.h>
7 #include "base.h"
8
9 namespace Msp {
10 namespace IO {
11
12 class zlib_error: public std::runtime_error
13 {
14 private:
15         int code_;
16
17 public:
18         zlib_error(const std::string &, int);
19         ~zlib_error() throw() { }
20
21         int code() const throw() { return code_; }
22 };
23
24 /**
25 Compresses or decompresses data with zlib.  This class is a filter that
26 operates on top of another I/O object.
27
28 To ensure proper termination of the compressed data stream, the ZlibCompressed
29 object must be destroyed before the underlying object is closed.
30 */
31 class ZlibCompressed: public Base, public sigc::trackable
32 {
33 private:
34         struct Private;
35
36         Base &below;
37         unsigned buffer_size;
38         unsigned char *in_buffer;
39         unsigned char *out_buffer;
40         bool stream_end;
41         Private *priv;
42
43 public:
44         /** Creates a zlib de/compression object.  The underlying object must be
45         open for reading or writing, not both.  The level parameter determines
46         compression quality, ranging from 1 (fastest) to 9 (best compression). */
47         ZlibCompressed(Base &, unsigned level = 9);
48
49         /** Creates a zlib de/compression object.  Mode must be either read or
50         write, and compatible with the underlying object. */
51         ZlibCompressed(Base &, Mode, unsigned level = 9);
52
53 private:
54         void init(unsigned);
55
56 public:
57         virtual ~ZlibCompressed();
58
59         virtual void set_block(bool);
60         virtual void set_inherit(bool);
61
62         void flush();
63
64 protected:
65         virtual unsigned do_write(const char *, unsigned);
66
67 private:
68         /** Compresses data and writes it to the underlying object.  Returns true if
69         progress was made, false otherwise.  flush_mode can be any of zlib's flush
70         modes.  If it is Z_FINISH, false is also returned when the stream has been
71         terminated. */
72         bool compress_data(int flush_mode);
73
74 public:
75         virtual unsigned do_read(char *, unsigned);
76
77         virtual const Handle &get_handle(Mode);
78 };
79
80 } // namespace IO
81 } // namespace Msp
82
83 #endif