Darwin Neuroevolution Framework
utils.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <memory>
18 #include <utility>
19 
20 // compiler, platform identifing macros
21 // (see https://abseil.io/docs/cpp/platforms/macros)
22 
23 #if defined(_MSC_VER)
24 #define DARWIN_COMPILER_MSVC
25 #elif defined(__GNUC__)
26 #define DARWIN_COMPILER_GCC
27 #elif defined(__clang__)
28 #define DARWIN_COMPILER_CLANG
29 #else
30 #error Unsupported compiler
31 #endif
32 
33 #if defined(_WIN32)
34 #define DARWIN_OS_WINDOWS
35 #elif defined(__linux__)
36 #define DARWIN_OS_LINUX
37 #elif defined(__APPLE__)
38 #define DARWIN_OS_APPLE
39 #else
40 #error Unsupported OS
41 #endif
42 
43 namespace core {
44 
45 [[noreturn]] void __checkFailed(const char* expr, int line, const char* source);
46 [[noreturn]] void __checkFailed(const char* expr,
47  int line,
48  const char* source,
49  const char* message,
50  ...);
51 
53 #define CHECK(x, ...) \
54  do { \
55  if (!(x)) \
56  core::__checkFailed(#x, __LINE__, __FILE__, ##__VA_ARGS__); \
57  } while (false)
58 
59 [[noreturn]] void __fatal(const char* message, ...);
60 
62 #define FATAL(msg, ...) core::__fatal("\nFATAL: " msg "\n\n", ##__VA_ARGS__)
63 
69 class NonCopyable {
70  public:
71  NonCopyable() = default;
72 
73  // no copy/move semantics
74  NonCopyable(const NonCopyable&) = delete;
75  NonCopyable& operator=(const NonCopyable&) = delete;
76 };
77 
78 } // namespace core
Generic utilities.
Definition: exception.h:24
Classes derived from this are not copyable or movable.
Definition: utils.h:69