std::streambuf is the stream buffer type used by C++ iostreams.
1
vote
1answer
35 views
C++ How to determine and report offset for current position in binary file using pubseekoff?
I have only been working with C++ for about 6 months so my apologies for any stupid mistakes I make in my code.
I am working on a project that will read in a binary file to a streambuf and then ...
0
votes
1answer
57 views
Cannot set the streambuf of an ostringstream object
I want to include some std::ostringstream objects in my program for logging and error reporting purposes. Based on a setting given at compile time, the log and error streams will either collect their ...
1
vote
1answer
35 views
streambuf get streampos
I use the C++ streambuf class for a compiler project and need a convenient way to get the current position in the stream.
There are two member functions, streambuf::pubseekpos and a ...
1
vote
1answer
80 views
Writing a manipulator for a custom stream class
I've written a custom stream class that outputs indented text and that has manipulators that can change the indent level. All of the indenting work is implemented in a custom stream buffer class, ...
0
votes
1answer
53 views
Why basic_streambuf::pubseekoff() is not a pure virtual function?
If you look at <streambuf>header file in VS2010 you'll see the definition of this member function as
pos_type pubseekoff(off_type _Off, ios_base::seekdir _Way,
...
6
votes
3answers
235 views
What's wrong with this code?
The author presented this code under the title A bus error on my platform
#include <fstream>
#include <iostream>
int main()
{
std::ofstream log("oops.log");
...
0
votes
0answers
86 views
Which member of a streambuf class points to the actual buffer in memory?
This question is related to a prior question of mine. I used the code below to inspect the values in the streambuf object associated with cout. Using VS2010 IDE, I can see several members in this ...
1
vote
0answers
82 views
Re-using a stringstream after iteration with istreambuf_iterator
If I pass an istreambuf_iterator wrapper around a stringstream to a function which requires such an iterator, how can I re-use (overwrite) the stream's existing buffer after the function has returned, ...
3
votes
1answer
92 views
Is it possible to make streams of non-POD types?
In C++, I need to make streams of objects which are of non-POD type using my own implementation of std::basic_streambuf<Type>. Is the standard library required to construct/destroy the objects ...
2
votes
1answer
197 views
boost::asio::streambuf shrink-to-fit?
The boost::asio::streambuf size will keep on increasing until consume() is called.
Even after consume() is called, the memory used by the underlying buffer will never be released.
For example: the ...
1
vote
2answers
219 views
Reading Binary Data with streambuf in C++ through a Class
Im am a c programmer trying to begin a new phase of my life in c++ (i know i am still using printf below, but that because formatting is so easy). I am looking to print out the first byte of a ...
3
votes
0answers
65 views
Boost.Asio streambuf: How to copy data in streambuf [duplicate]
Possible Duplicate:
Copy a streambuf's contents to a string
Recently I am working around boost::asio::streambuf.
Because of my poor English I cannot express what I mean. So first, ...
1
vote
1answer
142 views
cout a stringstream twice ends up in corrupted cout (minimal example)
I have the following code, and I dont quite understand why the results happens to be like the one below:
#include <iostream>
#include <sstream>
using namespace std;
int main () {
...
2
votes
1answer
485 views
C++: std::istream read and its calls to std::streambuf underflow
the following code simply tests how often underflow is called when using std::istream read on an std::stringbuf.
#include <iostream>
#include <vector>
#include <sstream>
class ...
5
votes
3answers
225 views
streams, stream_bufs, codecvt facets and \n to \r\n translation
What part of the C++ IO streams does the \r to \r\n conversion? Is it the stream_buf itself or is it part of the internal to external encoding conversion by codecvt facet?
UPDATE 1
You all say that ...
4
votes
1answer
2k views
Use streambuf as buffer for boost asio read and write
I'm using this code for reading
socket_.async_read_some(boost::asio::buffer(data_, max_length),
boost::bind(&session::handle_read, this,
boost::asio::placeholders::error,
...
5
votes
1answer
462 views
C++ streams confusion: istreambuf_iterator vs istream_iterator?
What is the difference between istreambuf_iterator and istream_iterator?
And in general what is the difference of streams and streambufs?
I really cant find any clear explanation for this so decided ...
3
votes
1answer
441 views
boost asio streambuf don't release memory after calling consume?
boost::asio::streambuf b;
...
void handler(const boost::system::error_code& e, std::size_t size)
{
if (!e)
{
std::stringstream ...
2
votes
2answers
1k views
How to read from Boost ASIO streambuf?
Is there a way to read from a streambuf without removing the bytes?
I'm reading a 'message size' field from the buffer to check if the whole message was received.
If not, I'm posting another async ...
3
votes
2answers
164 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 ...
1
vote
1answer
318 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, ...
3
votes
1answer
915 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 { ...
7
votes
2answers
183 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 ...
2
votes
1answer
337 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
255 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
294 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 ...
0
votes
2answers
241 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 ...
3
votes
3answers
376 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())
{
...
4
votes
2answers
222 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
801 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
140 views
What are 'aliased' stream buffers?
What are 'aliased stream buffers`? I encountered the term in a comment on an answer of mine.
4
votes
1answer
1k 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, ...
0
votes
5answers
634 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
306 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
182 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 ...
2
votes
3answers
530 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 ...
2
votes
4answers
564 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 ...
1
vote
1answer
849 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 ...
1
vote
2answers
1k 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?
0
votes
3answers
195 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 ...
2
votes
1answer
365 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?
...
4
votes
1answer
730 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 ...
1
vote
4answers
1k 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 ...
3
votes
1answer
518 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 ...
1
vote
0answers
384 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...*/;
...
1
vote
2answers
6k 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
228 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 ...
2
votes
4answers
1k 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 ...
3
votes
2answers
213 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 ...
5
votes
4answers
2k 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 ...