OSDN Git Service

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