Re: Exception specifications unfortunate, and what about their future?
"Gerhard Menzl" <clcppm-poster@this.is.invalid> wrote in message
news:gh5l5r$rki$1@news.datemas.de...
Karl Uppiano wrote:
If I were writing templates, I would declare exceptions that derive
from my own exception hierarchy (could be Boost, ACE, or other,
depending on who I was), and are relevant to the semantics of _my_
problem space. If the client class throws something else, the template
would be responsible for translating it into one of my exception
types. My exception might support _nesting_ the original cause for
those who are interested. The fact that C++ allows people to throw
_anything_ makes this more difficult.
If you were writing templates, you would soon discover the true meaning of
the term "generic".
What makes you think that I don't?
Suppose you were to write a standard-style container, i.e. a container
with copy semantics that is able to hold any type. Let's just look at a
simplified implementation of insert:
template <typename T> class my_container
{
//...
iterator insert(iterator pos, T const& item) throw (my_exception)
{
iterator new_pos = make_room(1);
try
{
*new_pos = item;
}
catch(...) // T might throw anything
{
// what goes here?
}
return new_pos;
}
//...
};
In my earlier post, I answered the question "what goes here" by saying that
C++ makes this task harder because T might throw anything. I am aware of
that problem -- and it is a huge problem. I personally think catch(...) is
evil, but unfortunately unavoidable for completely unconstrained generic
templates because of the way C++ evolved.
How could generic code possibly translate an exception that is specific to
T's problem domain into a generic format, and even if it could, how could
it avoid losing information? There's T-dom code on top which understands
and handles T-dom exceptions, and T-dom code at the bottom which generates
T-dom exceptions. You suggest that T-dom abandons its specific exceptions
although they make perfect sense, just because the generic container is
used in between. I don't see any sense in that.
It depends on what the template is used for. If I wish to be transparent to
the T-domain, then I probably would not attempt to translate. If the
template API is the dominant domain, I would translate, and nest any
exceptions thrown by T so information is not lost (subject to catch(...)
evilness). Sometimes life sucks. It would be a nice compromise if I could
allow T's exceptions to pass unchecked, and declare my own as checked. I
don't think statically checked exception semantics work that way today.
In an earlier post, I also mentioned that T might throw a checked exception
that my template method doesn't declare. That presents a problem for classes
that are not aware of my template, but in many programming situations,
classes and templates are developed together, and it merely involves
agreement on the API, where statically checked exceptions could be
enormously helpful.
This thread is about how to address today's problems with statically checked
exceptions, so I look forward to the day when some of these problems are
mitigated. As a somewhat unsatisfying work-around, most compilers allow
specific warnings to be suppressed, for when new language features are more
strict than the old features.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]