![]() |
Languages »
C / C++ Language »
Memory Management
Intermediate
License: The Code Project Open License (CPOL)
Object Pooling for Generic C++ classesBy Thomas GeorgeImplements a basic object pooling scheme for generic C++ objects. |
VC6, VC7Win2K, WinXP, Visual Studio, STL, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
The default memory allocator is not efficient when it comes to frequent new and delete operations. There are a number of general purpose allocators that replace the standard one. There are certain situations when you want to improve performance at the cost of using more memory. This is especially true for small objects that are frequently created and destroyed in processing intensive applications. So, I decided to create a class that pools instances of classes, so that new and delete works on an array of already existing objects.
To enable pooling for a class, you publically inherit from this class, as shown below:
class myclasstobepooled : public ObjectPool< myclasstobepooled >
Call this function before any objects are created:
myclasstobepooled::initialize();
Call this function after all objects are deleted:
myclasstobepooled::finalize();
The ObjectPool class maintains a static vector of the pointers of the template type. The overridden new and delete operators manage the list.
There is an option to enable or disable thread safety. This is provided so that the critical section calls can be excluded, if the class is used in a single threaded environment, or if the new and delete operations are always performed from the same thread.
You can disable multithreading support by commenting the line:
#define ___USE_MT___
The constructor and destructor gets called even when the placement new and delete is used. So, there is no special code required to call the constructor and destructor.
Initially I was thinking about allocating the memory using malloc and calling the constructor and destructor manually. But, this would be along the lines of a general purpose memory allocator, where the global new and delete are overridden.
Suppose you have a class myclass.
// allocate myclass* p = malloc(sizeof(myclass)); // call the constructor, does not allocate any memory new (p) myclass(); // call the destructor manually p->~myclass();
If you have a class that you new and delete frequently in a performance critical part of the code, you can get substantial benefits by using this class.
A non-STL version version of the class is available in the downloads section. This was provided by Christian Kaiser.
| You must Sign In to use this message board. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 4 May 2003 Editor: Smitha Vijayan |
Copyright 2003 by Thomas George Everything else Copyright © CodeProject, 1999-2009 Web17 | Advertise on the Code Project |