blob: 60a624c5a1c452cc597ab0f71afa647409d9141c [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_MEMORY_DEALER_H
18#define ANDROID_MEMORY_DEALER_H
19
20
21#include <stdint.h>
22#include <sys/types.h>
23
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070024#include <binder/IMemory.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070025#include <binder/MemoryHeapBase.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026
27namespace android {
28// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
Mathias Agopian0dd0d292010-01-25 19:00:00 -080030class SimpleBestFitAllocator;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080031
32// ----------------------------------------------------------------------------
33
34class MemoryDealer : public RefBase
35{
36public:
Glenn Kasten6546f2e2014-03-14 16:49:51 -070037 MemoryDealer(size_t size, const char* name = 0,
38 uint32_t flags = 0 /* or bits such as MemoryHeapBase::READ_ONLY */ );
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080039
Mathias Agopian0dd0d292010-01-25 19:00:00 -080040 virtual sp<IMemory> allocate(size_t size);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080041 virtual void deallocate(size_t offset);
Mathias Agopian0dd0d292010-01-25 19:00:00 -080042 virtual void dump(const char* what) const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080043
Lajos Molnar10010332016-03-17 14:29:18 -070044 // allocations are aligned to some value. return that value so clients can account for it.
45 static size_t getAllocationAlignment();
46
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047 sp<IMemoryHeap> getMemoryHeap() const { return heap(); }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048
Andreas Huberf0adf842009-07-16 10:05:57 -070049protected:
50 virtual ~MemoryDealer();
51
Mathias Agopian0dd0d292010-01-25 19:00:00 -080052private:
53 const sp<IMemoryHeap>& heap() const;
54 SimpleBestFitAllocator* allocator() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055
Mathias Agopian0dd0d292010-01-25 19:00:00 -080056 sp<IMemoryHeap> mHeap;
57 SimpleBestFitAllocator* mAllocator;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058};
59
60
61// ----------------------------------------------------------------------------
62}; // namespace android
63
64#endif // ANDROID_MEMORY_DEALER_H