Re: std::fstream and buffer sizes
Rune Allnor wrote:
On 6 Jul, 05:14, Howard Hinnant <howard.hinn...@gmail.com> wrote:
On Jul 2, 9:59 pm, Rune Allnor <all...@tele.ntnu.no> wrote:
Hi all.
I'm pretty sure I have both asked this question before,
and recieved an answer, but I can't find it in the archives.
How does one adjust the buffer sizes for fstreams?
In contradiction to other replies you have received, you'll need to
read your implementation's documentation. Here is what the
standard says:
Effects: If setbuf(0,0) is called on a stream before any I/O has
occurred on that stream, the stream
becomes unbuffered. Otherwise the results are
implementation-de?ned. "Unbuffered" means that
pbase() and pptr() always return null and output to the ?le should
appear as soon as possible.
I.e. the only thing you can count on from the standard is
fs.rdbuf()-
pubsetbuf(0,0).
Ouch!
So iostream buffer manipulations are non-portable?
Well, how do you intend to select an "optimal" buffer size in a
system-independent way? This has to be identified as a problem, and
tuned for each platform anyway.
Like Howard says, in the general case the language standard makes no
guarantees, so you will have to check that you are using an underlying
device that will make use of the buffer.
One implementation
(http://msdn.microsoft.com/en-us/library/2bzc2y2z%28VS.80%29.aspx)
describes this as:
"...offer the array of _Count bytes beginning at _Buffer as a buffer
for the stream".
If the stream rejects the buffer, you are out of luck.
If the fstream interfaces to a file on some of the more widely used
operating systems, it will probably not reject the buffer. You still
don't know what size is universally optimal though - and why that
isn't the one already used.
Bo Persson
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]