IODA
|
Provides the C-style bindings for ioda's templated C++ classes and functions. More...
Files | |
file | c_binding_macros.h |
C bindings interface to templated C++ ioda classes and functions. | |
Macros | |
#define | C_TRY try { |
Goes with C_CATCH_AND_TERMINATE. More... | |
#define | C_CATCH_AND_TERMINATE |
Catch C++ exceptions before they go across code boundaries. More... | |
#define | C_CATCH_AND_RETURN(retval_on_success, retval_on_error) |
This macro catches C++ exceptions. More... | |
#define | C_CATCH_RETURN_FREE(retval_on_success, retval_on_error, freeable) |
Like C_CATCH_AND_RETURN, but free any in-function allocated C resource before returning to avoid memory leaks. More... | |
#define | C_TEMPLATE_FUNCTION_DEFINITION(funcname, PATTERN) |
Used to expand templates to provide bindings for template-deprived languages (C, Fortran). More... | |
#define | C_TEMPLATE_FUNCTION_DECLARATION(funcname, PATTERN) |
Used to expand templates to provide bindings for template-deprived languages (C, Fortran). More... | |
#define | C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(funcname, PATTERN) |
#define | C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR(shortname, basename, PATTERN) |
#define | C_TEMPLATE_FUNCTION_DECLARATION_3_NOSTR(shortname, basename, PATTERN) |
#define | C_TEMPLATE_FUNCTION_DECLARATION_3(shortname, basename, PATTERN) |
#define | C_TEMPLATE_FUNCTION_DECLARATION_NOSTR(funcname, PATTERN) C_TEMPLATE_FUNCTION_DECLARATION_3_NOSTR(funcname, funcname, PATTERN) |
Provides the C-style bindings for ioda's templated C++ classes and functions.
#define C_CATCH_AND_RETURN | ( | retval_on_success, | |
retval_on_error | |||
) |
This macro catches C++ exceptions.
If they are recoverable, then return the error value. If nonrecoverable, behave as C_CATCH_AND_TERMINATE.
Definition at line 56 of file c_binding_macros.h.
#define C_CATCH_AND_TERMINATE |
Catch C++ exceptions before they go across code boundaries.
This is needed because exceptions are not supposed to propagate across language boundaries. Undefined behavior, and at best the program would terminate cleanly. This macro ensures that we call std::terminate, which calls std::abort, and prints an error indicating where this occurs.
Definition at line 42 of file c_binding_macros.h.
#define C_CATCH_RETURN_FREE | ( | retval_on_success, | |
retval_on_error, | |||
freeable | |||
) |
Like C_CATCH_AND_RETURN, but free any in-function allocated C resource before returning to avoid memory leaks.
Definition at line 71 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DECLARATION | ( | funcname, | |
PATTERN | |||
) |
Used to expand templates to provide bindings for template-deprived languages (C, Fortran).
Definition at line 166 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DECLARATION_3 | ( | shortname, | |
basename, | |||
PATTERN | |||
) |
Definition at line 159 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DECLARATION_3_NOSTR | ( | shortname, | |
basename, | |||
PATTERN | |||
) |
Definition at line 139 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR | ( | shortname, | |
basename, | |||
PATTERN | |||
) |
Definition at line 119 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DECLARATION_NOSTR | ( | funcname, | |
PATTERN | |||
) | C_TEMPLATE_FUNCTION_DECLARATION_3_NOSTR(funcname, funcname, PATTERN) |
Definition at line 163 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DEFINITION | ( | funcname, | |
PATTERN | |||
) |
Used to expand templates to provide bindings for template-deprived languages (C, Fortran).
Definition at line 170 of file c_binding_macros.h.
#define C_TEMPLATE_FUNCTION_DEFINITION_NOSTR | ( | funcname, | |
PATTERN | |||
) |
Definition at line 95 of file c_binding_macros.h.
#define C_TRY try { |
Goes with C_CATCH_AND_TERMINATE.
Definition at line 31 of file c_binding_macros.h.