Boost.Iostreams is a C++ framework for defining streams, stream buffers and I/O filters.

learn more… | top users | synonyms

1
vote
2answers
81 views

Why stringstream::str() truncates string?

I have stringstream object. It is filled through stringstream ss; boost::iostreams::copy(inp,ss); from boost::iostreams::filtering_streambuf<boost::iostreams::input> inp; and actually ...
0
votes
1answer
22 views

boost xml_iarchive crashes when destructors are called

Im having a bit of trouble trying to figure out why this piece of code would crash when the start the function returns 0; I suspect that when it returns from the start function it calls the ...
0
votes
1answer
66 views

boost::iostreams reading from source device

I've been trying to get my head around the iostreams library by boost. But i cant really fully grasp the concepts. Say i have the following class: Pseudocode: The below code is only to illustrate ...
1
vote
1answer
61 views

Crash when using boost::iostreams

I'm trying to use boost::iostreams(1.53.0) to uncompress a HTTP request body and later process it. But I get a crash when I run the following code. try { using namespace boost::iostreams; ...
0
votes
0answers
74 views

boost::iostreams::mapped_file file path issue

I ran into an issue using the mapped_file iostreams library of boost. boost documentation : mapped_file After reading through all the documentation and examples I could read, I still can't get the ...
1
vote
2answers
95 views

compile error on boost::iostreams::copy

I'm trying to learn boost::iostreams by some examples. Here is one of them which can't be accepted by gcc: #include <iostream> #include <boost/iostreams/filter/regex.hpp> #include ...
0
votes
0answers
49 views

C++ Stream_buf inheritance vs boost::iostreams

I’m trying to write some debugging facilities for a C++ program which uses std::cout to output debug streams to the console. I want to be able to add information to the stream like: Debug message ...
0
votes
1answer
112 views

in boost iostream filtering_ostream, what is the difference between sync(), strict_sync() and flush()?

considering a simple counting filter: class CountableOstreamFilter : public boost::iostreams::multichar_output_filter { public: CountableOstreamFilter(): m_written(0) { } ...
5
votes
1answer
281 views

Spurious errors in Eclipse CDT: boost::iostreams

I have the following code in Eclipse CDT (Juno SR1): #include <fstream> #include <iostream> #include <boost/iostreams/filter/gzip.hpp> #include ...
2
votes
0answers
91 views

how to decompress data to a dynamically allocated memory location

Basically I am trying to decompress some source to the dynamically allocation memory pointed by data pointer. I have following code, I can see copy() is working, but data pointed memory is all 0s. ...
4
votes
1answer
269 views

Boost IO Stream and ZLib speed up

I have a large file of data I have compressed with Zlib using boost IOStreams and filtering stream buffers: boost::iostreams::array_source uncompressedArray( reinterpret_cast< const char* >( ...
1
vote
1answer
229 views

boost::iostreams::stream<boost::iostreams::array_source> does not set EOF

Sample: namespace boostio = boost::iostreams; boostio::stream<boostio::array_source> memStream(arr); while (!memStream.eof()) { char tst[2]; memStream2.readsome(tst, 2); } Here I ...
1
vote
1answer
155 views

Boost.Iostreams vs. iostream/streambuf overloading for bitstream I/O

For my current task I need a possibility to read/write (mostly file based) bitstreams. Though this is a more or less trivial task if coded in standard C/C++ I'd like to rewrite to code using a more ...
2
votes
2answers
185 views

compressed length of a string by boost::iostreams

I have a string (of some fixed length), which I need to compress and then compare the compressed lengths (as a proxy for redundancy in the data or as a rough approximation to the Kolmogorov ...
1
vote
1answer
348 views

warning message RTTI symbol not found when using boost::iostreams

I use Boost::iostreams to write simultaneously to my console and a file. When i use eclipse to debug(with gdb of course), i receive a warning which says RTTI symbol not found for one of the classes ...
1
vote
0answers
176 views

Boost iostreams with bzip - unresolved symbols

My project was using an older version of Boost's iostreams w/ bzip2. I'm now trying to upgrade to Boost 1.51. At first I did not compile with bzip so obviously I got the linker yelling about ...
0
votes
0answers
64 views

IOStream - expose MemoryInputStream buffer and it's size

I want to implement a boost iostream MemoryInputStream like this: class MemoryInputDevice : public boost::iostreams::source { public: MemoryInputDevice(char* buffer, size_t size): ...
0
votes
1answer
273 views

How to write binary data to a compressed file

I have some financial data that I am processing in C++. I am storing it in a simple binary format because it requires fewer resources and is fast, however I would like to add compression to the file. ...
8
votes
2answers
315 views

How to bind program termination with end-of-stream in Boost.Process 0.5?

In this simple example of Boost.Process 0.5 ( http://www.highscore.de/boost/process0.5/index.html) the output of a program (ls) is feeding a stream. The stream works fine but contrary to the ...
2
votes
1answer
402 views

Is there a boost::iostreams (bidirectional) Device for a blocking boost::asio TCP connection?

I'm surveying c++ libraries for portable, blocking I/O access to the filesystem and network. It looks like boost::filesystem, boost::iostreams and boost::asio will, between the three of them, do the ...
0
votes
0answers
126 views

Decompress stream based on magic bytes using boost

I'd like to be able to pass either compressed or uncompressed streams to (some part of) my application. The application should have a peek at the first few bytes, detect whether they match some magic ...
1
vote
1answer
354 views

Run-time error reading a .gz file using boost::iostreams and zlib

I am trying to read a .gz file and print the text content on screen by using boost::iostreams. This is just a simple experiment to learn about this library, and I am using the "directors.list.gz" file ...
0
votes
2answers
686 views

How to read a file using boost::iostreams::file_descriptor_source?

I need to use boost::iostreams::file_descriptor::handle_type in my app. I try to read a file using following code, but it keeps looping in the while loop (in.readsome() returns 0 ). using ...
0
votes
1answer
217 views

Boost filtering_stream and tellp

I'm trying to using filtering_streams to compress the serialization of some object into an array_sink or similar device where I can then determine the length of the compressed output and copy it to ...
2
votes
1answer
920 views

Using boost::iostreams mapped_file_source and filtering_streambuf to decompress file

I plan to process large compressed files and I would like to memory map the files to speedup reading. I adopted the existing example with regular file input but cannot get it either compile nor work ...
1
vote
1answer
537 views

How to read a file into unsigned char array from std::ifstream?

So normaly I do stuff like: std::ifstream stream; int buff_length = 8192; boost::shared_array<char> buffer( new char[buff_length]); stream.open( path.string().c_str(), ...
2
votes
1answer
295 views

How can I decompress a vector of deflated data with Boost?

I have a vector that contains zlib-compressed (deflated) data. I would like to decompress it with Boost's filtering_istream. There is only one example on their site, which operates on a stream of data ...
5
votes
2answers
928 views

Can boost iostreams read and compress gzipped files on the fly?

I am reading a gzipped file using boost iostreams: The following works fine: namespace io = boost::iostreams; io::filtering_istream in; ...
0
votes
1answer
432 views

boost iostreams: output_filter works only once

I am trying to use an boost::iostreams output filter to add a string to the beginning and the end of whatever I stream out. My code below works, but only the first time; the second time, the output ...
4
votes
1answer
1k views

boost gzip decompress byte array

I implemented the gzip/zlib decompression of files as shown in their examples on the boost site. void CompressionUtils::Inflate(std::ifstream& inputFile, ...
0
votes
1answer
271 views

Compiling Boost.Iostream on Linux with custom compiled zlib causes multiple jam errors

So I try to create a script for automated compilation of Boost with Iostream with Zlib support on linux. Currently I have this: #!/bin/bash BOOST_DISTRO_SITE=surfnet.dl.sourceforge.net ...
0
votes
1answer
475 views

How to get around building Boost.Iostreams separatly with zip (gz) support on Windows?

I want to compile such simple code: #include <iostream> #include <fstream> #include <string> #include <zlib.h> #include <boost/iostreams/filtering_streambuf.hpp> ...
0
votes
1answer
107 views

Stream design in c sharp

What would be the best way to design a packing / converting stream proxy in C#? Suppose, I have some input stream and I wish to make something similiar to boost::iostreams does. So, for example, I ...
1
vote
0answers
322 views

How to use boost::iostreams filter directly

How can I use boost::iostreams::gzip_decompressor to decompress a sequence of boost::asio::streambuf's? Here is what I had in mind (non-working pseudo code): struct Foo { public: void ...
0
votes
2answers
150 views

File i/o garbled

The data between these two functions is becoming garbled. Inspecting the variables on each side show that the data is definitely different. The message size signal does work. It's the second ...
1
vote
1answer
339 views

compile error for boost::iostream::filtering_streambuf

Just trying to compress a string with bzip2 so that I can send it over a pipe with ReadFile. The following line earns me the following compile error. in.push(uncompressed_string); Error 6 error ...
4
votes
1answer
788 views

Boost iostream: how to turn ifstream into memory mapped file?

What I want is simple to open file for reading as memory mapped file - in order to access it with much more speed in future (example: we open file read it to end, wait and read it again and again) ...
0
votes
1answer
351 views

Using boost IOStreams with std::ostream_iterator

I tried to use an array-device based stream and wantet to pass the stream to std::ostream_iterator or std::istream_iterator, but unfortunately, I get a compilation error with gcc 4.3.5. ...
1
vote
3answers
703 views

Using boost::iostreams::mapped_file_source with wide character strings

If I instantiate a mapped_file_source (boost 1.46.1 ) with a narrow character string as in the following I don't have a problem: boost::iostreams::mapped_file_source m_file_( "testfile.txt" ); ...
1
vote
2answers
639 views

boost::iostreams managing resources

I'm new to boost and its iostreams package and finding the documentation a bit thin. Hopefully someone will set me straight. I'm trying to convert a small piece of C# streams code I wrote a while ...
1
vote
1answer
205 views

How to prevent iostreams::mapped_file_sink from creating executable txt files

EDIT: code sample is broken, it is missing .is_open(), please DON'T use it. I have a rather strange question. I use boost iostreams and they work awesome, but the problem is that files that program ...
2
votes
0answers
453 views

Implementing a FUSE Filesystem: iostream, FILE* or plain file descriptors?

I implemented a small read-only FUSE filesystem in C++ that reads the data from a certain multi-file archive. I used iostreams (actually boost::filesystem::ifstream) in order to read the files. Now I ...
3
votes
1answer
1k views

boost::filtering_streambuf with gzip_decompressor(), how to access line by line from file

I wrote a Logparser Application and now I want to implement decompression of .gz files. I tried it with boost::iostreams and zlib which seems to work, but I don't know how to handle the input I get ...
1
vote
2answers
1k views

boost iostream problem

I'm trying to decompress a gzip'd string inside boost using the following code std::string DecompressString(const std::string &compressedString) { std::stringstream src(compressedString); ...
1
vote
1answer
1k views

boost zlib problem

I'm having a problem with the zlib libraries in boost under VS 2010. I built the libraries and the appropriate dlls/libs were generated in the boost/stage/lib folder. I added the .dlls into my ...
1
vote
2answers
362 views

Help in managing a iostream

Suppose that I get a stringbuf with some content that include certain character sequences who must be removed: std::stringbuf string_buff; std::iostream io_stream (&string_buff); io_stream ...
8
votes
2answers
1k views

how to convert bash script to C++ using boost::iostreams

I'm trying to convert the following bash code into C++ using boost::iostreams: #!/usr/bin/bash ( gzip -cd file1.ext.gz cat file2.ext ) | grep '^regex' # or sed 's/search/replace/' I can ...
3
votes
2answers
214 views

Standard way to implement a buffered stream that flushes at a constant interval?

I'm simulating packets from a source that produces packets at a given packet/second interval. I want to make a stream class that operates like an ostream object, allowing operator<< to be used ...
0
votes
1answer
757 views

Crash if I try to copy uncompressed filtering_istream to stringstream

I want to uncompress a file and write its content into a stringstream. This is the code I tried: string readGZipLog () { try { using namespace boost::iostreams; ifstream ...
0
votes
1answer
1k views

Using boost iostreams filters (close and non-copyable)

After asking question about crypto++ I tried to implement it using boost iostreams. I produced following code: #include <iostream> #include <cryptopp/sha.h> #include <algorithm> ...

1 2