Having a text file with a few characters (lets say 10), you can try to read 1000 characters from it.
char *buf = new char[1000];
ifstream in("in.txt");
in.read(buf, 1000);
This, of course will set the eofbit flag (and the failbit too), however, you will be able to obtain the desired characters.
Now, suppose you want to read the file again (from the beginning):
in.seekg(0); // Sets input position indicator.
in.read(buf, 100); // Try to read again.
This don't work, if you call
int count = in.gcount() // Charecters readed from input.
you will notice that count == 0
. Meaning it haven't readed nothing at all.
Hence the question: How can you rewing the file after hit end of file?
Solution
Use clear for cleaning the state of the ifstream before call seekg
. Be sure to check first if you don't will need to know the state later.
in.clear();
in.seekg(0);
Explanation
seekg sets the input position, but doesn't clear state bit failbit so, the ifstream instance "thinks" there is something wrong yet.
From the standar specification:
std::basic_istream::seekg behaves as UnformattedInputFunction, except that gcount() is not affected.
And we can read in UnformattedInputFunction:
The following standard library functions are UnformattedInputFunctions:
basic_istream::seekg, except that it first clears eofbit and does not modify gcount
In the question example if you print the state before and after the seekg you get:
cout << "State before seekg: " << in.rdstate() << endl; // Prints 3 (11 in binary) failbit and eofbit activated.
in.seekg(0);
cout << "State after seekg: " << in.rdstate() << endl; // Prints 2 (10 in binary) just failbit activated.
That's why!!
seekg doesn't clear failbit and for some implementation reason, it doesn't works with such bit activated.
My guess
Why seegk
does not work when failbit is activated?
It has to do with the fact this bit is not only activated when the stream reach the end of the file. And it might be situations in which after failbit is activated, use gseek
is error prone or might shows undefined behaviour.