Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | #define LOG_TAG "OpenGLRenderer" |
| 18 | |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 19 | #include <utils/threads.h> |
| 20 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 21 | #include "PathCache.h" |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 22 | #include "Properties.h" |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 23 | |
| 24 | namespace android { |
| 25 | namespace uirenderer { |
| 26 | |
| 27 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | ff26a0c | 2011-01-20 11:35:46 -0800 | [diff] [blame] | 28 | // Path cache |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 29 | /////////////////////////////////////////////////////////////////////////////// |
| 30 | |
Romain Guy | ff26a0c | 2011-01-20 11:35:46 -0800 | [diff] [blame] | 31 | PathCache::PathCache(): ShapeCache<PathCacheEntry>("path", |
| 32 | PROPERTY_PATH_CACHE_SIZE, DEFAULT_PATH_CACHE_SIZE) { |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 33 | } |
| 34 | |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 35 | void PathCache::remove(SkPath* path) { |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 36 | // TODO: Linear search... |
Jeff Brown | d9e688c | 2011-11-11 15:40:13 -0800 | [diff] [blame] | 37 | Vector<size_t> pathsToRemove; |
| 38 | for (size_t i = 0; i < mCache.size(); i++) { |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 39 | if (mCache.getKeyAt(i).path == path) { |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 40 | pathsToRemove.push(i); |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 41 | removeTexture(mCache.getValueAt(i)); |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 42 | } |
| 43 | } |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 44 | |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 45 | mCache.setOnEntryRemovedListener(NULL); |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 46 | for (size_t i = 0; i < pathsToRemove.size(); i++) { |
Romain Guy | 7b8b758 | 2011-02-24 19:52:37 -0800 | [diff] [blame] | 47 | // This will work because pathsToRemove is sorted |
| 48 | // and because the cache is a sorted keyed vector |
| 49 | mCache.removeAt(pathsToRemove.itemAt(i) - i); |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 50 | } |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 51 | mCache.setOnEntryRemovedListener(this); |
| 52 | } |
| 53 | |
| 54 | void PathCache::removeDeferred(SkPath* path) { |
| 55 | Mutex::Autolock _l(mLock); |
| 56 | mGarbage.push(path); |
| 57 | } |
| 58 | |
| 59 | void PathCache::clearGarbage() { |
| 60 | Mutex::Autolock _l(mLock); |
| 61 | size_t count = mGarbage.size(); |
| 62 | for (size_t i = 0; i < count; i++) { |
| 63 | remove(mGarbage.itemAt(i)); |
| 64 | } |
| 65 | mGarbage.clear(); |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 68 | PathTexture* PathCache::get(SkPath* path, SkPaint* paint) { |
| 69 | PathCacheEntry entry(path, paint); |
| 70 | PathTexture* texture = mCache.get(entry); |
| 71 | |
| 72 | if (!texture) { |
| 73 | texture = addTexture(entry, path, paint); |
| 74 | } else if (path->getGenerationID() != texture->generation) { |
| 75 | mCache.remove(entry); |
| 76 | texture = addTexture(entry, path, paint); |
| 77 | } |
| 78 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 79 | return texture; |
| 80 | } |
| 81 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 82 | }; // namespace uirenderer |
| 83 | }; // namespace android |