Darwin Neuroevolution Framework
scope_guard.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 <utility>
18 
19 namespace core {
20 
21 // a developer friendly scope guard and macro
22 // (inspired by Andrei Alexandrescu's C++11 Scope Guard)
23 class ScopeGuardHelper {
24  template <class T>
25  class ScopeGuard {
26  public:
27  explicit ScopeGuard(T closure) : closure_(std::move(closure)) {}
28 
29  ~ScopeGuard() { closure_(); }
30 
31  // move constructor only
32  ScopeGuard(ScopeGuard&&) = default;
33  ScopeGuard(const ScopeGuard&) = delete;
34  ScopeGuard& operator=(const ScopeGuard&) = delete;
35  ScopeGuard& operator=(ScopeGuard&&) = delete;
36 
37  private:
38  T closure_;
39  };
40 
41  public:
42  template <class T>
43  ScopeGuard<T> operator<<(T closure) {
44  return ScopeGuard<T>(std::move(closure));
45  }
46 };
47 
48 #define _SG_MACRO_CONCAT2(a, b) a##b
49 #define _SG_MACRO_CONCAT(a, b) _SG_MACRO_CONCAT2(a, b)
50 #define _SG_ANONYMOUS(prefix) _SG_MACRO_CONCAT(prefix, __COUNTER__)
51 
52 #define SCOPE_EXIT auto _SG_ANONYMOUS(_scope_guard_) = core::ScopeGuardHelper() << [&]()
53 
54 } // namespace core
Generic utilities.
Definition: exception.h:24
STL namespace.