Click here to Skip to main content
15,893,381 members
Articles / Programming Languages / C++

Buffer Pool \ Object Pool

Rate me:
Please Sign up or sign in to vote.
4.50/5 (18 votes)
18 Jan 20035 min read 128K   3.2K   79  
An article on optimization of the use of dynamic memory.
// BufferPool.h: interface for the CBufferPool class.
//
//////////////////////////////////////////////////////////////////////

#ifndef BUFFER_POOL_H
#define BUFFER_POOL_H

#include "link.h"

//struct _SEGMENT;
typedef struct _SEGMENT *PSEGMENT;


class CBufferPool  
{
public:
	CBufferPool(){}
	virtual ~CBufferPool(){}
	bool  Create(	IN const unsigned int   nBufferSize,
					IN const unsigned int	nNumberOfBuffersInSegment,
					IN const unsigned int	nNumberOfSegmentsStrat,
					IN const unsigned int	nNumberOfSegmentsLowMark,
					IN const unsigned int	nNumberOfSegmentsHighMark = -1,
					IN const double			lfRatioForSegmentDeletion = 0.333);
	
	void* Allocate();
	void  Free(const void* pBuffer);

	void Destroy();

private:
	bool AllocateSegment();
	void FreeSegment(IN PSEGMENT p_segment);

	//member variables
	DLINK			m_SegmentsListHead;


	
	unsigned int	m_nNumberOfBuffersInSegment;
	unsigned int	m_nNumberOfSegmentsStrat;
	unsigned int	m_nNumberOfSegmentsLowMark;
	unsigned int	m_nNumberOfSegmentsHighMark;
	unsigned int	m_nBufferSize;

	UINT			m_nNumberOfSegments;
	UINT			m_nFreeBuffers;
	

	PSEGMENT		m_pSegmentCandidateForDeletion;
	unsigned int	m_nCandidateDeletionLimit;

	CRITICAL_SECTION			m_CriticalSection;	
};

#endif //BUFFER_POOL_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for 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


Written By
Web Developer
Israel Israel
4 years expirience coding C++ with MFC & STL and coding C for Windows XP/2K internals (Drivers).

I Love what I do.

For pastime activities:
Fun & Games

Comments and Discussions