Re: C++ User-defined functions

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: C++ User-defined functions
Дата
Msg-id 20662.1236655198@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: C++ User-defined functions  (Craig Ringer <craig@postnewspapers.com.au>)
Список pgsql-general
Craig Ringer <craig@postnewspapers.com.au> writes:
> Tom Lane wrote:
>> One thing you've got to be really wary of is C++ exceptions,
>> which tend not to interoperate nicely with PG's longjmp-based error
>> handling.

> Hmm, that does sound problematic. You can always build with
> -fno-exceptions (gcc; I think other compilers offer related options) and
> adopt Pg's error handling scheme instead, though.

> In general it's possible to use exceptions in C++ code that's being
> called from C so long as you make sure you catch all possible exceptions
> at the C/C++ interface point.

The other half of the problem is that most user-written functions have
some reason to call functions in the core backend.  If any of those
might throw an error then you have to do the reverse mapping too (catch
the longjmp, throw an exception, catch that back at your exit point...).
Otherwise your exception cleanup doesn't happen, which makes the whole
thing a bit useless.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: C++ User-defined functions
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: intermittant performance problem