mtklein | c6ad06a | 2015-08-19 09:51:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 8 | #ifndef RecordTestUtils_DEFINED |
| 9 | #define RecordTestUtils_DEFINED |
| 10 | |
| 11 | #include "SkRecord.h" |
| 12 | #include "SkRecords.h" |
| 13 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 14 | // If the command we're reading is a U, set ptr to it, otherwise set it to nullptr. |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 15 | template <typename U> |
| 16 | struct ReadAs { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 17 | ReadAs() : ptr(nullptr), type(SkRecords::Type(~0)) {} |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 18 | |
| 19 | const U* ptr; |
| 20 | SkRecords::Type type; |
| 21 | |
| 22 | void operator()(const U& r) { ptr = &r; type = U::kType; } |
| 23 | |
| 24 | template <typename T> |
| 25 | void operator()(const T&) { type = U::kType; } |
| 26 | }; |
| 27 | |
| 28 | // Assert that the ith command in record is of type T, and return it. |
| 29 | template <typename T> |
mtklein | c6ad06a | 2015-08-19 09:51:00 -0700 | [diff] [blame] | 30 | static const T* assert_type(skiatest::Reporter* r, const SkRecord& record, int index) { |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 31 | ReadAs<T> reader; |
| 32 | record.visit<void>(index, reader); |
| 33 | REPORTER_ASSERT(r, T::kType == reader.type); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 34 | REPORTER_ASSERT(r, SkToBool(reader.ptr)); |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 35 | return reader.ptr; |
| 36 | } |
| 37 | |
reed | 2ff1fce | 2014-12-11 07:07:37 -0800 | [diff] [blame] | 38 | template <typename DrawT> struct MatchType { |
| 39 | template <typename T> int operator()(const T&) { return 0; } |
| 40 | int operator()(const DrawT&) { return 1; } |
| 41 | }; |
| 42 | |
| 43 | template <typename DrawT> int count_instances_of_type(const SkRecord& record) { |
| 44 | MatchType<DrawT> matcher; |
| 45 | int counter = 0; |
mtklein | c6ad06a | 2015-08-19 09:51:00 -0700 | [diff] [blame] | 46 | for (int i = 0; i < record.count(); i++) { |
reed | 2ff1fce | 2014-12-11 07:07:37 -0800 | [diff] [blame] | 47 | counter += record.visit<int>(i, matcher); |
| 48 | } |
| 49 | return counter; |
| 50 | } |
| 51 | |
| 52 | template <typename DrawT> int find_first_instances_of_type(const SkRecord& record) { |
| 53 | MatchType<DrawT> matcher; |
mtklein | c6ad06a | 2015-08-19 09:51:00 -0700 | [diff] [blame] | 54 | for (int i = 0; i < record.count(); i++) { |
reed | 2ff1fce | 2014-12-11 07:07:37 -0800 | [diff] [blame] | 55 | if (record.visit<int>(i, matcher)) { |
| 56 | return i; |
| 57 | } |
| 58 | } |
| 59 | return -1; |
| 60 | } |
| 61 | |
commit-bot@chromium.org | 0a98d87 | 2014-05-19 15:15:24 +0000 | [diff] [blame] | 62 | #endif//RecordTestUtils_DEFINED |