Output stream class to operate on strings.
3
votes
1answer
41 views
ostringstream breaks cout?
I want to output the content of a ostringstream to some other stream (for example std::cout). I know that I can use std::ostringstream::str() but I assume it has an overhead on copying the stream ...
0
votes
1answer
43 views
ostringstream::write method modifies input parameter
Consider the following snippet which gets some binary data and writes it to an ostringstream object:
unsigned char* payload;
unsigned long size;
GetData(&payload, &size);
std::cout ...
2
votes
1answer
53 views
Copy contructor error with no obvious copy
I'm attempting to build a bit of simple logging functionality from scratch, with a stream like '<<' interface, and am running into a bit of compiler issue. Here is the basics of my code:
...
0
votes
0answers
12 views
Setting std::io_base flags for custom stream class
I have a custom class called Stream
class Stream
public:
Stream& operator<<(int i) { stream_ << i; return *this;}
template <typename CustomClass>
...
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
51 views
QString and stdstring combination doesnt work in std::stringstream - compile error
```
#include <iostream>
#include <sstream>
#include <QString>
class Printer {
public:
inline std::ostream& operator<<(const std::string& str) {
stream << ...
1
vote
1answer
92 views
c++ ostringstream object causing unhandled exception after returning main function
Unhandled exception at 0x53e83d80 in TestGame.exe: 0xC0000005: Access violation reading
location 0xfeeefef6.
My C++ program throws an unhandled exception when I close my SFML window ...
0
votes
1answer
71 views
Is there a standard formatting function or operator that will round up? (or down?)
I am using ostringstream to output a number to 2 decimal places as follows
std::ostringstream ostr;
ostr << std::fixed << std::setprecision(2);
ostr << cylinderLength;
So, if ...
0
votes
2answers
111 views
Improve my implementation to append prefix and suffix to a stream
This is not c++11, this is c++03
PROBLEM
I have a class called decorator which should be able to add text to both ends of a message the user passes to it via operator<<.
For instance:
...
0
votes
6answers
284 views
Need a macro to create a std::string from a std::ostringstream and a << arg list
I want to write a macro that takes as its only argument a list of std::ostream& operator<< concatenated objects and passes the consolidated string as a single std::string object to a ...
0
votes
1answer
86 views
ostringstream SOMETIMES causes a crash
So I wrote an implementation of an ArrayList over the summer, and I have a toString method within which I use an ostringstream object to tack on strings and then output them.
the method is below:
...
1
vote
1answer
69 views
When trying to concatenate a string in ostringstream, which string contents are modified and reconstructed, string get added at beginning [duplicate]
Possible Duplicate:
What is the purpose of ostringstream's string constructor?
I am facing below issue.
I have an ostringstream say testStr.
I first insert few characters inside it ...
2
votes
1answer
137 views
How do I use the ostringstream properly in c++?
I am attempting to return some information when my toString() method is called, which include an integer and some floats. I learned about ostringstream works great but when the class that contains ...
1
vote
2answers
207 views
OStringStream and Namespaces Issue C++
so I wanted to convert an integer into a string but using itoa isn't standard so through my research I figured the best way to do it would be to use OStringStream. Here's some pseudo-code:
#include ...
-3
votes
4answers
656 views
C++: What is the difference between ostream and ostringstream?
What is the difference between ostream and ostringstream? When would you use one versus the other?
0
votes
1answer
506 views
Extracting bytes from byte stream
I receive a binary file via POST in a C++ CGI script and I'm using the Cgicc library to get its contents like so:
std::ofstream myfile;
myfile.open ("file.out", std::ios::in | std::ios::binary);
try
...
6
votes
1answer
361 views
std::ostringstream isn't returning a valid string
I'm trying to use std::ostringstream to convert a number into a string (char *), but it doesn't seem to be working. Here's the code I have:
#include <windows.h>
#include <sstream>
int ...
-2
votes
1answer
83 views
potential issue in this code using osstreamstring
Is there any issue in the following code? I am told it's there, but I couldn't find it...
std::string fun(int i)
{
std::ostringstream t;
t<<"My int is ...
2
votes
1answer
365 views
deserializing objects in C++
I know how to serialize an object in the following way:
void encodeMsg(char **msg, const ConnectionParams& params)
{
std::ostringstream oss;
if (!(oss << params))
{
...
3
votes
4answers
251 views
Is there a more efficient way to set a std::vector from a stream?
Presently, I set the value of a std::vector<char> from an std::ostringstream as follows:
void
foo(std::vector<char> &data, std::stringstream &stream) {
data = ...
1
vote
3answers
71 views
ostringstream operator[] giving compile error when trying to read buffer
I have a class that extends ostringstream class.
Class A: public ostringstream
{
}
I want to read data of specified size and a specific offset from that object. So trying:
A a_;
a_ << ...
1
vote
2answers
589 views
operator overloading << for enum to ostringstream
I have the following macro.
#define STRING_STREAM( data ) \
( ( (std::ostringstream&) \
( std::ostringstream( ).seekp( 0, std::ios_base::cur ) << data ) ).str( ) )
...
1
vote
2answers
159 views
ostringstream conversion from VS6 to VS2010
I have this code that work's well under VS6 but gives me errors in VS2010 :
void CGreatString::operator>> (char * lpszDest)
{
strcpy (lpszDest, str());
rdbuf()->freeze(0);
}
I have found ...
0
votes
1answer
126 views
Why does deleting a ostringstream object as in my code leads to segmentation fault?
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
ostringstream out;
...
1
vote
1answer
171 views
Save away ostringreader.str().c_str()
Why does the value of text1 change after reading out y in this piece of code?
void func()
{
int value1 = 5;
double value2 = 1.5;
std::ostringstream x, y;
x << value1;
y ...
0
votes
1answer
189 views
Returning a string stream (char*)
My professor wants me to output the "area" from calculateArea as a char/string. I'm not sure exactly what he means, but maybe some of you might understand.
#include <iostream>
#include ...
1
vote
1answer
412 views
ostringstream is an undefined type?
In my C++ project I'm trying to do this:
std::ostringstream stream(std::ostringstream::out);
But I'm getting an error:
error C2027: use of undefined type ...
3
votes
1answer
4k views
C++ Int to String by using ostringstream or stringstream
I've been learning C++ for about a month now and I do have a question about stringstreams,
I've been using stringstream to convert Integer to String, but then I realized same operation can be done ...
0
votes
3answers
186 views
How to manage 'ostringstream' object in C++?
This is a snippet of code from C++ program.
string TwoSeries::getArrays()
{
ostringstream outIndex;
ostringstream outValueA;
ostringstream outValueB;
string stA;
string stB;
...
5
votes
3answers
333 views
How to write a `<<` operator for boost::tuple?
In the sample code below, it shows that boost::tuple can be created implicitly from the first template argument.
Because of that I am not able to write a << operator as it becomes ambiguous.
...
2
votes
1answer
487 views
ostringstream operator<< for long?
$ uname -a
Darwin Wheelie-Cyberman 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386
$ g++ --version
i686-apple-darwin10-g++-4.2.1 (GCC) 4.2.1 ...
0
votes
3answers
508 views
Problem with ostringstream and copy constructor [duplicate]
Possible Duplicates:
Why copying stringstream is not allowed?
how copy from one stringstream object to another in C++?
Compiling class T fails with Visual C++ and GCC producing iostreams ...
5
votes
3answers
543 views
Why does ostringstream strip NULL?
I have a string whose last part(suffix) needs to be changed several times and I need to generate new strings. I am trying to use ostringstream to do this as I think, using streams will be faster than ...
4
votes
2answers
270 views
Odd behavior with ostringstream
I was trying to think of a clever way to concatenate various things into a single string argument for a function without having to use an ostringstream explicitly. I thought of:
#define OSS(...) \
...
1
vote
2answers
2k views
CRLF end of line and ostringstream
I am trying to use a ostringstream to build a string which uses the platform standard line endings (so for me it is CRLF since I am developing for Windows). I tried the following code:
...
4
votes
2answers
422 views
How to stream float .1 as .1 and not 0.1
std::ostringstream oss;
oss << std::setw(10);
oss << std::setfill(' ');
oss << std::setprecision(3);
float value = .1;
oss << value
I can check if value < 1 and then find ...
2
votes
2answers
498 views
how to truncate width of integral types with std::ostringstream?
Say you have something like:
std::ostringstream oss;
int value(42);
oss.fill('0');
oss << std::setw(3) << value;
cout << oss.str();
OUTPUT: 042
This output is because std::setw ...
5
votes
4answers
973 views
What is the purpose of ostringstream's string constructor?
On MSVC 2005, I have the following code.
std::ostringstream stream("initial string ");
stream << 5;
std::cout << stream.str();
What I expect is:
initial string 5
What I get is:
...
2
votes
4answers
2k views
How to convert a char array into string based hex-stream (ostringstream)
in C++ (on Linux with gcc) I'd like to put a byte array (vector<unsigned char>) to a ostringstream or a string.
I know that I can use sprintf but it doesn't seem to be the best way to use char* ...
5
votes
4answers
4k views
Rounding off floats with ostringstream
I have an issue regarding conversion from float to c++ string using ostringstream. Here is my line:
void doSomething(float t)
{
ostringstream stream;
stream << t;
cout << ...
30
votes
8answers
9k views
What's the difference between istringstream, ostringstream and stringstream? / Why not use stringstream in every case?
When would I use std::istringstream, std::ostringstream and std::stringstream and why shouldn't I just use std::stringstream in every scenario (are there any runtime performance issues?).
Lastly, is ...
0
votes
1answer
365 views
C++ STL in VS2008: std::ostringstream throws std::bad_alloc after heavy assign/clear usage
I have come across a situation (on Win32) where the std::ostringstream object continues to consume process memory, even when it is ostensibly cleared out after a series of append-type operations. ...
2
votes
2answers
1k views
Truncate C++ string fields generated by ostringstream, iomanip:setw
In C++ I need string representations of integers with leading zeroes, where the representation has 8 digits and no more than 8 digits, truncating digits on the right side if necessary. I thought I ...
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 ...
1
vote
1answer
240 views
Converting a char array to something that can be appended to a ostringstream
std::ostringstream parmStream;
char parmName[1024];
THTTPUrl::Encode(parmName, pParm->Name().c_str(), 1024);
//I want to add the value of the paramName to the parmStream worked b4 when ...
7
votes
4answers
1k views
Is there a way to reduce ostringstream malloc/free's?
I am writing an embedded app. In some places, I use std::ostringstream a lot, since it is very convenient for my purposes. However, I just discovered that the performance hit is extreme since adding ...
9
votes
2answers
1k views
What use is there for 'ends' these days?
I came across a subtle bug a couple of days ago where the code looked something like this:
ostringstream ss;
int anInt( 7 );
ss << anInt << "HABITS";
ss << ends;
string theWholeLot ...
14
votes
6answers
1k views
Is there anyway to write the following as a C++ macro?
my_macro << 1 << "hello world" << blah->getValue() << std::endl;
should expand into:
std::ostringstream oss;
oss << 1 << "hello world" << ...
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;
...
0
votes
2answers
387 views
Dynamic output filenames (C++)
I'm trying to create output files subscripted by a dynamic index ( d = {0,...,NUM_DEMES-1}). Currently, I'm only getting output files for the first value (d=0).
#include <sstream>
#include ...
