Seastar
High performance C++ framework for concurrent servers
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#ifndef SEASTAR_MODULE
27#include <thread>
28#include <cassert>
29
30#include <seastar/core/on_internal_error.hh>
31#include <seastar/util/modules.hh>
32#endif
33
34namespace seastar {
35
36extern logger seastar_logger;
37
38// A counter that is only comfortable being incremented on the cpu
39// it was created on. Useful for verifying that a shared_ptr
40// or lw_shared_ptr isn't misued across cores.
41SEASTAR_MODULE_EXPORT
42class debug_shared_ptr_counter_type {
43 long _counter = 0;
44 std::thread::id _cpu = std::this_thread::get_id();
45public:
46 debug_shared_ptr_counter_type(long x) noexcept : _counter(x) {}
47 operator long() const {
48 check();
49 return _counter;
50 }
51 debug_shared_ptr_counter_type& operator++() {
52 check();
53 ++_counter;
54 return *this;
55 }
56 long operator++(int) {
57 check();
58 return _counter++;
59 }
60 debug_shared_ptr_counter_type& operator--() {
61 check();
62 --_counter;
63 return *this;
64 }
65 long operator--(int) {
66 check();
67 return _counter--;
68 }
69private:
70 void check() const {
71 if (__builtin_expect(_cpu != std::this_thread::get_id(), false)) {
72 on_fatal_internal_error(seastar_logger, "shared_ptr accessed on non-owner cpu");
73 }
74 }
75};
76
77}
78
79#endif
80
Seastar API namespace.
Definition: abort_on_ebadf.hh:26
void on_fatal_internal_error(logger &logger, std::string_view reason) noexcept