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
|
/**
* @file: mem.h
* Some experiments with memory manager
* @defgroup Mem Memory Manager
*
* Implementation of memory manager, In Process of Design&Implementation.
*
* Memory manager should solve the following memory-related problems
* - Dangling pointers. Solution: reference counting via smart pointers
* - Memory leaks. Solution: Various checks in pools and in pointers
* - Fragmentation. Solution: Fixed-sized chunks used in pools
* - Poor locality. Solution: not clear yet :(
* @ingroup Utils
*/
/*
* Utils library in Showgraph tool
* Copyright (c) 2009, Boris Shurygin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#ifndef MEM_H
#define MEM_H
#undef CHECK_CHUNKS
#undef CHECK_ENTRY
#undef USE_REF_COUNTERS
#undef USE_MEM_EVENTS
#undef CHECK_DELETE
#ifdef _DEBUG
# define CHECK_CHUNKS
# define CHECK_ENTRY
# define USE_REF_COUNTERS
# define USE_MEM_EVENTS
# define CHECK_DELETE
#endif
#include <QtGlobal>
/**
* Debug assert in memory manager
* @ingroup Mem
*/
#if !defined(MEM_ASSERTD)
# define MEM_ASSERTD(cond, what) ASSERT_XD(cond, "Memory manager", what)
#endif
/**
* Namespace for memory-related routines
* @ingroup Mem
*/
namespace Mem
{
/* Class pool predeclaration */
class Pool;
}
/**
* Low level functinality for Mem package
* @defgroup MemImpl Memory Manager Low Level
* @ingroup Mem
*/
namespace MemImpl
{
/* Predeclaration on MemInfo */
class MemInfo;
/* Predeclaration of mem entry class */
template < class Data> class Entry;
/* Predeclaration of chunk class */
template < class Data> class Chunk;
/**
* Position in chunk type
* @ingroup MemImpl
*/
typedef quint8 ChunkPos;
/**
* Max number of entries in chunk
* @ingroup MemImpl
*/
#ifndef MEM_SMALL_CHUNKS
const quint8 MAX_CHUNK_ENTRIES_NUM = ( quint8)( -1);
#else
const quint8 MAX_CHUNK_ENTRIES_NUM = 2;
#endif
/**
* 'NULL' equivalent for ChunkPos
* @ingroup MemImpl
*/
const ChunkPos UNDEF_POS = MAX_CHUNK_ENTRIES_NUM;
};
namespace Mem
{
/**
* Singleton for memory manager
* @ingroup MemImpl
*/
typedef Single< MemImpl::MemInfo> MemMgr;
};
#include <stdlib.h>
#include "mem_mgr.h" /** Memory manager */
#include "mem_ref.h" /** Memory reference */
#include "mem_obj.h" /** Memory object base class */
#include "mem_chunk.h" /** Memory chunk class */
#include "mem_pool.h" /** Memory pool */
#include "mem_entry.h" /** Memory entry class */
#include "mem_fixed_pool.h" /** Memory pool */
#endif /* MEM_H */
|