forked from sass/libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory_manager.hpp
42 lines (36 loc) · 1.19 KB
/
memory_manager.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#define SASS_MEMORY_MANAGER
#include <vector>
#include <iostream>
using namespace std;
namespace Sass {
/////////////////////////////////////////////////////////////////////////////
// A class for tracking allocations of AST_Node objects. The intended usage
// is something like: Some_Node* n = new (mem_mgr) Some_Node(...);
// Then, at the end of the program, the memory manager will delete all of the
// allocated nodes that have been passed to it.
// In the future, this class may implement a custom allocator.
/////////////////////////////////////////////////////////////////////////////
template <typename T>
class Memory_Manager {
vector<T*> nodes;
public:
Memory_Manager(size_t size = 0) : nodes(vector<T*>())
{ nodes.reserve(size); }
~Memory_Manager()
{
for (size_t i = 0, S = nodes.size(); i < S; ++i) {
// cout << "deleting " << typeid(*nodes[i]).name() << endl;
delete nodes[i];
}
}
T* operator()(T* np)
{
nodes.push_back(np);
// cout << "registering " << typeid(*np).name() << endl;
return np;
}
};
}
template <typename T>
inline void* operator new(size_t size, Sass::Memory_Manager<T>& mem_mgr)
{ return mem_mgr(static_cast<T*>(operator new(size))); }