Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Adding Exception Testing to Unit Tests


April 2001/Adding Exception Testing to Unit Tests/Listing 7

Listing 7: Herb Sutter’s stack class — first of three presented in his book, Exceptional C++

#ifndef STACK_H
#define STACK_H

#include <cassert>
#include <algorithm> // for swap
#include <cstdlib> // for size_t

#define STACK_HAS_TOP

template <class T> 
class Stack
{
public:
    Stack();
    ~Stack();
    Stack( const Stack& );
    Stack& operator=( const Stack& );
    std::size_t Size() const;
    void Push( const T& );
    const T& Top() const;  // if empty, throws exception.
    void Pop(); // if empty, throws exception.

    // Just checks that the internal representation 
    // is consistent, ie not destroyed.
    bool Consistent() const;
private:
    std::size_t vsize_;
    T* v_; // ptr to a memory area big enough for 'vsize_' Ts
    std::size_t vused_; // # of T's actually in use

    T* NewCopy( const T* src,
        std::size_t srcsize,
        std::size_t destsize );
};

template<class T>
Stack<T>::Stack():
    vsize_( 10 ), // initial allocation size
    v_( new T[vsize_] ),
    vused_( 0 ) // Nothing used yet
{}

template<class T>
Stack<T>::~Stack()
{
    delete [] v_;
}

template<class T>
Stack<T>::Stack( const Stack<T>& other ) :
    vsize_( other.vsize_ ),
    v_( NewCopy( other.v_,
        other.vused_,
        other.vsize_ ) ),
    vused_( other.vused_ )
{}

template<class T>
Stack<T>&
Stack<T>::operator=( const Stack<T>& other )
{
    if( this != &other ) {
        T* v_new = NewCopy( other.v_,
                other.vused_,
                other.vsize_ );
        delete [] v_; // this can't throw
        v_ = v_new;
        vsize_ = other.vsize_;
        vused_ = other.vused_;
    }
    return *this;
}

template<class T>
std::size_t Stack<T>::Size() const
{
    return vused_;
}

template<class T>
void Stack<T>::Push( const T& t )
{
    if( vused_ == vsize_ ) { // grow if necessary by some 
                             // grow factor
        size_t vsize_new = vsize_*2 + 1;
        T* v_new = NewCopy( v_, vsize_, vsize_new );
        delete [] v_; // this can't throw
        v_ = v_new; // take ownership
        vsize_ = vsize_new;
    }
    v_[vused_] = t;
    ++vused_;
}

template<class T>
const T& Stack<T>::Top() const
{
    if( vused_ == 0 ) {
        throw "empty stack";
    }
    return v_[vused_-1];
}

template<class T>
void Stack<T>::Pop()
{
    if( vused_ == 0 ) {
        throw "empty stack";
    }
    --vused_;
}

template<class T>
bool Stack<T>::Consistent() const
{
    // Weak check.
    return vused_ <= vsize_ and v_ != NULL;
}

template<class T>
T* Stack<T>::NewCopy( const T* src,
    std::size_t srcsize,
    std::size_t destsize )
{
    assert( destsize >= srcsize );
    T* dest = new T[destsize];
    try {
        copy( src, src+srcsize, dest );
    }
    catch(...) {
        delete [] dest;
        throw;
    }
    return dest;
}

#endif // STACK_H
— End of Listing —

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.