// © 2018 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html #ifndef __CAPI_HELPER_H__ #define __CAPI_HELPER_H__ #include "unicode/utypes.h" U_NAMESPACE_BEGIN /** * An internal helper class to help convert between C and C++ APIs. */ template class IcuCApiHelper { public: /** * Convert from the C type to the C++ type (const version). */ static const CPPType* validate(const CType* input, UErrorCode& status); /** * Convert from the C type to the C++ type (non-const version). */ static CPPType* validate(CType* input, UErrorCode& status); /** * Convert from the C++ type to the C type (const version). */ const CType* exportConstForC() const; /** * Convert from the C++ type to the C type (non-const version). */ CType* exportForC(); /** * Invalidates the object. */ ~IcuCApiHelper(); private: /** * While the object is valid, fMagic equals kMagic. */ int32_t fMagic = kMagic; }; template const CPPType* IcuCApiHelper::validate(const CType* input, UErrorCode& status) { if (U_FAILURE(status)) { return nullptr; } if (input == nullptr) { status = U_ILLEGAL_ARGUMENT_ERROR; return nullptr; } auto* impl = reinterpret_cast(input); if (static_cast*>(impl)->fMagic != kMagic) { status = U_INVALID_FORMAT_ERROR; return nullptr; } return impl; } template CPPType* IcuCApiHelper::validate(CType* input, UErrorCode& status) { auto* constInput = static_cast(input); auto* validated = validate(constInput, status); return const_cast(validated); } template const CType* IcuCApiHelper::exportConstForC() const { return reinterpret_cast(static_cast(this)); } template CType* IcuCApiHelper::exportForC() { return reinterpret_cast(static_cast(this)); } template IcuCApiHelper::~IcuCApiHelper() { // head off application errors by preventing use of of deleted objects. fMagic = 0; } U_NAMESPACE_END #endif // __CAPI_HELPER_H__