12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- //
- // RefCountedObject.h
- //
- // Library: Foundation
- // Package: Core
- // Module: RefCountedObject
- //
- // Definition of the RefCountedObject class.
- //
- // Copyright (c) 2004-2009, Applied Informatics Software Engineering GmbH.
- // and Contributors.
- //
- // SPDX-License-Identifier: BSL-1.0
- //
- #ifndef Foundation_RefCountedObject_INCLUDED
- #define Foundation_RefCountedObject_INCLUDED
- #include "Poco/Foundation.h"
- #include "Poco/AtomicCounter.h"
- namespace Poco {
- class Foundation_API RefCountedObject
- /// A base class for objects that employ
- /// reference counting based garbage collection.
- ///
- /// Reference-counted objects inhibit construction
- /// by copying and assignment.
- {
- public:
- RefCountedObject();
- /// Creates the RefCountedObject.
- /// The initial reference count is one.
- void duplicate() const;
- /// Increments the object's reference count.
-
- void release() const throw();
- /// Decrements the object's reference count
- /// and deletes the object if the count
- /// reaches zero.
-
- int referenceCount() const;
- /// Returns the reference count.
- protected:
- virtual ~RefCountedObject();
- /// Destroys the RefCountedObject.
- private:
- RefCountedObject(const RefCountedObject&);
- RefCountedObject& operator = (const RefCountedObject&);
- mutable AtomicCounter _counter;
- };
- //
- // inlines
- //
- inline int RefCountedObject::referenceCount() const
- {
- return _counter.value();
- }
- inline void RefCountedObject::duplicate() const
- {
- ++_counter;
- }
- inline void RefCountedObject::release() const throw()
- {
- try
- {
- if (--_counter == 0) delete this;
- }
- catch (...)
- {
- poco_unexpected();
- }
- }
- } // namespace Poco
- #endif // Foundation_RefCountedObject_INCLUDED
|