Changing default value for MAX_THREAD to 10
[csql.git] / include / Allocator.h
blobe702b34574001e3f2d02084d8775074735c65d57
1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 ***************************************************************************/
16 #ifndef ALLOCATOR_H
17 #define ALLOCATOR_H
18 #include<os.h>
19 #include<Mutex.h>
21 typedef void Page;
23 enum AllocType
25 FixedSizeAllocator = 0,
26 VariableSizeAllocator = 1,
27 UnknownAllocator
30 //Used to store the meta data information about the variable size data
31 class VarSizeInfo
33 public:
34 size_t size_;
35 int isUsed_;
38 //Each Page has this info.
39 //pages are of size PAGE_SIZE normally.
40 //If data size is more than PAGE_SIZE then
41 //contigous pages are merged and those pages wont
42 //have this info in them.Only the start page where that
43 //data is stored will have this info
44 //This object is stored at the start of each page
45 class PageInfo
47 public:
48 int isUsed_;
49 int hasFreeSpace_;
51 Page *nextPageAfterMerge_; //used only in case of
52 //where pages are merged to store data which are more than
53 //PAGE_SIZE.
54 //More detail about how it is used is found in Database::getFreePage
56 Page *nextPage_; //next page in the same chunk
57 void setPageAsUsed(size_t offset);
61 class Chunk;
64 //Iterator for the data
65 //Data is stored in chunks and this class gives
66 //iterator for it.
67 class ChunkIterator
69 int chunkID_;
70 size_t allocSize_; // used if it is a fixed size allocator
71 AllocType allocType_;
73 //current iterating page
74 Page *iterPage_;
76 //Each page is divided into nodes of size allocSize_
77 //This gives the offset of the node in the page
78 int nodeOffset_;
80 //Total number of nodes in the page
81 //It is a constant value for this chunk
82 //and it is cached for performance
83 int noOfNodes_;
85 public:
86 void* nextElement();
87 friend class Chunk;
90 class Database;
91 class DatabaseManagerImpl;
93 class Chunk
95 int chunkID_;
97 // used if it is a fixed size allocator
98 size_t allocSize_;
99 AllocType allocType_;
101 //Current page where the last data allocation was made
102 Page *curPage_;
104 //Page where data allocation was made for the first time
105 //This is the start of the data
106 //Iterator should start from this page
107 Page *firstPage_;
109 Mutex chunkMutex_;
111 public:
113 //sets the size of the allocator
114 //for fixed size allocator
115 void setSize(size_t size);
117 size_t getSize() { return allocSize_; }
118 void setChunkID(unsigned int id) { chunkID_ = id; }
119 int getChunkID() { return chunkID_; }
120 void setAllocType(AllocType type) { allocType_ = type; }
121 AllocType getAllocType() { return allocType_; }
124 PageInfo* getPageInfo(Database *db, void *ptr);
125 void* allocate(Database *db);
127 void* allocate(Database *db, size_t size);
129 void free(Database *db, void* ptr);
130 ChunkIterator getIterator();
131 void print(){}
133 long getTotalDataNodes();
134 int totalPages();
136 private:
138 int initMutex();
139 int getChunkMutex();
140 int releaseChunkMutex();
141 int destroyMutex();
142 void createDataBucket(Page *page, size_t totalSize, size_t needSize);
143 void splitDataBucket(VarSizeInfo *varInfo, size_t needSize);
144 void* varSizeFirstFitAllocate(size_t size);
146 friend class Database;
147 friend class DatabaseManagerImpl;
149 #endif