blob: 2569ae174be3845330cf46e7c87ae788d973a614 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
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 Agopian72b0ffe2009-07-06 18:07:26 -070019#include <limits.h>
20
Mathias Agopian20f68782009-05-11 00:03:41 -070021#include <utils/Log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080022#include <utils/String8.h>
Mathias Agopian20f68782009-05-11 00:03:41 -070023
24#include <ui/Rect.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080025#include <ui/Region.h>
Mathias Agopian20f68782009-05-11 00:03:41 -070026#include <ui/Point.h>
27
28#include <private/ui/RegionHelper.h>
29
30// ----------------------------------------------------------------------------
31#define VALIDATE_REGIONS (false)
32#define VALIDATE_WITH_CORECG (false)
33// ----------------------------------------------------------------------------
34
35#if VALIDATE_WITH_CORECG
36#include <core/SkRegion.h>
37#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038
39namespace android {
Mathias Agopian20f68782009-05-11 00:03:41 -070040// ----------------------------------------------------------------------------
41
42enum {
43 op_nand = region_operator<Rect>::op_nand,
44 op_and = region_operator<Rect>::op_and,
45 op_or = region_operator<Rect>::op_or,
46 op_xor = region_operator<Rect>::op_xor
47};
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048
49// ----------------------------------------------------------------------------
50
51Region::Region()
Mathias Agopian20f68782009-05-11 00:03:41 -070052 : mBounds(0,0)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053{
54}
55
56Region::Region(const Region& rhs)
Mathias Agopian20f68782009-05-11 00:03:41 -070057 : mBounds(rhs.mBounds), mStorage(rhs.mStorage)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058{
Mathias Agopiand0b55c02011-03-16 23:18:07 -070059#if VALIDATE_REGIONS
60 validate(rhs, "rhs copy-ctor");
61#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080062}
63
Mathias Agopian20f68782009-05-11 00:03:41 -070064Region::Region(const Rect& rhs)
65 : mBounds(rhs)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066{
67}
68
69Region::~Region()
70{
71}
72
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080073Region& Region::operator = (const Region& rhs)
74{
Mathias Agopian20f68782009-05-11 00:03:41 -070075#if VALIDATE_REGIONS
Mathias Agopiand0b55c02011-03-16 23:18:07 -070076 validate(*this, "this->operator=");
77 validate(rhs, "rhs.operator=");
Mathias Agopian20f68782009-05-11 00:03:41 -070078#endif
79 mBounds = rhs.mBounds;
80 mStorage = rhs.mStorage;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080081 return *this;
82}
83
Mathias Agopian9f961452009-06-29 18:46:37 -070084Region& Region::makeBoundsSelf()
85{
86 mStorage.clear();
87 return *this;
88}
89
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090void Region::clear()
91{
Mathias Agopian20f68782009-05-11 00:03:41 -070092 mBounds.clear();
93 mStorage.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094}
95
96void Region::set(const Rect& r)
97{
Mathias Agopian20f68782009-05-11 00:03:41 -070098 mBounds = r;
99 mStorage.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800100}
101
Mathias Agopian0926f502009-05-04 14:17:04 -0700102void Region::set(uint32_t w, uint32_t h)
103{
Mathias Agopian20f68782009-05-11 00:03:41 -0700104 mBounds = Rect(int(w), int(h));
105 mStorage.clear();
Mathias Agopian0926f502009-05-04 14:17:04 -0700106}
107
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800108// ----------------------------------------------------------------------------
109
Mathias Agopian20f68782009-05-11 00:03:41 -0700110void Region::addRectUnchecked(int l, int t, int r, int b)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800111{
Mathias Agopian20f68782009-05-11 00:03:41 -0700112 mStorage.add(Rect(l,t,r,b));
113#if VALIDATE_REGIONS
114 validate(*this, "addRectUnchecked");
115#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800116}
117
Mathias Agopian20f68782009-05-11 00:03:41 -0700118// ----------------------------------------------------------------------------
119
120Region& Region::orSelf(const Rect& r) {
121 return operationSelf(r, op_or);
122}
Romain Guyb8a2e982012-02-07 17:04:34 -0800123Region& Region::xorSelf(const Rect& r) {
124 return operationSelf(r, op_xor);
125}
Mathias Agopian20f68782009-05-11 00:03:41 -0700126Region& Region::andSelf(const Rect& r) {
127 return operationSelf(r, op_and);
128}
129Region& Region::subtractSelf(const Rect& r) {
130 return operationSelf(r, op_nand);
131}
132Region& Region::operationSelf(const Rect& r, int op) {
133 Region lhs(*this);
134 boolean_operation(op, *this, lhs, r);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800135 return *this;
136}
137
138// ----------------------------------------------------------------------------
139
140Region& Region::orSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700141 return operationSelf(rhs, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800142}
Romain Guyb8a2e982012-02-07 17:04:34 -0800143Region& Region::xorSelf(const Region& rhs) {
144 return operationSelf(rhs, op_xor);
145}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800146Region& Region::andSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700147 return operationSelf(rhs, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800148}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800149Region& Region::subtractSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700150 return operationSelf(rhs, op_nand);
151}
152Region& Region::operationSelf(const Region& rhs, int op) {
153 Region lhs(*this);
154 boolean_operation(op, *this, lhs, rhs);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800155 return *this;
156}
157
158Region& Region::translateSelf(int x, int y) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700159 if (x|y) translate(*this, x, y);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800160 return *this;
161}
162
Mathias Agopian20f68782009-05-11 00:03:41 -0700163// ----------------------------------------------------------------------------
164
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700165const Region Region::merge(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700166 return operation(rhs, op_or);
167}
Romain Guyb8a2e982012-02-07 17:04:34 -0800168const Region Region::mergeExclusive(const Rect& rhs) const {
169 return operation(rhs, op_xor);
170}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700171const Region Region::intersect(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700172 return operation(rhs, op_and);
173}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700174const Region Region::subtract(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700175 return operation(rhs, op_nand);
176}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700177const Region Region::operation(const Rect& rhs, int op) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700178 Region result;
179 boolean_operation(op, result, *this, rhs);
180 return result;
181}
182
183// ----------------------------------------------------------------------------
184
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700185const Region Region::merge(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700186 return operation(rhs, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800187}
Romain Guyb8a2e982012-02-07 17:04:34 -0800188const Region Region::mergeExclusive(const Region& rhs) const {
189 return operation(rhs, op_xor);
190}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700191const Region Region::intersect(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700192 return operation(rhs, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800193}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700194const Region Region::subtract(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700195 return operation(rhs, op_nand);
196}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700197const Region Region::operation(const Region& rhs, int op) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800198 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700199 boolean_operation(op, result, *this, rhs);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800200 return result;
201}
202
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700203const Region Region::translate(int x, int y) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800204 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700205 translate(result, *this, x, y);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800206 return result;
207}
208
209// ----------------------------------------------------------------------------
210
211Region& Region::orSelf(const Region& rhs, int dx, int dy) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700212 return operationSelf(rhs, dx, dy, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800213}
Romain Guyb8a2e982012-02-07 17:04:34 -0800214Region& Region::xorSelf(const Region& rhs, int dx, int dy) {
215 return operationSelf(rhs, dx, dy, op_xor);
216}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800217Region& Region::andSelf(const Region& rhs, int dx, int dy) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700218 return operationSelf(rhs, dx, dy, op_and);
219}
220Region& Region::subtractSelf(const Region& rhs, int dx, int dy) {
221 return operationSelf(rhs, dx, dy, op_nand);
222}
223Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) {
224 Region lhs(*this);
225 boolean_operation(op, *this, lhs, rhs, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800226 return *this;
227}
228
Mathias Agopian20f68782009-05-11 00:03:41 -0700229// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700231const Region Region::merge(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700232 return operation(rhs, dx, dy, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800233}
Romain Guyb8a2e982012-02-07 17:04:34 -0800234const Region Region::mergeExclusive(const Region& rhs, int dx, int dy) const {
235 return operation(rhs, dx, dy, op_xor);
236}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700237const Region Region::intersect(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700238 return operation(rhs, dx, dy, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800239}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700240const Region Region::subtract(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700241 return operation(rhs, dx, dy, op_nand);
242}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700243const Region Region::operation(const Region& rhs, int dx, int dy, int op) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800244 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700245 boolean_operation(op, result, *this, rhs, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800246 return result;
247}
248
249// ----------------------------------------------------------------------------
250
Mathias Agopian20f68782009-05-11 00:03:41 -0700251// This is our region rasterizer, which merges rects and spans together
252// to obtain an optimal region.
253class Region::rasterizer : public region_operator<Rect>::region_rasterizer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800254{
Mathias Agopian20f68782009-05-11 00:03:41 -0700255 Rect& bounds;
256 Vector<Rect>& storage;
257 Rect* head;
258 Rect* tail;
259 Vector<Rect> span;
260 Rect* cur;
261public:
262 rasterizer(Region& reg)
263 : bounds(reg.mBounds), storage(reg.mStorage), head(), tail(), cur() {
264 bounds.top = bounds.bottom = 0;
265 bounds.left = INT_MAX;
266 bounds.right = INT_MIN;
267 storage.clear();
268 }
269
270 ~rasterizer() {
271 if (span.size()) {
272 flushSpan();
273 }
274 if (storage.size()) {
275 bounds.top = storage.itemAt(0).top;
276 bounds.bottom = storage.top().bottom;
277 if (storage.size() == 1) {
278 storage.clear();
279 }
280 } else {
281 bounds.left = 0;
282 bounds.right = 0;
283 }
284 }
285
286 virtual void operator()(const Rect& rect) {
Steve Block9d453682011-12-20 16:23:08 +0000287 //ALOGD(">>> %3d, %3d, %3d, %3d",
Mathias Agopian20f68782009-05-11 00:03:41 -0700288 // rect.left, rect.top, rect.right, rect.bottom);
289 if (span.size()) {
290 if (cur->top != rect.top) {
291 flushSpan();
292 } else if (cur->right == rect.left) {
293 cur->right = rect.right;
294 return;
295 }
296 }
297 span.add(rect);
298 cur = span.editArray() + (span.size() - 1);
299 }
300private:
301 template<typename T>
302 static inline T min(T rhs, T lhs) { return rhs < lhs ? rhs : lhs; }
303 template<typename T>
304 static inline T max(T rhs, T lhs) { return rhs > lhs ? rhs : lhs; }
305 void flushSpan() {
306 bool merge = false;
307 if (tail-head == ssize_t(span.size())) {
Romain Guyb8016242010-10-27 18:57:51 -0700308 Rect const* p = span.editArray();
Mathias Agopian20f68782009-05-11 00:03:41 -0700309 Rect const* q = head;
310 if (p->top == q->bottom) {
311 merge = true;
312 while (q != tail) {
313 if ((p->left != q->left) || (p->right != q->right)) {
314 merge = false;
315 break;
316 }
317 p++, q++;
318 }
319 }
320 }
321 if (merge) {
322 const int bottom = span[0].bottom;
323 Rect* r = head;
324 while (r != tail) {
325 r->bottom = bottom;
326 r++;
327 }
328 } else {
329 bounds.left = min(span.itemAt(0).left, bounds.left);
330 bounds.right = max(span.top().right, bounds.right);
331 storage.appendVector(span);
332 tail = storage.editArray() + storage.size();
333 head = tail - span.size();
334 }
335 span.clear();
336 }
337};
338
339bool Region::validate(const Region& reg, const char* name)
340{
341 bool result = true;
342 const_iterator cur = reg.begin();
343 const_iterator const tail = reg.end();
344 const_iterator prev = cur++;
345 Rect b(*prev);
346 while (cur != tail) {
347 b.left = b.left < cur->left ? b.left : cur->left;
348 b.top = b.top < cur->top ? b.top : cur->top;
349 b.right = b.right > cur->right ? b.right : cur->right;
350 b.bottom = b.bottom > cur->bottom ? b.bottom : cur->bottom;
351 if (cur->top == prev->top) {
352 if (cur->bottom != prev->bottom) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000353 ALOGE("%s: invalid span %p", name, cur);
Mathias Agopian20f68782009-05-11 00:03:41 -0700354 result = false;
355 } else if (cur->left < prev->right) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000356 ALOGE("%s: spans overlap horizontally prev=%p, cur=%p",
Mathias Agopian20f68782009-05-11 00:03:41 -0700357 name, prev, cur);
358 result = false;
359 }
360 } else if (cur->top < prev->bottom) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000361 ALOGE("%s: spans overlap vertically prev=%p, cur=%p",
Mathias Agopian20f68782009-05-11 00:03:41 -0700362 name, prev, cur);
363 result = false;
364 }
365 prev = cur;
366 cur++;
367 }
368 if (b != reg.getBounds()) {
369 result = false;
Steve Blocke6f43dd2012-01-06 19:20:56 +0000370 ALOGE("%s: invalid bounds [%d,%d,%d,%d] vs. [%d,%d,%d,%d]", name,
Mathias Agopian20f68782009-05-11 00:03:41 -0700371 b.left, b.top, b.right, b.bottom,
372 reg.getBounds().left, reg.getBounds().top,
373 reg.getBounds().right, reg.getBounds().bottom);
374 }
375 if (result == false) {
376 reg.dump(name);
377 }
378 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800379}
380
Mathias Agopian20f68782009-05-11 00:03:41 -0700381void Region::boolean_operation(int op, Region& dst,
382 const Region& lhs,
383 const Region& rhs, int dx, int dy)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800384{
Mathias Agopiand0b55c02011-03-16 23:18:07 -0700385#if VALIDATE_REGIONS
386 validate(lhs, "boolean_operation (before): lhs");
387 validate(rhs, "boolean_operation (before): rhs");
388 validate(dst, "boolean_operation (before): dst");
389#endif
390
Mathias Agopian20f68782009-05-11 00:03:41 -0700391 size_t lhs_count;
392 Rect const * const lhs_rects = lhs.getArray(&lhs_count);
393
394 size_t rhs_count;
395 Rect const * const rhs_rects = rhs.getArray(&rhs_count);
396
397 region_operator<Rect>::region lhs_region(lhs_rects, lhs_count);
398 region_operator<Rect>::region rhs_region(rhs_rects, rhs_count, dx, dy);
399 region_operator<Rect> operation(op, lhs_region, rhs_region);
400 { // scope for rasterizer (dtor has side effects)
401 rasterizer r(dst);
402 operation(r);
403 }
404
405#if VALIDATE_REGIONS
406 validate(lhs, "boolean_operation: lhs");
407 validate(rhs, "boolean_operation: rhs");
408 validate(dst, "boolean_operation: dst");
409#endif
410
411#if VALIDATE_WITH_CORECG
412 SkRegion sk_lhs;
413 SkRegion sk_rhs;
414 SkRegion sk_dst;
415
416 for (size_t i=0 ; i<lhs_count ; i++)
417 sk_lhs.op(
418 lhs_rects[i].left + dx,
419 lhs_rects[i].top + dy,
420 lhs_rects[i].right + dx,
421 lhs_rects[i].bottom + dy,
422 SkRegion::kUnion_Op);
423
424 for (size_t i=0 ; i<rhs_count ; i++)
425 sk_rhs.op(
426 rhs_rects[i].left + dx,
427 rhs_rects[i].top + dy,
428 rhs_rects[i].right + dx,
429 rhs_rects[i].bottom + dy,
430 SkRegion::kUnion_Op);
431
432 const char* name = "---";
433 SkRegion::Op sk_op;
434 switch (op) {
435 case op_or: sk_op = SkRegion::kUnion_Op; name="OR"; break;
Romain Guyb8a2e982012-02-07 17:04:34 -0800436 case op_xor: sk_op = SkRegion::kUnion_XOR; name="XOR"; break;
Mathias Agopian20f68782009-05-11 00:03:41 -0700437 case op_and: sk_op = SkRegion::kIntersect_Op; name="AND"; break;
438 case op_nand: sk_op = SkRegion::kDifference_Op; name="NAND"; break;
439 }
440 sk_dst.op(sk_lhs, sk_rhs, sk_op);
441
442 if (sk_dst.isEmpty() && dst.isEmpty())
443 return;
444
445 bool same = true;
446 Region::const_iterator head = dst.begin();
447 Region::const_iterator const tail = dst.end();
448 SkRegion::Iterator it(sk_dst);
449 while (!it.done()) {
450 if (head != tail) {
451 if (
452 head->left != it.rect().fLeft ||
453 head->top != it.rect().fTop ||
454 head->right != it.rect().fRight ||
455 head->bottom != it.rect().fBottom
456 ) {
457 same = false;
458 break;
459 }
460 } else {
461 same = false;
462 break;
463 }
464 head++;
465 it.next();
466 }
467
468 if (head != tail) {
469 same = false;
470 }
471
472 if(!same) {
Steve Block9d453682011-12-20 16:23:08 +0000473 ALOGD("---\nregion boolean %s failed", name);
Mathias Agopian20f68782009-05-11 00:03:41 -0700474 lhs.dump("lhs");
475 rhs.dump("rhs");
476 dst.dump("dst");
Steve Block9d453682011-12-20 16:23:08 +0000477 ALOGD("should be");
Mathias Agopian20f68782009-05-11 00:03:41 -0700478 SkRegion::Iterator it(sk_dst);
479 while (!it.done()) {
Steve Block9d453682011-12-20 16:23:08 +0000480 ALOGD(" [%3d, %3d, %3d, %3d]",
Mathias Agopian20f68782009-05-11 00:03:41 -0700481 it.rect().fLeft,
482 it.rect().fTop,
483 it.rect().fRight,
484 it.rect().fBottom);
485 it.next();
486 }
487 }
488#endif
489}
490
491void Region::boolean_operation(int op, Region& dst,
492 const Region& lhs,
493 const Rect& rhs, int dx, int dy)
494{
Mathias Agopian04504522011-09-19 16:12:08 -0700495 if (!rhs.isValid()) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000496 ALOGE("Region::boolean_operation(op=%d) invalid Rect={%d,%d,%d,%d}",
Mathias Agopian04504522011-09-19 16:12:08 -0700497 op, rhs.left, rhs.top, rhs.right, rhs.bottom);
Mathias Agopian0857c8f2011-09-26 15:58:20 -0700498 return;
Mathias Agopian04504522011-09-19 16:12:08 -0700499 }
500
Mathias Agopian20f68782009-05-11 00:03:41 -0700501#if VALIDATE_WITH_CORECG || VALIDATE_REGIONS
502 boolean_operation(op, dst, lhs, Region(rhs), dx, dy);
503#else
504 size_t lhs_count;
505 Rect const * const lhs_rects = lhs.getArray(&lhs_count);
506
507 region_operator<Rect>::region lhs_region(lhs_rects, lhs_count);
508 region_operator<Rect>::region rhs_region(&rhs, 1, dx, dy);
509 region_operator<Rect> operation(op, lhs_region, rhs_region);
510 { // scope for rasterizer (dtor has side effects)
511 rasterizer r(dst);
512 operation(r);
513 }
514
515#endif
516}
517
518void Region::boolean_operation(int op, Region& dst,
519 const Region& lhs, const Region& rhs)
520{
521 boolean_operation(op, dst, lhs, rhs, 0, 0);
522}
523
524void Region::boolean_operation(int op, Region& dst,
525 const Region& lhs, const Rect& rhs)
526{
527 boolean_operation(op, dst, lhs, rhs, 0, 0);
528}
529
530void Region::translate(Region& reg, int dx, int dy)
531{
Mathias Agopian4c0a1702012-08-31 12:45:33 -0700532 if ((dx || dy) && !reg.isEmpty()) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700533#if VALIDATE_REGIONS
534 validate(reg, "translate (before)");
535#endif
536 reg.mBounds.translate(dx, dy);
537 size_t count = reg.mStorage.size();
538 Rect* rects = reg.mStorage.editArray();
539 while (count) {
540 rects->translate(dx, dy);
541 rects++;
542 count--;
543 }
544#if VALIDATE_REGIONS
545 validate(reg, "translate (after)");
546#endif
547 }
548}
549
550void Region::translate(Region& dst, const Region& reg, int dx, int dy)
551{
552 dst = reg;
553 translate(dst, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800554}
555
556// ----------------------------------------------------------------------------
557
Mathias Agopian8683fca2012-08-12 19:37:16 -0700558size_t Region::getSize() const {
559 return (mStorage.size() + 1) * sizeof(Rect);
560}
561
562status_t Region::flatten(void* buffer) const {
563 Rect* rects = reinterpret_cast<Rect*>(buffer);
564 *rects++ = mBounds;
565 memcpy(rects, mStorage.array(), mStorage.size() * sizeof(Rect));
566 return NO_ERROR;
567}
568
569status_t Region::unflatten(void const* buffer, size_t size) {
570 mStorage.clear();
571 if (size >= sizeof(Rect)) {
572 Rect const* rects = reinterpret_cast<Rect const*>(buffer);
573 mBounds = *rects++;
574 size -= sizeof(Rect);
575 size_t count = size / sizeof(Rect);
576 if (count > 0) {
577 ssize_t err = mStorage.insertAt(0, count);
578 if (err < 0) {
579 return status_t(err);
580 }
581 memcpy(mStorage.editArray(), rects, count*sizeof(Rect));
Mathias Agopianb6121422010-02-17 20:22:26 -0800582 }
Mathias Agopian20f68782009-05-11 00:03:41 -0700583 }
Mathias Agopian8683fca2012-08-12 19:37:16 -0700584 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800585}
586
Mathias Agopian20f68782009-05-11 00:03:41 -0700587// ----------------------------------------------------------------------------
588
589Region::const_iterator Region::begin() const {
590 return isRect() ? &mBounds : mStorage.array();
591}
592
593Region::const_iterator Region::end() const {
Mathias Agopian3aecbb02012-04-16 18:40:30 -0700594 if (isRect()) {
595 if (isEmpty()) {
596 return &mBounds;
597 } else {
598 return &mBounds + 1;
599 }
600 } else {
601 return mStorage.array() + mStorage.size();
602 }
Mathias Agopian20f68782009-05-11 00:03:41 -0700603}
604
605Rect const* Region::getArray(size_t* count) const {
606 const_iterator const b(begin());
607 const_iterator const e(end());
608 if (count) *count = e-b;
609 return b;
610}
611
612size_t Region::getRects(Vector<Rect>& rectList) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800613{
Mathias Agopian20f68782009-05-11 00:03:41 -0700614 rectList = mStorage;
615 if (rectList.isEmpty()) {
616 rectList.clear();
617 rectList.add(mBounds);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800618 }
619 return rectList.size();
620}
621
Mathias Agopian20f68782009-05-11 00:03:41 -0700622// ----------------------------------------------------------------------------
623
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800624void Region::dump(String8& out, const char* what, uint32_t flags) const
625{
626 (void)flags;
Mathias Agopian20f68782009-05-11 00:03:41 -0700627 const_iterator head = begin();
628 const_iterator const tail = end();
629
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800630 size_t SIZE = 256;
631 char buffer[SIZE];
Mathias Agopian20f68782009-05-11 00:03:41 -0700632
633 snprintf(buffer, SIZE, " Region %s (this=%p, count=%d)\n",
634 what, this, tail-head);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800635 out.append(buffer);
Mathias Agopian20f68782009-05-11 00:03:41 -0700636 while (head != tail) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800637 snprintf(buffer, SIZE, " [%3d, %3d, %3d, %3d]\n",
Mathias Agopian20f68782009-05-11 00:03:41 -0700638 head->left, head->top, head->right, head->bottom);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800639 out.append(buffer);
Mathias Agopian20f68782009-05-11 00:03:41 -0700640 head++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800641 }
642}
643
644void Region::dump(const char* what, uint32_t flags) const
645{
646 (void)flags;
Mathias Agopian20f68782009-05-11 00:03:41 -0700647 const_iterator head = begin();
648 const_iterator const tail = end();
Steve Block9d453682011-12-20 16:23:08 +0000649 ALOGD(" Region %s (this=%p, count=%d)\n", what, this, tail-head);
Mathias Agopian20f68782009-05-11 00:03:41 -0700650 while (head != tail) {
Steve Block9d453682011-12-20 16:23:08 +0000651 ALOGD(" [%3d, %3d, %3d, %3d]\n",
Mathias Agopian20f68782009-05-11 00:03:41 -0700652 head->left, head->top, head->right, head->bottom);
653 head++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800654 }
655}
656
657// ----------------------------------------------------------------------------
658
659}; // namespace android