blob: 6e2e731e3d5a04eccd975bf198e87c885291d9a5 [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
Mathias Agopian20f68782009-05-11 00:03:41 -070069Region::Region(const void* buffer)
70{
71 status_t err = read(buffer);
Steve Blocke6f43dd2012-01-06 19:20:56 +000072 ALOGE_IF(err<0, "error %s reading Region from buffer", strerror(err));
Mathias Agopian20f68782009-05-11 00:03:41 -070073}
74
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080075Region::~Region()
76{
77}
78
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080079Region& Region::operator = (const Region& rhs)
80{
Mathias Agopian20f68782009-05-11 00:03:41 -070081#if VALIDATE_REGIONS
Mathias Agopiand0b55c02011-03-16 23:18:07 -070082 validate(*this, "this->operator=");
83 validate(rhs, "rhs.operator=");
Mathias Agopian20f68782009-05-11 00:03:41 -070084#endif
85 mBounds = rhs.mBounds;
86 mStorage = rhs.mStorage;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080087 return *this;
88}
89
Mathias Agopian9f961452009-06-29 18:46:37 -070090Region& Region::makeBoundsSelf()
91{
92 mStorage.clear();
93 return *this;
94}
95
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080096void Region::clear()
97{
Mathias Agopian20f68782009-05-11 00:03:41 -070098 mBounds.clear();
99 mStorage.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800100}
101
102void Region::set(const Rect& r)
103{
Mathias Agopian20f68782009-05-11 00:03:41 -0700104 mBounds = r;
105 mStorage.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800106}
107
Mathias Agopian0926f502009-05-04 14:17:04 -0700108void Region::set(uint32_t w, uint32_t h)
109{
Mathias Agopian20f68782009-05-11 00:03:41 -0700110 mBounds = Rect(int(w), int(h));
111 mStorage.clear();
Mathias Agopian0926f502009-05-04 14:17:04 -0700112}
113
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800114// ----------------------------------------------------------------------------
115
Mathias Agopian20f68782009-05-11 00:03:41 -0700116void Region::addRectUnchecked(int l, int t, int r, int b)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117{
Mathias Agopian20f68782009-05-11 00:03:41 -0700118 mStorage.add(Rect(l,t,r,b));
119#if VALIDATE_REGIONS
120 validate(*this, "addRectUnchecked");
121#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122}
123
Mathias Agopian20f68782009-05-11 00:03:41 -0700124// ----------------------------------------------------------------------------
125
126Region& Region::orSelf(const Rect& r) {
127 return operationSelf(r, op_or);
128}
Romain Guyb8a2e982012-02-07 17:04:34 -0800129Region& Region::xorSelf(const Rect& r) {
130 return operationSelf(r, op_xor);
131}
Mathias Agopian20f68782009-05-11 00:03:41 -0700132Region& Region::andSelf(const Rect& r) {
133 return operationSelf(r, op_and);
134}
135Region& Region::subtractSelf(const Rect& r) {
136 return operationSelf(r, op_nand);
137}
138Region& Region::operationSelf(const Rect& r, int op) {
139 Region lhs(*this);
140 boolean_operation(op, *this, lhs, r);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800141 return *this;
142}
143
144// ----------------------------------------------------------------------------
145
146Region& Region::orSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700147 return operationSelf(rhs, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800148}
Romain Guyb8a2e982012-02-07 17:04:34 -0800149Region& Region::xorSelf(const Region& rhs) {
150 return operationSelf(rhs, op_xor);
151}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800152Region& Region::andSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700153 return operationSelf(rhs, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800154}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800155Region& Region::subtractSelf(const Region& rhs) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700156 return operationSelf(rhs, op_nand);
157}
158Region& Region::operationSelf(const Region& rhs, int op) {
159 Region lhs(*this);
160 boolean_operation(op, *this, lhs, rhs);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800161 return *this;
162}
163
164Region& Region::translateSelf(int x, int y) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700165 if (x|y) translate(*this, x, y);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166 return *this;
167}
168
Mathias Agopian20f68782009-05-11 00:03:41 -0700169// ----------------------------------------------------------------------------
170
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700171const Region Region::merge(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700172 return operation(rhs, op_or);
173}
Romain Guyb8a2e982012-02-07 17:04:34 -0800174const Region Region::mergeExclusive(const Rect& rhs) const {
175 return operation(rhs, op_xor);
176}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700177const Region Region::intersect(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700178 return operation(rhs, op_and);
179}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700180const Region Region::subtract(const Rect& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700181 return operation(rhs, op_nand);
182}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700183const Region Region::operation(const Rect& rhs, int op) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700184 Region result;
185 boolean_operation(op, result, *this, rhs);
186 return result;
187}
188
189// ----------------------------------------------------------------------------
190
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700191const Region Region::merge(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700192 return operation(rhs, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800193}
Romain Guyb8a2e982012-02-07 17:04:34 -0800194const Region Region::mergeExclusive(const Region& rhs) const {
195 return operation(rhs, op_xor);
196}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700197const Region Region::intersect(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700198 return operation(rhs, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700200const Region Region::subtract(const Region& rhs) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700201 return operation(rhs, op_nand);
202}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700203const Region Region::operation(const Region& rhs, int op) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800204 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700205 boolean_operation(op, result, *this, rhs);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800206 return result;
207}
208
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700209const Region Region::translate(int x, int y) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800210 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700211 translate(result, *this, x, y);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800212 return result;
213}
214
215// ----------------------------------------------------------------------------
216
217Region& Region::orSelf(const Region& rhs, int dx, int dy) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700218 return operationSelf(rhs, dx, dy, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800219}
Romain Guyb8a2e982012-02-07 17:04:34 -0800220Region& Region::xorSelf(const Region& rhs, int dx, int dy) {
221 return operationSelf(rhs, dx, dy, op_xor);
222}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800223Region& Region::andSelf(const Region& rhs, int dx, int dy) {
Mathias Agopian20f68782009-05-11 00:03:41 -0700224 return operationSelf(rhs, dx, dy, op_and);
225}
226Region& Region::subtractSelf(const Region& rhs, int dx, int dy) {
227 return operationSelf(rhs, dx, dy, op_nand);
228}
229Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) {
230 Region lhs(*this);
231 boolean_operation(op, *this, lhs, rhs, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800232 return *this;
233}
234
Mathias Agopian20f68782009-05-11 00:03:41 -0700235// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700237const Region Region::merge(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700238 return operation(rhs, dx, dy, op_or);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800239}
Romain Guyb8a2e982012-02-07 17:04:34 -0800240const Region Region::mergeExclusive(const Region& rhs, int dx, int dy) const {
241 return operation(rhs, dx, dy, op_xor);
242}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700243const Region Region::intersect(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700244 return operation(rhs, dx, dy, op_and);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800245}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700246const Region Region::subtract(const Region& rhs, int dx, int dy) const {
Mathias Agopian20f68782009-05-11 00:03:41 -0700247 return operation(rhs, dx, dy, op_nand);
248}
Mathias Agopianbed9dd12009-05-27 17:01:58 -0700249const Region Region::operation(const Region& rhs, int dx, int dy, int op) const {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800250 Region result;
Mathias Agopian20f68782009-05-11 00:03:41 -0700251 boolean_operation(op, result, *this, rhs, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800252 return result;
253}
254
255// ----------------------------------------------------------------------------
256
Mathias Agopian20f68782009-05-11 00:03:41 -0700257// This is our region rasterizer, which merges rects and spans together
258// to obtain an optimal region.
259class Region::rasterizer : public region_operator<Rect>::region_rasterizer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800260{
Mathias Agopian20f68782009-05-11 00:03:41 -0700261 Rect& bounds;
262 Vector<Rect>& storage;
263 Rect* head;
264 Rect* tail;
265 Vector<Rect> span;
266 Rect* cur;
267public:
268 rasterizer(Region& reg)
269 : bounds(reg.mBounds), storage(reg.mStorage), head(), tail(), cur() {
270 bounds.top = bounds.bottom = 0;
271 bounds.left = INT_MAX;
272 bounds.right = INT_MIN;
273 storage.clear();
274 }
275
276 ~rasterizer() {
277 if (span.size()) {
278 flushSpan();
279 }
280 if (storage.size()) {
281 bounds.top = storage.itemAt(0).top;
282 bounds.bottom = storage.top().bottom;
283 if (storage.size() == 1) {
284 storage.clear();
285 }
286 } else {
287 bounds.left = 0;
288 bounds.right = 0;
289 }
290 }
291
292 virtual void operator()(const Rect& rect) {
Steve Block9d453682011-12-20 16:23:08 +0000293 //ALOGD(">>> %3d, %3d, %3d, %3d",
Mathias Agopian20f68782009-05-11 00:03:41 -0700294 // rect.left, rect.top, rect.right, rect.bottom);
295 if (span.size()) {
296 if (cur->top != rect.top) {
297 flushSpan();
298 } else if (cur->right == rect.left) {
299 cur->right = rect.right;
300 return;
301 }
302 }
303 span.add(rect);
304 cur = span.editArray() + (span.size() - 1);
305 }
306private:
307 template<typename T>
308 static inline T min(T rhs, T lhs) { return rhs < lhs ? rhs : lhs; }
309 template<typename T>
310 static inline T max(T rhs, T lhs) { return rhs > lhs ? rhs : lhs; }
311 void flushSpan() {
312 bool merge = false;
313 if (tail-head == ssize_t(span.size())) {
Romain Guyb8016242010-10-27 18:57:51 -0700314 Rect const* p = span.editArray();
Mathias Agopian20f68782009-05-11 00:03:41 -0700315 Rect const* q = head;
316 if (p->top == q->bottom) {
317 merge = true;
318 while (q != tail) {
319 if ((p->left != q->left) || (p->right != q->right)) {
320 merge = false;
321 break;
322 }
323 p++, q++;
324 }
325 }
326 }
327 if (merge) {
328 const int bottom = span[0].bottom;
329 Rect* r = head;
330 while (r != tail) {
331 r->bottom = bottom;
332 r++;
333 }
334 } else {
335 bounds.left = min(span.itemAt(0).left, bounds.left);
336 bounds.right = max(span.top().right, bounds.right);
337 storage.appendVector(span);
338 tail = storage.editArray() + storage.size();
339 head = tail - span.size();
340 }
341 span.clear();
342 }
343};
344
345bool Region::validate(const Region& reg, const char* name)
346{
347 bool result = true;
348 const_iterator cur = reg.begin();
349 const_iterator const tail = reg.end();
350 const_iterator prev = cur++;
351 Rect b(*prev);
352 while (cur != tail) {
353 b.left = b.left < cur->left ? b.left : cur->left;
354 b.top = b.top < cur->top ? b.top : cur->top;
355 b.right = b.right > cur->right ? b.right : cur->right;
356 b.bottom = b.bottom > cur->bottom ? b.bottom : cur->bottom;
357 if (cur->top == prev->top) {
358 if (cur->bottom != prev->bottom) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000359 ALOGE("%s: invalid span %p", name, cur);
Mathias Agopian20f68782009-05-11 00:03:41 -0700360 result = false;
361 } else if (cur->left < prev->right) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000362 ALOGE("%s: spans overlap horizontally prev=%p, cur=%p",
Mathias Agopian20f68782009-05-11 00:03:41 -0700363 name, prev, cur);
364 result = false;
365 }
366 } else if (cur->top < prev->bottom) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000367 ALOGE("%s: spans overlap vertically prev=%p, cur=%p",
Mathias Agopian20f68782009-05-11 00:03:41 -0700368 name, prev, cur);
369 result = false;
370 }
371 prev = cur;
372 cur++;
373 }
374 if (b != reg.getBounds()) {
375 result = false;
Steve Blocke6f43dd2012-01-06 19:20:56 +0000376 ALOGE("%s: invalid bounds [%d,%d,%d,%d] vs. [%d,%d,%d,%d]", name,
Mathias Agopian20f68782009-05-11 00:03:41 -0700377 b.left, b.top, b.right, b.bottom,
378 reg.getBounds().left, reg.getBounds().top,
379 reg.getBounds().right, reg.getBounds().bottom);
380 }
381 if (result == false) {
382 reg.dump(name);
383 }
384 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800385}
386
Mathias Agopian20f68782009-05-11 00:03:41 -0700387void Region::boolean_operation(int op, Region& dst,
388 const Region& lhs,
389 const Region& rhs, int dx, int dy)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800390{
Mathias Agopiand0b55c02011-03-16 23:18:07 -0700391#if VALIDATE_REGIONS
392 validate(lhs, "boolean_operation (before): lhs");
393 validate(rhs, "boolean_operation (before): rhs");
394 validate(dst, "boolean_operation (before): dst");
395#endif
396
Mathias Agopian20f68782009-05-11 00:03:41 -0700397 size_t lhs_count;
398 Rect const * const lhs_rects = lhs.getArray(&lhs_count);
399
400 size_t rhs_count;
401 Rect const * const rhs_rects = rhs.getArray(&rhs_count);
402
403 region_operator<Rect>::region lhs_region(lhs_rects, lhs_count);
404 region_operator<Rect>::region rhs_region(rhs_rects, rhs_count, dx, dy);
405 region_operator<Rect> operation(op, lhs_region, rhs_region);
406 { // scope for rasterizer (dtor has side effects)
407 rasterizer r(dst);
408 operation(r);
409 }
410
411#if VALIDATE_REGIONS
412 validate(lhs, "boolean_operation: lhs");
413 validate(rhs, "boolean_operation: rhs");
414 validate(dst, "boolean_operation: dst");
415#endif
416
417#if VALIDATE_WITH_CORECG
418 SkRegion sk_lhs;
419 SkRegion sk_rhs;
420 SkRegion sk_dst;
421
422 for (size_t i=0 ; i<lhs_count ; i++)
423 sk_lhs.op(
424 lhs_rects[i].left + dx,
425 lhs_rects[i].top + dy,
426 lhs_rects[i].right + dx,
427 lhs_rects[i].bottom + dy,
428 SkRegion::kUnion_Op);
429
430 for (size_t i=0 ; i<rhs_count ; i++)
431 sk_rhs.op(
432 rhs_rects[i].left + dx,
433 rhs_rects[i].top + dy,
434 rhs_rects[i].right + dx,
435 rhs_rects[i].bottom + dy,
436 SkRegion::kUnion_Op);
437
438 const char* name = "---";
439 SkRegion::Op sk_op;
440 switch (op) {
441 case op_or: sk_op = SkRegion::kUnion_Op; name="OR"; break;
Romain Guyb8a2e982012-02-07 17:04:34 -0800442 case op_xor: sk_op = SkRegion::kUnion_XOR; name="XOR"; break;
Mathias Agopian20f68782009-05-11 00:03:41 -0700443 case op_and: sk_op = SkRegion::kIntersect_Op; name="AND"; break;
444 case op_nand: sk_op = SkRegion::kDifference_Op; name="NAND"; break;
445 }
446 sk_dst.op(sk_lhs, sk_rhs, sk_op);
447
448 if (sk_dst.isEmpty() && dst.isEmpty())
449 return;
450
451 bool same = true;
452 Region::const_iterator head = dst.begin();
453 Region::const_iterator const tail = dst.end();
454 SkRegion::Iterator it(sk_dst);
455 while (!it.done()) {
456 if (head != tail) {
457 if (
458 head->left != it.rect().fLeft ||
459 head->top != it.rect().fTop ||
460 head->right != it.rect().fRight ||
461 head->bottom != it.rect().fBottom
462 ) {
463 same = false;
464 break;
465 }
466 } else {
467 same = false;
468 break;
469 }
470 head++;
471 it.next();
472 }
473
474 if (head != tail) {
475 same = false;
476 }
477
478 if(!same) {
Steve Block9d453682011-12-20 16:23:08 +0000479 ALOGD("---\nregion boolean %s failed", name);
Mathias Agopian20f68782009-05-11 00:03:41 -0700480 lhs.dump("lhs");
481 rhs.dump("rhs");
482 dst.dump("dst");
Steve Block9d453682011-12-20 16:23:08 +0000483 ALOGD("should be");
Mathias Agopian20f68782009-05-11 00:03:41 -0700484 SkRegion::Iterator it(sk_dst);
485 while (!it.done()) {
Steve Block9d453682011-12-20 16:23:08 +0000486 ALOGD(" [%3d, %3d, %3d, %3d]",
Mathias Agopian20f68782009-05-11 00:03:41 -0700487 it.rect().fLeft,
488 it.rect().fTop,
489 it.rect().fRight,
490 it.rect().fBottom);
491 it.next();
492 }
493 }
494#endif
495}
496
497void Region::boolean_operation(int op, Region& dst,
498 const Region& lhs,
499 const Rect& rhs, int dx, int dy)
500{
Mathias Agopian04504522011-09-19 16:12:08 -0700501 if (!rhs.isValid()) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000502 ALOGE("Region::boolean_operation(op=%d) invalid Rect={%d,%d,%d,%d}",
Mathias Agopian04504522011-09-19 16:12:08 -0700503 op, rhs.left, rhs.top, rhs.right, rhs.bottom);
Mathias Agopian0857c8f2011-09-26 15:58:20 -0700504 return;
Mathias Agopian04504522011-09-19 16:12:08 -0700505 }
506
Mathias Agopian20f68782009-05-11 00:03:41 -0700507#if VALIDATE_WITH_CORECG || VALIDATE_REGIONS
508 boolean_operation(op, dst, lhs, Region(rhs), dx, dy);
509#else
510 size_t lhs_count;
511 Rect const * const lhs_rects = lhs.getArray(&lhs_count);
512
513 region_operator<Rect>::region lhs_region(lhs_rects, lhs_count);
514 region_operator<Rect>::region rhs_region(&rhs, 1, dx, dy);
515 region_operator<Rect> operation(op, lhs_region, rhs_region);
516 { // scope for rasterizer (dtor has side effects)
517 rasterizer r(dst);
518 operation(r);
519 }
520
521#endif
522}
523
524void Region::boolean_operation(int op, Region& dst,
525 const Region& lhs, const Region& rhs)
526{
527 boolean_operation(op, dst, lhs, rhs, 0, 0);
528}
529
530void Region::boolean_operation(int op, Region& dst,
531 const Region& lhs, const Rect& rhs)
532{
533 boolean_operation(op, dst, lhs, rhs, 0, 0);
534}
535
536void Region::translate(Region& reg, int dx, int dy)
537{
538 if (!reg.isEmpty()) {
539#if VALIDATE_REGIONS
540 validate(reg, "translate (before)");
541#endif
542 reg.mBounds.translate(dx, dy);
543 size_t count = reg.mStorage.size();
544 Rect* rects = reg.mStorage.editArray();
545 while (count) {
546 rects->translate(dx, dy);
547 rects++;
548 count--;
549 }
550#if VALIDATE_REGIONS
551 validate(reg, "translate (after)");
552#endif
553 }
554}
555
556void Region::translate(Region& dst, const Region& reg, int dx, int dy)
557{
558 dst = reg;
559 translate(dst, dx, dy);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800560}
561
562// ----------------------------------------------------------------------------
563
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800564ssize_t Region::write(void* buffer, size_t size) const
565{
Mathias Agopian20f68782009-05-11 00:03:41 -0700566#if VALIDATE_REGIONS
567 validate(*this, "write(buffer)");
568#endif
569 const size_t count = mStorage.size();
570 const size_t sizeNeeded = sizeof(int32_t) + (1+count)*sizeof(Rect);
Mathias Agopianb6121422010-02-17 20:22:26 -0800571 if (buffer != NULL) {
572 if (sizeNeeded > size) return NO_MEMORY;
573 int32_t* const p = static_cast<int32_t*>(buffer);
574 *p = count;
575 memcpy(p+1, &mBounds, sizeof(Rect));
576 if (count) {
577 memcpy(p+5, mStorage.array(), count*sizeof(Rect));
578 }
Mathias Agopian20f68782009-05-11 00:03:41 -0700579 }
580 return ssize_t(sizeNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800581}
582
583ssize_t Region::read(const void* buffer)
584{
Mathias Agopian20f68782009-05-11 00:03:41 -0700585 int32_t const* const p = static_cast<int32_t const*>(buffer);
586 const size_t count = *p;
587 memcpy(&mBounds, p+1, sizeof(Rect));
588 mStorage.clear();
589 if (count) {
590 mStorage.insertAt(0, count);
591 memcpy(mStorage.editArray(), p+5, count*sizeof(Rect));
592 }
593#if VALIDATE_REGIONS
594 validate(*this, "read(buffer)");
595#endif
596 return ssize_t(sizeof(int32_t) + (1+count)*sizeof(Rect));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800597}
598
599ssize_t Region::writeEmpty(void* buffer, size_t size)
600{
Mathias Agopian20f68782009-05-11 00:03:41 -0700601 const size_t sizeNeeded = sizeof(int32_t) + sizeof(Rect);
602 if (sizeNeeded > size) return NO_MEMORY;
603 int32_t* const p = static_cast<int32_t*>(buffer);
604 memset(p, 0, sizeNeeded);
605 return ssize_t(sizeNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800606}
607
608bool Region::isEmpty(void* buffer)
609{
Mathias Agopian20f68782009-05-11 00:03:41 -0700610 int32_t const* const p = static_cast<int32_t const*>(buffer);
611 Rect const* const b = reinterpret_cast<Rect const *>(p+1);
612 return b->isEmpty();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800613}
614
Mathias Agopian20f68782009-05-11 00:03:41 -0700615// ----------------------------------------------------------------------------
616
617Region::const_iterator Region::begin() const {
618 return isRect() ? &mBounds : mStorage.array();
619}
620
621Region::const_iterator Region::end() const {
622 return isRect() ? ((&mBounds) + 1) : (mStorage.array() + mStorage.size());
623}
624
625Rect const* Region::getArray(size_t* count) const {
626 const_iterator const b(begin());
627 const_iterator const e(end());
628 if (count) *count = e-b;
629 return b;
630}
631
632size_t Region::getRects(Vector<Rect>& rectList) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800633{
Mathias Agopian20f68782009-05-11 00:03:41 -0700634 rectList = mStorage;
635 if (rectList.isEmpty()) {
636 rectList.clear();
637 rectList.add(mBounds);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800638 }
639 return rectList.size();
640}
641
Mathias Agopian20f68782009-05-11 00:03:41 -0700642// ----------------------------------------------------------------------------
643
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800644void Region::dump(String8& out, 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();
649
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800650 size_t SIZE = 256;
651 char buffer[SIZE];
Mathias Agopian20f68782009-05-11 00:03:41 -0700652
653 snprintf(buffer, SIZE, " Region %s (this=%p, count=%d)\n",
654 what, this, tail-head);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800655 out.append(buffer);
Mathias Agopian20f68782009-05-11 00:03:41 -0700656 while (head != tail) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800657 snprintf(buffer, SIZE, " [%3d, %3d, %3d, %3d]\n",
Mathias Agopian20f68782009-05-11 00:03:41 -0700658 head->left, head->top, head->right, head->bottom);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800659 out.append(buffer);
Mathias Agopian20f68782009-05-11 00:03:41 -0700660 head++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800661 }
662}
663
664void Region::dump(const char* what, uint32_t flags) const
665{
666 (void)flags;
Mathias Agopian20f68782009-05-11 00:03:41 -0700667 const_iterator head = begin();
668 const_iterator const tail = end();
Steve Block9d453682011-12-20 16:23:08 +0000669 ALOGD(" Region %s (this=%p, count=%d)\n", what, this, tail-head);
Mathias Agopian20f68782009-05-11 00:03:41 -0700670 while (head != tail) {
Steve Block9d453682011-12-20 16:23:08 +0000671 ALOGD(" [%3d, %3d, %3d, %3d]\n",
Mathias Agopian20f68782009-05-11 00:03:41 -0700672 head->left, head->top, head->right, head->bottom);
673 head++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800674 }
675}
676
677// ----------------------------------------------------------------------------
678
679}; // namespace android