Say I have an input operation:
file >> x;
If the internal buffer of file
is empty underflow()
will be called to import characters from the external device to the internal buffer of file
. It is implementation-defined if the buffer will be partially or completely filled after this flush operation. Taking that into account, is it possible that if x
is a string and I am expecting an input value of a certain length, that the buffer is in its right to transfer fewer characters than that? Can this happen?
There is no real constraint on how many characters
underflow()
makes available. The only real constraint is that a stream which hasn't reached EOF needs to make, at least, one character available. With respect specificallystd::filebuf
(orstd::basic_filebuf<...>
) the stream may be unbuffered (ifsetbuf(0, 0)
was called) in which case it would, indeed, make individual characters available. Otherwise, the stream will try to fill its internal buffer and rely on the operating system to have a the underlying operation return a suitable amount of bytes if there are few available, yet.I'm not sure I quite understand your question: the operation
file >> x
will return oncex
is completely read which can happen if the stream indicated byfile
has reached its end or when a whitespace character is found (and if with "string" you meanchar*
, a non-zero value stored infile.width()
is also taken into account). With respect to the underlying stream buffer, clearlyx
may require multiple reads to the underlying representation, i.e., it is unpredictable how many calls tounderflow()
are made. Given that the file's internal buffer is probably matching the disc's block size, I would expect that at most one call tounderflow()
is made for "normal" strings. However, if the file read is a huge and doesn't contain any spaces many calls tounderflow()
may be made. Given that the stream needs to find whitespaces it has no way to predict how many characters are needed in the first place.