Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C++

Simple MemoryPool using templates and std::vector

Rate me:
Please Sign up or sign in to vote.
4.27/5 (6 votes)
20 Jun 2012CPOL3 min read 20.1K   9   9
Creating simple memory pool using templates and vector

Introduction

One way of avoiding memory fragmentation using templates and vector to implement memory pool. 

Background  

Working on a server application that is expected to run 24/7/365 processing "requests" from different clients (with different needs) we encounter a problem: application was getting slower and slower over time. Requesting user to restart server form time to time was out of question.

After days of profiling and debugging and (yes) praying for some sign what is wrong, I narrowed it down to 'new' and 'delete' - fragmentation. We deal with non-constant number of requests that are different in size, and have life cycle of 'receive(create)-process(kill)'.

Problem was in request data size. Let me elaborate.

As requests are different in size, small memory allocations are interspersed with medium and large allocations. Server is multi-threaded so processing of those requests takes different amount of time and results in freeing of blocks in a random order. There is no way that we can ensure that memory is freed in optimal order (the optimal sequence being the exact reverse of the allocation order).

The end result is that there is a large number of small blocks that, when a medium or large allocation request comes, have to be skipped or merged, and that in turn results in increasing delays when new allocation is requested.

I was faced with two possible approaches: globally or on a per-request (class) basis.

Globally - overloading global operator new and delete, writing a completely new memory manager that all classes and functions will use, making sure that my memory manager is initialized first (before the C++ run-time system makes any memory requests but after it creates the application heap),... to much sensitive work prone to errors and mistakes. (No one can ever say I was ignorant of wide project implications... )  

So, decision was to sort it out on per-request basis (big surprise there !!! )  

Solution

I decided to preallocate memory for the maximum number of request that can come in any given time (in my case - not more that 2000 per second). 

As I wanted to write one class to handle all cases but still be per-request basis, templates were good choice as any. And it needs to hand out memory when needed and reuse that same memory when it is not needed. Using vector to simulate stack. 

First version looked like this: 

C++
// MemoryPool class
//
template<class T>
class _MemoryPool
{
public:
    _MemoryPool( int nSize ) : m_Items( new T [ nSize ] )
    {
        m_FreeItems.reserve( nSize );
        for( int i = 0; i < nSize; ++i )
        {
            m_FreeItems.push_back( &m_Items[i] );
        }
    }

    ~_MemoryPool(void)
    {
        delete [] m_Items;
    }

    T * Allocate()
    {
        T * pItem = m_FreeItems.back();
        m_FreeItems.pop_back();
        return( pItem );
    }

    void Free( T * pItem )
    {
        m_FreeItems.push_back( pItem );
    }

private:
    std::vector< T* > m_FreeItems;
    T * m_Items;
};

In constructor of our memory pool class, requested number of objects will be created, and loaded into std::vector. New allocation request will hand out top object from our vector (removing it from the vector in the process). When object is not needed any more, it will be put back on top of our vector. Thus, vector here simulates stack with push-pop functionality. 

C++
// Request/data class
// Example
class RequestData1
{
public:
    int nReqType;
    double dReqTimeReceived;
    unsigned long nActionBits;
};
// next request class...

Requests are data structures...

Now, creating memory pool with xxx number of objects. 

C++
// construct our memory pool
// max 2000 requests
_MemoryPool< RequestData1 > g_poolRequest1(2000);
// next memory pool for next request class

So far so good, now all I need to do is write:  

C++
RequestData1* req1 = g_poolRequest1.Allocate();
// Call placement new on our raw data.
new (req1) RequestData1( call, constructor, with, some, Parameters, if, needed);

// we process req1... ... not need anymore after this
g_poolRequest1.Free( req1 );

Well, I do not want to go to every piece of code where I create requests and change it to this construct (and release bits as well). Solution: adding operator new and delete for each request class. Simple. 

Now request class looks like this: 

C++
class RequestData1
{
public:
    int nReqType;
    double dReqTimeReceived;
    unsigned long nActionBits;

    void * operator new( size_t n )
    {
        return( g_poolRequest1.Allocate() );
    };

    void operator delete( void * p )
    {
        g_poolRequest1.Free( reinterpret_cast<RequestData1 *>(p) );
    };
};

And, all it's left to do now is recompile... (and pray that 2001 request never comes...) 

That is all for now, test application is not included, and just as a side note, application even gained in speed using this approach, but that was not the end goal of this exercise. 

More fragmentation problems were still present (point-finger-to-strings) but solution for that in some future article, perhaps. 

Take care... 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
IBM
Ireland Ireland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNo for loop required in the constructor Pin
steveb27-Nov-13 11:40
mvesteveb27-Nov-13 11:40 
GeneralRe: No for loop required in the constructor Pin
Sasa Kajic1-Apr-14 1:45
Sasa Kajic1-Apr-14 1:45 
GeneralMy vote of 5 Pin
HamidYaseen22-Jun-12 4:09
professionalHamidYaseen22-Jun-12 4:09 
QuestionExcellent Pin
HamidYaseen20-Jun-12 3:18
professionalHamidYaseen20-Jun-12 3:18 
AnswerRe: Excellent Pin
Sasa Kajic20-Jun-12 11:51
Sasa Kajic20-Jun-12 11:51 
GeneralRe: Excellent Pin
HamidYaseen21-Jun-12 2:31
professionalHamidYaseen21-Jun-12 2:31 
GeneralMy vote of 2 Pin
Chandrakanth.Veggalam20-Jun-12 1:08
Chandrakanth.Veggalam20-Jun-12 1:08 
GeneralRe: My vote of 2 Pin
Garth J Lancaster20-Jun-12 1:23
professionalGarth J Lancaster20-Jun-12 1:23 
GeneralRe: My vote of 2 PinPopular
Sasa Kajic20-Jun-12 11:54
Sasa Kajic20-Jun-12 11:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.