OSDN Git Service

04f362e3f52aaa2ec543d46275659872a33199a2
[qt-creator-jp/qt-creator-jp.git] / src / shared / cplusplus / MemoryPool.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33 // Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
34 //
35 // Permission is hereby granted, free of charge, to any person obtaining a copy
36 // of this software and associated documentation files (the "Software"), to deal
37 // in the Software without restriction, including without limitation the rights
38 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39 // copies of the Software, and to permit persons to whom the Software is
40 // furnished to do so, subject to the following conditions:
41 //
42 // The above copyright notice and this permission notice shall be included in
43 // all copies or substantial portions of the Software.
44 //
45 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
51 // THE SOFTWARE.
52
53 #ifndef CPLUSPLUS_MEMORYPOOL_H
54 #define CPLUSPLUS_MEMORYPOOL_H
55
56 #include "CPlusPlusForwardDeclarations.h"
57 #include <new>
58
59 namespace CPlusPlus {
60
61 class MemoryPool;
62 class RecursiveMemoryPool;
63
64 class CPLUSPLUS_EXPORT MemoryPool
65 {
66     MemoryPool(const MemoryPool &other);
67     void operator =(const MemoryPool &other);
68
69 public:
70     MemoryPool();
71     ~MemoryPool();
72
73     void reset();
74
75     inline void *allocate(size_t size)
76     {
77         size = (size + 7) & ~7;
78         if (_ptr && (_ptr + size < _end)) {
79             void *addr = _ptr;
80             _ptr += size;
81             return addr;
82         }
83         return allocate_helper(size);
84     }
85
86 private:
87     void *allocate_helper(size_t size);
88
89 private:
90     char **_blocks;
91     int _allocatedBlocks;
92     int _blockCount;
93     char *_ptr;
94     char *_end;
95
96     enum
97     {
98         BLOCK_SIZE = 8 * 1024,
99         DEFAULT_BLOCK_COUNT = 8
100     };
101
102     friend class RecursiveMemoryPool;
103 };
104
105 class CPLUSPLUS_EXPORT RecursiveMemoryPool
106 {
107     MemoryPool *_pool;
108     int _blockCount;
109     char *_ptr;
110     char *_end;
111
112 public:
113     RecursiveMemoryPool(MemoryPool *pool);
114     ~RecursiveMemoryPool();
115 };
116
117 class CPLUSPLUS_EXPORT Managed
118 {
119     Managed(const Managed &other);
120     void operator = (const Managed &other);
121
122 public:
123     Managed();
124     virtual ~Managed();
125
126     void *operator new(size_t size, MemoryPool *pool);
127     void operator delete(void *);
128     void operator delete(void *, MemoryPool *);
129 };
130
131 } // namespace CPlusPlus
132
133
134 #endif // CPLUSPLUS_MEMORYPOOL_H