blob: 35a3fd7da20373fb70cb5c84caf380ff63e071eb [file] [log] [blame]
The Android Open Source Project9066cfe2009-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_IMEMORY_H
18#define ANDROID_IMEMORY_H
19
20#include <stdint.h>
21#include <sys/types.h>
22#include <sys/mman.h>
23
24#include <utils/RefBase.h>
25#include <utils/Errors.h>
26#include <utils/IInterface.h>
27
28namespace android {
29
30// ----------------------------------------------------------------------------
31
32class IMemoryHeap : public IInterface
33{
34public:
35 DECLARE_META_INTERFACE(MemoryHeap);
36
37 // flags returned by getFlags()
38 enum {
39 READ_ONLY = 0x00000001,
40 MAP_ONCE = 0x00000002
41 };
42
43 virtual int getHeapID() const = 0;
44 virtual void* getBase() const = 0;
45 virtual size_t getSize() const = 0;
46 virtual uint32_t getFlags() const = 0;
47
48 // these are there just for backward source compatibility
49 int32_t heapID() const { return getHeapID(); }
50 void* base() const { return getBase(); }
51 size_t virtualSize() const { return getSize(); }
52};
53
54class BnMemoryHeap : public BnInterface<IMemoryHeap>
55{
56public:
57 virtual status_t onTransact(
58 uint32_t code,
59 const Parcel& data,
60 Parcel* reply,
61 uint32_t flags = 0);
62};
63
64// ----------------------------------------------------------------------------
65
66class IMemory : public IInterface
67{
68public:
69 DECLARE_META_INTERFACE(Memory);
70
71 virtual sp<IMemoryHeap> getMemory(ssize_t* offset=0, size_t* size=0) const = 0;
72
73 // helpers
74 void* fastPointer(const sp<IBinder>& heap, ssize_t offset) const;
75 void* pointer() const;
76 size_t size() const;
77 ssize_t offset() const;
78};
79
80class BnMemory : public BnInterface<IMemory>
81{
82public:
83 virtual status_t onTransact(
84 uint32_t code,
85 const Parcel& data,
86 Parcel* reply,
87 uint32_t flags = 0);
88};
89
90// ----------------------------------------------------------------------------
91
92}; // namespace android
93
94#endif // ANDROID_IMEMORY_H