The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 "Region" |
| 18 | |
Mathias Agopian | 72b0ffe | 2009-07-06 18:07:26 -0700 | [diff] [blame] | 19 | #include <limits.h> |
| 20 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 21 | #include <utils/Log.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | #include <utils/String8.h> |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 23 | #include <utils/CallStack.h> |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 24 | |
| 25 | #include <ui/Rect.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | #include <ui/Region.h> |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 27 | #include <ui/Point.h> |
| 28 | |
| 29 | #include <private/ui/RegionHelper.h> |
| 30 | |
| 31 | // ---------------------------------------------------------------------------- |
| 32 | #define VALIDATE_REGIONS (false) |
| 33 | #define VALIDATE_WITH_CORECG (false) |
| 34 | // ---------------------------------------------------------------------------- |
| 35 | |
| 36 | #if VALIDATE_WITH_CORECG |
| 37 | #include <core/SkRegion.h> |
| 38 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | |
| 40 | namespace android { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 41 | // ---------------------------------------------------------------------------- |
| 42 | |
| 43 | enum { |
| 44 | op_nand = region_operator<Rect>::op_nand, |
| 45 | op_and = region_operator<Rect>::op_and, |
| 46 | op_or = region_operator<Rect>::op_or, |
| 47 | op_xor = region_operator<Rect>::op_xor |
| 48 | }; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 49 | |
Chris Craik | 3e010f3 | 2013-02-25 19:12:47 -0800 | [diff] [blame] | 50 | enum { |
| 51 | direction_LTR, |
| 52 | direction_RTL |
| 53 | }; |
| 54 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 55 | // ---------------------------------------------------------------------------- |
| 56 | |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 57 | Region::Region() { |
| 58 | mStorage.add(Rect(0,0)); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | Region::Region(const Region& rhs) |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 62 | : mStorage(rhs.mStorage) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | { |
Mathias Agopian | d0b55c0 | 2011-03-16 23:18:07 -0700 | [diff] [blame] | 64 | #if VALIDATE_REGIONS |
| 65 | validate(rhs, "rhs copy-ctor"); |
| 66 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 67 | } |
| 68 | |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 69 | Region::Region(const Rect& rhs) { |
| 70 | mStorage.add(rhs); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | Region::~Region() |
| 74 | { |
| 75 | } |
| 76 | |
Chris Craik | 3e010f3 | 2013-02-25 19:12:47 -0800 | [diff] [blame] | 77 | /** |
| 78 | * Copy rects from the src vector into the dst vector, resolving vertical T-Junctions along the way |
| 79 | * |
| 80 | * First pass through, divideSpanRTL will be set because the 'previous span' (indexing into the dst |
| 81 | * vector) will be reversed. Each rectangle in the original list, starting from the bottom, will be |
| 82 | * compared with the span directly below, and subdivided as needed to resolve T-junctions. |
| 83 | * |
| 84 | * The resulting temporary vector will be a completely reversed copy of the original, without any |
| 85 | * bottom-up T-junctions. |
| 86 | * |
| 87 | * Second pass through, divideSpanRTL will be false since the previous span will index into the |
| 88 | * final, correctly ordered region buffer. Each rectangle will be compared with the span directly |
| 89 | * above it, and subdivided to resolve any remaining T-junctions. |
| 90 | */ |
| 91 | static void reverseRectsResolvingJunctions(const Rect* begin, const Rect* end, |
| 92 | Vector<Rect>& dst, int spanDirection) { |
| 93 | dst.clear(); |
| 94 | |
| 95 | const Rect* current = end - 1; |
| 96 | int lastTop = current->top; |
| 97 | |
| 98 | // add first span immediately |
| 99 | do { |
| 100 | dst.add(*current); |
| 101 | current--; |
| 102 | } while (current->top == lastTop && current >= begin); |
| 103 | |
| 104 | unsigned int beginLastSpan = -1; |
| 105 | unsigned int endLastSpan = -1; |
| 106 | int top = -1; |
| 107 | int bottom = -1; |
| 108 | |
| 109 | // for all other spans, split if a t-junction exists in the span directly above |
| 110 | while (current >= begin) { |
| 111 | if (current->top != (current + 1)->top) { |
| 112 | // new span |
| 113 | if ((spanDirection == direction_RTL && current->bottom != (current + 1)->top) || |
| 114 | (spanDirection == direction_LTR && current->top != (current + 1)->bottom)) { |
| 115 | // previous span not directly adjacent, don't check for T junctions |
| 116 | beginLastSpan = INT_MAX; |
| 117 | } else { |
| 118 | beginLastSpan = endLastSpan + 1; |
| 119 | } |
| 120 | endLastSpan = dst.size() - 1; |
| 121 | |
| 122 | top = current->top; |
| 123 | bottom = current->bottom; |
| 124 | } |
| 125 | int left = current->left; |
| 126 | int right = current->right; |
| 127 | |
| 128 | for (unsigned int prevIndex = beginLastSpan; prevIndex <= endLastSpan; prevIndex++) { |
| 129 | const Rect* prev = &dst[prevIndex]; |
| 130 | if (spanDirection == direction_RTL) { |
| 131 | // iterating over previous span RTL, quit if it's too far left |
| 132 | if (prev->right <= left) break; |
| 133 | |
| 134 | if (prev->right > left && prev->right < right) { |
| 135 | dst.add(Rect(prev->right, top, right, bottom)); |
| 136 | right = prev->right; |
| 137 | } |
| 138 | |
| 139 | if (prev->left > left && prev->left < right) { |
| 140 | dst.add(Rect(prev->left, top, right, bottom)); |
| 141 | right = prev->left; |
| 142 | } |
| 143 | |
| 144 | // if an entry in the previous span is too far right, nothing further left in the |
| 145 | // current span will need it |
| 146 | if (prev->left >= right) { |
| 147 | beginLastSpan = prevIndex; |
| 148 | } |
| 149 | } else { |
| 150 | // iterating over previous span LTR, quit if it's too far right |
| 151 | if (prev->left >= right) break; |
| 152 | |
| 153 | if (prev->left > left && prev->left < right) { |
| 154 | dst.add(Rect(left, top, prev->left, bottom)); |
| 155 | left = prev->left; |
| 156 | } |
| 157 | |
| 158 | if (prev->right > left && prev->right < right) { |
| 159 | dst.add(Rect(left, top, prev->right, bottom)); |
| 160 | left = prev->right; |
| 161 | } |
| 162 | // if an entry in the previous span is too far left, nothing further right in the |
| 163 | // current span will need it |
| 164 | if (prev->right <= left) { |
| 165 | beginLastSpan = prevIndex; |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | if (left < right) { |
| 171 | dst.add(Rect(left, top, right, bottom)); |
| 172 | } |
| 173 | |
| 174 | current--; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Creates a new region with the same data as the argument, but divides rectangles as necessary to |
| 180 | * remove T-Junctions |
| 181 | * |
| 182 | * Note: the output will not necessarily be a very efficient representation of the region, since it |
| 183 | * may be that a triangle-based approach would generate significantly simpler geometry |
| 184 | */ |
| 185 | Region Region::createTJunctionFreeRegion(const Region& r) { |
| 186 | if (r.isEmpty()) return r; |
| 187 | if (r.isRect()) return r; |
| 188 | |
| 189 | Vector<Rect> reversed; |
| 190 | reverseRectsResolvingJunctions(r.begin(), r.end(), reversed, direction_RTL); |
| 191 | |
| 192 | Region outputRegion; |
| 193 | reverseRectsResolvingJunctions(reversed.begin(), reversed.end(), |
| 194 | outputRegion.mStorage, direction_LTR); |
| 195 | outputRegion.mStorage.add(r.getBounds()); // to make region valid, mStorage must end with bounds |
| 196 | |
| 197 | #if VALIDATE_REGIONS |
| 198 | validate(outputRegion, "T-Junction free region"); |
| 199 | #endif |
| 200 | |
| 201 | return outputRegion; |
| 202 | } |
| 203 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 204 | Region& Region::operator = (const Region& rhs) |
| 205 | { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 206 | #if VALIDATE_REGIONS |
Mathias Agopian | d0b55c0 | 2011-03-16 23:18:07 -0700 | [diff] [blame] | 207 | validate(*this, "this->operator="); |
| 208 | validate(rhs, "rhs.operator="); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 209 | #endif |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 210 | mStorage = rhs.mStorage; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 211 | return *this; |
| 212 | } |
| 213 | |
Mathias Agopian | 9f96145 | 2009-06-29 18:46:37 -0700 | [diff] [blame] | 214 | Region& Region::makeBoundsSelf() |
| 215 | { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 216 | if (mStorage.size() >= 2) { |
| 217 | const Rect bounds(getBounds()); |
| 218 | mStorage.clear(); |
| 219 | mStorage.add(bounds); |
| 220 | } |
Mathias Agopian | 9f96145 | 2009-06-29 18:46:37 -0700 | [diff] [blame] | 221 | return *this; |
| 222 | } |
| 223 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 224 | void Region::clear() |
| 225 | { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 226 | mStorage.clear(); |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 227 | mStorage.add(Rect(0,0)); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | void Region::set(const Rect& r) |
| 231 | { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 232 | mStorage.clear(); |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 233 | mStorage.add(r); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 234 | } |
| 235 | |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 236 | void Region::set(uint32_t w, uint32_t h) |
| 237 | { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 238 | mStorage.clear(); |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 239 | mStorage.add(Rect(w,h)); |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 240 | } |
| 241 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | // ---------------------------------------------------------------------------- |
| 243 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 244 | void Region::addRectUnchecked(int l, int t, int r, int b) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 | { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 246 | Rect rect(l,t,r,b); |
| 247 | size_t where = mStorage.size() - 1; |
| 248 | mStorage.insertAt(rect, where, 1); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 249 | } |
| 250 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 251 | // ---------------------------------------------------------------------------- |
| 252 | |
| 253 | Region& Region::orSelf(const Rect& r) { |
| 254 | return operationSelf(r, op_or); |
| 255 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 256 | Region& Region::xorSelf(const Rect& r) { |
| 257 | return operationSelf(r, op_xor); |
| 258 | } |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 259 | Region& Region::andSelf(const Rect& r) { |
| 260 | return operationSelf(r, op_and); |
| 261 | } |
| 262 | Region& Region::subtractSelf(const Rect& r) { |
| 263 | return operationSelf(r, op_nand); |
| 264 | } |
| 265 | Region& Region::operationSelf(const Rect& r, int op) { |
| 266 | Region lhs(*this); |
| 267 | boolean_operation(op, *this, lhs, r); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 | return *this; |
| 269 | } |
| 270 | |
| 271 | // ---------------------------------------------------------------------------- |
| 272 | |
| 273 | Region& Region::orSelf(const Region& rhs) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 274 | return operationSelf(rhs, op_or); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 275 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 276 | Region& Region::xorSelf(const Region& rhs) { |
| 277 | return operationSelf(rhs, op_xor); |
| 278 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 279 | Region& Region::andSelf(const Region& rhs) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 280 | return operationSelf(rhs, op_and); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 281 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 282 | Region& Region::subtractSelf(const Region& rhs) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 283 | return operationSelf(rhs, op_nand); |
| 284 | } |
| 285 | Region& Region::operationSelf(const Region& rhs, int op) { |
| 286 | Region lhs(*this); |
| 287 | boolean_operation(op, *this, lhs, rhs); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 288 | return *this; |
| 289 | } |
| 290 | |
| 291 | Region& Region::translateSelf(int x, int y) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 292 | if (x|y) translate(*this, x, y); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 293 | return *this; |
| 294 | } |
| 295 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 296 | // ---------------------------------------------------------------------------- |
| 297 | |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 298 | const Region Region::merge(const Rect& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 299 | return operation(rhs, op_or); |
| 300 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 301 | const Region Region::mergeExclusive(const Rect& rhs) const { |
| 302 | return operation(rhs, op_xor); |
| 303 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 304 | const Region Region::intersect(const Rect& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 305 | return operation(rhs, op_and); |
| 306 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 307 | const Region Region::subtract(const Rect& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 308 | return operation(rhs, op_nand); |
| 309 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 310 | const Region Region::operation(const Rect& rhs, int op) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 311 | Region result; |
| 312 | boolean_operation(op, result, *this, rhs); |
| 313 | return result; |
| 314 | } |
| 315 | |
| 316 | // ---------------------------------------------------------------------------- |
| 317 | |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 318 | const Region Region::merge(const Region& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 319 | return operation(rhs, op_or); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 320 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 321 | const Region Region::mergeExclusive(const Region& rhs) const { |
| 322 | return operation(rhs, op_xor); |
| 323 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 324 | const Region Region::intersect(const Region& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 325 | return operation(rhs, op_and); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 326 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 327 | const Region Region::subtract(const Region& rhs) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 328 | return operation(rhs, op_nand); |
| 329 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 330 | const Region Region::operation(const Region& rhs, int op) const { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 331 | Region result; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 332 | boolean_operation(op, result, *this, rhs); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 333 | return result; |
| 334 | } |
| 335 | |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 336 | const Region Region::translate(int x, int y) const { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 337 | Region result; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 338 | translate(result, *this, x, y); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 339 | return result; |
| 340 | } |
| 341 | |
| 342 | // ---------------------------------------------------------------------------- |
| 343 | |
| 344 | Region& Region::orSelf(const Region& rhs, int dx, int dy) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 345 | return operationSelf(rhs, dx, dy, op_or); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 346 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 347 | Region& Region::xorSelf(const Region& rhs, int dx, int dy) { |
| 348 | return operationSelf(rhs, dx, dy, op_xor); |
| 349 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 350 | Region& Region::andSelf(const Region& rhs, int dx, int dy) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 351 | return operationSelf(rhs, dx, dy, op_and); |
| 352 | } |
| 353 | Region& Region::subtractSelf(const Region& rhs, int dx, int dy) { |
| 354 | return operationSelf(rhs, dx, dy, op_nand); |
| 355 | } |
| 356 | Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) { |
| 357 | Region lhs(*this); |
| 358 | boolean_operation(op, *this, lhs, rhs, dx, dy); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 359 | return *this; |
| 360 | } |
| 361 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 362 | // ---------------------------------------------------------------------------- |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 363 | |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 364 | const Region Region::merge(const Region& rhs, int dx, int dy) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 365 | return operation(rhs, dx, dy, op_or); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 366 | } |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 367 | const Region Region::mergeExclusive(const Region& rhs, int dx, int dy) const { |
| 368 | return operation(rhs, dx, dy, op_xor); |
| 369 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 370 | const Region Region::intersect(const Region& rhs, int dx, int dy) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 371 | return operation(rhs, dx, dy, op_and); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 372 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 373 | const Region Region::subtract(const Region& rhs, int dx, int dy) const { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 374 | return operation(rhs, dx, dy, op_nand); |
| 375 | } |
Mathias Agopian | bed9dd1 | 2009-05-27 17:01:58 -0700 | [diff] [blame] | 376 | const Region Region::operation(const Region& rhs, int dx, int dy, int op) const { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 377 | Region result; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 378 | boolean_operation(op, result, *this, rhs, dx, dy); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 379 | return result; |
| 380 | } |
| 381 | |
| 382 | // ---------------------------------------------------------------------------- |
| 383 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 384 | // This is our region rasterizer, which merges rects and spans together |
| 385 | // to obtain an optimal region. |
| 386 | class Region::rasterizer : public region_operator<Rect>::region_rasterizer |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 387 | { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 388 | Rect bounds; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 389 | Vector<Rect>& storage; |
| 390 | Rect* head; |
| 391 | Rect* tail; |
| 392 | Vector<Rect> span; |
| 393 | Rect* cur; |
| 394 | public: |
| 395 | rasterizer(Region& reg) |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 396 | : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 397 | storage.clear(); |
| 398 | } |
| 399 | |
| 400 | ~rasterizer() { |
| 401 | if (span.size()) { |
| 402 | flushSpan(); |
| 403 | } |
| 404 | if (storage.size()) { |
| 405 | bounds.top = storage.itemAt(0).top; |
| 406 | bounds.bottom = storage.top().bottom; |
| 407 | if (storage.size() == 1) { |
| 408 | storage.clear(); |
| 409 | } |
| 410 | } else { |
| 411 | bounds.left = 0; |
| 412 | bounds.right = 0; |
| 413 | } |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 414 | storage.add(bounds); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | virtual void operator()(const Rect& rect) { |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 418 | //ALOGD(">>> %3d, %3d, %3d, %3d", |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 419 | // rect.left, rect.top, rect.right, rect.bottom); |
| 420 | if (span.size()) { |
| 421 | if (cur->top != rect.top) { |
| 422 | flushSpan(); |
| 423 | } else if (cur->right == rect.left) { |
| 424 | cur->right = rect.right; |
| 425 | return; |
| 426 | } |
| 427 | } |
| 428 | span.add(rect); |
| 429 | cur = span.editArray() + (span.size() - 1); |
| 430 | } |
| 431 | private: |
| 432 | template<typename T> |
| 433 | static inline T min(T rhs, T lhs) { return rhs < lhs ? rhs : lhs; } |
| 434 | template<typename T> |
| 435 | static inline T max(T rhs, T lhs) { return rhs > lhs ? rhs : lhs; } |
| 436 | void flushSpan() { |
| 437 | bool merge = false; |
| 438 | if (tail-head == ssize_t(span.size())) { |
Romain Guy | b801624 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 439 | Rect const* p = span.editArray(); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 440 | Rect const* q = head; |
| 441 | if (p->top == q->bottom) { |
| 442 | merge = true; |
| 443 | while (q != tail) { |
| 444 | if ((p->left != q->left) || (p->right != q->right)) { |
| 445 | merge = false; |
| 446 | break; |
| 447 | } |
| 448 | p++, q++; |
| 449 | } |
| 450 | } |
| 451 | } |
| 452 | if (merge) { |
| 453 | const int bottom = span[0].bottom; |
| 454 | Rect* r = head; |
| 455 | while (r != tail) { |
| 456 | r->bottom = bottom; |
| 457 | r++; |
| 458 | } |
| 459 | } else { |
| 460 | bounds.left = min(span.itemAt(0).left, bounds.left); |
| 461 | bounds.right = max(span.top().right, bounds.right); |
| 462 | storage.appendVector(span); |
| 463 | tail = storage.editArray() + storage.size(); |
| 464 | head = tail - span.size(); |
| 465 | } |
| 466 | span.clear(); |
| 467 | } |
| 468 | }; |
| 469 | |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 470 | bool Region::validate(const Region& reg, const char* name, bool silent) |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 471 | { |
| 472 | bool result = true; |
| 473 | const_iterator cur = reg.begin(); |
| 474 | const_iterator const tail = reg.end(); |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 475 | const_iterator prev = cur; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 476 | Rect b(*prev); |
| 477 | while (cur != tail) { |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 478 | if (cur->isValid() == false) { |
| 479 | ALOGE_IF(!silent, "%s: region contains an invalid Rect", name); |
| 480 | result = false; |
| 481 | } |
| 482 | if (cur->right > region_operator<Rect>::max_value) { |
| 483 | ALOGE_IF(!silent, "%s: rect->right > max_value", name); |
| 484 | result = false; |
| 485 | } |
| 486 | if (cur->bottom > region_operator<Rect>::max_value) { |
| 487 | ALOGE_IF(!silent, "%s: rect->right > max_value", name); |
| 488 | result = false; |
| 489 | } |
| 490 | if (prev != cur) { |
| 491 | b.left = b.left < cur->left ? b.left : cur->left; |
| 492 | b.top = b.top < cur->top ? b.top : cur->top; |
| 493 | b.right = b.right > cur->right ? b.right : cur->right; |
| 494 | b.bottom = b.bottom > cur->bottom ? b.bottom : cur->bottom; |
| 495 | if ((*prev < *cur) == false) { |
| 496 | ALOGE_IF(!silent, "%s: region's Rects not sorted", name); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 497 | result = false; |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 498 | } |
| 499 | if (cur->top == prev->top) { |
| 500 | if (cur->bottom != prev->bottom) { |
| 501 | ALOGE_IF(!silent, "%s: invalid span %p", name, cur); |
| 502 | result = false; |
| 503 | } else if (cur->left < prev->right) { |
| 504 | ALOGE_IF(!silent, |
| 505 | "%s: spans overlap horizontally prev=%p, cur=%p", |
| 506 | name, prev, cur); |
| 507 | result = false; |
| 508 | } |
| 509 | } else if (cur->top < prev->bottom) { |
| 510 | ALOGE_IF(!silent, |
| 511 | "%s: spans overlap vertically prev=%p, cur=%p", |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 512 | name, prev, cur); |
| 513 | result = false; |
| 514 | } |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 515 | prev = cur; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 516 | } |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 517 | cur++; |
| 518 | } |
| 519 | if (b != reg.getBounds()) { |
| 520 | result = false; |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 521 | ALOGE_IF(!silent, |
| 522 | "%s: invalid bounds [%d,%d,%d,%d] vs. [%d,%d,%d,%d]", name, |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 523 | b.left, b.top, b.right, b.bottom, |
| 524 | reg.getBounds().left, reg.getBounds().top, |
| 525 | reg.getBounds().right, reg.getBounds().bottom); |
| 526 | } |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 527 | if (reg.mStorage.size() == 2) { |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 528 | result = false; |
| 529 | ALOGE_IF(!silent, "%s: mStorage size is 2, which is never valid", name); |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 530 | } |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 531 | if (result == false && !silent) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 532 | reg.dump(name); |
Mathias Agopian | cab25d6 | 2013-03-21 17:12:40 -0700 | [diff] [blame] | 533 | CallStack stack(LOG_TAG); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 534 | } |
| 535 | return result; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 536 | } |
| 537 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 538 | void Region::boolean_operation(int op, Region& dst, |
| 539 | const Region& lhs, |
| 540 | const Region& rhs, int dx, int dy) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 541 | { |
Mathias Agopian | d0b55c0 | 2011-03-16 23:18:07 -0700 | [diff] [blame] | 542 | #if VALIDATE_REGIONS |
| 543 | validate(lhs, "boolean_operation (before): lhs"); |
| 544 | validate(rhs, "boolean_operation (before): rhs"); |
| 545 | validate(dst, "boolean_operation (before): dst"); |
| 546 | #endif |
| 547 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 548 | size_t lhs_count; |
| 549 | Rect const * const lhs_rects = lhs.getArray(&lhs_count); |
| 550 | |
| 551 | size_t rhs_count; |
| 552 | Rect const * const rhs_rects = rhs.getArray(&rhs_count); |
| 553 | |
| 554 | region_operator<Rect>::region lhs_region(lhs_rects, lhs_count); |
| 555 | region_operator<Rect>::region rhs_region(rhs_rects, rhs_count, dx, dy); |
| 556 | region_operator<Rect> operation(op, lhs_region, rhs_region); |
| 557 | { // scope for rasterizer (dtor has side effects) |
| 558 | rasterizer r(dst); |
| 559 | operation(r); |
| 560 | } |
| 561 | |
| 562 | #if VALIDATE_REGIONS |
| 563 | validate(lhs, "boolean_operation: lhs"); |
| 564 | validate(rhs, "boolean_operation: rhs"); |
| 565 | validate(dst, "boolean_operation: dst"); |
| 566 | #endif |
| 567 | |
| 568 | #if VALIDATE_WITH_CORECG |
| 569 | SkRegion sk_lhs; |
| 570 | SkRegion sk_rhs; |
| 571 | SkRegion sk_dst; |
| 572 | |
| 573 | for (size_t i=0 ; i<lhs_count ; i++) |
| 574 | sk_lhs.op( |
| 575 | lhs_rects[i].left + dx, |
| 576 | lhs_rects[i].top + dy, |
| 577 | lhs_rects[i].right + dx, |
| 578 | lhs_rects[i].bottom + dy, |
| 579 | SkRegion::kUnion_Op); |
| 580 | |
| 581 | for (size_t i=0 ; i<rhs_count ; i++) |
| 582 | sk_rhs.op( |
| 583 | rhs_rects[i].left + dx, |
| 584 | rhs_rects[i].top + dy, |
| 585 | rhs_rects[i].right + dx, |
| 586 | rhs_rects[i].bottom + dy, |
| 587 | SkRegion::kUnion_Op); |
| 588 | |
| 589 | const char* name = "---"; |
| 590 | SkRegion::Op sk_op; |
| 591 | switch (op) { |
| 592 | case op_or: sk_op = SkRegion::kUnion_Op; name="OR"; break; |
Romain Guy | b8a2e98 | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 593 | case op_xor: sk_op = SkRegion::kUnion_XOR; name="XOR"; break; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 594 | case op_and: sk_op = SkRegion::kIntersect_Op; name="AND"; break; |
| 595 | case op_nand: sk_op = SkRegion::kDifference_Op; name="NAND"; break; |
| 596 | } |
| 597 | sk_dst.op(sk_lhs, sk_rhs, sk_op); |
| 598 | |
| 599 | if (sk_dst.isEmpty() && dst.isEmpty()) |
| 600 | return; |
| 601 | |
| 602 | bool same = true; |
| 603 | Region::const_iterator head = dst.begin(); |
| 604 | Region::const_iterator const tail = dst.end(); |
| 605 | SkRegion::Iterator it(sk_dst); |
| 606 | while (!it.done()) { |
| 607 | if (head != tail) { |
| 608 | if ( |
| 609 | head->left != it.rect().fLeft || |
| 610 | head->top != it.rect().fTop || |
| 611 | head->right != it.rect().fRight || |
| 612 | head->bottom != it.rect().fBottom |
| 613 | ) { |
| 614 | same = false; |
| 615 | break; |
| 616 | } |
| 617 | } else { |
| 618 | same = false; |
| 619 | break; |
| 620 | } |
| 621 | head++; |
| 622 | it.next(); |
| 623 | } |
| 624 | |
| 625 | if (head != tail) { |
| 626 | same = false; |
| 627 | } |
| 628 | |
| 629 | if(!same) { |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 630 | ALOGD("---\nregion boolean %s failed", name); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 631 | lhs.dump("lhs"); |
| 632 | rhs.dump("rhs"); |
| 633 | dst.dump("dst"); |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 634 | ALOGD("should be"); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 635 | SkRegion::Iterator it(sk_dst); |
| 636 | while (!it.done()) { |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 637 | ALOGD(" [%3d, %3d, %3d, %3d]", |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 638 | it.rect().fLeft, |
| 639 | it.rect().fTop, |
| 640 | it.rect().fRight, |
| 641 | it.rect().fBottom); |
| 642 | it.next(); |
| 643 | } |
| 644 | } |
| 645 | #endif |
| 646 | } |
| 647 | |
| 648 | void Region::boolean_operation(int op, Region& dst, |
| 649 | const Region& lhs, |
| 650 | const Rect& rhs, int dx, int dy) |
| 651 | { |
Mathias Agopian | 0450452 | 2011-09-19 16:12:08 -0700 | [diff] [blame] | 652 | if (!rhs.isValid()) { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 653 | ALOGE("Region::boolean_operation(op=%d) invalid Rect={%d,%d,%d,%d}", |
Mathias Agopian | 0450452 | 2011-09-19 16:12:08 -0700 | [diff] [blame] | 654 | op, rhs.left, rhs.top, rhs.right, rhs.bottom); |
Mathias Agopian | 0857c8f | 2011-09-26 15:58:20 -0700 | [diff] [blame] | 655 | return; |
Mathias Agopian | 0450452 | 2011-09-19 16:12:08 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 658 | #if VALIDATE_WITH_CORECG || VALIDATE_REGIONS |
| 659 | boolean_operation(op, dst, lhs, Region(rhs), dx, dy); |
| 660 | #else |
| 661 | size_t lhs_count; |
| 662 | Rect const * const lhs_rects = lhs.getArray(&lhs_count); |
| 663 | |
| 664 | region_operator<Rect>::region lhs_region(lhs_rects, lhs_count); |
| 665 | region_operator<Rect>::region rhs_region(&rhs, 1, dx, dy); |
| 666 | region_operator<Rect> operation(op, lhs_region, rhs_region); |
| 667 | { // scope for rasterizer (dtor has side effects) |
| 668 | rasterizer r(dst); |
| 669 | operation(r); |
| 670 | } |
| 671 | |
| 672 | #endif |
| 673 | } |
| 674 | |
| 675 | void Region::boolean_operation(int op, Region& dst, |
| 676 | const Region& lhs, const Region& rhs) |
| 677 | { |
| 678 | boolean_operation(op, dst, lhs, rhs, 0, 0); |
| 679 | } |
| 680 | |
| 681 | void Region::boolean_operation(int op, Region& dst, |
| 682 | const Region& lhs, const Rect& rhs) |
| 683 | { |
| 684 | boolean_operation(op, dst, lhs, rhs, 0, 0); |
| 685 | } |
| 686 | |
| 687 | void Region::translate(Region& reg, int dx, int dy) |
| 688 | { |
Mathias Agopian | 4c0a170 | 2012-08-31 12:45:33 -0700 | [diff] [blame] | 689 | if ((dx || dy) && !reg.isEmpty()) { |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 690 | #if VALIDATE_REGIONS |
| 691 | validate(reg, "translate (before)"); |
| 692 | #endif |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 693 | size_t count = reg.mStorage.size(); |
| 694 | Rect* rects = reg.mStorage.editArray(); |
| 695 | while (count) { |
| 696 | rects->translate(dx, dy); |
| 697 | rects++; |
| 698 | count--; |
| 699 | } |
| 700 | #if VALIDATE_REGIONS |
| 701 | validate(reg, "translate (after)"); |
| 702 | #endif |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | void Region::translate(Region& dst, const Region& reg, int dx, int dy) |
| 707 | { |
| 708 | dst = reg; |
| 709 | translate(dst, dx, dy); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | // ---------------------------------------------------------------------------- |
| 713 | |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 714 | size_t Region::getSize() const { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 715 | return mStorage.size() * sizeof(Rect); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | status_t Region::flatten(void* buffer) const { |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 719 | #if VALIDATE_REGIONS |
| 720 | validate(*this, "Region::flatten"); |
| 721 | #endif |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 722 | Rect* rects = reinterpret_cast<Rect*>(buffer); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 723 | memcpy(rects, mStorage.array(), mStorage.size() * sizeof(Rect)); |
| 724 | return NO_ERROR; |
| 725 | } |
| 726 | |
| 727 | status_t Region::unflatten(void const* buffer, size_t size) { |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 728 | Region result; |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 729 | if (size >= sizeof(Rect)) { |
| 730 | Rect const* rects = reinterpret_cast<Rect const*>(buffer); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 731 | size_t count = size / sizeof(Rect); |
| 732 | if (count > 0) { |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 733 | result.mStorage.clear(); |
| 734 | ssize_t err = result.mStorage.insertAt(0, count); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 735 | if (err < 0) { |
| 736 | return status_t(err); |
| 737 | } |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 738 | memcpy(result.mStorage.editArray(), rects, count*sizeof(Rect)); |
Mathias Agopian | b612142 | 2010-02-17 20:22:26 -0800 | [diff] [blame] | 739 | } |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 740 | } |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 741 | #if VALIDATE_REGIONS |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 742 | validate(result, "Region::unflatten"); |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 743 | #endif |
Mathias Agopian | 068d47f | 2012-09-11 18:56:23 -0700 | [diff] [blame] | 744 | |
| 745 | if (!result.validate(result, "Region::unflatten", true)) { |
| 746 | ALOGE("Region::unflatten() failed, invalid region"); |
| 747 | return BAD_VALUE; |
| 748 | } |
| 749 | mStorage = result.mStorage; |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 750 | return NO_ERROR; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 751 | } |
| 752 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 753 | // ---------------------------------------------------------------------------- |
| 754 | |
| 755 | Region::const_iterator Region::begin() const { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 756 | return mStorage.array(); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | Region::const_iterator Region::end() const { |
Mathias Agopian | 3ab6855 | 2012-08-31 14:31:40 -0700 | [diff] [blame] | 760 | size_t numRects = isRect() ? 1 : mStorage.size() - 1; |
| 761 | return mStorage.array() + numRects; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | Rect const* Region::getArray(size_t* count) const { |
| 765 | const_iterator const b(begin()); |
| 766 | const_iterator const e(end()); |
| 767 | if (count) *count = e-b; |
| 768 | return b; |
| 769 | } |
| 770 | |
Mathias Agopian | 2401ead | 2012-08-31 15:41:24 -0700 | [diff] [blame] | 771 | SharedBuffer const* Region::getSharedBuffer(size_t* count) const { |
| 772 | // We can get to the SharedBuffer of a Vector<Rect> because Rect has |
| 773 | // a trivial destructor. |
| 774 | SharedBuffer const* sb = SharedBuffer::bufferFromData(mStorage.array()); |
| 775 | if (count) { |
| 776 | size_t numRects = isRect() ? 1 : mStorage.size() - 1; |
| 777 | count[0] = numRects; |
| 778 | } |
| 779 | sb->acquire(); |
| 780 | return sb; |
| 781 | } |
| 782 | |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 783 | // ---------------------------------------------------------------------------- |
| 784 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 785 | void Region::dump(String8& out, const char* what, uint32_t flags) const |
| 786 | { |
| 787 | (void)flags; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 788 | const_iterator head = begin(); |
| 789 | const_iterator const tail = end(); |
| 790 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 791 | size_t SIZE = 256; |
| 792 | char buffer[SIZE]; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 793 | |
| 794 | snprintf(buffer, SIZE, " Region %s (this=%p, count=%d)\n", |
| 795 | what, this, tail-head); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 796 | out.append(buffer); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 797 | while (head != tail) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 798 | snprintf(buffer, SIZE, " [%3d, %3d, %3d, %3d]\n", |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 799 | head->left, head->top, head->right, head->bottom); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 800 | out.append(buffer); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 801 | head++; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 802 | } |
| 803 | } |
| 804 | |
| 805 | void Region::dump(const char* what, uint32_t flags) const |
| 806 | { |
| 807 | (void)flags; |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 808 | const_iterator head = begin(); |
| 809 | const_iterator const tail = end(); |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 810 | ALOGD(" Region %s (this=%p, count=%d)\n", what, this, tail-head); |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 811 | while (head != tail) { |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 812 | ALOGD(" [%3d, %3d, %3d, %3d]\n", |
Mathias Agopian | 20f6878 | 2009-05-11 00:03:41 -0700 | [diff] [blame] | 813 | head->left, head->top, head->right, head->bottom); |
| 814 | head++; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 815 | } |
| 816 | } |
| 817 | |
| 818 | // ---------------------------------------------------------------------------- |
| 819 | |
| 820 | }; // namespace android |