vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010 The Android Open Source Project |
| 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "tests/Test.h" |
Hal Canary | 43fb7a0 | 2016-12-30 13:09:03 -0500 | [diff] [blame] | 9 | |
| 10 | #ifdef SK_SUPPORT_PDF |
| 11 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "include/core/SkData.h" |
| 13 | #include "include/core/SkStream.h" |
| 14 | #include "include/private/SkTo.h" |
| 15 | #include "src/pdf/SkPDFMakeToUnicodeCmap.h" |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 16 | |
Hal Canary | 3135598 | 2018-10-19 12:21:41 -0400 | [diff] [blame] | 17 | static constexpr SkGlyphID kMaximumGlyphIndex = UINT16_MAX; |
halcanary | 530032a | 2016-08-18 14:22:52 -0700 | [diff] [blame] | 18 | |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 19 | static bool stream_equals(const SkDynamicMemoryWStream& stream, size_t offset, |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 20 | const char* buffer, size_t len) { |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 21 | if (len != strlen(buffer)) { |
| 22 | return false; |
| 23 | } |
Mike Reed | 5adaf8b | 2016-12-15 13:02:33 -0500 | [diff] [blame] | 24 | |
| 25 | const size_t streamSize = stream.bytesWritten(); |
| 26 | |
| 27 | if (offset + len > streamSize) { |
| 28 | return false; |
| 29 | } |
| 30 | |
| 31 | SkAutoTMalloc<char> data(streamSize); |
| 32 | stream.copyTo(data.get()); |
| 33 | return memcmp(data.get() + offset, buffer, len) == 0; |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 34 | } |
| 35 | |
halcanary | 57f744e | 2016-09-09 11:41:59 -0700 | [diff] [blame] | 36 | DEF_TEST(SkPDF_ToUnicode, reporter) { |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 37 | SkTDArray<SkUnichar> glyphToUnicode; |
| 38 | SkTDArray<uint16_t> glyphsInSubset; |
Hal Canary | 3135598 | 2018-10-19 12:21:41 -0400 | [diff] [blame] | 39 | SkPDFGlyphUse subset(1, kMaximumGlyphIndex); |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 40 | |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 41 | glyphToUnicode.push_back(0); // 0 |
| 42 | glyphToUnicode.push_back(0); // 1 |
| 43 | glyphToUnicode.push_back(0); // 2 |
| 44 | glyphsInSubset.push_back(3); |
| 45 | glyphToUnicode.push_back(0x20); // 3 |
| 46 | glyphsInSubset.push_back(4); |
| 47 | glyphToUnicode.push_back(0x25); // 4 |
| 48 | glyphsInSubset.push_back(5); |
| 49 | glyphToUnicode.push_back(0x27); // 5 |
| 50 | glyphsInSubset.push_back(6); |
| 51 | glyphToUnicode.push_back(0x28); // 6 |
| 52 | glyphsInSubset.push_back(7); |
| 53 | glyphToUnicode.push_back(0x29); // 7 |
| 54 | glyphsInSubset.push_back(8); |
| 55 | glyphToUnicode.push_back(0x2F); // 8 |
| 56 | glyphsInSubset.push_back(9); |
| 57 | glyphToUnicode.push_back(0x33); // 9 |
| 58 | glyphToUnicode.push_back(0); // 10 |
| 59 | glyphsInSubset.push_back(11); |
| 60 | glyphToUnicode.push_back(0x35); // 11 |
| 61 | glyphsInSubset.push_back(12); |
| 62 | glyphToUnicode.push_back(0x36); // 12 |
| 63 | glyphsInSubset.push_back(13); |
| 64 | glyphToUnicode.push_back(0x37); // 13 |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 65 | for (uint16_t i = 14; i < 0xFE; ++i) { |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 66 | glyphToUnicode.push_back(0); // Zero from index 0x9 to 0xFD |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 67 | } |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 68 | glyphsInSubset.push_back(0xFE); |
| 69 | glyphToUnicode.push_back(0x1010); |
| 70 | glyphsInSubset.push_back(0xFF); |
| 71 | glyphToUnicode.push_back(0x1011); |
| 72 | glyphsInSubset.push_back(0x100); |
| 73 | glyphToUnicode.push_back(0x1012); |
| 74 | glyphsInSubset.push_back(0x101); |
| 75 | glyphToUnicode.push_back(0x1013); |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 76 | |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 77 | SkGlyphID lastGlyphID = SkToU16(glyphToUnicode.count() - 1); |
| 78 | |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 79 | SkDynamicMemoryWStream buffer; |
Hal Canary | 52514d5 | 2018-10-19 10:08:42 -0400 | [diff] [blame] | 80 | for (uint16_t v : glyphsInSubset) { |
| 81 | subset.set(v); |
| 82 | } |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 83 | SkPDFAppendCmapSections(&glyphToUnicode[0], &subset, &buffer, true, 0, |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 84 | std::min<SkGlyphID>(0xFFFF, lastGlyphID)); |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 85 | |
| 86 | char expectedResult[] = |
| 87 | "4 beginbfchar\n\ |
| 88 | <0003> <0020>\n\ |
| 89 | <0004> <0025>\n\ |
| 90 | <0008> <002F>\n\ |
| 91 | <0009> <0033>\n\ |
| 92 | endbfchar\n\ |
| 93 | 4 beginbfrange\n\ |
| 94 | <0005> <0007> <0027>\n\ |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 95 | <000B> <000D> <0035>\n\ |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 96 | <00FE> <00FF> <1010>\n\ |
| 97 | <0100> <0101> <1012>\n\ |
| 98 | endbfrange\n"; |
| 99 | |
| 100 | REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResult, |
Ben Wagner | 884300d | 2016-12-16 16:51:41 +0000 | [diff] [blame] | 101 | buffer.bytesWritten())); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 102 | |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 103 | // Remove characters and ranges. |
| 104 | buffer.reset(); |
| 105 | |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 106 | SkPDFAppendCmapSections(&glyphToUnicode[0], &subset, &buffer, true, 8, |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 107 | std::min<SkGlyphID>(0x00FF, lastGlyphID)); |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 108 | |
| 109 | char expectedResultChop1[] = |
| 110 | "2 beginbfchar\n\ |
| 111 | <0008> <002F>\n\ |
| 112 | <0009> <0033>\n\ |
| 113 | endbfchar\n\ |
| 114 | 2 beginbfrange\n\ |
| 115 | <000B> <000D> <0035>\n\ |
| 116 | <00FE> <00FF> <1010>\n\ |
| 117 | endbfrange\n"; |
| 118 | |
| 119 | REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResultChop1, |
Ben Wagner | 884300d | 2016-12-16 16:51:41 +0000 | [diff] [blame] | 120 | buffer.bytesWritten())); |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 121 | |
| 122 | // Remove characters from range to downdrade it to one char. |
| 123 | buffer.reset(); |
| 124 | |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 125 | SkPDFAppendCmapSections(&glyphToUnicode[0], &subset, &buffer, true, 0x00D, |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 126 | std::min<SkGlyphID>(0x00FE, lastGlyphID)); |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 127 | |
| 128 | char expectedResultChop2[] = |
| 129 | "2 beginbfchar\n\ |
| 130 | <000D> <0037>\n\ |
| 131 | <00FE> <1010>\n\ |
| 132 | endbfchar\n"; |
| 133 | |
| 134 | REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResultChop2, |
Ben Wagner | 884300d | 2016-12-16 16:51:41 +0000 | [diff] [blame] | 135 | buffer.bytesWritten())); |
edisonn@google.com | 26d2e04 | 2013-09-18 19:29:08 +0000 | [diff] [blame] | 136 | |
commit-bot@chromium.org | 1236d8e | 2013-12-11 18:47:11 +0000 | [diff] [blame] | 137 | buffer.reset(); |
| 138 | |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 139 | SkPDFAppendCmapSections(&glyphToUnicode[0], nullptr, &buffer, false, 0xFC, |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 140 | std::min<SkGlyphID>(0x110, lastGlyphID)); |
commit-bot@chromium.org | 1236d8e | 2013-12-11 18:47:11 +0000 | [diff] [blame] | 141 | |
| 142 | char expectedResultSingleBytes[] = |
| 143 | "2 beginbfchar\n\ |
halcanary | 3d01c62 | 2016-08-31 12:52:35 -0700 | [diff] [blame] | 144 | <01> <0000>\n\ |
| 145 | <02> <0000>\n\ |
commit-bot@chromium.org | 1236d8e | 2013-12-11 18:47:11 +0000 | [diff] [blame] | 146 | endbfchar\n\ |
| 147 | 1 beginbfrange\n\ |
halcanary | 3d01c62 | 2016-08-31 12:52:35 -0700 | [diff] [blame] | 148 | <03> <06> <1010>\n\ |
commit-bot@chromium.org | 1236d8e | 2013-12-11 18:47:11 +0000 | [diff] [blame] | 149 | endbfrange\n"; |
| 150 | |
| 151 | REPORTER_ASSERT(reporter, stream_equals(buffer, 0, |
| 152 | expectedResultSingleBytes, |
Ben Wagner | 884300d | 2016-12-16 16:51:41 +0000 | [diff] [blame] | 153 | buffer.bytesWritten())); |
commit-bot@chromium.org | 1236d8e | 2013-12-11 18:47:11 +0000 | [diff] [blame] | 154 | |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 155 | glyphToUnicode.reset(); |
| 156 | glyphsInSubset.reset(); |
Hal Canary | 3135598 | 2018-10-19 12:21:41 -0400 | [diff] [blame] | 157 | SkPDFGlyphUse subset2(1, kMaximumGlyphIndex); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 158 | |
| 159 | // Test mapping: |
| 160 | // I n s t a l |
| 161 | // Glyph id 2c 51 56 57 44 4f |
| 162 | // Unicode 49 6e 73 74 61 6c |
bsalomon | 9880607 | 2014-12-12 15:11:17 -0800 | [diff] [blame] | 163 | for (SkUnichar i = 0; i < 100; ++i) { |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 164 | glyphToUnicode.push_back(i + 29); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 165 | } |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 166 | lastGlyphID = SkToU16(glyphToUnicode.count() - 1); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 167 | |
Mike Reed | 5edcd31 | 2018-08-08 11:23:41 -0400 | [diff] [blame] | 168 | glyphsInSubset.push_back(0x2C); |
| 169 | glyphsInSubset.push_back(0x44); |
| 170 | glyphsInSubset.push_back(0x4F); |
| 171 | glyphsInSubset.push_back(0x51); |
| 172 | glyphsInSubset.push_back(0x56); |
| 173 | glyphsInSubset.push_back(0x57); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 174 | |
| 175 | SkDynamicMemoryWStream buffer2; |
Hal Canary | 52514d5 | 2018-10-19 10:08:42 -0400 | [diff] [blame] | 176 | for (uint16_t v : glyphsInSubset) { |
| 177 | subset2.set(v); |
| 178 | } |
Hal Canary | 46cc3da | 2018-05-09 11:50:34 -0400 | [diff] [blame] | 179 | SkPDFAppendCmapSections(&glyphToUnicode[0], &subset2, &buffer2, true, 0, |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 180 | std::min<SkGlyphID>(0xFFFF, lastGlyphID)); |
vandebo@chromium.org | 9ad3599 | 2012-01-03 18:35:39 +0000 | [diff] [blame] | 181 | |
| 182 | char expectedResult2[] = |
| 183 | "4 beginbfchar\n\ |
| 184 | <002C> <0049>\n\ |
| 185 | <0044> <0061>\n\ |
| 186 | <004F> <006C>\n\ |
| 187 | <0051> <006E>\n\ |
| 188 | endbfchar\n\ |
| 189 | 1 beginbfrange\n\ |
| 190 | <0056> <0057> <0073>\n\ |
| 191 | endbfrange\n"; |
| 192 | |
| 193 | REPORTER_ASSERT(reporter, stream_equals(buffer2, 0, expectedResult2, |
Ben Wagner | 884300d | 2016-12-16 16:51:41 +0000 | [diff] [blame] | 194 | buffer2.bytesWritten())); |
vandebo@chromium.org | 04c643b | 2011-08-08 22:33:05 +0000 | [diff] [blame] | 195 | } |
Hal Canary | 43fb7a0 | 2016-12-30 13:09:03 -0500 | [diff] [blame] | 196 | |
| 197 | #endif |