Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright 2009, The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
Mathias Agopian | 67bbac8 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 18 | #define LOG_TAG "GraphicBufferAllocator" |
| 19 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 20 | #include <cutils/log.h> |
Mathias Agopian | a6b40ba | 2009-04-15 18:34:24 -0700 | [diff] [blame] | 21 | |
| 22 | #include <utils/Singleton.h> |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 23 | #include <utils/String8.h> |
| 24 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 25 | #include <ui/GraphicBufferAllocator.h> |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 26 | |
Mathias Agopian | 6f5f5a0 | 2009-10-05 18:19:57 -0700 | [diff] [blame] | 27 | #include <private/ui/sw_gralloc_handle.h> |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 28 | |
| 29 | namespace android { |
| 30 | // --------------------------------------------------------------------------- |
| 31 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 32 | ANDROID_SINGLETON_STATIC_INSTANCE( GraphicBufferAllocator ) |
Mathias Agopian | a6b40ba | 2009-04-15 18:34:24 -0700 | [diff] [blame] | 33 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 34 | Mutex GraphicBufferAllocator::sLock; |
Mathias Agopian | 6f5f5a0 | 2009-10-05 18:19:57 -0700 | [diff] [blame] | 35 | KeyedVector<buffer_handle_t, |
| 36 | GraphicBufferAllocator::alloc_rec_t> GraphicBufferAllocator::sAllocList; |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 37 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 38 | GraphicBufferAllocator::GraphicBufferAllocator() |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 39 | : mAllocDev(0) |
| 40 | { |
| 41 | hw_module_t const* module; |
| 42 | int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module); |
| 43 | LOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID); |
| 44 | if (err == 0) { |
| 45 | gralloc_open(module, &mAllocDev); |
| 46 | } |
| 47 | } |
| 48 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 49 | GraphicBufferAllocator::~GraphicBufferAllocator() |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 50 | { |
| 51 | gralloc_close(mAllocDev); |
| 52 | } |
| 53 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 54 | void GraphicBufferAllocator::dump(String8& result) const |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 55 | { |
| 56 | Mutex::Autolock _l(sLock); |
| 57 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
| 58 | size_t total = 0; |
| 59 | const size_t SIZE = 512; |
| 60 | char buffer[SIZE]; |
| 61 | snprintf(buffer, SIZE, "Allocated buffers:\n"); |
| 62 | result.append(buffer); |
| 63 | const size_t c = list.size(); |
| 64 | for (size_t i=0 ; i<c ; i++) { |
| 65 | const alloc_rec_t& rec(list.valueAt(i)); |
Mathias Agopian | 67bbac8 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 66 | snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %2d | 0x%08x\n", |
Mathias Agopian | dff8e58 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 67 | list.keyAt(i), rec.size/1024.0f, |
Mathias Agopian | 67bbac8 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 68 | rec.w, rec.s, rec.h, rec.format, rec.usage); |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 69 | result.append(buffer); |
| 70 | total += rec.size; |
| 71 | } |
| 72 | snprintf(buffer, SIZE, "Total allocated: %.2f KB\n", total/1024.0f); |
| 73 | result.append(buffer); |
| 74 | } |
| 75 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 76 | status_t GraphicBufferAllocator::alloc(uint32_t w, uint32_t h, PixelFormat format, |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 77 | int usage, buffer_handle_t* handle, int32_t* stride) |
| 78 | { |
Mathias Agopian | 67bbac8 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 79 | // make sure to not allocate a N x 0 or 0 x N buffer, since this is |
| 80 | // allowed from an API stand-point allocate a 1x1 buffer instead. |
| 81 | if (!w || !h) |
| 82 | w = h = 1; |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 83 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 84 | // we have a h/w allocator and h/w buffer is requested |
Mathias Agopian | 6f5f5a0 | 2009-10-05 18:19:57 -0700 | [diff] [blame] | 85 | status_t err; |
| 86 | |
| 87 | if (usage & GRALLOC_USAGE_HW_MASK) { |
| 88 | err = mAllocDev->alloc(mAllocDev, w, h, format, usage, handle, stride); |
| 89 | } else { |
| 90 | err = sw_gralloc_handle_t::alloc(w, h, format, usage, handle, stride); |
| 91 | } |
Mathias Agopian | 9779b221 | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 92 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 93 | LOGW_IF(err, "alloc(%u, %u, %d, %08x, ...) failed %d (%s)", |
| 94 | w, h, format, usage, err, strerror(-err)); |
| 95 | |
| 96 | if (err == NO_ERROR) { |
| 97 | Mutex::Autolock _l(sLock); |
| 98 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
| 99 | alloc_rec_t rec; |
| 100 | rec.w = w; |
| 101 | rec.h = h; |
Mathias Agopian | 67bbac8 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 102 | rec.s = *stride; |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 103 | rec.format = format; |
| 104 | rec.usage = usage; |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 105 | rec.size = h * stride[0] * bytesPerPixel(format); |
| 106 | list.add(*handle, rec); |
Mathias Agopian | c4646e6 | 2009-09-27 18:44:09 -0700 | [diff] [blame] | 107 | } else { |
| 108 | String8 s; |
| 109 | dump(s); |
| 110 | LOGD("%s", s.string()); |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | return err; |
| 114 | } |
| 115 | |
Mathias Agopian | 6950e42 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 116 | status_t GraphicBufferAllocator::free(buffer_handle_t handle) |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 117 | { |
Mathias Agopian | 6f5f5a0 | 2009-10-05 18:19:57 -0700 | [diff] [blame] | 118 | status_t err; |
| 119 | if (sw_gralloc_handle_t::validate(handle) < 0) { |
| 120 | err = mAllocDev->free(mAllocDev, handle); |
| 121 | } else { |
| 122 | err = sw_gralloc_handle_t::free((sw_gralloc_handle_t*)handle); |
| 123 | } |
| 124 | |
Mathias Agopian | a6b40ba | 2009-04-15 18:34:24 -0700 | [diff] [blame] | 125 | LOGW_IF(err, "free(...) failed %d (%s)", err, strerror(-err)); |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 126 | if (err == NO_ERROR) { |
| 127 | Mutex::Autolock _l(sLock); |
| 128 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
| 129 | list.removeItem(handle); |
| 130 | } |
| 131 | |
| 132 | return err; |
| 133 | } |
| 134 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 135 | // --------------------------------------------------------------------------- |
| 136 | }; // namespace android |