| /* |
| * Copyright 2014 Google Inc. All Rights Reserved. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #ifndef NB_ALLOCATOR_H_ |
| #define NB_ALLOCATOR_H_ |
| |
| // TODO: Include "starboard/types.h" once legacy platforms are ported to |
| // starboard. Currently including <vector> is used as a platform independent |
| // way to introduce std::size_t. |
| #include <vector> |
| |
| namespace nb { |
| |
| // The Allocator interface offers a standard and consistent way of allocating |
| // and freeing memory. The interface makes no assumption on how the memory |
| // is allocated and/or freed, and no assumptions about any tracking that may |
| // occur on the allocations as well. This must all be defined and implemented |
| // through derived classes. |
| class Allocator { |
| public: |
| virtual ~Allocator() {} |
| |
| // Allocates a range of memory of the given size, without any alignment |
| // constraints. |
| // Will return NULL if the allocation fails. |
| virtual void* Allocate(std::size_t size) = 0; |
| |
| // Allocates a range of memory of the given size with the given alignment. |
| // Will return NULL if the allocation fails. |
| virtual void* Allocate(std::size_t size, std::size_t alignment) = 0; |
| |
| // Allocates a range of memory of the given size for the given alignment. |
| // Returns a pointer that may not be aligned but points to a memory area that |
| // is still large enough when the pointer is subsequently aligned to the given |
| // alignment. It can allocate up to size + alignment - 1 bytes. This allows a |
| // reuse allocator to use the padding area as a free block. Will return NULL |
| // if the allocation fails. |
| virtual void* AllocateForAlignment(std::size_t size, |
| std::size_t alignment) = 0; |
| |
| // Frees memory previously allocated via any call to Allocate(). |
| virtual void Free(void* memory) = 0; |
| |
| // Returns the allocator's total capacity for allocations. It will always |
| // be true that GetSize() <= GetCapacity(), though it is possible for |
| // capacity to grow and change over time. It is also possible that due to, |
| // say, fragmentation, an allocation may fail even if GetCapacity() reports |
| // that enough space is available. |
| virtual std::size_t GetCapacity() const = 0; |
| |
| // Returns the allocator's total memory currently allocated. |
| virtual std::size_t GetAllocated() const = 0; |
| |
| // Print information for all allocations. |
| virtual void PrintAllocations() const = 0; |
| }; |
| |
| } // namespace nb |
| |
| #endif // NB_ALLOCATOR_H_ |