1 % -----------------------------------------------------------------------------
3 % -----------------------------------------------------------------------------
4 \section{\class{wxZlibInputStream
}}\label{wxzlibinputstream
}
6 This filter stream decompresses a stream that is in zlib or gzip format.
7 Note that reading the gzip format requires zlib version
1.2.1 or greater,
8 (the builtin version does support gzip format).
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$.
14 \wxheading{Derived from
}
16 \helpref{wxFilterInputStream
}{wxfilterinputstream
}\\
17 \helpref{wxInputStream
}{wxinputstream
}\\
18 \helpref{wxStreamBase
}{wxstreambase
}
20 \wxheading{Include files
}
26 \helpref{wxBase
}{librarieslist
}
30 \helpref{wxInputStream
}{wxinputstream
},
31 \helpref{wxZlibOutputStream
}{wxzliboutputstream
}.
33 \latexignore{\rtfignore{\wxheading{Members
}}}
35 \membersection{wxZlibInputStream::wxZlibInputStream
}\label{wxzlibinputstreamwxzlibinputstream
}
37 \func{}{wxZlibInputStream
}{\param{wxInputStream\&
}{ stream
},
\param{int
}{ flags = wxZLIB
\_AUTO}}
39 \func{}{wxZlibInputStream
}{\param{wxInputStream*
}{ stream
},
\param{int
}{ flags = wxZLIB
\_AUTO}}
41 If the parent stream is passed as a pointer then the new filter stream
42 takes ownership of it. If it is passed by reference then it does not.
44 The
{\it flags
} wxZLIB
\_ZLIB and wxZLIB
\_GZIP specify whether the input data
45 is in zlib or gzip format. If wxZLIB
\_AUTO is used, then zlib will
46 autodetect the stream type, this is the default.
48 If
{\it flags
} is wxZLIB
\_NO\_HEADER, then the data is assumed to be a raw
49 deflate stream without either zlib or gzip headers. This is a lower level
50 mode, which is not usually used directly. It can be used to read a raw
51 deflate stream embedded in a higher level protocol.
53 %if WXWIN_COMPATIBILITY_2_4
54 This version is not by default compatible with the output produced by
55 the version of
{\it wxZlibOutputStream
} in wxWidgets
2.4.x. However,
56 there is a compatibility mode, which is switched on by passing
57 wxZLIB
\_24COMPATIBLE for flags. Note that in when operating in compatibility
58 mode error checking is very much reduced.
61 The following symbols can be use for the flags:
66 #if WXWIN_COMPATIBILITY_2_4
67 wxZLIB_24COMPATIBLE =
4, // read v2.4.x data without error
69 wxZLIB_NO_HEADER =
0, // raw deflate stream, no header or checksum
70 wxZLIB_ZLIB =
1, // zlib header and checksum
71 wxZLIB_GZIP =
2, // gzip header and checksum, requires zlib
1.2.1+
72 wxZLIB_AUTO =
3 // autodetect header zlib or gzip
76 \membersection{wxZlibInputStream::CanHandleGZip
}\label{wxzlibinputstreamcanhandlegzip
}
78 \func{static bool
}{CanHandleGZip
}{\void}
80 Returns true if zlib library in use can handle gzip compressed data.
82 % -----------------------------------------------------------------------------
84 % -----------------------------------------------------------------------------
85 \section{\class{wxZlibOutputStream
}}\label{wxzliboutputstream
}
87 This stream compresses all data written to it. The compressed output can be
88 in zlib or gzip format.
89 Note that writing the gzip format requires zlib version
1.2.1 or greater
90 (the builtin version does support gzip format).
92 The stream is not seekable,
\helpref{SeekO()
}{wxoutputstreamseeko
} returns
93 {\it wxInvalidOffset
}.
95 \wxheading{Derived from
}
97 \helpref{wxFilterOutputStream
}{wxfilteroutputstream
}\\
98 \helpref{wxOutputStream
}{wxoutputstream
}\\
99 \helpref{wxStreamBase
}{wxstreambase
}
101 \wxheading{Include files
}
107 \helpref{wxBase
}{librarieslist
}
111 \helpref{wxOutputStream
}{wxoutputstream
},
112 \helpref{wxZlibInputStream
}{wxzlibinputstream
}
115 \latexignore{\rtfignore{\wxheading{Members
}}}
117 \membersection{wxZlibOutputStream::wxZlibOutputStream
}\label{wxzliboutputstreamwxzliboutputstream
}
119 \func{}{wxZlibOutputStream
}{\param{wxOutputStream\&
}{ stream
},
\param{int
}{ level = -
1},
\param{int
}{ flags = wxZLIB
\_ZLIB}}
121 \func{}{wxZlibOutputStream
}{\param{wxOutputStream*
}{ stream
},
\param{int
}{ level = -
1},
\param{int
}{ flags = wxZLIB
\_ZLIB}}
123 Creates a new write-only compressed stream.
{\it level
} means level of
124 compression. It is number between
0 and
9 (including these values) where
125 0 means no compression and
9 best but slowest compression. -
1 is default
126 value (currently equivalent to
6).
128 If the parent stream is passed as a pointer then the new filter stream
129 takes ownership of it. If it is passed by reference then it does not.
131 The
{\it flags
} wxZLIB
\_ZLIB and wxZLIB
\_GZIP specify whether the output data
132 will be in zlib or gzip format. wxZLIB
\_ZLIB is the default.
134 If
{\it flags
} is wxZLIB
\_NO\_HEADER, then a raw deflate stream is output
135 without either zlib or gzip headers. This is a lower level
136 mode, which is not usually used directly. It can be used to embed a raw
137 deflate stream in a higher level protocol.
139 The following symbols can be use for the compression level and flags:
144 wxZ_DEFAULT_COMPRESSION = -
1,
145 wxZ_NO_COMPRESSION =
0,
147 wxZ_BEST_COMPRESSION =
9
152 wxZLIB_NO_HEADER =
0, // raw deflate stream, no header or checksum
153 wxZLIB_ZLIB =
1, // zlib header and checksum
154 wxZLIB_GZIP =
2 // gzip header and checksum, requires zlib
1.2.1+
158 \membersection{wxZlibOutputStream::CanHandleGZip
}\label{wxoutputstreamcanhandlegzip
}
160 \func{static bool
}{CanHandleGZip
}{\void}
162 Returns true if zlib library in use can handle gzip compressed data.