Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
7k views

Copy a streambuf's contents to a string

Apparently boost::asio::async_read doesn't like strings, as the only overload of boost::asio::buffer allows me to create const_buffers, so I'm stuck with reading everything into a streambuf. Now I ...
7
votes
2answers
116 views

basic_streambuf::seekoff what should be returned when ios_base::in | ios_base::out is specified?

27.6.3.4.2 Buffer management and positioning pos_type seekoff(off_type off, ios_base::seekdir way, ios_base::openmode which = ios_base::in | ios_base::out); Effects: Alters the stream ...
4
votes
2answers
120 views

Is it possible to “prepare” input from cin?

In his answer, specifically in the linked Ideone example, @Nawaz shows how you can change the buffer object of cout to write to something else. This made me think of utilizing that to prepare input ...
4
votes
1answer
632 views

Problem with boost::asio::streambuf

I've experienced problems using asio::streambuf and am hoping someone can tell me if I'm using the class incorrectly. When I run this example code it segfaults. Why? To make things more confusing, ...
4
votes
1answer
433 views

How do I implement seekg() for a custom istream/streambuf?

I used to be a C++ expert a decade ago, but for the past 10 years I've been programming Java. I just started a C++ project that uses a small third-party XML parser. The XML parser accepts an STL ...
4
votes
4answers
888 views

Threadsafe logging

I want to implement a simple class for logging from multiple threads. The idea there is, that each object that wants to log stuff, receives an ostream-object that it can write messages to using the ...
4
votes
4answers
2k views

initializing a C++ std::istringstream from an in memory buffer?

I have a memory block (opaque), that I want to store in a Blob in mySQL through their C++ adapter. The adapter expects a istream: virtual void setBlob(unsigned int parameterIndex, std::istream * ...
4
votes
5answers
1k views

Binary version of iostream

I've been writing a binary version of iostreams. It essentially allows you to write binary files, but gives you much control over the format of the file. Example usage: my_file << binary::u32le ...
4
votes
5answers
3k views

redirect std::cout to a custom writer

I want to use this snippet from Mr-Edd's iostreams article to print std::clog somewhere. #include <iostream> #include <iomanip> #include <string> #include <sstream> int ...
3
votes
1answer
293 views

inheriting ostream and streambuf problem with xsputn and overflow

I have been doing research on creating my own ostream and along with that a streambuf to handle the buffer for my ostream. I actually have most of it working, I can insert (<<) into my stream ...
3
votes
3answers
103 views

What are 'aliased' stream buffers?

What are 'aliased stream buffers`? I encountered the term in a comment on an answer of mine.
3
votes
2answers
171 views

C++: Best text accumulator

Text gets accumulates piecemeal before being sent to client. Now we use own class that allocates memory for each piece as char massive. (Anyway, works like char[][] + std::list<char*>). Then ...
3
votes
3answers
3k views

How do I create my own ostream/streambuf?

For educational purposes I want to create a ostream and stream buffer to do: fix endians when doing << myVar; store in a deque container instead of using std:cout or writing to a file log ...
2
votes
2answers
59 views

Which buffer should be set by basic_streambuf::setbuf?

I am working on a basic_streambuf to handle reading and writing from/to a Winsock socket. Just like basic_filebuf, I am internally using a std::codecvt object to convert bytes read from the underlying ...
2
votes
3answers
170 views

std::fstream with multiple buffers?

You can specify one buffer for your file stream like that: char buf[BUFFER_SIZE]; std::ofstream file("file", std::ios_base::binary | std::ios_base::out); if (file.is_open()) { ...
2
votes
4answers
323 views

Reading integers from a memory mapped formatted file

I have memory mapped a large formatted (text) file containing one integer per line like so: 123 345 34324 3232 ... So, I have a pointer to the memory at the first byte and also a pointer to the ...
2
votes
2answers
579 views

boost::asio::async_read and boost::asio::streambuf

I am using async_read with streambuf. However, I would like to limit the amount of data read to 4, so I can properly handle header before going to body. How can I do that using async_read?
2
votes
1answer
241 views

Is it safe to manipulated streambuf after doing boost::asio::async_read?

I know it's not safe to manipulated streambuf while async_write working as stated by asio author on boost mailing list. What I want to know is, is it safe to manipulated streambuf after async_read? ...
2
votes
1answer
336 views

copying from a std::istreambuf_iterator<> to a std::vector<>

I have a Visual Studio 2008 C++ application where I would like to treat a stream as a set of iterators. For example, if I were to receive an array of WIN32_FIND_DATA structures over the stream, I ...
2
votes
4answers
659 views

Deriving streambuf or basic_ostringstream?

I want to derive a stringstream so that I can use the operator<< to construct a message which will then be thrown. The API would look like: error("some text") << " more text " << 42 ...
1
vote
1answer
108 views

c++ IPC through streambuf on Windows

I have a message object serialized as binary data stream (it can be any std::streambuf), and i want to transfer it to another process. The key is, server application must handle many clients, ...
1
vote
1answer
194 views

serializing data to a std::streambuf

I have a Visual Studio 2008 C++ project where I'm trying to serialize data from several classes to a custom std::streambuf implementation. The data classes with their serialization: struct Header { ...
1
vote
1answer
97 views

istream::tellg() returns -1 when used with my custom streambuf class?

I'm trying to create an istream that reads directly from a raw memory buffer. I found a nice way to do this in another post on here: class membuf : public basic_streambuf<char> { public: ...
1
vote
2answers
164 views

C++ Decorate basic_stream::underflow()

I want to extend the behavior of a basic_streambuf object by using the decorator pattern. That`s what I currently got: template<typename char_type, class traits_type> class ...
1
vote
1answer
117 views

convert image buffer to filestream

Something similar to this may have been asked earlier, I could not find an exact answer to my problem to decided to ask here. I am working with a 3rd party framework that has it's own classes defined ...
1
vote
3answers
264 views

How can I read from memory just like from a file using wistream?

In my previous question I asked how to read from a memory just as from a file. Because my whole file was in memory I wanted to read it similarly. I found answer to my question but actually I need to ...
1
vote
0answers
231 views

std::ostream interface to an OLE IStream

I have a Visual Studio 2008 C++ application using IStreams. I would like to use the IStream connection in a std::ostream. Something like this: IStream* stream = /*create valid IStream instance...*/; ...
0
votes
2answers
97 views

std::istreambuf_iterator “peek” with std::ifstream

When dealing with streams of data, I prefer to write the code in terms of templates and iterators. Often I need to "peek" at the next character. In order to make the code be able to deal ...
0
votes
5answers
325 views

compile problem C++

Hey guys. I need to compile some project. I installed Visual C++ 6.0 + Microsoft Platform SDK 2003 from there ...
0
votes
1answer
143 views

ZeroCopyOutputStream into a streambuf

I would like to write a class that inherites from streambuf and adapts a ZeroCopyOutputStream (google/protobuf/io/) into a streambuf. any ideas?
0
votes
2answers
113 views

Why is the “gptr” type of basic_streambuf char_type* rather than const char_type*?

The basic_streambuf member to set the three "gptrs" of the streambuf, setg, is declared as: protected: void setg(char_type *gback, char_type *gptr, char_type *egptr); I am wondering: why was the ...
0
votes
1answer
400 views

boost.asio - set maximum read stream size

There's example HTTP Client at http://www.boost.org/doc/libs/1_39_0/doc/html/boost_asio/example/http/client/async_client.cpp Please help me to change maximum buffer size like explained in following ...
0
votes
3answers
115 views

Query regarding overflow function of streambuf

hi Going thorugh overflow function documentation. I found overflow has following as return values. Return Value: A value different than EOF (or traits::eof() for other traits) signals success. If ...
0
votes
4answers
672 views

Deriving from streambuf without rewriting a corresponding stream

Some days ago, I decided that it would be fun to write a streambuf subclass that would use mmap and read-ahead. I looked at how my STL (SGI) implemented filebuf and realized that basic_filebuf ...
0
votes
2answers
2k views

Reading from serial port with Boost Asio

I'm going to check for incoming messages (data packages) on the serial port, using Boost Asio. Each message will start with a header that is one byte long, and will specify which type of the message ...
0
votes
1answer
138 views

How do I build a filtered_streambuf based on basic_streambuf?

I have a project that requires me to insert a filter into a stream so that outgoing data will be modified according to the filter. After some research, it seems that what I want to do is create a ...