blob: e958da97748633c099d5c0108866814ba9ba483c [file] [log] [blame]
Niels Möller7c8c4db2022-06-13 08:36:381/*
2 * Copyright 2022 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 */
10#ifndef API_MAKE_REF_COUNTED_H_
11#define API_MAKE_REF_COUNTED_H_
12
Alan Zhao6cf8b482023-03-01 22:10:1513#include <type_traits>
Niels Möller105711e2022-06-14 13:48:2614#include <utility>
15
Niels Möller7c8c4db2022-06-13 08:36:3816#include "rtc_base/ref_counted_object.h"
17
Niels Möller105711e2022-06-14 13:48:2618namespace rtc {
19
20namespace webrtc_make_ref_counted_internal {
21// Determines if the given class has AddRef and Release methods.
22template <typename T>
23class HasAddRefAndRelease {
24 private:
25 template <typename C,
26 decltype(std::declval<C>().AddRef())* = nullptr,
27 decltype(std::declval<C>().Release())* = nullptr>
28 static int Test(int);
29 template <typename>
30 static char Test(...);
31
32 public:
33 static constexpr bool value = std::is_same_v<decltype(Test<T>(0)), int>;
34};
35} // namespace webrtc_make_ref_counted_internal
36
37// General utilities for constructing a reference counted class and the
38// appropriate reference count implementation for that class.
39//
40// These utilities select either the `RefCountedObject` implementation or
41// `FinalRefCountedObject` depending on whether the to-be-shared class is
42// derived from the RefCountInterface interface or not (respectively).
43
44// `make_ref_counted`:
45//
46// Use this when you want to construct a reference counted object of type T and
47// get a `scoped_refptr<>` back. Example:
48//
49// auto p = make_ref_counted<Foo>("bar", 123);
50//
51// For a class that inherits from RefCountInterface, this is equivalent to:
52//
53// auto p = scoped_refptr<Foo>(new RefCountedObject<Foo>("bar", 123));
54//
55// If the class does not inherit from RefCountInterface, but does have
56// AddRef/Release methods (so a T* is convertible to rtc::scoped_refptr), this
57// is equivalent to just
58//
59// auto p = scoped_refptr<Foo>(new Foo("bar", 123));
60//
61// Otherwise, the example is equivalent to:
62//
63// auto p = scoped_refptr<FinalRefCountedObject<Foo>>(
64// new FinalRefCountedObject<Foo>("bar", 123));
65//
66// In these cases, `make_ref_counted` reduces the amount of boilerplate code but
67// also helps with the most commonly intended usage of RefCountedObject whereby
68// methods for reference counting, are virtual and designed to satisfy the need
69// of an interface. When such a need does not exist, it is more efficient to use
70// the `FinalRefCountedObject` template, which does not add the vtable overhead.
71//
72// Note that in some cases, using RefCountedObject directly may still be what's
73// needed.
74
75// `make_ref_counted` for abstract classes that are convertible to
76// RefCountInterface. The is_abstract requirement rejects classes that inherit
77// both RefCountInterface and RefCounted object, which is a a discouraged
78// pattern, and would result in double inheritance of RefCountedObject if this
79// template was applied.
80template <
81 typename T,
82 typename... Args,
83 typename std::enable_if<std::is_convertible_v<T*, RefCountInterface*> &&
84 std::is_abstract_v<T>,
85 T>::type* = nullptr>
86scoped_refptr<T> make_ref_counted(Args&&... args) {
87 return scoped_refptr<T>(new RefCountedObject<T>(std::forward<Args>(args)...));
88}
89
90// `make_ref_counted` for complete classes that are not convertible to
91// RefCountInterface and already carry a ref count.
92template <
93 typename T,
94 typename... Args,
95 typename std::enable_if<
96 !std::is_convertible_v<T*, RefCountInterface*> &&
97 webrtc_make_ref_counted_internal::HasAddRefAndRelease<T>::value,
98 T>::type* = nullptr>
99scoped_refptr<T> make_ref_counted(Args&&... args) {
100 return scoped_refptr<T>(new T(std::forward<Args>(args)...));
101}
102
103// `make_ref_counted` for complete classes that are not convertible to
104// RefCountInterface and have no ref count of their own.
105template <
106 typename T,
107 typename... Args,
108 typename std::enable_if<
109 !std::is_convertible_v<T*, RefCountInterface*> &&
110 !webrtc_make_ref_counted_internal::HasAddRefAndRelease<T>::value,
111
112 T>::type* = nullptr>
113scoped_refptr<FinalRefCountedObject<T>> make_ref_counted(Args&&... args) {
114 return scoped_refptr<FinalRefCountedObject<T>>(
115 new FinalRefCountedObject<T>(std::forward<Args>(args)...));
116}
117
118} // namespace rtc
Niels Möller7c8c4db2022-06-13 08:36:38119
120#endif // API_MAKE_REF_COUNTED_H_