1 /*************************************************************************
3 * Copyright 2016 Realm Inc.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 **************************************************************************/
19 #ifndef REALM_UTIL_TERMINATE_HPP
20 #define REALM_UTIL_TERMINATE_HPP
24 #include <realm/util/features.h>
25 #include <realm/util/to_string.hpp>
26 #include <realm/version.hpp>
28 #define REALM_TERMINATE(msg) realm::util::terminate((msg), __FILE__, __LINE__)
33 REALM_NORETURN void terminate(const char* message, const char* file, long line,
34 std::initializer_list<Printable>&& = {}) noexcept;
35 REALM_NORETURN void terminate_with_info(const char* message, const char* file, long line,
36 const char* interesting_names,
37 std::initializer_list<Printable>&& = {}) noexcept;
40 template <class... Ts>
41 REALM_NORETURN void terminate(const char* message, const char* file, long line, Ts... infos) noexcept
43 static_assert(sizeof...(infos) == 2 || sizeof...(infos) == 4 || sizeof...(infos) == 6,
44 "Called realm::util::terminate() with wrong number of arguments");
45 terminate(message, file, line, {Printable(infos)...});
48 template <class... Args>
49 REALM_NORETURN void terminate_with_info(const char* assert_message, int line, const char* file,
50 const char* interesting_names, Args&&... interesting_values) noexcept
52 terminate_with_info(assert_message, file, line, interesting_names, {Printable(interesting_values)...});
59 #endif // REALM_UTIL_TERMINATE_HPP