4
votes
2answers
56 views
std::ostream not formatting const char* correctly the first time it’s used
I've been writing a custom std::streambuf as part of a logging system. However, I'm having problems with the first piece of output from a stream not being formatted correctly.
Her …
3
votes
3answers
52 views
How do I get the InputStream of decompressed data from an InputStream of GZIPed data?
I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of javax.activation.DataHandler.getInputStream();) from the response.
What I would like …
4
votes
4answers
115 views
Can you tell iostreams which characters to treat as whitespace?
So that you could do something like this, for instance:
std::string a("01:22:42.18");
std::stringstream ss(a);
int h, m, s, f;
ss >> h >> m >> s >> f;
Wh …
24
votes
12answers
935 views
Can you explain the concept of streams?
I understand that a stream is a representation of a sequence of bytes. Each stream provides means for reading and writing bytes to its given backing store. But what is the point …
0
votes
3answers
170 views
How can I make my char buffer more performant?
I have to read a lot of data into:
vector<char>
A 3rd party library reads this data in many turns. In each turn it calls my callback function whose signature is like this: …
0
votes
0answers
145 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 o …
1
vote
4answers
625 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 <ss …
2
votes
2answers
338 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> …
1
vote
1answer
527 views
Boost asio ip tcp iostream Error Detection
Greetings. I'm just getting started with the boost::asio library and have run into some early difficulty related to boost::asio::ip::tcp::iostream.
My question has two parts:
1. …
0
votes
3answers
165 views
unix domain stream sockets sending more data then it should be
I have two simple programs set up that share data through a unix domain socket. One program reads data out of a Queue and sends it to the other application. Before it is sent each …
3
votes
5answers
472 views
Table layout using std::cout
How do I format my output in C++ streams to print fixed width left-aligned tables? Something like
printf("%-14.3f%-14.3f\n", 12345.12345, 12345.12345);
poducing
12345.123 …
2
votes
3answers
196 views
Why are System.out/err implemented as Byte Streams in Java?
I was having a look at this tutorial at Sun on command line I/O. It stated that:
You might expect the Standard Streams
to be character streams, but, for
historical reasons, …
1
vote
1answer
215 views
How can I discover/control the level of internal buffering in a C++ fstream?
Say I do this (a contrived example):
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char* argv[])
{
ifstream ifs(argv[1]);
c …
2
votes
2answers
137 views
Is there a way to check if an istream was opened in binary mode?
I'm using an istream which could be stringstream, ifstream or a user-defined stream type and I need to know if, in the case of an ifstream, it was not opened in binary mode (so I c …
