23#include <rtl/strbuf.hxx>
24#include <rtl/ustrbuf.hxx>
26#include <osl/mutex.hxx>
28#include <com/sun/star/uno/genfunc.hxx>
29#include <typelib/typedescription.hxx>
32#include <unordered_map>
48#if defined BRIDGE_DEBUG
54 OUStringBuffer buf(64);
61 long n = (*
p++ -
'0');
62 while (
'0' <= *
p &&
'9' >= *
p)
67 buf.appendAscii(
p,
n);
73#if defined BRIDGE_DEBUG
74 OUString ret(buf.makeStringAndClear());
76 fprintf(stderr,
"> toUNOname(): %s => %s\n",
start, c_ret.getStr());
79 return buf.makeStringAndClear();
85 typedef std::unordered_map<OUString, type_info*>
t_rtti_map;
97 type_info*
getRTTI(typelib_CompoundTypeDescription*);
101 :
m_hApp(dlopen(0, RTLD_LAZY))
107type_info*
RTTI::getRTTI(typelib_CompoundTypeDescription* pTypeDescr)
111 OUString
const& unoName = *(OUString
const*)&pTypeDescr->aBase.pTypeName;
114 t_rtti_map::const_iterator iRttiFind(
m_rttis.find(unoName));
115 if (iRttiFind ==
m_rttis.end())
118 OStringBuffer buf(64);
123 OUString token(unoName.getToken(0,
'.', index));
124 buf.append(token.getLength());
127 }
while (index >= 0);
130 OString symName(buf.makeStringAndClear());
131 rtti = (type_info*)dlsym(
m_hApp, symName.getStr());
135 pair<t_rtti_map::iterator, bool> insertion(
136 m_rttis.insert(t_rtti_map::value_type(unoName, rtti)));
137 assert(insertion.second &&
"### inserting new rtti failed?!");
148 char const* rttiName = symName.getStr() + 4;
149#if defined BRIDGE_DEBUG
150 fprintf(stderr,
"generated rtti for %s\n", rttiName);
152 if (pTypeDescr->pBaseTypeDescription)
155 type_info* base_rtti =
getRTTI(
156 (typelib_CompoundTypeDescription*)pTypeDescr->pBaseTypeDescription);
158 =
new __si_class_type_info(strdup(rttiName), (__class_type_info*)base_rtti);
163 rtti =
new __class_type_info(strdup(rttiName));
166 pair<t_rtti_map::iterator, bool> insertion(
168 assert(insertion.second &&
"### inserting new generated rtti failed?!");
172 rtti = iFind->second;
178 rtti = iRttiFind->second;
186#if defined BRIDGE_DEBUG
187 fprintf(stderr,
"in deleteException: pExc = %p\n", pExc);
192 ::typelib_typedescription_getByName(&pTD, unoName.pData);
193 assert(pTD &&
"### unknown exception type! leaving out destruction => leaking!!!");
196 ::uno_destructData(pExc, pTD, cpp_release);
197 ::typelib_typedescription_release(pTD);
207#if defined BRIDGE_DEBUG
209 RTL_TEXTENCODING_ASCII_US));
210 fprintf(stderr,
"> uno exception occurred: %s\n", cstr.getStr());
218 TYPELIB_DANGER_GET(&pTypeDescr, pUnoExc->pType);
223 + OUString::unacquired(&pUnoExc->pType->pTypeName));
227 ::uno_copyAndConvertData(pCppExc, pUnoExc->pData, pTypeDescr, pUno2Cpp);
230 ::uno_any_destruct(pUnoExc, 0);
232 static RTTI rtti_data;
233 rtti = (type_info*)rtti_data.getRTTI((typelib_CompoundTypeDescription*)pTypeDescr);
234 TYPELIB_DANGER_RELEASE(pTypeDescr);
235 assert(rtti &&
"### no rtti for throwing exception!");
239 + OUString::unacquired(&pUnoExc->pType->pTypeName));
260 OUString unoName(
toUNOname(exceptionType->name()));
261#if defined BRIDGE_DEBUG
263 fprintf(stderr,
"> c++ exception occurred: %s\n", cstr_unoName.getStr());
266 if (0 == pExcTypeDescr)
constexpr sal_Int8 header[]
void SAL_CALL uno_type_any_constructAndConvert(uno_Any *pDest, void *pSource, typelib_TypeDescriptionReference *pType, uno_Mapping *mapping) SAL_THROW_EXTERN_C()
void SAL_CALL uno_any_constructAndConvert(uno_Any *pDest, void *pSource, typelib_TypeDescription *pTypeDescr, uno_Mapping *mapping) SAL_THROW_EXTERN_C()
std::type_info * getRTTI(typelib_CompoundTypeDescription *)
type_info * getRTTI(typelib_CompoundTypeDescription *)
std::unordered_map< OUString, type_info * > t_rtti_map
std::unordered_map< OUString, std::type_info *, OUStringHash > t_rtti_map
t_rtti_map m_generatedRttis
#define SAL_WARN(area, stream)
struct _uno_Mapping uno_Mapping
struct _typelib_TypeDescription typelib_TypeDescription
static void deleteException(void *pExc)
__cxa_eh_globals * __cxa_get_globals()
void __cxa_throw(void *thrown_exception, std::type_info *tinfo, void(*dest)(void *)) __attribute__((noreturn))
void dummy_can_throw_anything(char const *)
void * __cxa_allocate_exception(std::size_t thrown_size)
void fillUnoException(uno_Any *pUnoExc, uno_Mapping *pCpp2Uno)
std::type_info * __cxa_current_exception_type()
static OUString toUNOname(char const *p)
void raiseException(uno_Any *pUnoExc, uno_Mapping *pUno2Cpp)
OString OUStringToOString(std::u16string_view str, ConnectionSettings const *settings)
__cxa_exception * caughtExceptions
void SAL_CALL typelib_typedescription_release(typelib_TypeDescription *pTD) SAL_THROW_EXTERN_C()
void SAL_CALL typelib_typedescription_getByName(typelib_TypeDescription **ppRet, rtl_uString *pName) SAL_THROW_EXTERN_C()