1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
// SPDX-License-Identifier: LGPL-3.0-or-later
// Author: Kristian Lytje
#pragma once
#include <string>
#include <type_traits>
#ifdef WIN32
#define API __declspec(dllexport)
#else
#define API
#endif
struct ErrorMessage {
inline static std::string last_error;
};
extern "C" API void get_last_error_msg(
char** msg,
int* status
);
template<typename Func>
auto execute_with_catch(Func&& f, int* status) -> decltype(f()) {
try {
*status = 1;
if constexpr (std::is_void_v<decltype(f())>) {
f();
*status = 0;
return;
} else {
auto v = f();
*status = 0;
return v;
}
} catch (const std::exception& e) {
ErrorMessage::last_error = e.what();
*status = 1;
} catch (...) {
ErrorMessage::last_error = "An unknown error occurred.";
*status = 1;
}
if constexpr (!std::is_void_v<decltype(f())>) {return {};}
}
|