]> git.proxmox.com Git - ceph.git/blob - ceph/src/seastar/include/seastar/core/shared_ptr_debug_helper.hh
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / seastar / include / seastar / core / shared_ptr_debug_helper.hh
1 /*
2 * This file is open source software, licensed to you under the terms
3 * of the Apache License, Version 2.0 (the "License"). See the NOTICE file
4 * distributed with this work for additional information regarding copyright
5 * ownership. You may not use this file except in compliance with the License.
6 *
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,
12 * software distributed under the License is distributed on an
13 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 * KIND, either express or implied. See the License for the
15 * specific language governing permissions and limitations
16 * under the License.
17 */
18 /*
19 * Copyright (C) 2015 Cloudius Systems, Ltd.
20 */
21
22 #pragma once
23
24 #ifdef SEASTAR_DEBUG_SHARED_PTR
25
26 #include <thread>
27 #include <cassert>
28
29 namespace seastar {
30
31 // A counter that is only comfortable being incremented on the cpu
32 // it was created on. Useful for verifying that a shared_ptr
33 // or lw_shared_ptr isn't misued across cores.
34 class debug_shared_ptr_counter_type {
35 long _counter = 0;
36 std::thread::id _cpu = std::this_thread::get_id();
37 public:
38 debug_shared_ptr_counter_type(long x) : _counter(x) {}
39 operator long() const {
40 check();
41 return _counter;
42 }
43 debug_shared_ptr_counter_type& operator++() {
44 check();
45 ++_counter;
46 return *this;
47 }
48 long operator++(int) {
49 check();
50 return _counter++;
51 }
52 debug_shared_ptr_counter_type& operator--() {
53 check();
54 --_counter;
55 return *this;
56 }
57 long operator--(int) {
58 check();
59 return _counter--;
60 }
61 private:
62 void check() const {
63 assert(_cpu == std::this_thread::get_id());
64 }
65 };
66
67 }
68
69 #endif
70