You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/lib/antlr/antlr/RefCount.h

81 lines
1.3 KiB

#ifndef INC_RefCount_h__
#define INC_RefCount_h__
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
* Software rights: http://www.antlr.org/license.html
*
* $Id$
*/
#include <antlr/config.h>
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
namespace antlr {
#endif
template<class T>
class ANTLR_API RefCount {
private:
struct Ref {
T* const ptr;
unsigned int count;
Ref(T* p) : ptr(p), count(1) {}
~Ref() {delete ptr;}
Ref* increment() {++count;return this;}
bool decrement() {return (--count==0);}
private:
Ref(const Ref&);
Ref& operator=(const Ref&);
}* ref;
public:
explicit RefCount(T* p = 0)
: ref(p ? new Ref(p) : 0)
{
}
RefCount(const RefCount<T>& other)
: ref(other.ref ? other.ref->increment() : 0)
{
}
~RefCount()
{
if (ref && ref->decrement())
delete ref;
}
RefCount<T>& operator=(const RefCount<T>& other)
{
Ref* tmp = other.ref ? other.ref->increment() : 0;
if (ref && ref->decrement())
delete ref;
ref = tmp;
return *this;
}
operator T* () const
{
return ref ? ref->ptr : 0;
}
T* operator->() const
{
return ref ? ref->ptr : 0;
}
T* get() const
{
return ref ? ref->ptr : 0;
}
template<class newType> operator RefCount<newType>()
{
return RefCount<newType>(ref);
}
};
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
}
#endif
#endif //INC_RefCount_h__