-
Notifications
You must be signed in to change notification settings - Fork 1
/
MemoryManager.cpp
executable file
·171 lines (138 loc) · 4.33 KB
/
MemoryManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* Copyright (C) 2011 The Android Open Source Project
*
* 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.
*/
#define LOG_TAG "CAMHAL_MemoryManager "
#include "CameraHal.h"
#include "ExCameraParameters.h"
namespace android {
/*--------------------MemoryManager Class STARTS here-----------------------------*/
int MemoryManager::setRequestMemoryCallback(camera_request_memory get_memory)
{
mRequestMemory = get_memory;
return 0;
}
void* MemoryManager::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
{
LOG_FUNCTION_NAME;
///We allocate numBufs+1 because the last entry will be marked NULL to indicate
///end of array, which is used when freeing the buffers
const uint numArrayEntriesC = (uint)(numBufs+1);
if (!mRequestMemory)
{
CAMHAL_LOGEA("no req. mem cb");
LOG_FUNCTION_NAME_EXIT;
return NULL;
}
///Allocate a buffer array
uint32_t *bufsArr = new uint32_t [numArrayEntriesC];
if(!bufsArr)
{
CAMHAL_LOGEB("Allocation failed when creating buffers array of %d uint32_t elements", numArrayEntriesC);
LOG_FUNCTION_NAME_EXIT;
return NULL;
}
///Initialize the array with zeros - this will help us while freeing the array in case of error
///If a value of an array element is NULL, it means we didnt allocate it
memset(bufsArr, 0, sizeof(*bufsArr) * numArrayEntriesC);
//2D Allocations are not supported currently
if(bytes != 0)
{
camera_memory_t* handle = NULL;
///1D buffers
for (int i = 0; i < numBufs; i++)
{
handle = mRequestMemory(-1, bytes, 1, NULL);
if(!handle)
{
CAMHAL_LOGEA("req. mem failed");
goto error;
}
CAMHAL_LOGDB("handle = %x, nSize = %d", (uint32_t)handle, bytes);
bufsArr[i] = (uint32_t)handle;
mMemoryHandleMap.add(bufsArr[i], (unsigned int)handle);
}
}
LOG_FUNCTION_NAME_EXIT;
return (void*)bufsArr;
error:
CAMHAL_LOGEA("Freeing buffers already allocated after error occurred");
freeBuffer(bufsArr);
if ( NULL != mErrorNotifier.get() )
{
mErrorNotifier->errorNotify(-ENOMEM);
}
LOG_FUNCTION_NAME_EXIT;
return NULL;
}
uint32_t * MemoryManager::getOffsets()
{
LOG_FUNCTION_NAME;
LOG_FUNCTION_NAME_EXIT;
return NULL;
}
int MemoryManager::getFd()
{
LOG_FUNCTION_NAME;
LOG_FUNCTION_NAME_EXIT;
return -1;
}
int MemoryManager::freeBuffer(void* buf)
{
status_t ret = NO_ERROR;
LOG_FUNCTION_NAME;
uint32_t *bufEntry = (uint32_t*)buf;
if(!bufEntry)
{
CAMHAL_LOGEA("NULL pointer passed to freebuffer");
LOG_FUNCTION_NAME_EXIT;
return BAD_VALUE;
}
while(*bufEntry)
{
unsigned int ptr = (unsigned int) *bufEntry++;
camera_memory_t* handle = (camera_memory_t*)mMemoryHandleMap.valueFor(ptr);
if(handle)
{
handle->release(handle);
}
else
{
CAMHAL_LOGEA("Not a valid Memory Manager buffer");
}
}
///@todo Check if this way of deleting array is correct, else use malloc/free
uint32_t * bufArr = (uint32_t*)buf;
delete [] bufArr;
LOG_FUNCTION_NAME_EXIT;
return ret;
}
status_t MemoryManager::setErrorHandler(ErrorNotifier *errorNotifier)
{
status_t ret = NO_ERROR;
LOG_FUNCTION_NAME;
if ( NULL == errorNotifier )
{
CAMHAL_LOGEA("Invalid Error Notifier reference");
ret = -EINVAL;
}
if ( NO_ERROR == ret )
{
mErrorNotifier = errorNotifier;
}
LOG_FUNCTION_NAME_EXIT;
return ret;
}
};
/*--------------------MemoryManager Class ENDS here-----------------------------*/