]> git.proxmox.com Git - ceph.git/blob - ceph/src/include/scope_guard.h
0d06ce93618fe3abb9c6a25f6546999b7188a735
[ceph.git] / ceph / src / include / scope_guard.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2016 Red Hat
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15 #ifndef SCOPE_GUARD
16 #define SCOPE_GUARD
17
18 template <typename F>
19 struct scope_guard {
20 F f;
21 scope_guard() = delete;
22 scope_guard(const scope_guard &) = delete;
23 scope_guard(scope_guard &&) = default;
24 scope_guard & operator=(const scope_guard &) = delete;
25 scope_guard & operator=(scope_guard &&) = default;
26 scope_guard(F &&f) : f(std::move(f)) {}
27 ~scope_guard() {
28 f();
29 }
30 };
31
32 template <typename F>
33 scope_guard<F> make_scope_guard(F &&f) {
34 return scope_guard<F>(std::forward<F>(f));
35 }
36
37 #endif