Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
has_uncaught_exceptions.hpp
Go to the documentation of this file.
1// Copyright 2024, Toyota Motor Corporation
2//
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_COMPILER_SUPPORT_PLATFORM_QUERIES_HAS_UNCAUGHT_EXCEPTIONS_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_COMPILER_SUPPORT_PLATFORM_QUERIES_HAS_UNCAUGHT_EXCEPTIONS_HPP_
7
8// IWYU pragma: private, include "arene/base/compiler_support/platform_queries.hpp"
9// IWYU pragma: friend "arene/base/compiler_support/platform_queries/.*"
10
11// parasoft-begin-suppress AUTOSAR-A16_2_2-a-2 "Arene Base aggregate headers permitted by A16-2-2 Permit #1"
12#include "arene/base/compiler_support/preprocessor.hpp"
13// parasoft-end-suppress AUTOSAR-A16_2_2-a-2
14
15// NOLINTBEGIN(cppcoreguidelines-macro-usage) Explicitly providing compiler support macro functions
16// parasoft-begin-suppress AUTOSAR-A16_0_1-d-2 "Conditional defines permitted by A16-0-1 Permit #2"
17// parasoft-begin-suppress AUTOSAR-A16_0_1-a-2 "Conditional defines permitted by A16-0-1 Permit #2"
18
19/// @def ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS
20/// @brief A platform support query for testing if @c __cpp_lib_uncaught_exceptions is defined.
21///
22/// Usage:
23/// @code{c++}
24/// #if ARENE_IS_ON(ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS)
25/// @endcode
26///
27/// The value of this query is determined as follows, in order of precedence:
28/// 1. If @c ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS has been explicitly defined via a @c -D flag to the compiler or
29/// similar:
30/// * @c ARENE_ON if it is truthy
31/// * @c ARENE_OFF if it is not truthy
32/// 1. If @c __cpp_lib_uncaught_exceptions is defined it is @c ARENE_ON_BY_DEFAULT
33/// 1. Otherwise, it is @c ARENE_OFF_BY_DEFAULT
34
35#if defined(ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS)
36#if (ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS != 0)
37#define ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS_I_ ARENE_ON
38#else
39#define ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS_I_ ARENE_OFF
40#endif
41#elif defined(__cpp_lib_uncaught_exceptions)
42#define ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS_I_ ARENE_ON_BY_DEFAULT
43#else
44#define ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS_I_ ARENE_OFF_BY_DEFAULT
45#endif
46
47#ifdef ARENE_DOC_GENERATION_RUNNING // make this appear when running doxygen, as it won't otherwise.
48#ifndef ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS
49#define ARENE_STD_LIBRARY_UNCAUGHT_EXCEPTIONS
50#endif
51#endif
52
53// NOLINTEND(cppcoreguidelines-macro-usage) Explicitly providing compiler support macro functions
54// parasoft-end-suppress AUTOSAR-A16_0_1-d-2
55// parasoft-end-suppress AUTOSAR-A16_0_1-a-2
56
57#endif // INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_COMPILER_SUPPORT_PLATFORM_QUERIES_HAS_UNCAUGHT_EXCEPTIONS_HPP_