Quick Links:

bal | bbl | bdl | bsl

Public Member Functions

bslma::AutoRawDeleter< TYPE, ALLOCATOR > Class Template Reference

#include <bslma_autorawdeleter.h>

List of all members.

Public Member Functions

 AutoRawDeleter (TYPE **origin, ALLOCATOR *allocator, int length=0)
 ~AutoRawDeleter ()
void operator++ ()
void operator-- ()
void release ()
void reset (TYPE **origin)
void setLength (int length)
int length () const

Detailed Description

template<class TYPE, class ALLOCATOR>
class bslma::AutoRawDeleter< TYPE, ALLOCATOR >

This class implements a range proctor that, unless its release method has previously been invoked, automatically deletes the contiguous sequence of managed objects upon destruction by iterating on each (managed) object, first invoking the object's destructor, and then free memory by invoking the deallocate method of an allocator (or pool) of parameterized ALLOCATOR type supplied to it at construction. The sequence of managed objects of parameterized TYPE must have been created using memory provided by this allocator (or pool), which must remain valid throughout the lifetime of this range proctor. Note that when the length of this object is non-zero, it must refer to a non-null array of objects.

See Component bslma_autorawdeleter


Constructor & Destructor Documentation

template<class TYPE, class ALLOCATOR>
bslma::AutoRawDeleter< TYPE, ALLOCATOR >::AutoRawDeleter ( TYPE **  origin,
ALLOCATOR *  allocator,
int  length = 0 
)

Create an auto raw deleter to manage an array of objects at the specified origin, and that uses the specified allocator to delete the sequence of objects managed by this range proctor (if not released -- see release) upon destruction. Optionally specify length to define its range, which by default is empty (i.e., length = 0). The sequence of objects may extend in either direction from origin. A positive length represents the sequence of objects starting at origin and extending "up" to length (not including the object at the index position origin + length). A negative length represents the sequence of objects starting at one position below origin and extending "down" to the absolute value of length (including the object at index position origin + length). If length is 0, then this range proctor manages no objects. If origin is non-zero, all objects within the proctored range (if any) must be constructed using memory supplied by allocator. The behavior is undefined unless allocator is non-zero, and, if origin is 0, 'length is also 0. Note that when length is non-positive, the object at the origin is not managed by this range proctor. For example, if origin is at the index position 2, a length of 2 signifies that the objects at positions 2 and 3 are managed, whereas a length of -2 signifies that the objects at positions 0 and 1 are managed:

             length = -2                            length = 2
             |<----->|                              |<----->|
              ___ ___ ___ ___ ___            ___ ___ ___ ___ ___
             | 0 | 1 | 2 | 3 | 4 |          | 0 | 1 | 2 | 3 | 4 |
             `===^===^===^===^==='          `===^===^===^===^==='
                     ^------------ origin           ^------------ origin
template<class TYPE, class ALLOCATOR>
bslma::AutoRawDeleter< TYPE, ALLOCATOR >::~AutoRawDeleter (  ) 

Destroy this range proctor and delete the contiguous sequence of objects it manages (if any) by iterating over each (managed) object, first invoking the object's destructor, and then freeing memory by invoking the deallocate method of the allocator (or pool) that was supplied with the sequence of (managed) objects at construction. Note that the order in which the managed objects are deleted is undefined.


Member Function Documentation

template<class TYPE, class ALLOCATOR>
void bslma::AutoRawDeleter< TYPE, ALLOCATOR >::operator++ (  ) 

Increase by one the (signed) length of the sequence of objects managed by this range proctor. The behavior is undefined unless the origin of the sequence of objects managed by this proctor is non-zero. The behavior is undefined unless the origin or this range proctor is non-zero. Note that if the length of this proctor is currently negative, the number of managed objects will decrease by one, whereas if the length is non-negative, the number of managed objects will increase by one.

template<class TYPE, class ALLOCATOR>
void bslma::AutoRawDeleter< TYPE, ALLOCATOR >::operator-- (  ) 

Decrease by one the (signed) length of the sequence of objects managed by this range proctor. The behavior is undefined unless the origin of the sequence of objects managed by this proctor is non-zero. The behavior is undefined unless the origin or this range proctor is non-zero. Note that if the length of this proctor is currently positive, the number of managed objects will decrease by one, whereas if the length is non-positive, the number of managed objects will increase by one.

template<class TYPE, class ALLOCATOR>
void bslma::AutoRawDeleter< TYPE, ALLOCATOR >::release (  ) 

Release from management the sequence of objects currently managed by this range proctor by setting the length of the managed sequence to 0. All objects currently under management will become unmanaged (i.e., when the proctor goes out of scope and it was not assigned another sequence of objects to manage by invoking reset, no objects will be deleted). If no objects are currently being managed, this method has no effect. Note that the origin is not affected.

template<class TYPE, class ALLOCATOR>
void bslma::AutoRawDeleter< TYPE, ALLOCATOR >::reset ( TYPE **  origin  ) 

Set the specified origin as the origin of the sequence of objects to be managed by this range proctor. The behavior is undefined unless origin is non-zero. Note that the length of the sequence of objects managed by this proctor is not affected, and setLength should be invoked if the managed range is different from the previously managed sequence of objects. Also note that this method releases any previously-managed objects from management (without deleting them), and so may be called with or without having called release when reusing this object.

template<class TYPE, class ALLOCATOR>
void bslma::AutoRawDeleter< TYPE, ALLOCATOR >::setLength ( int  length  ) 

Set the (signed) length of the sequence of objects managed by this range proctor to the specified length. The behavior is undefined unless the origin of this range proctor is non-zero.

template<class TYPE, class ALLOCATOR>
int bslma::AutoRawDeleter< TYPE, ALLOCATOR >::length (  )  const

Return the (signed) length of the sequence of objects managed by this range proctor.


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