Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
retain_ptr.h
Go to the documentation of this file.
1// Copyright 2016 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CORE_FXCRT_RETAIN_PTR_H_
6#define CORE_FXCRT_RETAIN_PTR_H_
7
8#include <stdint.h>
9
10#include <functional>
11#include <memory>
12#include <type_traits>
13#include <utility>
14
15#include "core/fxcrt/unowned_ptr.h"
16#include "third_party/base/check.h"
17#include "third_party/base/compiler_specific.h"
18
19namespace fxcrt {
20
21// Used with std::unique_ptr to Release() objects that can't be deleted.
22template <class T>
24 inline void operator()(T* ptr) const { ptr->Release(); }
25};
26
27// Analogous to base's scoped_refptr.
28template <class T>
29class TRIVIAL_ABI RetainPtr {
30 public:
31 RetainPtr() noexcept = default;
32
33 // Deliberately implicit to allow returning nullptrs.
34 // NOLINTNEXTLINE(runtime/explicit)
35 RetainPtr(std::nullptr_t ptr) {}
36
37 explicit RetainPtr(T* pObj) noexcept : m_pObj(pObj) {
38 if (m_pObj)
39 m_pObj->Retain();
40 }
41
42 // Copy-construct a RetainPtr.
43 // Required in addition to copy conversion constructor below.
44 RetainPtr(const RetainPtr& that) noexcept : RetainPtr(that.Get()) {}
45
46 // Move-construct a RetainPtr. After construction, |that| will be NULL.
47 // Required in addition to move conversion constructor below.
48 RetainPtr(RetainPtr&& that) noexcept { Unleak(that.Leak()); }
49
50 // Copy conversion constructor.
51 template <class U,
52 typename = typename std::enable_if<
54 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {}
55
56 // Move-conversion constructor.
57 template <class U,
58 typename = typename std::enable_if<
60 RetainPtr(RetainPtr<U>&& that) noexcept {
61 Unleak(that.Leak());
62 }
63
64 // Assign a RetainPtr from nullptr;
65 RetainPtr& operator=(std::nullptr_t) noexcept {
66 Reset();
67 return *this;
68 }
69
70 // Copy-assign a RetainPtr.
71 // Required in addition to copy conversion assignment below.
72 RetainPtr& operator=(const RetainPtr& that) {
73 if (*this != that)
74 Reset(that.Get());
75 return *this;
76 }
77
78 // Move-assign a RetainPtr. After assignment, |that| will be NULL.
79 // Required in addition to move conversion assignment below.
80 RetainPtr& operator=(RetainPtr&& that) noexcept {
81 Unleak(that.Leak());
82 return *this;
83 }
84
85 // Copy-convert assign a RetainPtr.
86 template <class U,
87 typename = typename std::enable_if<
89 RetainPtr& operator=(const RetainPtr<U>& that) {
90 if (*this != that)
91 Reset(that.Get());
92 return *this;
93 }
94
95 // Move-convert assign a RetainPtr. After assignment, |that| will be NULL.
96 template <class U,
97 typename = typename std::enable_if<
99 RetainPtr& operator=(RetainPtr<U>&& that) noexcept {
100 Unleak(that.Leak());
101 return *this;
102 }
103
104 ~RetainPtr() = default;
105
106 template <class U>
107 U* AsRaw() const {
108 return static_cast<U*>(Get());
109 }
110
111 template <class U>
112 RetainPtr<U> As() const {
113 return RetainPtr<U>(AsRaw<U>());
114 }
115
116 void Reset(T* obj = nullptr) {
117 if (obj)
118 obj->Retain();
119 m_pObj.reset(obj);
120 }
121
122 operator T*() const noexcept { return Get(); }
123 T* Get() const noexcept { return m_pObj.get(); }
124
125 UnownedPtr<T> BackPointer() const { return UnownedPtr<T>(Get()); }
126 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj); }
127
128 // Useful for passing notion of object ownership across a C API.
129 T* Leak() { return m_pObj.release(); }
130 void Unleak(T* ptr) { m_pObj.reset(ptr); }
131
132 bool operator==(const RetainPtr& that) const { return Get() == that.Get(); }
133 bool operator!=(const RetainPtr& that) const { return !(*this == that); }
134
135 template <typename U>
136 bool operator==(const U& that) const {
137 return Get() == that;
138 }
139
140 template <typename U>
141 bool operator!=(const U& that) const {
142 return !(*this == that);
143 }
144
145 bool operator<(const RetainPtr& that) const {
146 return std::less<T*>()(Get(), that.Get());
147 }
148
149 explicit operator bool() const { return !!m_pObj; }
150 T& operator*() const { return *m_pObj; }
151 T* operator->() const { return m_pObj.get(); }
152
153 private:
154 std::unique_ptr<T, ReleaseDeleter<T>> m_pObj;
155};
156
157// Trivial implementation - internal ref count with virtual destructor.
159 public:
160 Retainable() = default;
161
162 bool HasOneRef() const { return m_nRefCount == 1; }
163
164 protected:
165 virtual ~Retainable() = default;
166
167 private:
168 template <typename U>
169 friend struct ReleaseDeleter;
170
171 template <typename U>
172 friend class RetainPtr;
173
174 Retainable(const Retainable& that) = delete;
175 Retainable& operator=(const Retainable& that) = delete;
176
177 // These need to be const methods operating on a mutable member so that
178 // RetainPtr<const T> can be used for an object that is otherwise const
179 // apart from the internal ref-counting.
180 void Retain() const {
181 ++m_nRefCount;
182 CHECK(m_nRefCount > 0);
183 }
184 void Release() const {
185 CHECK(m_nRefCount > 0);
186 if (--m_nRefCount == 0)
187 delete this;
188 }
189
190 mutable uintptr_t m_nRefCount = 0;
191 static_assert(std::is_unsigned<decltype(m_nRefCount)>::value,
192 "m_nRefCount must be an unsigned type for overflow check"
193 "to work properly in Retain()");
194};
195
196} // namespace fxcrt
197
198using fxcrt::ReleaseDeleter;
199using fxcrt::Retainable;
200using fxcrt::RetainPtr;
201
202namespace pdfium {
203
204// Helper to make a RetainPtr along the lines of std::make_unique<>().
205// Arguments are forwarded to T's constructor. Classes managed by RetainPtr
206// should have protected (or private) constructors, and should friend this
207// function.
208template <typename T, typename... Args>
209RetainPtr<T> MakeRetain(Args&&... args) {
210 return RetainPtr<T>(new T(std::forward<Args>(args)...));
211}
212
213// Type-deducing wrapper to make a RetainPtr from an ordinary pointer,
214// since equivalent constructor is explicit.
215template <typename T>
217 return RetainPtr<T>(that);
218}
219
220} // namespace pdfium
221
222// Macro to allow construction via MakeRetain<>() only, when used
223// with a private constructor in a class.
224#define CONSTRUCT_VIA_MAKE_RETAIN
225 template <typename T, typename... Args>
226 friend RetainPtr<T> pdfium::MakeRetain(Args&&... args)
227
228#endif // CORE_FXCRT_RETAIN_PTR_H_
uint32_t FX_HashCode_GetLoweredAsIfW(ByteStringView str)
uint32_t FX_HashCode_GetLoweredA(ByteStringView str)
uint32_t FX_HashCode_GetAsIfW(ByteStringView str)
uint32_t FX_HashCode_GetA(ByteStringView str)
CPDF_Creator(CPDF_Document *pDoc, RetainPtr< IFX_RetainableWriteStream > archive)
bool SetFileVersion(int32_t fileVersion)
void RemoveSecurity()
bool Create(uint32_t flags)
virtual FX_FILESIZE CurrentOffset() const =0
static RetainPtr< IFX_SeekableReadStream > CreateFromFilename(const char *filename)
Definition fx_stream.cpp:68
virtual size_t ReadBlock(pdfium::span< uint8_t > buffer)
Definition fx_stream.cpp:88
virtual FX_FILESIZE GetPosition()
Definition fx_stream.cpp:84
virtual bool ReadBlockAtOffset(pdfium::span< uint8_t > buffer, FX_FILESIZE offset)=0
virtual bool IsEOF()
Definition fx_stream.cpp:80
bool WriteBlock(pdfium::span< const uint8_t > buffer) override
Definition fx_stream.cpp:92
virtual bool WriteBlockAtOffset(pdfium::span< const uint8_t > data, FX_FILESIZE offset)=0
bool WriteBlock(pdfium::span< const uint8_t > buffer) override
Definition fx_stream.cpp:76
virtual bool Flush()=0
virtual FX_FILESIZE GetSize()=0
bool WriteFilesize(FX_FILESIZE size)
Definition fx_stream.cpp:61
bool WriteByte(uint8_t byte)
Definition fx_stream.cpp:51
bool WriteString(ByteStringView str)
Definition fx_stream.cpp:47
virtual ~IFX_WriteStream()=default
bool WriteDWord(uint32_t i)
Definition fx_stream.cpp:55
virtual bool WriteBlock(pdfium::span< const uint8_t > data)=0
void TrimLeft(ByteStringView targets)
bool IsValidLength(size_t length) const
Definition bytestring.h:121
bool Contains(ByteStringView lpszSub, size_t start=0) const
Definition bytestring.h:187
const_iterator begin() const
Definition bytestring.h:102
bool IsValidIndex(size_t index) const
Definition bytestring.h:120
static ByteString FormatFloat(float f)
ByteStringView AsStringView() const
Definition bytestring.h:87
uint32_t GetID() const
Definition bytestring.h:213
void Reserve(size_t len)
ByteString(const char *ptr)
bool EqualNoCase(ByteStringView str) const
static ByteString Format(const char *pFormat,...)
ByteString & operator+=(const ByteString &str)
bool operator!=(ByteStringView str) const
Definition bytestring.h:131
size_t GetLength() const
Definition bytestring.h:115
ByteString Substr(size_t first, size_t count) const
size_t GetStringLength() const
Definition bytestring.h:116
size_t InsertAtBack(char ch)
Definition bytestring.h:162
bool operator==(ByteStringView str) const
pdfium::span< const uint8_t > raw_span() const
Definition bytestring.h:97
void AllocCopy(ByteString &dest, size_t nCopyLen, size_t nCopyIndex) const
void AssignCopy(const char *pSrcData, size_t nSrcLen)
bool Contains(char ch, size_t start=0) const
Definition bytestring.h:191
absl::optional< size_t > ReverseFind(char ch) const
intptr_t ReferenceCountForTesting() const
size_t Delete(size_t index, size_t count=1)
const_reverse_iterator rend() const
Definition bytestring.h:111
ByteString & operator+=(char ch)
const uint8_t * raw_str() const
Definition bytestring.h:80
void ReallocBeforeWrite(size_t nNewLen)
ByteString(ByteStringView bstrc)
RetainPtr< StringData > m_pData
Definition bytestring.h:225
static ByteString FormatInteger(int i)
pdfium::span< char > GetBuffer(size_t nMinBufLength)
void Trim(char target)
bool operator==(const ByteString &other) const
bool operator==(const char *ptr) const
const_iterator end() const
Definition bytestring.h:103
ByteString(const ByteString &other)
size_t Remove(char ch)
ByteString(const char *pStr, size_t len)
bool operator<(ByteStringView str) const
ByteString(wchar_t)=delete
ByteString & operator+=(const char *str)
ByteString & operator+=(ByteStringView str)
ByteString(const uint8_t *pStr, size_t len)
size_t Replace(ByteStringView pOld, ByteStringView pNew)
absl::optional< size_t > Find(ByteStringView subStr, size_t start=0) const
bool operator!=(const ByteString &other) const
Definition bytestring.h:132
void SetAt(size_t index, char c)
ByteString & operator=(ByteStringView str)
ByteString(ByteStringView str1, ByteStringView str2)
void Trim(ByteStringView targets)
ByteString & operator=(const char *str)
static ByteString FormatV(const char *pFormat, va_list argList)
void TrimRight(char target)
const char * c_str() const
Definition bytestring.h:76
ByteString Substr(size_t offset) const
ByteString & operator=(const ByteString &that)
ByteString & operator=(ByteString &&that) noexcept
bool IsEmpty() const
Definition bytestring.h:119
void TrimRight(ByteStringView targets)
bool operator<(const ByteString &other) const
ByteString(const std::initializer_list< ByteStringView > &list)
CharType operator[](const size_t index) const
Definition bytestring.h:150
const_reverse_iterator rbegin() const
Definition bytestring.h:108
CharType Back() const
Definition bytestring.h:156
CharType Front() const
Definition bytestring.h:155
bool operator!=(const char *ptr) const
Definition bytestring.h:130
int Compare(ByteStringView str) const
size_t Insert(size_t index, char ch)
void ReleaseBuffer(size_t nNewLength)
ByteString(const fxcrt::ostringstream &outStream)
void TrimLeft(char target)
size_t InsertAtFront(char ch)
Definition bytestring.h:161
ByteString First(size_t count) const
void AllocBeforeWrite(size_t nNewLen)
bool operator<(const char *ptr) const
void Concat(const char *pSrcData, size_t nSrcLen)
absl::optional< size_t > Find(char ch, size_t start=0) const
ByteString(ByteString &&other) noexcept
ByteString Last(size_t count) const
U * AsRaw() const
Definition retain_ptr.h:107
RetainPtr & operator=(const RetainPtr< U > &that)
Definition retain_ptr.h:89
operator bool() const
Definition retain_ptr.h:149
void Unleak(T *ptr)
Definition retain_ptr.h:130
RetainPtr(std::nullptr_t ptr)
Definition retain_ptr.h:35
void Reset(T *obj=nullptr)
Definition retain_ptr.h:116
bool operator!=(const RetainPtr &that) const
Definition retain_ptr.h:133
void Swap(RetainPtr &that)
Definition retain_ptr.h:126
RetainPtr() noexcept=default
RetainPtr(RetainPtr &&that) noexcept
Definition retain_ptr.h:48
bool operator!=(const U &that) const
Definition retain_ptr.h:141
RetainPtr & operator=(const RetainPtr &that)
Definition retain_ptr.h:72
bool operator==(const RetainPtr &that) const
Definition retain_ptr.h:132
T & operator*() const
Definition retain_ptr.h:150
bool operator==(const U &that) const
Definition retain_ptr.h:136
RetainPtr & operator=(RetainPtr &&that) noexcept
Definition retain_ptr.h:80
T * operator->() const
Definition retain_ptr.h:151
RetainPtr & operator=(RetainPtr< U > &&that) noexcept
Definition retain_ptr.h:99
RetainPtr(const RetainPtr< U > &that)
Definition retain_ptr.h:54
T * Get() const noexcept
Definition retain_ptr.h:123
~RetainPtr()=default
bool operator<(const RetainPtr &that) const
Definition retain_ptr.h:145
RetainPtr(const RetainPtr &that) noexcept
Definition retain_ptr.h:44
operator T*() const noexcept
Definition retain_ptr.h:122
RetainPtr & operator=(std::nullptr_t) noexcept
Definition retain_ptr.h:65
UnownedPtr< T > BackPointer() const
Definition retain_ptr.h:125
RetainPtr(RetainPtr< U > &&that) noexcept
Definition retain_ptr.h:60
RetainPtr< U > As() const
Definition retain_ptr.h:112
RetainPtr(T *pObj) noexcept
Definition retain_ptr.h:37
bool HasOneRef() const
Definition retain_ptr.h:162
Retainable()=default
virtual ~Retainable()=default
#define FPDFCREATE_INCREMENTAL
#define FPDFCREATE_NO_ORIGINAL
NOINLINE void FX_OutOfMemoryTerminate(size_t size)
Definition fx_memory.cpp:37
void FXMEM_DefaultFree(void *pointer)
Definition fx_memory.cpp:33
void * FXMEM_DefaultAlloc(size_t byte_size)
Definition fx_memory.cpp:21
void * FXMEM_DefaultCalloc(size_t num_elems, size_t byte_size)
Definition fx_memory.cpp:25
void * FXMEM_DefaultRealloc(void *pointer, size_t new_size)
Definition fx_memory.cpp:29
void * FX_ArrayBufferAllocate(size_t length)
void FX_InitializeMemoryAllocators()
void FX_ArrayBufferFree(void *data)
void * FX_ArrayBufferAllocateUninitialized(size_t length)
void * FX_Random_MT_Start(uint32_t dwSeed)
Definition fx_random.cpp:85
uint32_t FX_Random_MT_Generate(void *pContext)
Definition fx_random.cpp:96
void FX_Random_MT_Close(void *pContext)
#define FX_FILESIZE
Definition fx_types.h:19
bool operator==(const char *lhs, const ByteString &rhs)
Definition bytestring.h:233
bool operator<(const ByteStringView &lhs, const char *rhs)
Definition bytestring.h:251
ByteString operator+(const ByteString &str1, const ByteString &str2)
Definition bytestring.h:270
ByteString operator+(ByteStringView str1, const char *str2)
Definition bytestring.h:258
bool operator<(const ByteStringView &lhs, const ByteString &rhs)
Definition bytestring.h:248
ByteString operator+(const ByteString &str1, char ch)
Definition bytestring.h:273
ByteString operator+(const ByteString &str1, const char *str2)
Definition bytestring.h:279
void PrintTo(const ByteString &str, std::ostream *os)
ByteString operator+(char ch, const ByteString &str2)
Definition bytestring.h:276
ByteString operator+(const ByteString &str1, ByteStringView str2)
Definition bytestring.h:285
ByteString operator+(const char *str1, const ByteString &str2)
Definition bytestring.h:282
bool operator!=(ByteStringView lhs, const ByteString &rhs)
Definition bytestring.h:242
bool operator!=(const char *lhs, const ByteString &rhs)
Definition bytestring.h:239
ByteString operator+(ByteStringView str1, ByteStringView str2)
Definition bytestring.h:255
ByteString operator+(ByteStringView str1, char ch)
Definition bytestring.h:264
bool operator<(const char *lhs, const ByteString &rhs)
Definition bytestring.h:245
ByteString operator+(char ch, ByteStringView str2)
Definition bytestring.h:267
ByteString operator+(ByteStringView str1, const ByteString &str2)
Definition bytestring.h:288
ByteString operator+(const char *str1, ByteStringView str2)
Definition bytestring.h:261
bool operator==(ByteStringView lhs, const ByteString &rhs)
Definition bytestring.h:236
void * CallocOrDie2D(size_t w, size_t h, size_t member_size)
Definition fx_memory.cpp:79
void * AllocOrDie2D(size_t w, size_t h, size_t member_size)
Definition fx_memory.cpp:65
void * StringAllocOrDie(size_t num_members, size_t member_size)
Definition fx_memory.cpp:94
void * Alloc(size_t num_members, size_t member_size)
void * StringAlloc(size_t num_members, size_t member_size)
void * ReallocOrDie(void *ptr, size_t num_members, size_t member_size)
Definition fx_memory.cpp:86
void * Realloc(void *ptr, size_t num_members, size_t member_size)
void StringDealloc(void *ptr)
void * AllocOrDie(size_t num_members, size_t member_size)
Definition fx_memory.cpp:57
void * Calloc(size_t num_members, size_t member_size)
void * CallocOrDie(size_t num_members, size_t member_size)
Definition fx_memory.cpp:71
void Dealloc(void *ptr)
RetainPtr< T > MakeRetain(Args &&... args)
Definition retain_ptr.h:209
RetainPtr< T > WrapRetain(T *that)
Definition retain_ptr.h:216
#define CHECK(cvref)
void operator()(void *ptr) const
pointer allocate(size_type n, const void *hint=0)
void deallocate(pointer p, size_type n)
const_pointer address(const_reference x) const noexcept
FxPartitionAllocAllocator() noexcept=default
size_type max_size() const noexcept
~FxPartitionAllocAllocator()=default
pointer address(reference x) const noexcept
FxPartitionAllocAllocator(const FxPartitionAllocAllocator< U, Alloc, Free > &other) noexcept
bool operator!=(const FxPartitionAllocAllocator &that)
void construct(U *p, Args &&... args)
bool operator==(const FxPartitionAllocAllocator &that)
FxPartitionAllocAllocator(const FxPartitionAllocAllocator &other) noexcept=default
void operator()(T *ptr) const
Definition retain_ptr.h:24
size_t operator()(const ByteString &str) const
Definition bytestring.h:315