Giriş
Şu satırı dahil ederiz.
Açıklaması şöyle.
Örnek
Şöyle yaparız.
Şöyle yaparız.
filtering_stream nesnesine push() çağrısı ile eklenmiş bir stream'e sıra numarası ile erişmek için kullanılır. Bu çağrı boost::iostreams::detail::mode_adapter tipinde bir sonuç döner. Bu sonucu istediğimiz tipe çevirmek için boost::reference_wrapper() metodunu kullanıırız.
boost::reference_wrapper için şu satırı dahil ederiz.
Şöyle yaparız.
gzip parametrelerine erişmek için şöyle yaparız.
Şöyle yaparız.
Şu satırı dahil ederiz.
#include <boost/iostreams/filtering_stream.hpp>
bzip için şu satırı dahil ederiz.#include <boost/iostreams/filter/bzip2.hpp>
gzip için şu satırı dahil ederiz.#include <boost/iostreams/filter/gzip.hpp>
Kopyalama için şu satırı dahil ederiz.#include <boost/iostreams/copy.hpp>
KalıtımAçıklaması şöyle.
Constructorfiltering_stream derives from std::basic_istream, std::basic_ostream or std::basic_iostream, depending on its Mode parameter.
Örnek
Şöyle yaparız.
bio::filtering_stream<bio::input> in;
ÖrnekŞöyle yaparız.
bio::filtering_stream<bio::bidirectional> inout;
Bu stream'e eklemek için şöyle yaparız.inout.push(bio::combine(.., ...));
component metodufiltering_stream nesnesine push() çağrısı ile eklenmiş bir stream'e sıra numarası ile erişmek için kullanılır. Bu çağrı boost::iostreams::detail::mode_adapter tipinde bir sonuç döner. Bu sonucu istediğimiz tipe çevirmek için boost::reference_wrapper() metodunu kullanıırız.
boost::reference_wrapper için şu satırı dahil ederiz.
#include <boost/core/ref.hpp>
ÖrnekŞöyle yaparız.
std::ifstream file("test_data.dat.gz");
boost::iostreams::filtering_istream in;
in.push(boost::iostreams::gzip_decompressor());
in.push(boost::ref(file));
if( auto pfile = in.component<boost::reference_wrapper<std::ifstream>> (1) )
{
std::ifstream& rfile = *pfile;
std::cout << "is_open: " << rfile.is_open() << "\n";
}
Örnekgzip parametrelerine erişmek için şöyle yaparız.
std::ifstream file("file.gz", std::ios_base::in | std::ios_base::binary);
try {
boost::iostreams::filtering_istream in;
using gz_t = boost::iostreams::gzip_decompressor;
in.push(gz_t());
in.push(file);
for(std::string str; std::getline(in, str); )
{
std::cout << "Processed line " << str << '\n';
}
if (gz_t* gz = in.component<0, gz_t>()) {
std::cout << "Original filename: " << gz->file_name() << "\n";
std::cout << "Original mtime: " << gz->mtime() << "\n";
std::cout << "Zip comment: " << gz->comment() << "\n";
}
}
catch(const boost::iostreams::gzip_error& e) {
std::cout << e.what() << '\n';
}
Çıktı olarak şunu alırız.Processed line Hello world
Original filename: testj.txt
Original mtime: 1518987084
Zip comment:
push metodu - açmak içinŞöyle yaparız.
std::string pathToFile = ...;
// input
std::ifstream file(pathToFile, std::ios::binary);
bio::filtering_stream<bio::input> in;
in.push(bio::bzip2_decompressor());
in.push (file);
Bu stream'i bir başka stream'e kopyalarız. Şöyle yaparız.std::ofstream outFile = ...;;
boost::iostreams::copy (in
, outFile);
Hiç yorum yok:
Yorum Gönder