#include <genesis/utils/io/gzip_output_target.hpp>
Inherits BaseOutputTarget.
Output target for writing byte data to a gzip/zlib-compressed target.
This output target is a wrapper that takes some other output target (FileOutputTarget, StringOutputTarget, StreamOutputTarget, etc), and compresses using the gzip format on the fly while writing to that other target.
The class can be moved, but not copied, because of the internal state that is kept for compression, and which would mess up the output if copied.
Definition at line 61 of file gzip_output_target.hpp.
Public Member Functions | |
GzipOutputTarget (GzipOutputTarget &&)=default | |
GzipOutputTarget (GzipOutputTarget const &)=delete | |
GzipOutputTarget (std::shared_ptr< BaseOutputTarget > output_target, GzipCompressionLevel compression_level=GzipCompressionLevel::kDefaultCompression) | |
Construct the output target using another output target (FileOutputTarget, StringOutputTarget, StreamOutputTarget, etc), and add gzip/zlib compression on top, using the specified GzipCompressionLevel%. More... | |
~GzipOutputTarget () override=default | |
GzipOutputTarget & | operator= (GzipOutputTarget &&)=default |
GzipOutputTarget & | operator= (GzipOutputTarget const &)=delete |
Public Member Functions inherited from BaseOutputTarget | |
BaseOutputTarget ()=default | |
BaseOutputTarget (BaseOutputTarget &&)=default | |
BaseOutputTarget (BaseOutputTarget const &)=default | |
virtual | ~BaseOutputTarget () |
std::ostream & | flush () |
Flush output stream buffer. More... | |
template<typename T > | |
BaseOutputTarget & | operator<< (T const &content) |
Output stream operator template that simply forwards to the underlying ostream() object. More... | |
BaseOutputTarget & | operator= (BaseOutputTarget &&)=default |
BaseOutputTarget & | operator= (BaseOutputTarget const &)=default |
std::ostream & | ostream () |
Get the underlying output stream that is used for writing. More... | |
std::string | target_name () const |
Get a name of the output target. This is intended for user output. More... | |
std::string | target_string () const |
Get a string representing the output target. More... | |
|
inlineexplicit |
Construct the output target using another output target (FileOutputTarget, StringOutputTarget, StreamOutputTarget, etc), and add gzip/zlib compression on top, using the specified GzipCompressionLevel%.
Definition at line 74 of file gzip_output_target.hpp.
|
delete |
|
default |
|
overridedefault |
|
default |
|
delete |