diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-09-21 14:52:41 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-21 19:22:00 +0000 |
commit | de44d154f6c61af75f149e965a7f483f0b30dd98 (patch) | |
tree | cb33c824a73bb017d4403fba898b1d8c4e0c1566 /core/fxcrt | |
parent | b89669975f6156fce4ced5c8998125a845f8e7dc (diff) | |
download | pdfium-de44d154f6c61af75f149e965a7f483f0b30dd98.tar.xz |
Move CFX_MaybeOwned to fxcrt::MaybeOwned
This CL moves CFX_MaybeOwned into the fxcrt namespace and removes the
CFX_ prefix.
The test names for maybe owned were updated to be in the MaybeOned test
suite instead of the fxcrt suite.
Bug: pdfium:898
Change-Id: I0c07057d66c8610e7b19133094b4507fff725e76
Reviewed-on: https://pdfium-review.googlesource.com/14470
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt')
-rw-r--r-- | core/fxcrt/maybe_owned.h (renamed from core/fxcrt/cfx_maybe_owned.h) | 38 | ||||
-rw-r--r-- | core/fxcrt/maybe_owned_unittest.cpp (renamed from core/fxcrt/cfx_maybe_owned_unittest.cpp) | 50 |
2 files changed, 48 insertions, 40 deletions
diff --git a/core/fxcrt/cfx_maybe_owned.h b/core/fxcrt/maybe_owned.h index 8b08d9be37..11dd68642d 100644 --- a/core/fxcrt/cfx_maybe_owned.h +++ b/core/fxcrt/maybe_owned.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CORE_FXCRT_CFX_MAYBE_OWNED_H_ -#define CORE_FXCRT_CFX_MAYBE_OWNED_H_ +#ifndef CORE_FXCRT_MAYBE_OWNED_H_ +#define CORE_FXCRT_MAYBE_OWNED_H_ #include <algorithm> #include <memory> @@ -12,20 +12,22 @@ #include "core/fxcrt/fx_memory.h" #include "core/fxcrt/fx_system.h" +namespace fxcrt { + // A template that can hold either owned or unowned references, and cleans up // appropriately. Possibly the most pernicious anti-pattern imaginable, but // it crops up throughout the codebase due to a desire to avoid copying-in // objects or data. template <typename T, typename D = std::default_delete<T>> -class CFX_MaybeOwned { +class MaybeOwned { public: - CFX_MaybeOwned() : m_pObj(nullptr) {} - explicit CFX_MaybeOwned(T* ptr) : m_pObj(ptr) {} - explicit CFX_MaybeOwned(std::unique_ptr<T, D> ptr) + MaybeOwned() : m_pObj(nullptr) {} + explicit MaybeOwned(T* ptr) : m_pObj(ptr) {} + explicit MaybeOwned(std::unique_ptr<T, D> ptr) : m_pOwnedObj(std::move(ptr)), m_pObj(m_pOwnedObj.get()) {} - CFX_MaybeOwned(const CFX_MaybeOwned& that) = delete; - CFX_MaybeOwned(CFX_MaybeOwned&& that) noexcept + MaybeOwned(const MaybeOwned& that) = delete; + MaybeOwned(MaybeOwned&& that) noexcept : m_pOwnedObj(that.m_pOwnedObj.release()), m_pObj(that.m_pObj) { that.m_pObj = nullptr; } @@ -46,31 +48,29 @@ class CFX_MaybeOwned { return std::move(m_pOwnedObj); } - CFX_MaybeOwned& operator=(const CFX_MaybeOwned& that) = delete; - CFX_MaybeOwned& operator=(CFX_MaybeOwned&& that) { + MaybeOwned& operator=(const MaybeOwned& that) = delete; + MaybeOwned& operator=(MaybeOwned&& that) { m_pOwnedObj = std::move(that.m_pOwnedObj); m_pObj = that.m_pObj; that.m_pObj = nullptr; return *this; } - CFX_MaybeOwned& operator=(T* ptr) { + MaybeOwned& operator=(T* ptr) { Reset(ptr); return *this; } - CFX_MaybeOwned& operator=(std::unique_ptr<T, D> ptr) { + MaybeOwned& operator=(std::unique_ptr<T, D> ptr) { Reset(std::move(ptr)); return *this; } - bool operator==(const CFX_MaybeOwned& that) const { - return Get() == that.Get(); - } + bool operator==(const MaybeOwned& that) const { return Get() == that.Get(); } bool operator==(const std::unique_ptr<T, D>& ptr) const { return Get() == ptr.get(); } bool operator==(T* ptr) const { return Get() == ptr; } - bool operator!=(const CFX_MaybeOwned& that) const { return !(*this == that); } + bool operator!=(const MaybeOwned& that) const { return !(*this == that); } bool operator!=(const std::unique_ptr<T, D> ptr) const { return !(*this == ptr); } @@ -85,4 +85,8 @@ class CFX_MaybeOwned { T* m_pObj; }; -#endif // CORE_FXCRT_CFX_MAYBE_OWNED_H_ +} // namespace fxcrt + +using fxcrt::MaybeOwned; + +#endif // CORE_FXCRT_MAYBE_OWNED_H_ diff --git a/core/fxcrt/cfx_maybe_owned_unittest.cpp b/core/fxcrt/maybe_owned_unittest.cpp index a716182ce5..686fa6ffd2 100644 --- a/core/fxcrt/cfx_maybe_owned_unittest.cpp +++ b/core/fxcrt/maybe_owned_unittest.cpp @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "core/fxcrt/cfx_maybe_owned.h" +#include "core/fxcrt/maybe_owned.h" #include <memory> #include <utility> @@ -11,6 +11,8 @@ #include "testing/gtest/include/gtest/gtest.h" #include "third_party/base/ptr_util.h" +namespace fxcrt { + namespace { class PseudoDeletable { @@ -27,29 +29,29 @@ class PseudoDeletable { } // namespace -TEST(fxcrt, MaybeOwnedNull) { - CFX_MaybeOwned<PseudoDeletable> ptr1; +TEST(MaybeOwned, Null) { + MaybeOwned<PseudoDeletable> ptr1; EXPECT_FALSE(ptr1.IsOwned()); EXPECT_FALSE(ptr1); EXPECT_EQ(nullptr, ptr1.Get()); - CFX_MaybeOwned<PseudoDeletable> ptr2; + MaybeOwned<PseudoDeletable> ptr2; EXPECT_TRUE(ptr1 == ptr2); EXPECT_FALSE(ptr1 != ptr2); } -TEST(fxcrt, MaybeOwnedNotOwned) { +TEST(MaybeOwned, NotOwned) { int delete_count = 0; PseudoDeletable thing1(100, &delete_count); { - CFX_MaybeOwned<PseudoDeletable> ptr(&thing1); + MaybeOwned<PseudoDeletable> ptr(&thing1); EXPECT_FALSE(ptr.IsOwned()); EXPECT_EQ(ptr.Get(), &thing1); EXPECT_EQ(100, ptr->GetID()); EXPECT_TRUE(ptr == &thing1); EXPECT_FALSE(ptr != &thing1); - CFX_MaybeOwned<PseudoDeletable> empty; + MaybeOwned<PseudoDeletable> empty; EXPECT_FALSE(ptr == empty); EXPECT_TRUE(ptr != empty); } @@ -58,7 +60,7 @@ TEST(fxcrt, MaybeOwnedNotOwned) { delete_count = 0; PseudoDeletable thing2(200, &delete_count); { - CFX_MaybeOwned<PseudoDeletable> ptr(&thing1); + MaybeOwned<PseudoDeletable> ptr(&thing1); ptr = &thing2; EXPECT_FALSE(ptr.IsOwned()); EXPECT_EQ(ptr.Get(), &thing2); @@ -69,7 +71,7 @@ TEST(fxcrt, MaybeOwnedNotOwned) { delete_count = 0; int owned_delete_count = 0; { - CFX_MaybeOwned<PseudoDeletable> ptr(&thing1); + MaybeOwned<PseudoDeletable> ptr(&thing1); EXPECT_EQ(100, ptr->GetID()); ptr = pdfium::MakeUnique<PseudoDeletable>(300, &owned_delete_count); EXPECT_TRUE(ptr.IsOwned()); @@ -79,15 +81,15 @@ TEST(fxcrt, MaybeOwnedNotOwned) { EXPECT_EQ(1, owned_delete_count); } -TEST(fxcrt, MaybeOwnedOwned) { +TEST(MaybeOwned, Owned) { int delete_count = 0; { - CFX_MaybeOwned<PseudoDeletable> ptr( + MaybeOwned<PseudoDeletable> ptr( pdfium::MakeUnique<PseudoDeletable>(100, &delete_count)); EXPECT_TRUE(ptr.IsOwned()); EXPECT_EQ(100, ptr->GetID()); - CFX_MaybeOwned<PseudoDeletable> empty; + MaybeOwned<PseudoDeletable> empty; EXPECT_FALSE(ptr == empty); EXPECT_TRUE(ptr != empty); } @@ -95,7 +97,7 @@ TEST(fxcrt, MaybeOwnedOwned) { delete_count = 0; { - CFX_MaybeOwned<PseudoDeletable> ptr( + MaybeOwned<PseudoDeletable> ptr( pdfium::MakeUnique<PseudoDeletable>(200, &delete_count)); ptr = pdfium::MakeUnique<PseudoDeletable>(300, &delete_count); EXPECT_TRUE(ptr.IsOwned()); @@ -108,7 +110,7 @@ TEST(fxcrt, MaybeOwnedOwned) { int unowned_delete_count = 0; PseudoDeletable thing2(400, &unowned_delete_count); { - CFX_MaybeOwned<PseudoDeletable> ptr( + MaybeOwned<PseudoDeletable> ptr( pdfium::MakeUnique<PseudoDeletable>(500, &delete_count)); ptr = &thing2; EXPECT_FALSE(ptr.IsOwned()); @@ -120,12 +122,12 @@ TEST(fxcrt, MaybeOwnedOwned) { EXPECT_EQ(0, unowned_delete_count); } -TEST(fxcrt, MaybeOwnedRelease) { +TEST(MaybeOwned, Release) { int delete_count = 0; { std::unique_ptr<PseudoDeletable> stolen; { - CFX_MaybeOwned<PseudoDeletable> ptr( + MaybeOwned<PseudoDeletable> ptr( pdfium::MakeUnique<PseudoDeletable>(100, &delete_count)); EXPECT_TRUE(ptr.IsOwned()); stolen = ptr.Release(); @@ -138,18 +140,18 @@ TEST(fxcrt, MaybeOwnedRelease) { EXPECT_EQ(1, delete_count); } -TEST(fxcrt, MaybeOwnedMove) { +TEST(MaybeOwned, Move) { int delete_count = 0; PseudoDeletable thing1(100, &delete_count); { - CFX_MaybeOwned<PseudoDeletable> ptr1(&thing1); - CFX_MaybeOwned<PseudoDeletable> ptr2( + MaybeOwned<PseudoDeletable> ptr1(&thing1); + MaybeOwned<PseudoDeletable> ptr2( pdfium::MakeUnique<PseudoDeletable>(200, &delete_count)); EXPECT_FALSE(ptr1.IsOwned()); EXPECT_TRUE(ptr2.IsOwned()); - CFX_MaybeOwned<PseudoDeletable> ptr3(std::move(ptr1)); - CFX_MaybeOwned<PseudoDeletable> ptr4(std::move(ptr2)); + MaybeOwned<PseudoDeletable> ptr3(std::move(ptr1)); + MaybeOwned<PseudoDeletable> ptr4(std::move(ptr2)); EXPECT_FALSE(ptr1.IsOwned()); EXPECT_FALSE(ptr2.IsOwned()); EXPECT_FALSE(ptr3.IsOwned()); @@ -160,8 +162,8 @@ TEST(fxcrt, MaybeOwnedMove) { EXPECT_EQ(100, ptr3->GetID()); EXPECT_EQ(200, ptr4->GetID()); - CFX_MaybeOwned<PseudoDeletable> ptr5; - CFX_MaybeOwned<PseudoDeletable> ptr6; + MaybeOwned<PseudoDeletable> ptr5; + MaybeOwned<PseudoDeletable> ptr6; ptr5 = std::move(ptr3); ptr6 = std::move(ptr4); EXPECT_FALSE(ptr3.IsOwned()); @@ -176,3 +178,5 @@ TEST(fxcrt, MaybeOwnedMove) { } EXPECT_EQ(1, delete_count); } + +} // namespace fxcrt |