The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006-2007 The Android Open Source Project |
| 3 | * |
Mark Salyzyn | 00adb86 | 2014-03-19 11:00:06 -0700 | [diff] [blame] | 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 |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 7 | * |
Mark Salyzyn | 00adb86 | 2014-03-19 11:00:06 -0700 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | * |
Mark Salyzyn | 00adb86 | 2014-03-19 11:00:06 -0700 | [diff] [blame] | 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 |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #undef LOG_TAG |
| 18 | #define LOG_TAG "CursorWindow" |
| 19 | |
Mathias Agopian | 49d2b18 | 2012-02-27 18:11:20 -0800 | [diff] [blame] | 20 | #include <androidfw/CursorWindow.h> |
Jeff Brown | 9d3b1a4 | 2013-07-01 19:07:15 -0700 | [diff] [blame] | 21 | #include <binder/Parcel.h> |
| 22 | #include <utils/Log.h> |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 23 | |
| 24 | #include <cutils/ashmem.h> |
| 25 | #include <sys/mman.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | |
| 27 | #include <assert.h> |
| 28 | #include <string.h> |
| 29 | #include <stdlib.h> |
| 30 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | namespace android { |
| 32 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 33 | CursorWindow::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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | } |
| 38 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 39 | CursorWindow::~CursorWindow() { |
| 40 | ::munmap(mData, mSize); |
| 41 | ::close(mAshmemFd); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | } |
| 43 | |
Jeff Brown | 5e5d6d8 | 2011-10-12 15:41:34 -0700 | [diff] [blame] | 44 | status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 45 | String8 ashmemName("CursorWindow: "); |
| 46 | ashmemName.append(name); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 48 | status_t result; |
| 49 | int ashmemFd = ashmem_create_region(ashmemName.string(), size); |
| 50 | if (ashmemFd < 0) { |
| 51 | result = -errno; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | } else { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 53 | 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 81 | *outCursorWindow = NULL; |
| 82 | return result; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 83 | } |
| 84 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 85 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 122 | } |
| 123 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 124 | status_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 | |
| 132 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 139 | mHeader->numRows = 0; |
| 140 | mHeader->numColumns = 0; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 141 | |
| 142 | RowSlotChunk* firstChunk = static_cast<RowSlotChunk*>(offsetToPtr(mHeader->firstChunkOffset)); |
| 143 | firstChunk->nextChunkOffset = 0; |
| 144 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 147 | status_t CursorWindow::setNumColumns(uint32_t numColumns) { |
| 148 | if (mReadOnly) { |
| 149 | return INVALID_OPERATION; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 150 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 151 | |
| 152 | uint32_t cur = mHeader->numColumns; |
| 153 | if ((cur > 0 || mHeader->numRows > 0) && cur != numColumns) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 154 | ALOGE("Trying to go from %d columns to %d", cur, numColumns); |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 155 | return INVALID_OPERATION; |
| 156 | } |
| 157 | mHeader->numColumns = numColumns; |
| 158 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 159 | } |
| 160 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 161 | status_t CursorWindow::allocRow() { |
| 162 | if (mReadOnly) { |
| 163 | return INVALID_OPERATION; |
| 164 | } |
| 165 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 166 | // Fill in the row slot |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 167 | RowSlot* rowSlot = allocRowSlot(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 168 | if (rowSlot == NULL) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 169 | return NO_MEMORY; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | // Allocate the slots for the field directory |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 173 | size_t fieldDirSize = mHeader->numColumns * sizeof(FieldSlot); |
| 174 | uint32_t fieldDirOffset = alloc(fieldDirSize, true /*aligned*/); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 175 | if (!fieldDirOffset) { |
| 176 | mHeader->numRows--; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 177 | 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 180 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 181 | FieldSlot* fieldDir = static_cast<FieldSlot*>(offsetToPtr(fieldDirOffset)); |
| 182 | memset(fieldDir, 0, fieldDirSize); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 183 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 184 | 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 186 | rowSlot->offset = fieldDirOffset; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 187 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 188 | } |
| 189 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 190 | status_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 | |
| 201 | uint32_t CursorWindow::alloc(size_t size, bool aligned) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 202 | uint32_t padding; |
| 203 | if (aligned) { |
| 204 | // 4 byte alignment |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 205 | padding = (~mHeader->freeOffset + 1) & 3; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 206 | } else { |
| 207 | padding = 0; |
| 208 | } |
| 209 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 210 | uint32_t offset = mHeader->freeOffset + padding; |
| 211 | uint32_t nextFreeOffset = offset + size; |
| 212 | if (nextFreeOffset > mSize) { |
Ashok Bhat | f5df700 | 2014-03-25 20:51:35 +0000 | [diff] [blame] | 213 | ALOGW("Window is full: requested allocation %zu bytes, " |
| 214 | "free space %zu bytes, window size %zu bytes", |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 215 | size, freeSpace(), mSize); |
| 216 | return 0; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 217 | } |
| 218 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 219 | mHeader->freeOffset = nextFreeOffset; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 220 | return offset; |
| 221 | } |
| 222 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 223 | CursorWindow::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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 230 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 231 | return &chunk->slots[chunkPos]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 232 | } |
| 233 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 234 | CursorWindow::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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 246 | return NULL; |
| 247 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 248 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 249 | chunk = static_cast<RowSlotChunk*>(offsetToPtr(chunk->nextChunkOffset)); |
| 250 | chunk->nextChunkOffset = 0; |
| 251 | chunkPos = 0; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 252 | } |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 253 | mHeader->numRows += 1; |
| 254 | return &chunk->slots[chunkPos]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 255 | } |
| 256 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 257 | CursorWindow::FieldSlot* CursorWindow::getFieldSlot(uint32_t row, uint32_t column) { |
| 258 | if (row >= mHeader->numRows || column >= mHeader->numColumns) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 259 | ALOGE("Failed to read row %d, column %d from a CursorWindow which " |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 260 | "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 Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 266 | ALOGE("Failed to find rowSlot for row %d.", row); |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 267 | return NULL; |
| 268 | } |
| 269 | FieldSlot* fieldDir = static_cast<FieldSlot*>(offsetToPtr(rowSlot->offset)); |
| 270 | return &fieldDir[column]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 271 | } |
| 272 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 273 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 277 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 280 | } |
| 281 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 282 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 287 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 288 | FieldSlot* fieldSlot = getFieldSlot(row, column); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 289 | if (!fieldSlot) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 290 | return BAD_VALUE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 291 | } |
| 292 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 293 | uint32_t offset = alloc(size); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 294 | if (!offset) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 295 | return NO_MEMORY; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 296 | } |
| 297 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 298 | memcpy(offsetToPtr(offset), value, size); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 299 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 300 | fieldSlot->type = type; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 301 | fieldSlot->data.buffer.offset = offset; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 302 | fieldSlot->data.buffer.size = size; |
| 303 | return OK; |
| 304 | } |
| 305 | |
| 306 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 316 | fieldSlot->type = FIELD_TYPE_INTEGER; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 317 | fieldSlot->data.l = value; |
| 318 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 319 | } |
| 320 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 321 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 327 | if (!fieldSlot) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 328 | return BAD_VALUE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 329 | } |
| 330 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 331 | fieldSlot->type = FIELD_TYPE_FLOAT; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 332 | fieldSlot->data.d = value; |
| 333 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 334 | } |
| 335 | |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 336 | status_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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 342 | if (!fieldSlot) { |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 343 | return BAD_VALUE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | fieldSlot->type = FIELD_TYPE_NULL; |
| 347 | fieldSlot->data.buffer.offset = 0; |
| 348 | fieldSlot->data.buffer.size = 0; |
Jeff Brown | 0cde89f | 2011-10-10 14:50:10 -0700 | [diff] [blame] | 349 | return OK; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | }; // namespace android |