123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- #include <library/cpp/testing/gtest/gtest.h>
- #include <library/cpp/yt/memory/new.h>
- #include <library/cpp/yt/memory/ref_counted.h>
- #include <library/cpp/yt/memory/atomic_intrusive_ptr.h>
- #include <library/cpp/yt/memory/leaky_singleton.h>
- #include <util/system/compiler.h>
- namespace NYT {
- namespace {
- ////////////////////////////////////////////////////////////////////////////////
- #ifndef _lsan_enabled_
- using ::testing::IsNull;
- using ::testing::NotNull;
- using ::testing::InSequence;
- using ::testing::MockFunction;
- using ::testing::StrictMock;
- ////////////////////////////////////////////////////////////////////////////////
- // Auxiliary types and functions.
- ////////////////////////////////////////////////////////////////////////////////
- // This object tracks number of increments and decrements
- // to the reference counter (see traits specialization below).
- struct TIntricateObject
- : private TNonCopyable
- {
- mutable int Increments = 0;
- mutable int Decrements = 0;
- mutable int Zeros = 0;
- void Ref(int n) const
- {
- Increments += n;
- }
- void Unref(int n) const
- {
- Decrements += n;
- if (Increments == Decrements) {
- ++Zeros;
- }
- }
- };
- using TIntricateObjectPtr = TIntrusivePtr<TIntricateObject>;
- using TConstIntricateObjectPtr = TIntrusivePtr<const TIntricateObject>;
- void Ref(TIntricateObject* obj, int n = 1)
- {
- obj->Ref(n);
- }
- void Unref(TIntricateObject* obj, int n = 1)
- {
- obj->Unref(n);
- }
- void Ref(const TIntricateObject* obj, int n = 1)
- {
- obj->Ref(n);
- }
- void Unref(const TIntricateObject* obj, int n = 1)
- {
- obj->Unref(n);
- }
- MATCHER_P3(HasRefCounts, increments, decrements, zeros,
- "Reference counter " \
- "was incremented " + ::testing::PrintToString(increments) + " times, " +
- "was decremented " + ::testing::PrintToString(decrements) + " times, " +
- "vanished to zero " + ::testing::PrintToString(zeros) + " times")
- {
- Y_UNUSED(result_listener);
- return
- arg.Increments == increments &&
- arg.Decrements == decrements &&
- arg.Zeros == zeros;
- }
- void PrintTo(const TIntricateObject& arg, ::std::ostream* os)
- {
- *os << arg.Increments << " increments, "
- << arg.Decrements << " decrements and "
- << arg.Zeros << " times vanished";
- }
- // This is an object which creates intrusive pointers to the self
- // during its construction.
- class TObjectWithSelfPointers
- : public TRefCounted
- {
- public:
- explicit TObjectWithSelfPointers(IOutputStream* output)
- : Output_(output)
- {
- *Output_ << "Cb";
- for (int i = 0; i < 3; ++i) {
- *Output_ << '!';
- TIntrusivePtr<TObjectWithSelfPointers> ptr(this);
- }
- *Output_ << "Ca";
- }
- virtual ~TObjectWithSelfPointers()
- {
- *Output_ << 'D';
- }
- private:
- IOutputStream* const Output_;
- };
- // This is a simple object with simple reference counting.
- class TObjectWithSimpleRC
- : public TRefCounted
- {
- public:
- explicit TObjectWithSimpleRC(IOutputStream* output)
- : Output_(output)
- {
- *Output_ << 'C';
- }
- virtual ~TObjectWithSimpleRC()
- {
- *Output_ << 'D';
- }
- void DoSomething()
- {
- *Output_ << '!';
- }
- private:
- IOutputStream* const Output_;
- };
- // This is a simple object with full-fledged reference counting.
- class TObjectWithFullRC
- : public TRefCounted
- {
- public:
- explicit TObjectWithFullRC(IOutputStream* output)
- : Output_(output)
- {
- *Output_ << 'C';
- }
- virtual ~TObjectWithFullRC()
- {
- *Output_ << 'D';
- }
- void DoSomething()
- {
- *Output_ << '!';
- }
- private:
- IOutputStream* const Output_;
- };
- ////////////////////////////////////////////////////////////////////////////////
- TEST(TIntrusiveAtomicPtrTest, Empty)
- {
- TIntricateObjectPtr emptyPointer;
- EXPECT_EQ(nullptr, emptyPointer.Get());
- }
- constexpr int ReservedRefCount = 65535;
- TEST(TIntrusiveAtomicPtrTest, Reset)
- {
- TIntricateObject object;
- TIntricateObjectPtr owningPointer(&object);
- TAtomicIntrusivePtr<TIntricateObject> atomicPointer(owningPointer);
- atomicPointer.Reset();
- EXPECT_EQ(nullptr, atomicPointer.Get());
- EXPECT_THAT(object, HasRefCounts(1 + ReservedRefCount, ReservedRefCount, 0));
- }
- TEST(TIntrusiveAtomicPtrTest, Basic)
- {
- TIntricateObject object;
- EXPECT_THAT(object, HasRefCounts(0, 0, 0));
- {
- TIntricateObjectPtr owningPointer(&object);
- EXPECT_THAT(object, HasRefCounts(1, 0, 0));
- EXPECT_EQ(&object, owningPointer.Get());
- }
- EXPECT_THAT(object, HasRefCounts(1, 1, 1));
- {
- TIntricateObjectPtr owningPointer(&object);
- TAtomicIntrusivePtr<TIntricateObject> atomicPointer(owningPointer);
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 1, 1));
- EXPECT_EQ(&object, owningPointer.Get());
- auto p1 = atomicPointer.Acquire();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 1, 1));
- p1.Reset();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 2, 1));
- owningPointer.Reset();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 3, 1));
- }
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 2 + ReservedRefCount, 2));
- }
- TEST(TIntrusiveAtomicPtrTest, BasicConst)
- {
- const TIntricateObject object;
- EXPECT_THAT(object, HasRefCounts(0, 0, 0));
- {
- TConstIntricateObjectPtr owningPointer(&object);
- EXPECT_THAT(object, HasRefCounts(1, 0, 0));
- EXPECT_EQ(&object, owningPointer.Get());
- }
- EXPECT_THAT(object, HasRefCounts(1, 1, 1));
- {
- TConstIntricateObjectPtr owningPointer(&object);
- TAtomicIntrusivePtr<const TIntricateObject> atomicPointer(owningPointer);
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 1, 1));
- EXPECT_EQ(&object, owningPointer.Get());
- auto p1 = atomicPointer.Acquire();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 1, 1));
- p1.Reset();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 2, 1));
- owningPointer.Reset();
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 3, 1));
- }
- EXPECT_THAT(object, HasRefCounts(2 + ReservedRefCount, 2 + ReservedRefCount, 2));
- }
- TEST(TIntrusiveAtomicPtrTest, Acquire)
- {
- TIntricateObject object;
- {
- TAtomicIntrusivePtr<TIntricateObject> atomicPtr{TIntricateObjectPtr(&object)};
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, 0, 0));
- for (int i = 0; i < ReservedRefCount / 2; ++i) {
- {
- auto tmp = atomicPtr.Acquire();
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, i, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, i + 1, 0));
- }
- {
- auto tmp = atomicPtr.Acquire();
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount / 2, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount / 2 + 1, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount + ReservedRefCount / 2, 1));
- }
- TEST(TIntrusiveAtomicPtrTest, AcquireConst)
- {
- const TIntricateObject object;
- {
- TAtomicIntrusivePtr<const TIntricateObject> atomicPtr{TConstIntricateObjectPtr(&object)};
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, 0, 0));
- for (int i = 0; i < ReservedRefCount / 2; ++i) {
- {
- auto tmp = atomicPtr.Acquire();
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, i, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount, i + 1, 0));
- }
- {
- auto tmp = atomicPtr.Acquire();
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount / 2, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount / 2 + 1, 0));
- }
- EXPECT_THAT(object, HasRefCounts(ReservedRefCount + ReservedRefCount / 2, ReservedRefCount + ReservedRefCount / 2, 1));
- }
- TEST(TIntrusiveAtomicPtrTest, CAS)
- {
- TIntricateObject o1;
- TIntricateObject o2;
- {
- TAtomicIntrusivePtr<TIntricateObject> atomicPtr{TIntricateObjectPtr(&o1)};
- EXPECT_THAT(o1, HasRefCounts(ReservedRefCount, 0, 0));
- TIntricateObjectPtr p2(&o2);
- EXPECT_THAT(o2, HasRefCounts(1, 0, 0));
- void* rawPtr = &o1;
- EXPECT_TRUE(atomicPtr.CompareAndSwap(rawPtr, std::move(p2)));
- EXPECT_EQ(rawPtr, &o1);
- EXPECT_THAT(o1, HasRefCounts(ReservedRefCount, ReservedRefCount, 1));
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, 0, 0));
- rawPtr = nullptr;
- EXPECT_FALSE(atomicPtr.CompareAndSwap(rawPtr, TIntricateObjectPtr(&o1)));
- EXPECT_EQ(rawPtr, &o2);
- EXPECT_THAT(o1, HasRefCounts(2 * ReservedRefCount, 2 * ReservedRefCount, 2));
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, 0, 0));
- }
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, ReservedRefCount, 1));
- }
- TEST(TIntrusiveAtomicPtrTest, CASConst)
- {
- const TIntricateObject o1;
- const TIntricateObject o2;
- {
- TAtomicIntrusivePtr<const TIntricateObject> atomicPtr{TConstIntricateObjectPtr(&o1)};
- EXPECT_THAT(o1, HasRefCounts(ReservedRefCount, 0, 0));
- TConstIntricateObjectPtr p2(&o2);
- EXPECT_THAT(o2, HasRefCounts(1, 0, 0));
- const void* rawPtr = &o1;
- EXPECT_TRUE(atomicPtr.CompareAndSwap(rawPtr, std::move(p2)));
- EXPECT_EQ(rawPtr, &o1);
- EXPECT_THAT(o1, HasRefCounts(ReservedRefCount, ReservedRefCount, 1));
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, 0, 0));
- rawPtr = nullptr;
- EXPECT_FALSE(atomicPtr.CompareAndSwap(rawPtr, TConstIntricateObjectPtr(&o1)));
- EXPECT_EQ(rawPtr, &o2);
- EXPECT_THAT(o1, HasRefCounts(2 * ReservedRefCount, 2 * ReservedRefCount, 2));
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, 0, 0));
- }
- EXPECT_THAT(o2, HasRefCounts(ReservedRefCount, ReservedRefCount, 1));
- }
- TEST(TIntrusiveAtomicPtrTest, LSan)
- {
- struct S final
- { };
- struct TSingleton
- {
- TSingleton()
- {
- for (auto& ptr : Ptrs) {
- ptr.Store(New<S>());
- // Clobber pointer bits to prevent LSan from tracing the pointer.
- ptr.Acquire();
- }
- }
- // LSan has some issues detecting leaks when just one allocation is made.
- std::array<TAtomicIntrusivePtr<S>, 100> Ptrs;
- };
- LeakySingleton<TSingleton>();
- }
- #endif
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace
- } // namespace NYT
|