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
65 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; ...
1
vote
2answers
92 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
1answer
107 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
0answers
273 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
90 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
267 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
222 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
0answers
174 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 ...
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 ...
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 ...
0
votes
2answers
679 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 ...
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
294 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 ...
0
votes
1answer
430 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 ...
3
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
268 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
474 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> ...
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 ...
1
vote
1answer
337 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
786 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
638 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 ...
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 ...
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
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> ...
4
votes
1answer
779 views

boost iostreams with bzip2 built from source on windows

Recently, I spent some time working on getting boost version 1.44.0 built on windows with both iostreams support for both zlib & bzip2 compression filters. For a variety of reasons, it was decided ...
6
votes
4answers
3k views

Does Boost.Serialization serialize differently on different platforms?

I use Boost.Serialization to serialize a std::map. The code looks like this void Dictionary::serialize(std::string & buffer) { try { std::stringstream ss; ...
1
vote
2answers
799 views

exceptions from boost::iostreams::copy()

In the below code, I have a corrupt "hello.bz2" which has stray characters beyond the EOF. Is there a way to make the boost::iostreams::copy() call to throw ? #include <fstream> #include ...
8
votes
2answers
1k views

Is there a difference between boost iostream mapped file and boost interprocess mapped file?

I want to create a mapped binary file into memory; however I am not sure how to create the file to be mapped into the system. I read the documentation several times and realize there are 2 mapped file ...
3
votes
1answer
827 views

Flushing a boost::iostreams::zlib_compressor. How to obtain a “sync flush”?

Is there some magic required to obtain a "zlib sync flush" when using boost::iostreams::zlib_compressor ? Just invoking flush on the filter, or strict_sync on a filtering_ostream containing it ...
2
votes
3answers
420 views

using boost::iostreams to read specifically crafted data, then based on that create object and append it to list

I have an interesting problem. Let's say that i have file with lines filled like this: name1[xp,y,z321](a,b,c){text};//comment #comment name2(aaaa); also I have (simplified) class: class something ...
16
votes
2answers
5k views

How to hook up Boost serialization & iostreams to serialize & gzip an object to string?

I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so: namespace bar = boost::archive; ...
3
votes
1answer
987 views

C++ Boost io streams, error handling

Is it possible to make a custom stream work like the stanadrd ones in regard for errors? That is by default use the good/fail/bad/eof bits rather than exceptions? The boost docs only mention throwing ...
2
votes
4answers
7k views

Simple server/client boost example not working

Learning boost, and compiled their daytime server client example. Since I cant use port 13 that is in the example I only changed the port numbers in the server and client example. Server runs fine, ...