blob: e396b0d7957add6f6d22da93f4637d0a9a2eacae (
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
75
76
77
78
79
80
81
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_SHARED_DATA_H_
#define MOJO_PUBLIC_CPP_BINDINGS_LIB_SHARED_DATA_H_
namespace mojo {
namespace internal {
// Used to allocate an instance of T that can be shared via reference counting.
template <typename T>
class SharedData {
public:
~SharedData() {
holder_->Release();
}
SharedData() : holder_(new Holder()) {
}
explicit SharedData(const T& value) : holder_(new Holder(value)) {
}
SharedData(const SharedData<T>& other) : holder_(other.holder_) {
holder_->Retain();
}
SharedData<T>& operator=(const SharedData<T>& other) {
if (other.holder_ == holder_)
return *this;
holder_->Release();
holder_ = other.holder_;
holder_->Retain();
}
void reset() {
holder_->Release();
holder_ = new Holder();
}
void reset(const T& value) {
holder_->Release();
holder_ = new Holder(value);
}
void set_value(const T& value) {
holder_->value = value;
}
T* mutable_value() {
return &holder_->value;
}
const T& value() const {
return holder_->value;
}
private:
class Holder {
public:
Holder() : value(), ref_count_(1) {
}
Holder(const T& value) : value(value), ref_count_(1) {
}
void Retain() { ++ref_count_; }
void Release() { if (--ref_count_ == 0) delete this; }
T value;
private:
int ref_count_;
MOJO_DISALLOW_COPY_AND_ASSIGN(Holder);
};
Holder* holder_;
};
} // namespace internal
} // namespace mojo
#endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_SHARED_DATA_H_
|