Tagged Questions
The boost-iostreams tag has no wiki summary.
9
votes
2answers
3k 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;
...
8
votes
2answers
612 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 ...
6
votes
2answers
769 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 ...
5
votes
4answers
1k 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;
...
5
votes
1answer
946 views
BOOST.IOstreams: trouble to write to bzip2
Hello I am would like to store my data in to bzip2 file using Boost.IOstreams.
void test_bzip()
{
namespace BI = boost::iostreams;
{
string fname="test.bz2";
{
...
4
votes
1answer
290 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 ...
4
votes
3answers
237 views
C++ iostreams question
I am now diving into boost::iostreams and I'm looking for a way to create a stream that iterates over some container<char>.
Right now I have the code that work for a std::vector<char>, ...
4
votes
1answer
326 views
Why doesn't std::istream assume ownership over its streambuf?
I am writing some sort of virtual file system library for video-games in the likes of CRI Middleware's ROFS (see Wikipedia). My intention with the library is to provide natural means of accessing the ...
3
votes
1answer
237 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) ...
3
votes
2answers
111 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 ...
3
votes
1answer
369 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 ...
3
votes
2answers
296 views
Recommendations for a C++ polymorphic, seekable, binary I/O interface
I've been using std::istream and ostream as a polymorphic interface for random-access binary I/O in C++, but it seems suboptimal in numerous ways:
64-bit seeks are non-portable and error-prone due ...
3
votes
2answers
632 views
Zlib compression in boost::iostreams not compatible with zlib.NET
I want to send compressed data between my C# to a C++ application in ZLIB format. In C++, I use the zlib_compressor/zlib_decompressor available in boost::iostreams. In C#, I am currently using the ...
3
votes
1answer
2k views
Can someone provide an example of seeking, reading, and writing a >4GB file using boost iostreams
I have read that boost iostreams supposedly supports 64 bit access to large files semi-portable way. Their FAQ mentions 64 bit offset functions, but there is no examples on how to use them. Has ...
3
votes
2answers
4k views
C++ “hello world” Boost tee example program
The Boost C++ library has Function Template tee
The class templates tee_filter and tee_device provide two ways to split an output sequence
so that all data is directed simultaneously to two ...
2
votes
2answers
421 views
boost::iostreams::zlib::default_noheader seems to be ignored
I'm having trouble getting boost::iostreams's zlib filter to ignore gzip headers ... It seems that setting zlib_param's default_noheader to true and then calling zlib_decompressor() produces the ...
2
votes
3answers
336 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 ...
2
votes
5answers
2k views
extracting compressed file with boost::iostreams
I'm searching for a way to extract a file in c++ by using the boost::iostreams classes.
There is an example in the boost documentation. But it outputs the content of the compressed file to std::cout.
...
2
votes
0answers
772 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
2answers
1k views
Using boost::iostreams::tee_device?
Can someone help me?
I am trying to do something like the following:
#include <boost/iostreams/tee.hpp>
#include <boost/iostreams/stream.hpp>
#include <sstream>
#include ...
1
vote
0answers
88 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
66 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
2answers
201 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
0answers
222 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 ...
1
vote
1answer
370 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
1answer
561 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
1answer
214 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 ...
1
vote
2answers
471 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 ...
1
vote
1answer
562 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 ...
1
vote
1answer
656 views
Need help on asynchrous non-blocking file loading with boost::asio and boost::iostreams ( or something different? )
I'm coding in c++, and I'm trying to load an image file asynchronously. After some research, I found some mentions about using boost::asio and boost::iostreams to do it. However, the documentation and ...
1
vote
5answers
4k 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, ...
0
votes
1answer
79 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
106 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
37 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 ...
0
votes
2answers
71 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 ...
0
votes
1answer
131 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.
...
0
votes
2answers
219 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" );
...
0
votes
1answer
87 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 ...
0
votes
1answer
484 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);
...
0
votes
2answers
149 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 ...
0
votes
1answer
317 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
685 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>
...