perkj | 0489e49 | 2016-10-20 07:24:01 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 10 | #ifndef RTC_BASE_REF_COUNTED_OBJECT_H_ |
| 11 | #define RTC_BASE_REF_COUNTED_OBJECT_H_ |
perkj | 0489e49 | 2016-10-20 07:24:01 | [diff] [blame] | 12 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 13 | #include <type_traits> |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 14 | #include <utility> |
perkj | 0489e49 | 2016-10-20 07:24:01 | [diff] [blame] | 15 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 16 | #include "rtc_base/constructor_magic.h" |
| 17 | #include "rtc_base/ref_count.h" |
| 18 | #include "rtc_base/ref_counter.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 19 | |
| 20 | namespace rtc { |
| 21 | |
| 22 | template <class T> |
| 23 | class RefCountedObject : public T { |
| 24 | public: |
| 25 | RefCountedObject() {} |
| 26 | |
| 27 | template <class P0> |
| 28 | explicit RefCountedObject(P0&& p0) : T(std::forward<P0>(p0)) {} |
| 29 | |
| 30 | template <class P0, class P1, class... Args> |
| 31 | RefCountedObject(P0&& p0, P1&& p1, Args&&... args) |
| 32 | : T(std::forward<P0>(p0), |
| 33 | std::forward<P1>(p1), |
| 34 | std::forward<Args>(args)...) {} |
| 35 | |
Niels Möller | 9155e49 | 2017-10-23 09:22:30 | [diff] [blame] | 36 | virtual void AddRef() const { ref_count_.IncRef(); } |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 37 | |
Niels Möller | 6f72f56 | 2017-10-19 11:15:17 | [diff] [blame] | 38 | virtual RefCountReleaseStatus Release() const { |
Niels Möller | 9155e49 | 2017-10-23 09:22:30 | [diff] [blame] | 39 | const auto status = ref_count_.DecRef(); |
| 40 | if (status == RefCountReleaseStatus::kDroppedLastRef) { |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 41 | delete this; |
| 42 | } |
Niels Möller | 9155e49 | 2017-10-23 09:22:30 | [diff] [blame] | 43 | return status; |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | // Return whether the reference count is one. If the reference count is used |
| 47 | // in the conventional way, a reference count of 1 implies that the current |
| 48 | // thread owns the reference and no other thread shares it. This call |
| 49 | // performs the test for a reference count of one, and performs the memory |
| 50 | // barrier needed for the owning thread to act on the object, knowing that it |
| 51 | // has exclusive access to the object. |
Niels Möller | 9155e49 | 2017-10-23 09:22:30 | [diff] [blame] | 52 | virtual bool HasOneRef() const { return ref_count_.HasOneRef(); } |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 53 | |
| 54 | protected: |
| 55 | virtual ~RefCountedObject() {} |
| 56 | |
Niels Möller | 9155e49 | 2017-10-23 09:22:30 | [diff] [blame] | 57 | mutable webrtc::webrtc_impl::RefCounter ref_count_{0}; |
| 58 | |
| 59 | RTC_DISALLOW_COPY_AND_ASSIGN(RefCountedObject); |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | } // namespace rtc |
perkj | 0489e49 | 2016-10-20 07:24:01 | [diff] [blame] | 63 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 64 | #endif // RTC_BASE_REF_COUNTED_OBJECT_H_ |