/src/assimp/code/Common/StackAllocator.inl
Line | Count | Source |
1 | | /* |
2 | | Open Asset Import Library (assimp) |
3 | | ---------------------------------------------------------------------- |
4 | | |
5 | | Copyright (c) 2006-2025, assimp team |
6 | | |
7 | | All rights reserved. |
8 | | |
9 | | Redistribution and use of this software in source and binary forms, |
10 | | with or without modification, are permitted provided that the |
11 | | following conditions are met: |
12 | | |
13 | | * Redistributions of source code must retain the above |
14 | | copyright notice, this list of conditions and the |
15 | | following disclaimer. |
16 | | |
17 | | * Redistributions in binary form must reproduce the above |
18 | | copyright notice, this list of conditions and the |
19 | | following disclaimer in the documentation and/or other |
20 | | materials provided with the distribution. |
21 | | |
22 | | * Neither the name of the assimp team, nor the names of its |
23 | | contributors may be used to endorse or promote products |
24 | | derived from this software without specific prior |
25 | | written permission of the assimp team. |
26 | | |
27 | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
28 | | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
29 | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
30 | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
31 | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
32 | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
33 | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
34 | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
35 | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
36 | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
37 | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
38 | | |
39 | | ---------------------------------------------------------------------- |
40 | | */ |
41 | | |
42 | | #include "StackAllocator.h" |
43 | | #include <assimp/ai_assert.h> |
44 | | #include <algorithm> |
45 | | |
46 | | using namespace Assimp; |
47 | | |
48 | 0 | inline StackAllocator::StackAllocator() : m_storageBlocks() {} |
49 | | |
50 | 0 | inline StackAllocator::~StackAllocator() { |
51 | 0 | FreeAll(); |
52 | 0 | } |
53 | | |
54 | 0 | inline void *StackAllocator::Allocate(size_t byteSize) { |
55 | 0 | if (m_subIndex + byteSize > m_blockAllocationSize) // start a new block |
56 | 0 | { |
57 | | // double block size every time, up to maximum of g_maxBytesPerBlock. |
58 | | // Block size must be at least as large as byteSize, but we want to use this for small allocations anyway. |
59 | 0 | m_blockAllocationSize = std::max<std::size_t>(std::min<std::size_t>(m_blockAllocationSize * 2, g_maxBytesPerBlock), byteSize); |
60 | 0 | uint8_t *data = new uint8_t[m_blockAllocationSize]; |
61 | 0 | m_storageBlocks.emplace_back(data); |
62 | 0 | m_subIndex = byteSize; |
63 | 0 | return data; |
64 | 0 | } |
65 | | |
66 | 0 | uint8_t *data = m_storageBlocks.back(); |
67 | 0 | data += m_subIndex; |
68 | 0 | m_subIndex += byteSize; |
69 | |
|
70 | 0 | return data; |
71 | 0 | } |
72 | | |
73 | 0 | inline void StackAllocator::FreeAll() { |
74 | 0 | for (size_t i = 0; i < m_storageBlocks.size(); i++) { |
75 | 0 | delete [] m_storageBlocks[i]; |
76 | 0 | } |
77 | 0 | std::vector<uint8_t *> empty; |
78 | 0 | m_storageBlocks.swap(empty); |
79 | | // start over: |
80 | 0 | m_blockAllocationSize = g_startBytesPerBlock; |
81 | 0 | m_subIndex = g_maxBytesPerBlock; |
82 | 0 | } |