/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include #include namespace facebook { namespace hs { namespace ffi { extern const char* outOfMemory; extern const char* unknownError; template const char* wrap(F&& f) noexcept { try { f(); return nullptr; } catch (const std::exception& e) { const char* s = strdup(e.what()); return s == nullptr ? outOfMemory : s; } catch (...) { return unknownError; } } template void wrap_(F&& f) noexcept { try { f(); } catch (...) { } } template void free_(T* obj) noexcept { wrap_([=] { delete obj; }); } } // namespace ffi } // namespace hs } // namespace facebook