Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
77 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
185 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
162 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
220 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
180 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
330 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
1answer
432 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
3answers
512 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> ...
4
votes
2answers
926 views

Drag and drop from C# to Windows Explorer with IStorage/IStream

I've been working on what sounds like simple functionality for way too long now. The idea is that I have an application with a TreeView. This treeview represents contents of a database organized ...
3
votes
4answers
76 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
73 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
141 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
828 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
419 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
400 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
58 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
109 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
368 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
187 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
68 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
1answer
477 views

Getting an IStream from an OleVariant

I am using Delphi along with WinHTTP to do an HTTP request to download some files from the internet, and I can do the request but I don't know how to get the IStream from the OleVariant that is ...
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
148 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
0answers
214 views

.NET equivalent of Delphi IStream initialization

I have the following Delphi code: var Stream: TMemoryStream; StreamI: TStreamAdapter; OleStream: IStream; begin Stream:= TMemoryStream.Create; Stream.LoadFromFile(filename); StreamI:= ...
2
votes
4answers
519 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
341 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
407 views

download a file using windows IStream

I'm implementing dragging a virtual file out of a website and onto the desktop with an activex control. How do I create an IStream on my http url, so Windows can execute the drop? The example I'm ...
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
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
1answer
128 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
843 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
572 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 ...
2
votes
2answers
2k views

How to convert BYTE* into a gdi+ image object?

I want to convert a BYTE* into an gdi+ Image object. How can I do this? The BYTE* seems a Dib point. I found Image has a method named Image::FromStream() which may help, But I can not find any ...
1
vote
0answers
48 views

C# wrting/burning large wav file on Audio CD

I used this article to write Audio CD Creating Audio CDs using IMAPI2 Following this article i can write Audio CD, but with smaller wav files (upto 30 min audio file) And OutOfMemoryException is ...
1
vote
1answer
80 views

Work with WinHttpRequest.ResponseStream (related to IStream) in Classic ASP?

Is there a way to work with the ResponseStream property of WinHttp.WinHttpRequest.5.1 in VBScript/ASP? At least the IStream interface (to which ResponseStream is related) is integrated into ASP to a ...
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
115 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
146 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 2 3