Boost.Iostreams is a C++ framework for defining streams, stream buffers and I/O filters.
5
votes
1answer
285 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 ...
1
vote
2answers
86 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
69 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
62 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
77 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
104 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
52 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
116 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) {
}
...
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);
...
2
votes
0answers
93 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
277 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
237 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
188 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
360 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 ...
2
votes
0answers
179 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
274 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
316 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
408 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
128 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
360 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
701 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
220 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
925 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
539 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(), ...
3
votes
1answer
989 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 ...
0
votes
1answer
764 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 ...
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,
...
2
votes
1answer
296 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
936 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;
...
1
vote
3answers
708 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" );
...
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 ...
0
votes
1answer
433 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
679 views
How to get boost::iostream to operate in a mode comparable to std::ios::binary?
I have the following question on boost::iostreams. If someone is familiar with writing filters, I would actually appreciate your advices / help.
I am writing a pair of multichar filters, that work ...
0
votes
1answer
274 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
478 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
109 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 ...
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 ...
4
votes
1answer
796 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
353 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.
...
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, ...
1
vote
2answers
642 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 ...
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;
...
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 ...
2
votes
1answer
320 views
How can you disable the buffer in a boost::iostreams sink?
I've written a 'sink' using boost::iostreams, so that I can essentially have my own code run when someone tries to write to an iostream object.
Unfortunately there is a buffer somewhere in the ...
