Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Wrapper classes using C++ decorator templates

0.00/5 (No votes)
26 Nov 2003 1  
Using template classes as decorators to build a flexible wrapper class framework

Introduction

This article presents a new (to me at least) spin on the decorator pattern, and demonstrates its use in building a flexible framework of wrapper classes.

Background

The "Gang of Four" describe the decorator pattern as an object structural one, in that it endows an existing object with extra behaviour dynamically at runtime. Here we use templates to add behaviour to a class statically at compile-time.

This article is an extension of a blog post I wrote shortly after "discovering" the technique.

Using the code

The code is provided mainly to illustrate the use of "decorator templates" as a flexible composition technique, though some portions of the code itself may obviously be of use to anyone else building wrapper classes.

The basic form of a decorator template is as follows:

template < [ class CPolicy1 , ... ] typename TBase >
class CDecoratorT : public TBase
{
    // ...

};

Because TBase can itself be a decorated class, this allows arbitrary levels of nesting.

Initially the TBase template parameter was first, followed by the optional policy classes. Though this seemed logical, it led to the decorator template and its policy class(es) becoming "separated" when nesting was used.

The wrapper framework itself takes advantage of this nesting by building up the wrapper in various layers:

Layer Purpose Type of class used Example
Storage Provides storage for the underlying type Template CTypeHolderT
Generic per-type functionality Uses policy classes to select the correct implementation of generic functionality for a given wrapped type Decorator template CDeepCopyableT
Type-specific functionality Hand-written classes to add useful methods to the wrapper Normal or possibly template CHandleWrapperImpl
Generic per-wrapper functionality Provides implementations of optional functionality, to be called either by the "client" class (see below) or externally Decorator template CDeepCopyCtorT
"Client" Provides implementation of "non-inheritable" methods (e.g. constructors) in terms of the previous layer. The nature of C++ templates mean that there will be a compilation error if and only if the method is used but not defined Template CWrapperT

There are also two other categories of classes which are not layers:

Category Purpose Type of class used Example
Policy classes Used by decorator templates to provide a type-specific implementation of generic behaviour Normal or template CCloseHandle
Miscellaneous helpers Various Usually template CAcquirerT

An example usage would therefore be:

typedef CDestroyableT       < CCloseHandle,
        CDeepCopyableT      < CDuplicateHandle,
        CInvalidatableT     < CInvalidValueT< HANDLE , NULL >,
        CShallowCopyableT   < CCopyByAssignmentT< HANDLE >,
        CTypeHolderT        < HANDLE > > > > >

        CHandleWrapperBase;
        
class CHandleWrapperImpl : public CHandleWrapperBase
{
    bool Open(LPCTSTR szFileName)
    {
        // ...

    }
    
    // ...

};

typedef      CWrapperT
        <    COperatorT
        <    CDefCtorT
        <    CTCtorShallowT
        <    CHandleWrapperImpl > > > >
        
        CHandleWrapper;

To do

This is merely a brief overview of the code, which is unfortunately rather short of meaningful comments. It is therefore my intention either to update the code with some useful comments (possibly Doxygen-style ones), or possibly extend the article to give a full walkthrough of the code. Any feedback as to which people would prefer would be most welcome, as of course would any questions, suggestions, etc. about the code itself.

History

  • 20 November 2003 - initial version
  • 24 November 2003 - minor correction: decorator is "object structural", not "object constructional" as I misremembered it

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here