256 lines
9.4 KiB
Plaintext
256 lines
9.4 KiB
Plaintext
// Filename: threadSafePointerTo.I
|
|
// Created by: drose (28Apr06)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T>::
|
|
ThreadSafePointerTo(To *ptr) : ThreadSafePointerToBase<T>(ptr) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T>::
|
|
ThreadSafePointerTo(const ThreadSafePointerTo<T> ©) :
|
|
ThreadSafePointerToBase<T>((const ThreadSafePointerToBase<T> &)copy)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T>::
|
|
~ThreadSafePointerTo() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Dereference operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE TYPENAME ThreadSafePointerTo<T>::To &ThreadSafePointerTo<T>::
|
|
operator *() const {
|
|
return *((To *)AtomicAdjust::get_ptr(this->_void_ptr));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Member access operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE TYPENAME ThreadSafePointerTo<T>::To *ThreadSafePointerTo<T>::
|
|
operator -> () const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Typecast operator
|
|
// Access: Public
|
|
// Description: We also have the typecast operator to automatically
|
|
// convert ThreadSafePointerTo's to the required kind of actual
|
|
// pointer. This introduces ambiguities which the
|
|
// compiler will resolve one way or the other, but we
|
|
// don't care which way it goes because either will be
|
|
// correct.
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T>::
|
|
operator T * () const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::p
|
|
// Access: Published
|
|
// Description: Returns an ordinary pointer instead of a ThreadSafePointerTo.
|
|
// Useful to work around compiler problems, particularly
|
|
// for implicit upcasts.
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE TYPENAME ThreadSafePointerTo<T>::To *ThreadSafePointerTo<T>::
|
|
p() const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Assignment operator
|
|
// Access: Published
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T> &ThreadSafePointerTo<T>::
|
|
operator = (To *ptr) {
|
|
reassign(ptr);
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafePointerTo::Assignment operator
|
|
// Access: Published
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafePointerTo<T> &ThreadSafePointerTo<T>::
|
|
operator = (const ThreadSafePointerTo<T> ©) {
|
|
reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T>::
|
|
ThreadSafeConstPointerTo(const TYPENAME ThreadSafeConstPointerTo<T>::To *ptr) :
|
|
ThreadSafePointerToBase<T>((TYPENAME ThreadSafeConstPointerTo<T>::To *)ptr)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T>::
|
|
ThreadSafeConstPointerTo(const ThreadSafePointerTo<T> ©) :
|
|
ThreadSafePointerToBase<T>((const ThreadSafePointerToBase<T> &)copy)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T>::
|
|
~ThreadSafeConstPointerTo() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T>::
|
|
ThreadSafeConstPointerTo(const ThreadSafeConstPointerTo<T> ©) :
|
|
ThreadSafePointerToBase<T>((const ThreadSafePointerToBase<T> &)copy)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Dereference operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE const TYPENAME ThreadSafeConstPointerTo<T>::To &ThreadSafeConstPointerTo<T>::
|
|
operator *() const {
|
|
return *((To *)AtomicAdjust::get_ptr(this->_void_ptr));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Member access operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE const TYPENAME ThreadSafeConstPointerTo<T>::To *ThreadSafeConstPointerTo<T>::
|
|
operator -> () const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Typecast operator
|
|
// Access: Public
|
|
// Description: We also have the typecast operator to automatically
|
|
// convert ThreadSafeConstPointerTo's to the required kind of actual
|
|
// pointer. This introduces ambiguities which the
|
|
// compiler will resolve one way or the other, but we
|
|
// don't care which way it goes because either will be
|
|
// correct.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T>::
|
|
operator const T * () const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::p
|
|
// Access: Published
|
|
// Description: Returns an ordinary pointer instead of a ThreadSafeConstPointerTo.
|
|
// Useful to work around compiler problems, particularly
|
|
// for implicit upcasts.
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE const TYPENAME ThreadSafeConstPointerTo<T>::To *ThreadSafeConstPointerTo<T>::
|
|
p() const {
|
|
return (To *)AtomicAdjust::get_ptr(this->_void_ptr);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Assignment operator
|
|
// Access: Published
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
operator = (const To *ptr) {
|
|
reassign((To *)ptr);
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Assignment operator
|
|
// Access: Published
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
operator = (const ThreadSafePointerTo<T> ©) {
|
|
reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ThreadSafeConstPointerTo::Assignment operator
|
|
// Access: Published
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class T>
|
|
INLINE ThreadSafeConstPointerTo<T> &ThreadSafeConstPointerTo<T>::
|
|
operator = (const ThreadSafeConstPointerTo<T> ©) {
|
|
reassign((const ThreadSafePointerToBase<T> &)copy);
|
|
return *this;
|
|
}
|