Tagged Questions

9
votes
1answer
177 views

Distinguishing between failure and end of file in read loop

The idiomatic loop to read from an istream is while (thestream >> value) { // do something with value } Now this loop has one problem: It will not distinguish if the loop terminated due to ...
7
votes
2answers
76 views

Why istream object can be used as a bool expression?

Does anyone know why istream object can be used as bool expression? For example: ifstream input("tmp"); int iValue; while (input >> iValue) //do something; Here input >> iValue ...
7
votes
1answer
194 views

Can `std::istream::operator>>()` accept integer radix prefixes like stdio's %i format specifier?

When using scanf() and its variants, the format specifier %i will accept data as hex (prefixed "0x"), octal (prefixed "0"), or decimal (no prefix), so for example the strings "0x10", "020", and "16" ...
5
votes
5answers
184 views

Parsing only numbers from istream in C++

I have a bunch of input files that look like the following: (8,7,15) (0,0,1) (0,3,2) (0,6,3) (1,0,4) (1,1,5) I need to write a function that parses these inputs one number at a time, so I need to ...
5
votes
4answers
250 views

“carbon-copy” a c++ istream?

For my very own little parser framework, I am trying to define (something like) the following function: template <class T> // with operator>>( std::istream&, T& ) void tryParse( ...
5
votes
4answers
161 views

non-copying istringstream

So istringstream copies the contents of a string when initialised, e.g string moo("one two three four"); istringstream iss(moo.c_str()); I was wondering if there's a way to make std::istringstream ...
5
votes
3answers
2k views

Using C++ filestreams (fstream), how can you determine the size of a file?

I'm sure I've just missed this in the manual, but how do you determine the size of a file (in bytes) using C++'s istream class from the fstream header?
4
votes
2answers
218 views

How to use istream with strings

I would like to read an file into a string. I am looking for different ways for how to do it efficiently. Using a fixed size *char buffer I have received an answer from Tony what creates a 16 kb ...
4
votes
1answer
179 views

Input from stream to enum type

How to input from stream to enum type? I can do it so unsigned int sex = 0; stream >> sex; student.m_bio.sex = static_cast<Sex>(sex); Otherwise?
4
votes
1answer
327 views

istream's tellg/seekg cannot be protected from stack smashing (g++)?

For a program that I'm writing, it is useful for me to calculate file sizes, which I calculate by using iostream's tellg and seekg functions, but this leads to a warning by -Wstack-protector. The ...
4
votes
3answers
510 views

Input stream iterators and exceptions

I was playing around with istream iterators and exception handling a few days ago and I came across with this curiousity: #include <iostream> #include <fstream> #include <iterator> ...
3
votes
4answers
74 views

istream eof discrepancy between libc++ and libstdc++

The following (toy) program returns different things when linked against libstdc++ and libc++. Is this a bug in libc++ or do I not understand how istream eof() works? I have tried running it using g++ ...
3
votes
2answers
67 views

eof of istream in C++

bool ios::eof ( ) const; According to the library, The function returns true if the eofbit stream's error flag has been set by a previous i/o operation. This flag is set by all standard ...
3
votes
2answers
136 views

istream_iterator ignoring EOF (Ctrl+D) when reading chars

I'm trying to use istream_iterator for reading characters from cin. I've read that pressing Ctrl+D sends an EOF character which ends the input stream. Unfortunately, something is going wrong with it. ...
3
votes
3answers
824 views

Find the end of stream for cin & ifstream?

I'm running myself through a C++ text book that I have as a refresher to C++ programming. One of the practice problems (without going into too much detail) wants me to define a function that can be ...
3
votes
1answer
418 views

How could I redirect stdin (istream) in wxWidgets?

I'm trying to figure out how to redirect istream to wxwidgets. I was able to accomplish redirecting ostream, here's how (so you know what I mean): wxTextCtrl* stdoutctrl = new wxTextCtrl(...); ...
3
votes
4answers
398 views

Read from cin or a file

When I try to compile the code istream in; if (argc==1) in=cin; else { ifstream ifn(argv[1]); in=ifn; } gcc fails, complaining that operator= is private. Is there any way ...
3
votes
2answers
587 views

How to check if there is anything in cin [C++]

is there any way to check if there is something in cin? I tryied peek() but if there isn't anything peek() waits for input and that isn't what I want. Thank you
3
votes
3answers
1k views

FILE * and istream: connect the two?

Suppose I "popen" an executable, I get a FILE* in return. Furthermore, suppose I'd like to "connect" this file to an istream object for easier processing, is there a way to do this?
2
votes
1answer
53 views

C++ Ambiguous overload in operator>> for complex class

I am constantly getting an ambiguous overload error no matter what I do .... here's my code COMPLEX.cpp code template<class C> class complex { C real,imag; public: ...
2
votes
5answers
106 views

Get an istream from a char*

I have a char* and the data length that I'm receiving from a library, and I need to pass the data to a function that takes an istream. I know I can create a stringstream but that will copy all the ...
2
votes
2answers
202 views

std::getline alternative when input line endings are mixed

I'm trying to read in lines from a std::istream but the input may contain '\r' and/or '\n', so std::getline is no use. Sorry to shout but this seems to need emphasis... The input may contain either ...
2
votes
1answer
365 views

How to use libjpeg to read a JPEG from a std::istream?

libjpeg can read JPEG data from a FILE* or a buffer. My data is coming from a std::istream. I could read the entire std::istream into a buffer to use with libjpeg, but I'd rather have libjpeg read ...
2
votes
3answers
95 views

MSVC istream implementation locking buffer

I'm working with some existing code which is deserializing objects stored in text files (I potentially need to read tens of millions of these). The contents of the file are first read into a wstring ...
2
votes
4answers
186 views

C++ operator<< and >> methods in the header file, done very wrong

I have this code in my header file and Ive got loads of errors on the ostream and istream lines. One error is "missing ";" before "&"" and im confuzzled, im new to this sorry #pragma once class ...
2
votes
3answers
76 views

Contents of the string after failed extraction from istream

If I do this: ifstream stream("somefilewhichopenssuccesfully.txt"); string token; if( stream >> token ) cout << token; else cout << token; Is the output in the second case ...
2
votes
1answer
66 views

Will istream::get() with no parameters return whitespace?

This seems like a really simple question, but I can't find the answer anywhere. If I'm parsing a file (that includes newline characters) character by character, using char next = file.get(); will ...
2
votes
3answers
132 views

Easiest way to get words of one line from istream into a vector?

istream has the >> operator, but it skips new lines like it skips whitespace. How can I get a list of all the words in 1 line only, into a vector (or anything else that's convenient to use)?
2
votes
3answers
147 views

istream_iterator problem

I can't get this blasted thing working right. The problem is, If I want to enter 2 numbers, I actually have to enter 3. What is wrong? namespace MT { template<class IIT, class OIT> OIT ...
2
votes
4answers
518 views

Understanding the design of std::istream::read

std::istream has the prototype istream& read (char* s, streamsize n) the actual number of bytes read should be gotten by calling istream::gcount(), also the validity of the istream can be known ...
2
votes
3answers
340 views

Unexpected behaviour of getline() with ifstream

To simplify, I'm trying to read the content of a CSV-file using the ifstream class and its getline() member function. Here is this CSV-file: 1,2,3 4,5,6 And the code: #include <iostream> ...
2
votes
1answer
514 views

Can one read a remote file as an istream with libcurl?

I'd like to use the libcurl library to open a remote date file and iterate through it with an istream. I've looked through the nice example in this thread but it writes the remote file to a local ...
2
votes
1answer
335 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
1answer
124 views

Extracting bool from istream in a templated function

I'm converting my fields class read functions into one template function. I have field classes for int, unsigned int, long, and unsigned long. These all use the same method for extracting a value ...
2
votes
2answers
1k views

How to create C++ istringstream from a char array with null(0) characters?

I have a char array which contains null characters at random locations. I tried to create an iStringStream using this array (encodedData_arr) as below, I use this iStringStream to insert binary ...
2
votes
2answers
841 views

declaring generic istream in c++

I need to write a program that reads in either from ifstream or cin, depending on parameters passed into the program at runtime. I was planning on doing the following: istream in; if(argv[1] == ...
2
votes
2answers
404 views

Reading SDL_RWops from a std::istream

I'm quite surprised that Google didn't find a solution. I'm searching for a solution that allows SDL_RWops to be used with std::istream. SDL_RWops is the alternative mechanism for reading/writing data ...
2
votes
2answers
568 views

istream get method behavior

I read istream::get and a doubt still hangs. Let's say my delimiter is actually the NULL '\0' character, what happens in this case? From what I read: If the delimiting character is found, it is not ...
1
vote
1answer
32 views

Reading text fields from file with custom seperator

I am working on a problem for a class I'm taking in which we need to read in text from a file to a 2d table of strings (called 'string table[][]'). The text file I'm reading in is formatted as ...
1
vote
1answer
113 views

std::istream extraction sets failbit for no apparent reason

I'm creating a primitive type wrapper, which can use boost::lexical_cast for setting its value from a string. It works fine, but for some reason std::istream extraction operator sets the failbit. The ...
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
145 views

How can I find out how many bytes are available from a std::istream?

If I wanted to read() the content of a std::istream in to a buffer, I would have to find out how much data was available first to know how big to make the buffer. And to get the number of available ...
1
vote
3answers
110 views

Opening stream via function

I need help with the non-copyable nature of [io](f)streams. I need to provide a hackish wrapper around fstreams in order to handle files with unicode characters in their filenames on Windows. For ...
1
vote
1answer
65 views

Istream consume at most N whitespace characters

Is it possible to tell a std::istream to only consume a fixed number (namely, 1) of whitespace characters when applying the operator>>? I have a string I'd like to parse into parameters, but some of ...
1
vote
4answers
84 views

Very basic file i/o

Whenever I try to open a file with istream, it doesn't open (is_open() returns false). Is there a specific directory a file needs to be put for it to be accessed (it's in the project's output ...
1
vote
5answers
583 views

Reading binary istream byte by byte

I was attempting to read a binary file byte by byte using an ifstream. I've used istream methods like get() before to read entire chunks of a binary file at once without a problem. But my current ...
1
vote
0answers
76 views

How do I stream values from a std::set into MySQL c++ connector setBlob()?

In C++: I have a a std::set of integers In MySQL: I have a table with a blob column I would like to stream the integers into the blob column but I'm not sure how to do so edit: Forgot to mention ...
1
vote
5answers
519 views

istream::getline return type

What does the istream::getline method return? I am asking because I have seen that to loop through a file, it should be done like this: while ( file.getline( char*, int ) ) { // handle input } ...
1
vote
3answers
2k views

C++: ifstream::getline problem

I am reading a file like this: char string[256]; std::ifstream file( "file.txt" ); // open the level file. if ( ! file ) // check if the file loaded fine. { // error } while ( file.getline( ...
1
vote
5answers
484 views

Confused about usage of `std::istreambuf_iterator`

I've implemented a deserialization routine for an object using the << stream operator. The routine itself uses an istreambuf_iterator<char> to extract characters from the stream one by ...

1 2