]>
Commit | Line | Data |
---|---|---|
631f1bfe JS |
1 | % ----------------------------------------------------------------------------- |
2 | % wxZlibInputStream | |
3 | % ----------------------------------------------------------------------------- | |
750b78ba | 4 | \section{\class{wxZlibInputStream}}\label{wxzlibinputstream} |
631f1bfe | 5 | |
301deecc | 6 | This filter stream decompresses a stream that is in zlib or gzip format. |
4c68a102 VS |
7 | Note that reading the gzip format requires zlib version 1.2.1 or greater, |
8 | (the builtin version does support gzips). | |
36edded9 | 9 | |
0915d0b2 VZ |
10 | The stream is not seekable, \helpref{SeekI()}{wxinputstreamseeki} returns |
11 | {\it wxInvalidOffset}. Also \helpref{GetSize()}{wxstreambasegetsize} is | |
12 | not supported, it always returns $0$. | |
13 | ||
631f1bfe JS |
14 | \wxheading{Derived from} |
15 | ||
16 | \helpref{wxFilterInputStream}{wxfilterinputstream} | |
17 | ||
954b8ae6 JS |
18 | \wxheading{Include files} |
19 | ||
20 | <wx/zstream.h> | |
21 | ||
631f1bfe JS |
22 | \wxheading{See also} |
23 | ||
0915d0b2 VZ |
24 | \helpref{wxInputStream}{wxinputstream}, |
25 | \helpref{wxZlibOutputStream}{wxzliboutputstream}. | |
26 | ||
27 | \latexignore{\rtfignore{\wxheading{Members}}} | |
28 | ||
29 | \membersection{wxZlibInputStream::wxZlibInputStream} | |
30 | ||
4c68a102 | 31 | \func{}{wxZlibInputStream}{\param{wxInputStream\&}{ stream}, \param{int}{ flags = wxZLIB\_AUTO}} |
0915d0b2 | 32 | |
301deecc | 33 | The {\it flags} wxZLIB\_ZLIB and wxZLIB\_GZIP specify whether the input data |
4c68a102 | 34 | is in zlib or gzip format. If wxZLIB\_AUTO is used, then zlib will |
301deecc | 35 | autodetect the stream type, this is the default. |
4c68a102 VS |
36 | |
37 | If {\it flags} is wxZLIB\_NO\_HEADER, then the data is assumed to be a raw | |
38 | deflate stream without either zlib or gzip headers. This is a lower level | |
39 | mode, which is not usually used directly. It can be used to read a raw | |
40 | deflate stream embedded in a higher level protocol. | |
41 | ||
42 | %if WXWIN_COMPATIBILITY_2_4 | |
43 | This version is not by default compatible with the output produced by | |
44 | the version of {\it wxZlibOutputStream} in wxWidgets 2.4.x. However, | |
45 | there is a compatibilty mode, which is switched on by passing | |
46 | wxZLIB\_24COMPATIBLE for flags. Note that in when operating in compatibilty | |
47 | mode error checking is very much reduced. | |
48 | %endif | |
0915d0b2 | 49 | |
301deecc | 50 | The following symbols can be use for the flags: |
0915d0b2 VZ |
51 | |
52 | \begin{verbatim} | |
53 | // Flags | |
54 | enum { | |
4c68a102 VS |
55 | #if WXWIN_COMPATIBILITY_2_4 |
56 | wxZLIB_24COMPATIBLE = 4, // read v2.4.x data without error | |
57 | #endif | |
58 | wxZLIB_NO_HEADER = 0, // raw deflate stream, no header or checksum | |
59 | wxZLIB_ZLIB = 1, // zlib header and checksum | |
60 | wxZLIB_GZIP = 2, // gzip header and checksum, requires zlib 1.2.1+ | |
61 | wxZLIB_AUTO = 3 // autodetect header zlib or gzip | |
301deecc | 62 | }; |
0915d0b2 VZ |
63 | \end{verbatim} |
64 | ||
4c68a102 VS |
65 | \membersection{wxZlibInputStream::CanHandleGZip}\label{wxzlibinputstreamcanhandlegzip} |
66 | ||
67 | \func{static bool}{CanHandleGZip}{\void} | |
68 | ||
69 | Returns true if zlib library in use can handle gzip compressed data. | |
631f1bfe | 70 | |
631f1bfe JS |
71 | % ----------------------------------------------------------------------------- |
72 | % wxZlibOutputStream | |
73 | % ----------------------------------------------------------------------------- | |
750b78ba | 74 | \section{\class{wxZlibOutputStream}}\label{wxzliboutputstream} |
631f1bfe | 75 | |
301deecc RN |
76 | This stream compresses all data written to it. The compressed output can be |
77 | in zlib or gzip format. | |
4c68a102 VS |
78 | Note that writing the gzip format requires zlib version 1.2.1 or greater |
79 | (the builtin version does support gzips). | |
36edded9 | 80 | |
0915d0b2 VZ |
81 | The stream is not seekable, \helpref{SeekO()}{wxoutputstreamseeko} returns |
82 | {\it wxInvalidOffset}. | |
83 | ||
631f1bfe JS |
84 | \wxheading{Derived from} |
85 | ||
86 | \helpref{wxFilterOutputStream}{wxfilteroutputstream} | |
87 | ||
954b8ae6 JS |
88 | \wxheading{Include files} |
89 | ||
90 | <wx/zstream.h> | |
91 | ||
631f1bfe JS |
92 | \wxheading{See also} |
93 | ||
0915d0b2 VZ |
94 | \helpref{wxOutputStream}{wxoutputstream}, |
95 | \helpref{wxZlibInputStream}{wxzlibinputstream} | |
631f1bfe | 96 | |
5824f314 VS |
97 | |
98 | \latexignore{\rtfignore{\wxheading{Members}}} | |
99 | ||
100 | \membersection{wxZlibOutputStream::wxZlibOutputStream} | |
101 | ||
301deecc | 102 | \func{}{wxZlibOutputStream}{\param{wxOutputStream\&}{ stream}, \param{int}{ level = -1}, \param{int}{ flags = wxZLIB\_ZLIB}} |
5824f314 VS |
103 | |
104 | Creates a new write-only compressed stream. {\it level} means level of | |
105 | compression. It is number between 0 and 9 (including these values) where | |
106 | 0 means no compression and 9 best but slowest compression. -1 is default | |
107 | value (currently equivalent to 6). | |
0915d0b2 | 108 | |
301deecc RN |
109 | The {\it flags} wxZLIB\_ZLIB and wxZLIB\_GZIP specify whether the output data |
110 | will be in zlib or gzip format. wxZLIB\_ZLIB is the default. | |
4c68a102 VS |
111 | |
112 | If {\it flags} is wxZLIB\_NO\_HEADER, then a raw deflate stream is output | |
113 | without either zlib or gzip headers. This is a lower level | |
114 | mode, which is not usually used directly. It can be used to embed a raw | |
115 | deflate stream in a higher level protocol. | |
0915d0b2 VZ |
116 | |
117 | The following symbols can be use for the compression level and flags: | |
118 | ||
119 | \begin{verbatim} | |
120 | // Compression level | |
121 | enum { | |
122 | wxZ_DEFAULT_COMPRESSION = -1, | |
123 | wxZ_NO_COMPRESSION = 0, | |
124 | wxZ_BEST_SPEED = 1, | |
125 | wxZ_BEST_COMPRESSION = 9 | |
301deecc | 126 | }; |
0915d0b2 VZ |
127 | |
128 | // Flags | |
129 | enum { | |
301deecc RN |
130 | wxZLIB_NO_HEADER = 0, // raw deflate stream, no header or checksum |
131 | wxZLIB_ZLIB = 1, // zlib header and checksum | |
4c68a102 | 132 | wxZLIB_GZIP = 2 // gzip header and checksum, requires zlib 1.2.1+ |
301deecc | 133 | }; |
0915d0b2 VZ |
134 | \end{verbatim} |
135 | ||
4c68a102 VS |
136 | \membersection{wxZlibOutputStream::CanHandleGZip}\label{wxoutputstreamcanhandlegzip} |
137 | ||
138 | \func{static bool}{CanHandleGZip}{\void} | |
139 | ||
140 | Returns true if zlib library in use can handle gzip compressed data. | |
141 |