Quick Links:

bal | bbl | bdl | bsl

Public Types | Public Member Functions

bslstl::TreeNodePool< VALUE, ALLOCATOR > Class Template Reference

#include <bslstl_treenodepool.h>

List of all members.

Public Types

typedef Pool::AllocatorType AllocatorType
typedef AllocatorTraits::size_type size_type

Public Member Functions

 TreeNodePool (const ALLOCATOR &allocator)
 TreeNodePool (bslmf::MovableRef< TreeNodePool > original)
void adopt (bslmf::MovableRef< TreeNodePool > pool)
AllocatorTypeallocator ()
bslalg::RbTreeNodecloneNode (const bslalg::RbTreeNode &original)
template<class... Args>
bslalg::RbTreeNodeemplaceIntoNewNode (Args &&...args)
void deleteNode (bslalg::RbTreeNode *node)
bslalg::RbTreeNodemoveIntoNewNode (bslalg::RbTreeNode *original)
void reserveNodes (size_type numNodes)
void swap (TreeNodePool &other)
void swapExchangeAllocators (TreeNodePool &other)
void swapRetainAllocators (TreeNodePool &other)
const AllocatorTypeallocator () const
bool hasFreeNodes () const

Detailed Description

template<class VALUE, class ALLOCATOR>
class bslstl::TreeNodePool< VALUE, ALLOCATOR >

This class provides methods for creating and deleting nodes using the appropriate allocator traits of the (template parameter) type ALLOCATOR. This type is intended to be used as a private base-class for a node-based container, in order to take advantage of the empty-base-class optimization in the case where the base class has 0 size (as may be the case if the (template parameter) type ALLOCATOR is not a bslma::Allocator).

See Component bslstl_treenodepool


Member Typedef Documentation

template<class VALUE , class ALLOCATOR >
typedef Pool::AllocatorType bslstl::TreeNodePool< VALUE, ALLOCATOR >::AllocatorType
template<class VALUE , class ALLOCATOR >
typedef AllocatorTraits::size_type bslstl::TreeNodePool< VALUE, ALLOCATOR >::size_type

Constructor & Destructor Documentation

template<class VALUE , class ALLOCATOR >
bslstl::TreeNodePool< VALUE, ALLOCATOR >::TreeNodePool ( const ALLOCATOR &  allocator  )  [explicit]

Create a node-pool that will use the specified allocator to supply memory for allocated node objects.

template<class VALUE , class ALLOCATOR >
bslstl::TreeNodePool< VALUE, ALLOCATOR >::TreeNodePool ( bslmf::MovableRef< TreeNodePool< VALUE, ALLOCATOR > >  original  ) 

Create a node-pool, adopting all outstanding memory allocations associated with the specified original node-pool, that will use the allocator associated with original to supply memory for allocated node objects. original is left in a valid but unspecified state.


Member Function Documentation

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::adopt ( bslmf::MovableRef< TreeNodePool< VALUE, ALLOCATOR > >  pool  ) 

Adopt all outstanding memory allocations associated with the specified node pool. The behavior is undefined unless this pool uses the same allocator as that associated with pool. The behavior is also undefined unless this pool is in the default-constructed state.

template<class VALUE , class ALLOCATOR >
AllocatorType& bslstl::TreeNodePool< VALUE, ALLOCATOR >::allocator (  ) 

Return a reference providing modifiable access to the rebound allocator traits for the node-type. Note that this operation returns a base-class (NodeAlloc) reference to this object.

template<class VALUE , class ALLOCATOR >
bslalg::RbTreeNode* bslstl::TreeNodePool< VALUE, ALLOCATOR >::cloneNode ( const bslalg::RbTreeNode original  ) 

Allocate a node object and copy-construct an object of the (template parameter) type VALUE having the same value as the specified original at the value attribute of the node. Return the address of the newly allocated node. The behavior is undefined unless original refers to a TreeNode<VALUE> object holding a valid (initialized) value.

template<class VALUE , class ALLOCATOR >
template<class... Args>
bslalg::RbTreeNode* bslstl::TreeNodePool< VALUE, ALLOCATOR >::emplaceIntoNewNode ( Args &&...  args  ) 

Allocate a node with a newly created value object of the (template parameter) type VALUE, constructed by forwarding allocator() and the specified (variable number of) arguments to the corresponding constructor of VALUE. Return the address of the newly allocated node. This operation requires that VALUE be constructible from arguments.

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::deleteNode ( bslalg::RbTreeNode node  ) 

Destroy the VALUE value of the specified node and return the memory footprint of node to this pool for potential reuse. The behavior is undefined unless node refers to a TreeNode<VALUE>.

template<class VALUE , class ALLOCATOR >
bslalg::RbTreeNode* bslstl::TreeNodePool< VALUE, ALLOCATOR >::moveIntoNewNode ( bslalg::RbTreeNode original  ) 

Allocate a node of the type TreeNode<VALUE>, and move-construct an object of the (template parameter) type VALUE with the (explicitly moved) value indicated by the value attribute of the specified original node. Return the address of the newly allocated node. The object referred to by the value attribute of original is left in a valid but unspecified state. The behavior is undefined unless original refers to a TreeNode<VALUE> object holding a valid (initialized) value.

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::reserveNodes ( size_type  numNodes  ) 

Add to this pool sufficient memory to satisfy memory requests for at least the specified numNodes. The additional memory is added irrespective of the amount of free memory when called. The behavior is undefined unless 0 < numNodes.

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::swap ( TreeNodePool< VALUE, ALLOCATOR > &  other  ) 

Efficiently exchange the nodes of this object with those of the specified other object. This method provides the no-throw exception-safety guarantee. The behavior is undefined unless allocator() == other.allocator().

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::swapExchangeAllocators ( TreeNodePool< VALUE, ALLOCATOR > &  other  ) 

Efficiently exchange the nodes and allocator of this object with those of the specified other object. This method provides the no-throw exception-safety guarantee, unless swapping the (user-supplied) allocator objects can throw.

template<class VALUE , class ALLOCATOR >
void bslstl::TreeNodePool< VALUE, ALLOCATOR >::swapRetainAllocators ( TreeNodePool< VALUE, ALLOCATOR > &  other  ) 

Efficiently exchange the nodes of this object with those of the specified other object. This method provides the no-throw exception-safety guarantee. The behavior is undefined unless allocator() == other.allocator().

template<class VALUE , class ALLOCATOR >
const AllocatorType& bslstl::TreeNodePool< VALUE, ALLOCATOR >::allocator (  )  const

Return a reference providing non-modifiable access to the rebound allocator traits for the node-type. Note that this operation returns a base-class (NodeAlloc) reference to this object.

template<class VALUE , class ALLOCATOR >
bool bslstl::TreeNodePool< VALUE, ALLOCATOR >::hasFreeNodes (  )  const

Return true if this object holds free (currently unused) nodes, and false otherwise.


The documentation for this class was generated from the following file: