blob: fc54c4cb9d6717ff9f4f10863f5d8a7879b41ec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2013 Inktank Storage, Inc.
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_TRACKEDINTPTR_H
#define CEPH_TRACKEDINTPTR_H
template <class T>
class TrackedIntPtr {
T *ptr;
uint64_t id;
public:
TrackedIntPtr() : ptr(NULL), id(0) {}
TrackedIntPtr(T *ptr) : ptr(ptr), id(ptr ? get_with_id(ptr) : 0) {}
~TrackedIntPtr() {
if (ptr)
put_with_id(ptr, id);
else
ceph_assert(id == 0);
}
void swap(TrackedIntPtr &other) {
T *optr = other.ptr;
uint64_t oid = other.id;
other.ptr = ptr;
other.id = id;
ptr = optr;
id = oid;
}
TrackedIntPtr(const TrackedIntPtr &rhs) :
ptr(rhs.ptr), id(ptr ? get_with_id(ptr) : 0) {}
TrackedIntPtr& operator=(const TrackedIntPtr &rhs) {
TrackedIntPtr o(rhs.ptr);
swap(o);
return *this;
}
T &operator*() const {
return *ptr;
}
T *operator->() const {
return ptr;
}
T *get() const { return ptr; }
operator bool() const {
return ptr != NULL;
}
bool operator<(const TrackedIntPtr &lhs) const {
return ptr < lhs.ptr;
}
bool operator==(const TrackedIntPtr &lhs) const {
return ptr == lhs.ptr;
}
void reset() {
if (ptr)
put_with_id(ptr, id);
ptr = nullptr;
id = 0;
}
};
#endif
|