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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/*
* Copyright (C) 2013-2015, 2019 by the Konclude Developer Team.
*
* This file is part of the reasoning system Konclude.
* For details and support, see <http://konclude.com/>.
*
* Konclude is free software: you can redistribute it and/or modify
* it under the terms of version 3 of the GNU Lesser General Public
* License (LGPLv3) as published by the Free Software Foundation.
*
* Konclude is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU (Lesser) General Public License for more details.
*
* You should have received a copy of the GNU (Lesser) General Public
* License along with Konclude. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef KONCLUDE_UTILITIES_CDYNAMICEXPANDINGMEMORYMANAGER_H
#define KONCLUDE_UTILITIES_CDYNAMICEXPANDINGMEMORYMANAGER_H
// Libraries includes
#include <QLinkedList>
// Namespace includes
#include "CAllocationObject.h"
#include "UtilitiesSettings.h"
#include "CMemoryReleaser.h"
#include "CMemoryManager.hpp"
// Other includes
// Logger includes
#include "Logger/CLogger.h"
using namespace Konclude::Logger;
namespace Konclude {
namespace Utilities {
/*!
*
* \class CDynamicExpandingMemoryManager
* \author Andreas Steigmiller
* \version 0.1
* \brief TODO
*
*/
template<class T>
class CDynamicExpandingMemoryManager : public CMemoryManager<T> {
// public methods
public:
//! Constructor
CDynamicExpandingMemoryManager(qreal expansionFactor = 10., qint64 beginExtensionSize = 8, qint64 maxExtensionSize = 2040, qint64 beginAllocationSize = 0);
//! Destructor
virtual ~CDynamicExpandingMemoryManager();
virtual T *allocate();
virtual void release(T *&mem);
virtual void release(CAllocationObject *object);
void clear();
// protected methods
protected:
// private methods
private:
void extendMemory();
// private variables
private:
qint64 totalElements;
qint64 freeElements;
qint64 nextMemVecIndex;
qint64 releaseMemVecIndex;
qint64 vecSize;
qreal extendFac;
qint64 minExtSize;
qint64 maxExtSize;
qint64 currExtSizeInt;
qreal currExtSizeReal;
QList<T *> memory;
QList<T **> free;
QList<T **> memoryPtr;
QList<T **> freeMemPtr;
T **releaseMemVec;
T **nextMemVec;
bool hasAllocationContextChecked;
bool hasAllocationContext;
};
template<class T>
CDynamicExpandingMemoryManager<T>::CDynamicExpandingMemoryManager(qreal expansionFactor, qint64 beginExtensionSize, qint64 maxExtensionSize, qint64 beginAllocationSize) {
vecSize = maxExtensionSize;
extendFac = expansionFactor;
minExtSize = beginExtensionSize;
maxExtSize = maxExtensionSize;
currExtSizeInt = minExtSize;
currExtSizeReal = minExtSize;
releaseMemVec = 0;
nextMemVec = 0;
nextMemVecIndex = 0;
releaseMemVecIndex = 0;
freeElements = 0;
totalElements = 0;
hasAllocationContextChecked = false;
hasAllocationContext = false;
for (qint64 i = 0; i < beginAllocationSize; i += vecSize) {
extendMemory();
}
}
template<class T>
CDynamicExpandingMemoryManager<T>::~CDynamicExpandingMemoryManager() {
clear();
}
template<class T>
void CDynamicExpandingMemoryManager<T>::clear() {
releaseMemVec = 0;
nextMemVec = 0;
nextMemVecIndex = 0;
releaseMemVecIndex = 0;
freeElements = 0;
totalElements = 0;
foreach (T *mem, memory) {
delete [] mem;
}
foreach (T **memPtr, memoryPtr) {
delete [] memPtr;
}
memory.clear();
free.clear();
memoryPtr.clear();
freeMemPtr.clear();
}
template<class T>
void CDynamicExpandingMemoryManager<T>::extendMemory() {
T *newMem = new T[currExtSizeInt];
if (!hasAllocationContextChecked) {
CAllocationObject *allCon = dynamic_cast<CAllocationObject *>(&newMem[0]);
if (allCon == 0) {
hasAllocationContext = false;
} else {
hasAllocationContext = true;
}
hasAllocationContextChecked = true;
}
freeElements += currExtSizeInt;
totalElements += currExtSizeInt;
memory.append(newMem);
T **newMemPtr = new T *[vecSize];
memoryPtr.append(newMemPtr);
for (int i = 0; i < currExtSizeInt; ++i) {
newMemPtr[i] = &(newMem[i]);
}
for (int i = currExtSizeInt; i < vecSize; ++i) {
newMemPtr[i] = 0;
}
free.append(newMemPtr);
currExtSizeReal *= extendFac;
if (currExtSizeReal > maxExtSize) {
currExtSizeReal = maxExtSize;
}
currExtSizeInt = (qint64)currExtSizeReal;
}
template<class T>
T *CDynamicExpandingMemoryManager<T>::allocate() {
T *memElement = 0;
while (!memElement) {
if (nextMemVec) {
memElement = nextMemVec[nextMemVecIndex++];
if (nextMemVecIndex >= vecSize) {
freeMemPtr.append(nextMemVec);
nextMemVec = 0;
}
}
if (memElement == 0) {
if (free.isEmpty()) {
extendMemory();
}
nextMemVec = free.takeFirst();
nextMemVecIndex = 0;
}
}
freeElements--;
if (hasAllocationContext) {
CAllocationObject *allCon = (CAllocationObject *)(memElement);
allCon->setMemoryReleaser(this);
}
return memElement;
}
template<class T>
void CDynamicExpandingMemoryManager<T>::release(T *&mem) {
if (releaseMemVec == 0) {
if (!freeMemPtr.isEmpty()) {
releaseMemVec = freeMemPtr.takeFirst();
} else {
releaseMemVec = new T *[vecSize];
memoryPtr.append(releaseMemVec);
}
}
freeElements++;
releaseMemVec[releaseMemVecIndex++] = mem;
mem = 0;
if (releaseMemVecIndex >= vecSize) {
releaseMemVecIndex = 0;
if (releaseMemVec != 0) {
free.append(releaseMemVec);
releaseMemVec = 0;
}
}
}
template<class T>
void CDynamicExpandingMemoryManager<T>::release(CAllocationObject *object) {
T *mem = (T*)object;
release(mem);
}
}; // end namespace Utilities
}; // end namespace Konclude
#endif // KONCLUDE_UTILITIES_CDYNAMICEXPANDINGMEMORYMANAGER_H
|