added iOS source code
[wl-app.git] / iOS / Pods / Realm / include / core / realm / util / terminate.hpp
1 /*************************************************************************
2  *
3  * Copyright 2016 Realm Inc.
4  *
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
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  *
17  **************************************************************************/
18
19 #ifndef REALM_UTIL_TERMINATE_HPP
20 #define REALM_UTIL_TERMINATE_HPP
21
22 #include <cstdlib>
23
24 #include <realm/util/features.h>
25 #include <realm/util/to_string.hpp>
26 #include <realm/version.hpp>
27
28 #define REALM_TERMINATE(msg) realm::util::terminate((msg), __FILE__, __LINE__)
29
30 namespace realm {
31 namespace util {
32
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;
38
39 // LCOV_EXCL_START
40 template <class... Ts>
41 REALM_NORETURN void terminate(const char* message, const char* file, long line, Ts... infos) noexcept
42 {
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)...});
46 }
47
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
51 {
52     terminate_with_info(assert_message, file, line, interesting_names, {Printable(interesting_values)...});
53 }
54 // LCOV_EXCL_STOP
55
56 } // namespace util
57 } // namespace realm
58
59 #endif // REALM_UTIL_TERMINATE_HPP