Re: std iostreams design question, why not like java stream wrappers?
On Aug 27, 8:51 pm, Joshua Maurice <joshuamaur...@gmail.com> wrote:
On Aug 27, 3:21 am, James Kanze <james.ka...@gmail.com> wrote:
On Aug 27, 8:52 am, Joshua Maurice <joshuamaur...@gmail.com> wrote:
I'd also say that it's convoluted given that it doesn't
really solve any problems. Sure, it correctly handles the
systems end of line, and it correctly uses the right code
points for converting an integer to string representation
for the locale, and cool stuff like a comma or a period
for the thousand separators and "1 to tenths" separator.
However, the entire iostream library is overkill if those
are the only problems it solves, hence convoluted.
You seem to be confusing the issues. The iostream library
isn't concerned about much of that. The iostream library
provides:
-- a standard interface for data sinks and sources
(std::streambuf), along with two sample implementations
covering the most frequence cases (files and strings),
-- a standard interface for formatting, using the strategy
pattern to cleanly separate sinking and sourcing bytes from
the formatting---the formatting interface uses overloading
so that client code can extend it for types it's never heard
of,
Except for system specific newline handling for non-binary
mode, but I can live with that.
That's *not* in iostream, per se. It's a detail of one
particular subclass of streambuf (and it concerns more than just
newline handling---try reading a file which contains
"abc\032xyz\n" in text mode under Windows, for example).
I think. Not exactly sure how that works.
-- a standard error handling strategy (which is rather
simplistic), and
-- a couple of wrapper classes to make it easier to set up the
most common cases (reading or writing from a file or a
string).
For all localization issues, it defers to <locale>, which is
overly complicated for what it does (which isn't really
enough).
And remind me again, exactly what does the iostream library
without <locale> do again?
Read the two points I just made above. Some of the predefined
formatting functions do use locale, but that's just an
implementation detail, and not part of the basic concept. And
the formatting functions you write don't have to use locale
unless you want them to.
It handles newlines for you if not in binary mode, and uhh...
No it doesn't.
is it with facet support that it handles printing integers and
floats into human readable strings?
It provides the basic structure which allows formatting for any
type. Some of the actual formatters do use locale, but that's
rather secondary to iostream.
So, back to my original complaint of why a separate streambuf
and iostream class hierarchies when something like the Java
Writer hierarchy or the Java OutputStream hierarchy seems so
much clearer and simpler IMHO?
The Java OutputStream and Writer hierarchies are the Java
equivalent of streambuf. For formatting, you need
java.text.Format, and if you think that's simpler than iostream,
you've never used it.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34