blob: 2b74a3308381b63ce017dbeeec72be6da38d03b0 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006-2007 The Android Open Source Project
3 *
Mark Salyzyn00adb862014-03-19 11:00:06 -07004 * 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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007 *
Mark Salyzyn00adb862014-03-19 11:00:06 -07008 * http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 *
Mark Salyzyn00adb862014-03-19 11:00:06 -070010 * 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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014 * limitations under the License.
15 */
16
17#undef LOG_TAG
18#define LOG_TAG "CursorWindow"
19
Mathias Agopian49d2b182012-02-27 18:11:20 -080020#include <androidfw/CursorWindow.h>
Jeff Brown9d3b1a42013-07-01 19:07:15 -070021#include <binder/Parcel.h>
22#include <utils/Log.h>
Jeff Brown0cde89f2011-10-10 14:50:10 -070023
24#include <cutils/ashmem.h>
25#include <sys/mman.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
27#include <assert.h>
28#include <string.h>
29#include <stdlib.h>
30
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031namespace android {
32
Jeff Brown0cde89f2011-10-10 14:50:10 -070033CursorWindow::CursorWindow(const String8& name, int ashmemFd,
34 void* data, size_t size, bool readOnly) :
35 mName(name), mAshmemFd(ashmemFd), mData(data), mSize(size), mReadOnly(readOnly) {
36 mHeader = static_cast<Header*>(mData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037}
38
Jeff Brown0cde89f2011-10-10 14:50:10 -070039CursorWindow::~CursorWindow() {
40 ::munmap(mData, mSize);
41 ::close(mAshmemFd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042}
43
Jeff Brown5e5d6d82011-10-12 15:41:34 -070044status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) {
Jeff Brown0cde89f2011-10-10 14:50:10 -070045 String8 ashmemName("CursorWindow: ");
46 ashmemName.append(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047
Jeff Brown0cde89f2011-10-10 14:50:10 -070048 status_t result;
49 int ashmemFd = ashmem_create_region(ashmemName.string(), size);
50 if (ashmemFd < 0) {
51 result = -errno;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 } else {
Jeff Brown0cde89f2011-10-10 14:50:10 -070053 result = ashmem_set_prot_region(ashmemFd, PROT_READ | PROT_WRITE);
54 if (result >= 0) {
55 void* data = ::mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, ashmemFd, 0);
56 if (data == MAP_FAILED) {
57 result = -errno;
58 } else {
59 result = ashmem_set_prot_region(ashmemFd, PROT_READ);
60 if (result >= 0) {
61 CursorWindow* window = new CursorWindow(name, ashmemFd,
62 data, size, false /*readOnly*/);
63 result = window->clear();
64 if (!result) {
65 LOG_WINDOW("Created new CursorWindow: freeOffset=%d, "
66 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
67 window->mHeader->freeOffset,
68 window->mHeader->numRows,
69 window->mHeader->numColumns,
70 window->mSize, window->mData);
71 *outCursorWindow = window;
72 return OK;
73 }
74 delete window;
75 }
76 }
77 ::munmap(data, size);
78 }
79 ::close(ashmemFd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 }
Jeff Brown0cde89f2011-10-10 14:50:10 -070081 *outCursorWindow = NULL;
82 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083}
84
Jeff Brown0cde89f2011-10-10 14:50:10 -070085status_t CursorWindow::createFromParcel(Parcel* parcel, CursorWindow** outCursorWindow) {
86 String8 name = parcel->readString8();
87
88 status_t result;
89 int ashmemFd = parcel->readFileDescriptor();
90 if (ashmemFd == int(BAD_TYPE)) {
91 result = BAD_TYPE;
92 } else {
93 ssize_t size = ashmem_get_size_region(ashmemFd);
94 if (size < 0) {
95 result = UNKNOWN_ERROR;
96 } else {
97 int dupAshmemFd = ::dup(ashmemFd);
98 if (dupAshmemFd < 0) {
99 result = -errno;
100 } else {
101 void* data = ::mmap(NULL, size, PROT_READ, MAP_SHARED, dupAshmemFd, 0);
102 if (data == MAP_FAILED) {
103 result = -errno;
104 } else {
105 CursorWindow* window = new CursorWindow(name, dupAshmemFd,
106 data, size, true /*readOnly*/);
107 LOG_WINDOW("Created CursorWindow from parcel: freeOffset=%d, "
108 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
109 window->mHeader->freeOffset,
110 window->mHeader->numRows,
111 window->mHeader->numColumns,
112 window->mSize, window->mData);
113 *outCursorWindow = window;
114 return OK;
115 }
116 ::close(dupAshmemFd);
117 }
118 }
119 }
120 *outCursorWindow = NULL;
121 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122}
123
Jeff Brown0cde89f2011-10-10 14:50:10 -0700124status_t CursorWindow::writeToParcel(Parcel* parcel) {
125 status_t status = parcel->writeString8(mName);
126 if (!status) {
127 status = parcel->writeDupFileDescriptor(mAshmemFd);
128 }
129 return status;
130}
131
132status_t CursorWindow::clear() {
133 if (mReadOnly) {
134 return INVALID_OPERATION;
135 }
136
137 mHeader->freeOffset = sizeof(Header) + sizeof(RowSlotChunk);
138 mHeader->firstChunkOffset = sizeof(Header);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 mHeader->numRows = 0;
140 mHeader->numColumns = 0;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700141
142 RowSlotChunk* firstChunk = static_cast<RowSlotChunk*>(offsetToPtr(mHeader->firstChunkOffset));
143 firstChunk->nextChunkOffset = 0;
144 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145}
146
Jeff Brown0cde89f2011-10-10 14:50:10 -0700147status_t CursorWindow::setNumColumns(uint32_t numColumns) {
148 if (mReadOnly) {
149 return INVALID_OPERATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 }
Jeff Brown0cde89f2011-10-10 14:50:10 -0700151
152 uint32_t cur = mHeader->numColumns;
153 if ((cur > 0 || mHeader->numRows > 0) && cur != numColumns) {
Steve Block3762c312012-01-06 19:20:56 +0000154 ALOGE("Trying to go from %d columns to %d", cur, numColumns);
Jeff Brown0cde89f2011-10-10 14:50:10 -0700155 return INVALID_OPERATION;
156 }
157 mHeader->numColumns = numColumns;
158 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159}
160
Jeff Brown0cde89f2011-10-10 14:50:10 -0700161status_t CursorWindow::allocRow() {
162 if (mReadOnly) {
163 return INVALID_OPERATION;
164 }
165
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 // Fill in the row slot
Jeff Brown0cde89f2011-10-10 14:50:10 -0700167 RowSlot* rowSlot = allocRowSlot();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 if (rowSlot == NULL) {
Jeff Brown0cde89f2011-10-10 14:50:10 -0700169 return NO_MEMORY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 }
171
172 // Allocate the slots for the field directory
Jeff Brown0cde89f2011-10-10 14:50:10 -0700173 size_t fieldDirSize = mHeader->numColumns * sizeof(FieldSlot);
174 uint32_t fieldDirOffset = alloc(fieldDirSize, true /*aligned*/);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 if (!fieldDirOffset) {
176 mHeader->numRows--;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700177 LOG_WINDOW("The row failed, so back out the new row accounting "
178 "from allocRowSlot %d", mHeader->numRows);
179 return NO_MEMORY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 }
Jeff Brown0cde89f2011-10-10 14:50:10 -0700181 FieldSlot* fieldDir = static_cast<FieldSlot*>(offsetToPtr(fieldDirOffset));
182 memset(fieldDir, 0, fieldDirSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183
Jeff Brown0cde89f2011-10-10 14:50:10 -0700184 LOG_WINDOW("Allocated row %u, rowSlot is at offset %u, fieldDir is %d bytes at offset %u\n",
185 mHeader->numRows - 1, offsetFromPtr(rowSlot), fieldDirSize, fieldDirOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 rowSlot->offset = fieldDirOffset;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700187 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188}
189
Jeff Brown0cde89f2011-10-10 14:50:10 -0700190status_t CursorWindow::freeLastRow() {
191 if (mReadOnly) {
192 return INVALID_OPERATION;
193 }
194
195 if (mHeader->numRows > 0) {
196 mHeader->numRows--;
197 }
198 return OK;
199}
200
201uint32_t CursorWindow::alloc(size_t size, bool aligned) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 uint32_t padding;
203 if (aligned) {
204 // 4 byte alignment
Jeff Brown0cde89f2011-10-10 14:50:10 -0700205 padding = (~mHeader->freeOffset + 1) & 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 } else {
207 padding = 0;
208 }
209
Jeff Brown0cde89f2011-10-10 14:50:10 -0700210 uint32_t offset = mHeader->freeOffset + padding;
211 uint32_t nextFreeOffset = offset + size;
212 if (nextFreeOffset > mSize) {
Steve Block8564c8d2012-01-05 23:22:43 +0000213 ALOGW("Window is full: requested allocation %d bytes, "
Jeff Brown0cde89f2011-10-10 14:50:10 -0700214 "free space %d bytes, window size %d bytes",
215 size, freeSpace(), mSize);
216 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 }
218
Jeff Brown0cde89f2011-10-10 14:50:10 -0700219 mHeader->freeOffset = nextFreeOffset;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 return offset;
221}
222
Jeff Brown0cde89f2011-10-10 14:50:10 -0700223CursorWindow::RowSlot* CursorWindow::getRowSlot(uint32_t row) {
224 uint32_t chunkPos = row;
225 RowSlotChunk* chunk = static_cast<RowSlotChunk*>(
226 offsetToPtr(mHeader->firstChunkOffset));
227 while (chunkPos >= ROW_SLOT_CHUNK_NUM_ROWS) {
228 chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset));
229 chunkPos -= ROW_SLOT_CHUNK_NUM_ROWS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 }
Jeff Brown0cde89f2011-10-10 14:50:10 -0700231 return &chunk->slots[chunkPos];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232}
233
Jeff Brown0cde89f2011-10-10 14:50:10 -0700234CursorWindow::RowSlot* CursorWindow::allocRowSlot() {
235 uint32_t chunkPos = mHeader->numRows;
236 RowSlotChunk* chunk = static_cast<RowSlotChunk*>(
237 offsetToPtr(mHeader->firstChunkOffset));
238 while (chunkPos > ROW_SLOT_CHUNK_NUM_ROWS) {
239 chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset));
240 chunkPos -= ROW_SLOT_CHUNK_NUM_ROWS;
241 }
242 if (chunkPos == ROW_SLOT_CHUNK_NUM_ROWS) {
243 if (!chunk->nextChunkOffset) {
244 chunk->nextChunkOffset = alloc(sizeof(RowSlotChunk), true /*aligned*/);
245 if (!chunk->nextChunkOffset) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 return NULL;
247 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 }
Jeff Brown0cde89f2011-10-10 14:50:10 -0700249 chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset));
250 chunk->nextChunkOffset = 0;
251 chunkPos = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 }
Jeff Brown0cde89f2011-10-10 14:50:10 -0700253 mHeader->numRows += 1;
254 return &chunk->slots[chunkPos];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255}
256
Jeff Brown0cde89f2011-10-10 14:50:10 -0700257CursorWindow::FieldSlot* CursorWindow::getFieldSlot(uint32_t row, uint32_t column) {
258 if (row >= mHeader->numRows || column >= mHeader->numColumns) {
Steve Block3762c312012-01-06 19:20:56 +0000259 ALOGE("Failed to read row %d, column %d from a CursorWindow which "
Jeff Brown0cde89f2011-10-10 14:50:10 -0700260 "has %d rows, %d columns.",
261 row, column, mHeader->numRows, mHeader->numColumns);
262 return NULL;
263 }
264 RowSlot* rowSlot = getRowSlot(row);
265 if (!rowSlot) {
Steve Block3762c312012-01-06 19:20:56 +0000266 ALOGE("Failed to find rowSlot for row %d.", row);
Jeff Brown0cde89f2011-10-10 14:50:10 -0700267 return NULL;
268 }
269 FieldSlot* fieldDir = static_cast<FieldSlot*>(offsetToPtr(rowSlot->offset));
270 return &fieldDir[column];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271}
272
Jeff Brown0cde89f2011-10-10 14:50:10 -0700273status_t CursorWindow::putBlob(uint32_t row, uint32_t column, const void* value, size_t size) {
274 return putBlobOrString(row, column, value, size, FIELD_TYPE_BLOB);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275}
276
Jeff Brown0cde89f2011-10-10 14:50:10 -0700277status_t CursorWindow::putString(uint32_t row, uint32_t column, const char* value,
278 size_t sizeIncludingNull) {
279 return putBlobOrString(row, column, value, sizeIncludingNull, FIELD_TYPE_STRING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280}
281
Jeff Brown0cde89f2011-10-10 14:50:10 -0700282status_t CursorWindow::putBlobOrString(uint32_t row, uint32_t column,
283 const void* value, size_t size, int32_t type) {
284 if (mReadOnly) {
285 return INVALID_OPERATION;
286 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287
Jeff Brown0cde89f2011-10-10 14:50:10 -0700288 FieldSlot* fieldSlot = getFieldSlot(row, column);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 if (!fieldSlot) {
Jeff Brown0cde89f2011-10-10 14:50:10 -0700290 return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 }
292
Jeff Brown0cde89f2011-10-10 14:50:10 -0700293 uint32_t offset = alloc(size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 if (!offset) {
Jeff Brown0cde89f2011-10-10 14:50:10 -0700295 return NO_MEMORY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 }
297
Jeff Brown0cde89f2011-10-10 14:50:10 -0700298 memcpy(offsetToPtr(offset), value, size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299
Jeff Brown0cde89f2011-10-10 14:50:10 -0700300 fieldSlot->type = type;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 fieldSlot->data.buffer.offset = offset;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700302 fieldSlot->data.buffer.size = size;
303 return OK;
304}
305
306status_t CursorWindow::putLong(uint32_t row, uint32_t column, int64_t value) {
307 if (mReadOnly) {
308 return INVALID_OPERATION;
309 }
310
311 FieldSlot* fieldSlot = getFieldSlot(row, column);
312 if (!fieldSlot) {
313 return BAD_VALUE;
314 }
315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316 fieldSlot->type = FIELD_TYPE_INTEGER;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700317 fieldSlot->data.l = value;
318 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319}
320
Jeff Brown0cde89f2011-10-10 14:50:10 -0700321status_t CursorWindow::putDouble(uint32_t row, uint32_t column, double value) {
322 if (mReadOnly) {
323 return INVALID_OPERATION;
324 }
325
326 FieldSlot* fieldSlot = getFieldSlot(row, column);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327 if (!fieldSlot) {
Jeff Brown0cde89f2011-10-10 14:50:10 -0700328 return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 }
330
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331 fieldSlot->type = FIELD_TYPE_FLOAT;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700332 fieldSlot->data.d = value;
333 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334}
335
Jeff Brown0cde89f2011-10-10 14:50:10 -0700336status_t CursorWindow::putNull(uint32_t row, uint32_t column) {
337 if (mReadOnly) {
338 return INVALID_OPERATION;
339 }
340
341 FieldSlot* fieldSlot = getFieldSlot(row, column);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 if (!fieldSlot) {
Jeff Brown0cde89f2011-10-10 14:50:10 -0700343 return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800344 }
345
346 fieldSlot->type = FIELD_TYPE_NULL;
347 fieldSlot->data.buffer.offset = 0;
348 fieldSlot->data.buffer.size = 0;
Jeff Brown0cde89f2011-10-10 14:50:10 -0700349 return OK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350}
351
352}; // namespace android