1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/pdf_ink_module.h"
#include <stddef.h>
#include <algorithm>
#include <limits>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <string_view>
#include <utility>
#include <variant>
#include <vector>
#include "base/check.h"
#include "base/containers/fixed_flat_map.h"
#include "base/feature_list.h"
#include "base/notreached.h"
#include "base/numerics/safe_conversions.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "base/values.h"
#include "pdf/draw_utils/page_boundary_intersect.h"
#include "pdf/input_utils.h"
#include "pdf/message_util.h"
#include "pdf/page_orientation.h"
#include "pdf/pdf_features.h"
#include "pdf/pdf_ink_brush.h"
#include "pdf/pdf_ink_conversions.h"
#include "pdf/pdf_ink_cursor.h"
#include "pdf/pdf_ink_metrics_handler.h"
#include "pdf/pdf_ink_module_client.h"
#include "pdf/pdf_ink_transform.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/input/web_mouse_event.h"
#include "third_party/blink/public/common/input/web_pointer_properties.h"
#include "third_party/blink/public/common/input/web_touch_event.h"
#include "third_party/blink/public/common/input/web_touch_point.h"
#include "third_party/ink/src/ink/brush/brush.h"
#include "third_party/ink/src/ink/geometry/affine_transform.h"
#include "third_party/ink/src/ink/geometry/intersects.h"
#include "third_party/ink/src/ink/geometry/partitioned_mesh.h"
#include "third_party/ink/src/ink/geometry/rect.h"
#include "third_party/ink/src/ink/rendering/skia/native/skia_renderer.h"
#include "third_party/ink/src/ink/strokes/in_progress_stroke.h"
#include "third_party/ink/src/ink/strokes/input/stroke_input.h"
#include "third_party/ink/src/ink/strokes/input/stroke_input_batch.h"
#include "third_party/ink/src/ink/strokes/stroke.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/cursor/cursor.h"
#include "ui/base/cursor/mojom/cursor_type.mojom.h"
#include "ui/events/event_constants.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/point_conversions.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/skia_conversions.h"
namespace chrome_pdf {
namespace {
constexpr ink::AffineTransform kIdentityTransform;
constexpr SkColor kEraserColor = SK_ColorWHITE;
constexpr int kEraserSize = 3;
// `is_ink` represents the Ink thumbnail when true, and the PDF thumbnail when
// false.
base::Value::Dict CreateUpdateThumbnailMessage(
int page_index,
bool is_ink,
std::vector<uint8_t> image_data,
const gfx::Size& thumbnail_size) {
return base::Value::Dict()
.Set("type", "updateInk2Thumbnail")
.Set("pageNumber", page_index + 1)
.Set("isInk", is_ink)
.Set("imageData", std::move(image_data))
.Set("width", thumbnail_size.width())
.Set("height", thumbnail_size.height());
}
ink::StrokeInput::ToolType GetToolTypeFromTouchEvent(
const blink::WebTouchEvent& event) {
// Assumes the caller already handled multi-touch events.
CHECK_EQ(event.touches_length, 1u);
return event.touches[0].pointer_type ==
blink::WebPointerProperties::PointerType::kPen
? ink::StrokeInput::ToolType::kStylus
: ink::StrokeInput::ToolType::kTouch;
}
PdfInkModule::StrokeInputPoints GetStrokePointsForTesting( // IN-TEST
const ink::StrokeInputBatch& input_batch) {
PdfInkModule::StrokeInputPoints stroke_points;
stroke_points.reserve(input_batch.Size());
for (size_t i = 0; i < input_batch.Size(); ++i) {
ink::StrokeInput stroke_input = input_batch.Get(i);
stroke_points.emplace_back(stroke_input.position.x,
stroke_input.position.y);
}
return stroke_points;
}
PdfInkBrush CreateDefaultHighlighterBrush() {
return PdfInkBrush(PdfInkBrush::Type::kHighlighter,
SkColorSetRGB(0xF2, 0x8B, 0x82),
/*size=*/8.0f);
}
PdfInkBrush CreateDefaultPenBrush() {
return PdfInkBrush(PdfInkBrush::Type::kPen, SK_ColorBLACK, /*size=*/3.0f);
}
// Check if `color` is a valid color value within range.
void CheckColorIsWithinRange(int color) {
CHECK_GE(color, 0);
CHECK_LE(color, 255);
}
ink::Rect GetEraserRect(const gfx::PointF& center) {
return ink::Rect::FromTwoPoints(
{center.x() - kEraserSize, center.y() - kEraserSize},
{center.x() + kEraserSize, center.y() + kEraserSize});
}
SkRect GetDrawPageClipRect(const gfx::Rect& content_rect,
const gfx::Vector2dF& origin_offset) {
gfx::RectF clip_rect(content_rect);
clip_rect.Offset(origin_offset);
return gfx::RectFToSkRect(clip_rect);
}
blink::WebMouseEvent GenerateLeftMouseUpEvent(const gfx::PointF& position,
base::TimeTicks timestamp) {
return blink::WebMouseEvent(
blink::WebInputEvent::Type::kMouseUp,
/*position=*/position,
/*global_position=*/position, blink::WebPointerProperties::Button::kLeft,
/*click_count_param=*/1, blink::WebInputEvent::Modifiers::kNoModifiers,
timestamp);
}
} // namespace
PdfInkModule::PdfInkModule(PdfInkModuleClient& client)
: client_(client),
highlighter_brush_(CreateDefaultHighlighterBrush()),
pen_brush_(CreateDefaultPenBrush()) {
CHECK(base::FeatureList::IsEnabled(features::kPdfInk2));
CHECK(is_drawing_stroke());
// Default to a pen brush.
drawing_stroke_state().brush_type = PdfInkBrush::Type::kPen;
}
PdfInkModule::~PdfInkModule() = default;
bool PdfInkModule::ShouldBlockTextSelectionChanged() {
return features::kPdfInk2TextHighlighting.Get() && is_text_highlighting();
}
bool PdfInkModule::HasInputsToDraw() const {
if (mode_ != InkAnnotationMode::kDraw || is_erasing_stroke()) {
return false;
}
if (is_text_highlighting()) {
return !text_highlight_state().highlight_strokes.empty();
}
CHECK(is_drawing_stroke());
return !drawing_stroke_state().inputs.empty();
}
void PdfInkModule::Draw(SkCanvas& canvas) {
ink::SkiaRenderer skia_renderer;
if (is_text_highlighting()) {
const auto& highlight_strokes = text_highlight_state().highlight_strokes;
CHECK(!highlight_strokes.empty());
for (const auto& [page_index, strokes] : highlight_strokes) {
SkAutoCanvasRestore save_restore(&canvas, /*doSave=*/true);
const auto [transform, clip_rect] = GetTransformAndClipRect(page_index);
canvas.clipRect(clip_rect);
for (const auto& stroke : strokes) {
auto status = skia_renderer.Draw(nullptr, stroke, transform, canvas);
CHECK(status.ok());
}
}
return;
}
CHECK(is_drawing_stroke());
auto in_progress_stroke = CreateInProgressStrokeSegmentsFromInputs();
CHECK(!in_progress_stroke.empty());
SkAutoCanvasRestore save_restore(&canvas, /*doSave=*/true);
const auto [transform, clip_rect] =
GetTransformAndClipRect(drawing_stroke_state().page_index);
canvas.clipRect(clip_rect);
for (const auto& segment : in_progress_stroke) {
auto status = skia_renderer.Draw(nullptr, segment, transform, canvas);
CHECK(status.ok());
}
}
PdfInkModule::TransformAndClipRect PdfInkModule::GetTransformAndClipRect(
int page_index) {
const gfx::Vector2dF origin_offset = client_->GetViewportOriginOffset();
const PageOrientation rotation = client_->GetOrientation();
const gfx::Rect content_rect = client_->GetPageContentsRect(page_index);
const gfx::SizeF page_size_in_points =
client_->GetPageSizeInPoints(page_index);
ink::AffineTransform transform = GetInkRenderTransform(
origin_offset, rotation, content_rect, page_size_in_points);
return {transform, GetDrawPageClipRect(content_rect, origin_offset)};
}
void PdfInkModule::GenerateAndSendInkThumbnail(
int page_index,
const gfx::Size& thumbnail_size) {
CHECK(!thumbnail_size.IsEmpty());
auto info = SkImageInfo::Make(thumbnail_size.width(), thumbnail_size.height(),
kRGBA_8888_SkColorType, kUnpremul_SkAlphaType);
const size_t alloc_size = info.computeMinByteSize();
CHECK(!SkImageInfo::ByteSizeOverflowed(alloc_size));
std::vector<uint8_t> image_data(alloc_size);
SkBitmap sk_bitmap;
sk_bitmap.installPixels(info, image_data.data(), info.minRowBytes());
SkCanvas canvas(sk_bitmap);
if (!DrawThumbnail(canvas, page_index)) {
return;
}
client_->PostMessage(CreateUpdateThumbnailMessage(
page_index,
/*is_ink=*/true, std::move(image_data), thumbnail_size));
}
void PdfInkModule::GenerateAndSendInkThumbnailInternal(int page_index) {
return GenerateAndSendInkThumbnail(page_index,
client_->GetThumbnailSize(page_index));
}
bool PdfInkModule::DrawThumbnail(SkCanvas& canvas, int page_index) {
auto it = strokes_.find(page_index);
if (it == strokes_.end() || it->second.empty()) {
return false;
}
const ink::AffineTransform transform = GetInkThumbnailTransform(
gfx::SkISizeToSize(canvas.imageInfo().dimensions()),
client_->GetOrientation(), client_->GetPageContentsRect(page_index),
client_->GetZoom());
ink::SkiaRenderer skia_renderer;
for (const FinishedStrokeState& finished_stroke : it->second) {
if (!finished_stroke.should_draw) {
continue;
}
auto status =
skia_renderer.Draw(nullptr, finished_stroke.stroke, transform, canvas);
CHECK(status.ok());
}
// No need to draw in-progress strokes, since DrawThumbnail() only gets called
// after the in-progress strokes finish.
return true;
}
void PdfInkModule::RequestThumbnailUpdates(
const base::flat_set<int>& ink_updates,
const base::flat_set<int>& pdf_updates) {
for (int page_index : ink_updates) {
GenerateAndSendInkThumbnailInternal(page_index);
}
for (int page_index : pdf_updates) {
client_->RequestThumbnail(
page_index, base::BindOnce(&PdfInkModule::OnGotThumbnail,
weak_factory_.GetWeakPtr(), page_index));
}
}
void PdfInkModule::OnGotThumbnail(int page_index, Thumbnail thumbnail) {
client_->PostMessage(CreateUpdateThumbnailMessage(
page_index,
/*is_ink=*/false, thumbnail.TakeData(), thumbnail.image_size()));
}
PdfInkModule::PageInkStrokeIterator PdfInkModule::GetVisibleStrokesIterator() {
return PageInkStrokeIterator(strokes_);
}
bool PdfInkModule::HandleInputEvent(const blink::WebInputEvent& event) {
if (mode_ != InkAnnotationMode::kDraw) {
return false;
}
switch (event.GetType()) {
case blink::WebInputEvent::Type::kMouseDown: {
return OnMouseDown(static_cast<const blink::WebMouseEvent&>(event));
}
case blink::WebInputEvent::Type::kMouseUp:
return OnMouseUp(static_cast<const blink::WebMouseEvent&>(event));
case blink::WebInputEvent::Type::kMouseMove:
return OnMouseMove(static_cast<const blink::WebMouseEvent&>(event));
// Touch and pen input events are blink::WebTouchEvent instances.
case blink::WebInputEvent::Type::kTouchStart:
return OnTouchStart(static_cast<const blink::WebTouchEvent&>(event));
case blink::WebInputEvent::Type::kTouchEnd:
return OnTouchEnd(static_cast<const blink::WebTouchEvent&>(event));
case blink::WebInputEvent::Type::kTouchMove:
return OnTouchMove(static_cast<const blink::WebTouchEvent&>(event));
default:
return false;
}
}
bool PdfInkModule::OnMessage(const base::Value::Dict& message) {
using MessageHandler = void (PdfInkModule::*)(const base::Value::Dict&);
static constexpr auto kMessageHandlers =
base::MakeFixedFlatMap<std::string_view, MessageHandler>({
{"annotationRedo", &PdfInkModule::HandleAnnotationRedoMessage},
{"annotationUndo", &PdfInkModule::HandleAnnotationUndoMessage},
{"finishTextAnnotation",
&PdfInkModule::HandleFinishTextAnnotationMessage},
{"getAllTextAnnotations",
&PdfInkModule::HandleGetAllTextAnnotationsMessage},
{"getAnnotationBrush",
&PdfInkModule::HandleGetAnnotationBrushMessage},
{"setAnnotationBrush",
&PdfInkModule::HandleSetAnnotationBrushMessage},
{"setAnnotationMode", &PdfInkModule::HandleSetAnnotationModeMessage},
{"startTextAnnotation",
&PdfInkModule::HandleStartTextAnnotationMessage},
});
auto it = kMessageHandlers.find(*message.FindString("type"));
if (it == kMessageHandlers.end()) {
return false;
}
MessageHandler handler = it->second;
(this->*handler)(message);
return true;
}
void PdfInkModule::OnGeometryChanged() {
// If the highlighter tool is selected, and zooming moves the cursor onto
// text, the cursor should be an I-beam, but it will instead be the drawing
// cursor until a mousemove event occurs. There is not a way to get the new
// mouse position on geometry change.
MaybeSetCursor();
}
const PdfInkBrush* PdfInkModule::GetPdfInkBrushForTesting() const {
return is_drawing_stroke() ? &GetDrawingBrush() : nullptr;
}
PdfInkModule::DocumentStrokeInputPointsMap
PdfInkModule::GetStrokesInputPositionsForTesting() const {
DocumentStrokeInputPointsMap all_strokes_points;
for (const auto& [page_index, strokes] : strokes_) {
for (const auto& stroke : strokes) {
all_strokes_points[page_index].push_back(
GetStrokePointsForTesting(stroke.stroke.GetInputs())); // IN-TEST
}
}
return all_strokes_points;
}
PdfInkModule::DocumentStrokeInputPointsMap
PdfInkModule::GetVisibleStrokesInputPositionsForTesting() const {
DocumentStrokeInputPointsMap all_strokes_points;
for (const auto& [page_index, strokes] : strokes_) {
for (const auto& stroke : strokes) {
if (!stroke.should_draw) {
continue;
}
all_strokes_points[page_index].push_back(
GetStrokePointsForTesting(stroke.stroke.GetInputs())); // IN-TEST
}
}
return all_strokes_points;
}
int PdfInkModule::GetInputOfTypeCountForPageForTesting(
int page_index,
ink::StrokeInput::ToolType tool_type) const {
CHECK_GE(page_index, 0);
auto it = strokes_.find(page_index);
if (it == strokes_.end()) {
return 0;
}
int count = 0;
for (const FinishedStrokeState& stroke_state : it->second) {
const ink::StrokeInputBatch& input_batch = stroke_state.stroke.GetInputs();
for (ink::StrokeInput input : input_batch) {
if (input.tool_type == tool_type) {
++count;
}
}
}
return count;
}
bool PdfInkModule::OnMouseDown(const blink::WebMouseEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
blink::WebMouseEvent normalized_event = NormalizeMouseEvent(event);
if (normalized_event.button != blink::WebPointerProperties::Button::kLeft) {
return false;
}
gfx::PointF position = normalized_event.PositionInWidget();
if (is_drawing_stroke()) {
MaybeFinishStrokeForMissingMouseUpEvent();
if (IsHighlightingTextAtPosition(position)) {
return StartTextHighlight(position, event.ClickCount(), event.TimeStamp(),
ink::StrokeInput::ToolType::kMouse);
}
return StartStroke(position, event.TimeStamp(),
ink::StrokeInput::ToolType::kMouse);
}
return StartEraseStroke(position, ink::StrokeInput::ToolType::kMouse);
}
bool PdfInkModule::OnMouseUp(const blink::WebMouseEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
if (event.button != blink::WebPointerProperties::Button::kLeft) {
return false;
}
gfx::PointF position = event.PositionInWidget();
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
return FinishTextHighlight(position, /*is_multi_click=*/false,
ink::StrokeInput::ToolType::kMouse);
}
return is_drawing_stroke()
? FinishStroke(position, event.TimeStamp(),
ink::StrokeInput::ToolType::kMouse)
: FinishEraseStroke(position, ink::StrokeInput::ToolType::kMouse);
}
bool PdfInkModule::OnMouseMove(const blink::WebMouseEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
// Before the multi-click text selection timer fired, the mouse moved to a new
// position, so the click count can no longer increment. Fire the timer
// immediately.
if (features::kPdfInk2TextHighlighting.Get() &&
text_selection_click_timer_.IsRunning()) {
text_selection_click_timer_.FireNow();
}
gfx::PointF position = event.PositionInWidget();
bool still_interacting_with_ink =
event.GetModifiers() & blink::WebInputEvent::kLeftButtonDown;
if (still_interacting_with_ink) {
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
return ContinueTextHighlight(position);
}
return is_drawing_stroke()
? ContinueStroke(position, event.TimeStamp(),
ink::StrokeInput::ToolType::kMouse)
: ContinueEraseStroke(position,
ink::StrokeInput::ToolType::kMouse);
}
// Some other view consumed the input events sometime after the stroke was
// started, and the input end event went missing for PdfInkModule. Notice
// that now, and compensate by synthesizing a mouse-up input event at the
// last known input position. Intentionally do not use `position`.
if (is_drawing_stroke()) {
MaybeSetCursorOnMouseMove(position);
DrawingStrokeState& state = drawing_stroke_state();
if (!state.input_last_event.has_value()) {
// Ignore when not drawing.
return false;
}
const DrawingStrokeState::EventDetails& input_last_event =
state.input_last_event.value();
return OnMouseUp(GenerateLeftMouseUpEvent(input_last_event.position,
input_last_event.timestamp));
}
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
// Mouse up event does not modify the text selection, so the position does
// not matter here.
return OnMouseUp(
GenerateLeftMouseUpEvent(gfx::PointF(), base::TimeTicks::Now()));
}
CHECK(is_erasing_stroke());
EraserState& state = erasing_stroke_state();
if (!state.input_last_event_position.has_value()) {
// Ignore when not erasing.
CHECK(!state.erasing);
return false;
}
// Erasing is not sensitive to particular timestamps, just use current time.
return OnMouseUp(GenerateLeftMouseUpEvent(
state.input_last_event_position.value(), base::TimeTicks::Now()));
}
bool PdfInkModule::OnTouchStart(const blink::WebTouchEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
if (event.touches_length != 1) {
return false;
}
ink::StrokeInput::ToolType tool_type = GetToolTypeFromTouchEvent(event);
MaybeRecordPenInput(tool_type);
if (ShouldIgnoreTouchInput(tool_type)) {
return false;
}
gfx::PointF position = event.touches[0].PositionInWidget();
if (is_drawing_stroke()) {
MaybeFinishStrokeForMissingMouseUpEvent();
if (IsHighlightingTextAtPosition(position)) {
// Multi-click text selection for touch is not supported.
return StartTextHighlight(position, /*click_count=*/1, event.TimeStamp(),
tool_type);
}
return StartStroke(position, event.TimeStamp(), tool_type);
}
return StartEraseStroke(position, tool_type);
}
bool PdfInkModule::OnTouchEnd(const blink::WebTouchEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
if (event.touches_length != 1) {
return false;
}
ink::StrokeInput::ToolType tool_type = GetToolTypeFromTouchEvent(event);
MaybeRecordPenInput(tool_type);
if (ShouldIgnoreTouchInput(tool_type)) {
return false;
}
gfx::PointF position = event.touches[0].PositionInWidget();
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
return FinishTextHighlight(position, /*is_multi_click=*/false, tool_type);
}
return is_drawing_stroke()
? FinishStroke(position, event.TimeStamp(), tool_type)
: FinishEraseStroke(position, tool_type);
}
bool PdfInkModule::OnTouchMove(const blink::WebTouchEvent& event) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
if (event.touches_length != 1) {
return false;
}
ink::StrokeInput::ToolType tool_type = GetToolTypeFromTouchEvent(event);
MaybeRecordPenInput(tool_type);
if (ShouldIgnoreTouchInput(tool_type)) {
return false;
}
gfx::PointF position = event.touches[0].PositionInWidget();
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
return ContinueTextHighlight(position);
}
return is_drawing_stroke()
? ContinueStroke(position, event.TimeStamp(), tool_type)
: ContinueEraseStroke(position, tool_type);
}
void PdfInkModule::MaybeFinishStrokeForMissingMouseUpEvent() {
DrawingStrokeState& state = drawing_stroke_state();
if (!state.start_time.has_value()) {
return;
}
CHECK(state.input_last_event.has_value());
const DrawingStrokeState::EventDetails& input_last_event =
state.input_last_event.value();
bool mouse_up_result = OnMouseUp(GenerateLeftMouseUpEvent(
input_last_event.position, input_last_event.timestamp));
CHECK(mouse_up_result);
}
bool PdfInkModule::StartStroke(const gfx::PointF& position,
base::TimeTicks timestamp,
ink::StrokeInput::ToolType tool_type) {
int page_index = client_->VisiblePageIndexFromPoint(position);
if (page_index < 0) {
// Do not draw when not on a page.
return false;
}
client_->StrokeStarted();
CHECK(is_drawing_stroke());
DrawingStrokeState& state = drawing_stroke_state();
gfx::PointF page_position =
ConvertEventPositionToCanonicalPosition(position, page_index);
CHECK(!state.start_time.has_value());
state.start_time = timestamp;
state.page_index = page_index;
// Start of the first segment of a stroke.
ink::StrokeInputBatch segment;
auto result =
segment.Append(CreateInkStrokeInput(tool_type, page_position,
/*elapsed_time=*/base::TimeDelta()));
CHECK(result.ok());
state.inputs.push_back(std::move(segment));
// Invalidate area around this one point.
client_->Invalidate(GetDrawingBrush().GetInvalidateArea(position, position));
std::optional<PdfInkUndoRedoModel::DiscardedDrawCommands> discards =
undo_redo_model_.StartDraw();
CHECK(discards.has_value());
ApplyUndoRedoDiscards(discards.value());
// Remember this location and timestamp to support invalidating all of the
// area between this location and the next position, and to possibly
// compensate for missed input events.
CHECK(!state.input_last_event.has_value());
state.input_last_event =
DrawingStrokeState::EventDetails{position, timestamp, tool_type};
return true;
}
bool PdfInkModule::ContinueStroke(const gfx::PointF& position,
base::TimeTicks timestamp,
ink::StrokeInput::ToolType tool_type) {
CHECK(is_drawing_stroke());
DrawingStrokeState& state = drawing_stroke_state();
if (!state.start_time.has_value()) {
// Ignore when not drawing.
return false;
}
CHECK(state.input_last_event.has_value());
const gfx::PointF last_position = state.input_last_event.value().position;
if (position == last_position) {
// Since the position did not change, do nothing.
return true;
}
if (state.input_last_event.value().tool_type != tool_type) {
// Ignore if the user is simultaneously using a different input type.
return true;
}
const int page_index = client_->VisiblePageIndexFromPoint(position);
const int last_page_index = client_->VisiblePageIndexFromPoint(last_position);
if (page_index != state.page_index && last_page_index != state.page_index) {
// If `position` is outside the page, and so was `last_position`, then just
// update `last_input_event` and treat the event as handled.
state.input_last_event =
DrawingStrokeState::EventDetails{position, timestamp, tool_type};
return true;
}
CHECK_GE(state.page_index, 0);
if (page_index != state.page_index) {
// `position` is outside the page, and `last_position` is inside the page.
CHECK_EQ(last_page_index, state.page_index);
const gfx::PointF boundary_position = CalculatePageBoundaryIntersectPoint(
client_->GetPageContentsRect(state.page_index), last_position,
position);
if (boundary_position != last_position) {
// Record the last point before leaving the page, if `last_position` was
// not already on the page boundary.
if (RecordStrokePosition(boundary_position, timestamp, tool_type)) {
client_->Invalidate(GetDrawingBrush().GetInvalidateArea(
last_position, boundary_position));
}
}
// Remember `position` and `timestamp` for use in the next event and treat
// event as handled.
state.input_last_event =
DrawingStrokeState::EventDetails{position, timestamp, tool_type};
return true;
}
gfx::PointF invalidation_position = last_position;
if (last_page_index != state.page_index) {
// If the stroke left the page and is now re-entering, then start a new
// segment.
CHECK(!state.inputs.back().IsEmpty());
state.inputs.push_back(ink::StrokeInputBatch());
const gfx::PointF boundary_position = CalculatePageBoundaryIntersectPoint(
client_->GetPageContentsRect(state.page_index), position,
last_position);
if (boundary_position != position) {
// Record the first point after entering the page.
if (RecordStrokePosition(boundary_position, timestamp, tool_type)) {
invalidation_position = boundary_position;
}
}
}
if (RecordStrokePosition(position, timestamp, tool_type)) {
// Invalidate area covering a straight line between this position and the
// previous one.
client_->Invalidate(
GetDrawingBrush().GetInvalidateArea(position, invalidation_position));
}
// Remember `position` and `timestamp` for use in the next event.
state.input_last_event =
DrawingStrokeState::EventDetails{position, timestamp, tool_type};
return true;
}
bool PdfInkModule::FinishStroke(const gfx::PointF& position,
base::TimeTicks timestamp,
ink::StrokeInput::ToolType tool_type) {
// Process `position` as though it was the last point of movement first,
// before moving on to various bookkeeping tasks.
if (!ContinueStroke(position, timestamp, tool_type)) {
return false;
}
CHECK(is_drawing_stroke());
DrawingStrokeState& state = drawing_stroke_state();
auto in_progress_stroke_segments = CreateInProgressStrokeSegmentsFromInputs();
if (!in_progress_stroke_segments.empty()) {
CHECK_GE(state.page_index, 0);
ink::Envelope invalidate_envelope;
for (const auto& segment : in_progress_stroke_segments) {
InkStrokeId id = stroke_id_generator_.GetIdAndAdvance();
ink::Stroke stroke = segment.CopyToStroke();
client_->StrokeAdded(state.page_index, id, stroke);
invalidate_envelope.Add(stroke.GetShape().Bounds());
strokes_[state.page_index].push_back(
FinishedStrokeState(std::move(stroke), id));
bool undo_redo_success = undo_redo_model_.Draw(id);
CHECK(undo_redo_success);
}
client_->Invalidate(CanonicalInkEnvelopeToInvalidationScreenRect(
invalidate_envelope, client_->GetOrientation(),
client_->GetPageContentsRect(state.page_index), client_->GetZoom()));
}
client_->StrokeFinished(/*modified=*/true);
GenerateAndSendInkThumbnailInternal(state.page_index);
bool undo_redo_success = undo_redo_model_.FinishDraw();
CHECK(undo_redo_success);
ReportDrawStroke(state.brush_type, GetDrawingBrush().ink_brush(), tool_type);
// Reset `state` now that the stroke operation is done.
state.inputs.clear();
state.start_time = std::nullopt;
state.page_index = -1;
state.input_last_event.reset();
bool set_drawing_brush = MaybeSetDrawingBrush();
if (IsHighlightingTextAtPosition(position)) {
client_->UpdateInkCursor(ui::mojom::CursorType::kIBeam);
} else if (set_drawing_brush) {
MaybeSetCursor();
}
return true;
}
bool PdfInkModule::StartEraseStroke(const gfx::PointF& position,
ink::StrokeInput::ToolType tool_type) {
int page_index = client_->VisiblePageIndexFromPoint(position);
if (page_index < 0) {
// Do not erase when not on a page.
return false;
}
client_->StrokeStarted();
CHECK(is_erasing_stroke());
EraserState& state = erasing_stroke_state();
CHECK(!state.erasing);
state.erasing = true;
std::optional<PdfInkUndoRedoModel::DiscardedDrawCommands> discards =
undo_redo_model_.StartErase();
CHECK(discards.has_value());
ApplyUndoRedoDiscards(discards.value());
EraseHelper(position, page_index);
// Remember this position to possibly compensate for missed input events.
CHECK(!state.input_last_event_position.has_value());
state.input_last_event_position = position;
state.tool_type = tool_type;
return true;
}
bool PdfInkModule::ContinueEraseStroke(const gfx::PointF& position,
ink::StrokeInput::ToolType tool_type) {
CHECK(is_erasing_stroke());
EraserState& state = erasing_stroke_state();
if (!state.erasing) {
return false;
}
state.tool_type = tool_type;
int page_index = client_->VisiblePageIndexFromPoint(position);
if (page_index < 0) {
// Do nothing when the eraser tool is in use, but the event position is
// off-page. Treat the event as handled to be consistent with
// ContinueStroke(), and so that nothing else attempts to handle this event.
// Remember this position for possible use in the next event.
state.input_last_event_position = position;
return true;
}
EraseHelper(position, page_index);
// Remember this position for possible use in the next event.
state.input_last_event_position = position;
return true;
}
bool PdfInkModule::FinishEraseStroke(const gfx::PointF& position,
ink::StrokeInput::ToolType tool_type) {
// Process `position` as though it was the last point of movement first,
// before moving on to various bookkeeping tasks.
if (!ContinueEraseStroke(position, tool_type)) {
return false;
}
bool undo_redo_success = undo_redo_model_.FinishErase();
CHECK(undo_redo_success);
CHECK(is_erasing_stroke());
EraserState& state = erasing_stroke_state();
const bool modified =
!state.page_indices_with_stroke_erasures.empty() ||
!state.page_indices_with_partitioned_mesh_erasures.empty();
if (modified) {
RequestThumbnailUpdates(
/*ink_updates=*/state.page_indices_with_stroke_erasures,
/*pdf_updates=*/state.page_indices_with_partitioned_mesh_erasures);
ReportEraseStroke(tool_type);
}
client_->StrokeFinished(modified);
// Reset `state` now that the erase operation is done.
state.erasing = false;
state.page_indices_with_stroke_erasures.clear();
state.page_indices_with_partitioned_mesh_erasures.clear();
state.input_last_event_position.reset();
state.tool_type = ink::StrokeInput::ToolType::kUnknown;
if (MaybeSetDrawingBrush()) {
MaybeSetCursor();
}
return true;
}
void PdfInkModule::EraseHelper(const gfx::PointF& position, int page_index) {
CHECK_GE(page_index, 0);
const gfx::PointF canonical_position =
ConvertEventPositionToCanonicalPosition(position, page_index);
const ink::Rect eraser_rect = GetEraserRect(canonical_position);
ink::Envelope invalidate_envelope;
bool erased_stroke = false;
if (auto stroke_it = strokes_.find(page_index); stroke_it != strokes_.end()) {
for (auto& stroke : stroke_it->second) {
if (!stroke.should_draw) {
// Already erased.
continue;
}
// No transform needed, as `eraser_rect` is already using transformed
// coordinates from `canonical_position`.
const ink::PartitionedMesh& shape = stroke.stroke.GetShape();
if (!ink::Intersects(eraser_rect, shape, kIdentityTransform)) {
continue;
}
stroke.should_draw = false;
client_->UpdateStrokeActive(page_index, stroke.id, /*active=*/false);
invalidate_envelope.Add(shape.Bounds());
erased_stroke = true;
bool undo_redo_success = undo_redo_model_.EraseStroke(stroke.id);
CHECK(undo_redo_success);
}
}
bool erased_partitioned_mesh = false;
if (auto shape_it = loaded_v2_shapes_.find(page_index);
shape_it != loaded_v2_shapes_.end()) {
for (auto& shape_state : shape_it->second) {
if (!shape_state.should_draw) {
// Already erased.
continue;
}
// No transform needed, as `eraser_rect` is already using transformed
// coordinates from `canonical_position`.
if (!ink::Intersects(eraser_rect, shape_state.shape,
kIdentityTransform)) {
continue;
}
shape_state.should_draw = false;
client_->UpdateShapeActive(page_index, shape_state.id, /*active=*/false);
invalidate_envelope.Add(shape_state.shape.Bounds());
erased_partitioned_mesh = true;
bool undo_redo_success = undo_redo_model_.EraseShape(shape_state.id);
CHECK(undo_redo_success);
}
}
if (invalidate_envelope.IsEmpty()) {
CHECK(!erased_stroke);
CHECK(!erased_partitioned_mesh);
return;
}
// If `invalidate_envelope` isn't empty, then something got erased.
client_->Invalidate(CanonicalInkEnvelopeToInvalidationScreenRect(
invalidate_envelope, client_->GetOrientation(),
client_->GetPageContentsRect(page_index), client_->GetZoom()));
CHECK(erased_stroke || erased_partitioned_mesh);
EraserState& state = erasing_stroke_state();
if (erased_stroke) {
state.page_indices_with_stroke_erasures.insert(page_index);
}
if (erased_partitioned_mesh) {
state.page_indices_with_partitioned_mesh_erasures.insert(page_index);
}
}
bool PdfInkModule::StartTextHighlight(const gfx::PointF& position,
int click_count,
base::TimeTicks timestamp,
ink::StrokeInput::ToolType tool_type) {
client_->StrokeStarted();
current_tool_state_.emplace<TextHighlightState>();
bool is_double_click = click_count == 2;
bool is_triple_click = click_count == 3;
if (is_double_click) {
StartTextSelectionMultiClickTimer(tool_type);
} else if (is_triple_click) {
StopTextSelectionMultiClickTimer();
// Clicking the same text position two times will select the word. An
// additional third click will select the line. `StartTextHighlight()` is
// called for every click count, so the two click text selection has already
// been processed in a previous call. Undo that highlight.
ApplyUndoRedoCommands(undo_redo_model_.Undo());
}
std::optional<PdfInkUndoRedoModel::DiscardedDrawCommands> discards =
undo_redo_model_.StartDraw();
CHECK(discards.has_value());
ApplyUndoRedoDiscards(discards.value());
// Notifying the client will update the text selection.
client_->OnTextOrLinkAreaClick(position, click_count);
if (is_double_click || is_triple_click) {
return FinishTextHighlight(position, /*is_multi_click=*/true, tool_type);
}
return true;
}
bool PdfInkModule::ContinueTextHighlight(const gfx::PointF& position) {
CHECK(is_text_highlighting());
auto& state = text_highlight_state();
if (state.finished_multi_click) {
// This text highlight has already processed multi-click text selection, so
// do not extend the selection.
return true;
}
client_->ExtendSelectionByPoint(position);
state.highlight_strokes = GetTextSelectionAsStrokes();
return true;
}
bool PdfInkModule::FinishTextHighlight(const gfx::PointF& position,
bool is_multi_click,
ink::StrokeInput::ToolType tool_type) {
CHECK(is_text_highlighting());
auto& state = text_highlight_state();
if (!state.finished_multi_click) {
auto& highlight_strokes = state.highlight_strokes;
highlight_strokes = GetTextSelectionAsStrokes();
for (const auto& [page_index, strokes] : highlight_strokes) {
for (const auto& stroke : strokes) {
InkStrokeId id = stroke_id_generator_.GetIdAndAdvance();
client_->StrokeAdded(page_index, id, stroke);
strokes_[page_index].push_back(
FinishedStrokeState(std::move(stroke), id));
bool undo_redo_success = undo_redo_model_.Draw(id);
CHECK(undo_redo_success);
}
GenerateAndSendInkThumbnailInternal(page_index);
}
const bool modified = !highlight_strokes.empty();
if (modified) {
if (!text_selection_click_timer_.IsRunning()) {
ReportTextHighlight(highlighter_brush_.ink_brush(), tool_type);
}
// Invalidation is already handled by the client during text selection.
}
bool undo_redo_success = undo_redo_model_.FinishDraw();
CHECK(undo_redo_success);
client_->ClearSelection();
// Only call StrokeFinished() in this block, where
// `!state.finished_multi_click` is false.
client_->StrokeFinished(modified);
}
if (is_multi_click) {
// Stay in text highlight state to handle any additional events.
state.finished_multi_click = true;
return true;
}
// Reset state back to a drawing highlighter brush.
current_tool_state_.emplace<DrawingStrokeState>();
drawing_stroke_state().brush_type = PdfInkBrush::Type::kHighlighter;
if (!client_->IsSelectableTextOrLinkArea(position)) {
MaybeSetCursor();
}
return true;
}
ink::Stroke PdfInkModule::GetHighlightStrokeFromSelectionRect(
const gfx::Rect& selection_rect) {
CHECK(is_text_highlighting());
// The stroke should be drawn along the largest dimension, so have the brush
// size equal the smallest dimension.
float brush_size = std::min(selection_rect.width(), selection_rect.height()) /
client_->GetZoom();
// Strokes will be drawn using one or two input points.
std::pair<gfx::PointF, gfx::PointF> points =
GetPointsForTextSelectionHighlightStroke(selection_rect, brush_size);
ink::StrokeInputBatch batch;
ink::StrokeInput input =
CreateInkStrokeInput(ink::StrokeInput::ToolType::kMouse, points.first,
/*elapsed_time=*/base::TimeDelta());
auto result = batch.Append(input);
CHECK(result.ok()) << result.message();
// Skip the second input point if it matches the first input point.
if (points.first != points.second) {
input =
CreateInkStrokeInput(ink::StrokeInput::ToolType::kMouse, points.second,
/*elapsed_time=*/base::TimeDelta());
result = batch.Append(input);
CHECK(result.ok()) << result.message();
}
// Make a copy of the ink brush to avoid modifying the drawing highlighter.
ink::Brush ink_brush = highlighter_brush_.ink_brush();
result = ink_brush.SetSize(brush_size);
CHECK(result.ok()) << result.message();
return ink::Stroke(ink_brush, batch);
}
std::pair<gfx::PointF, gfx::PointF>
PdfInkModule::GetPointsForTextSelectionHighlightStroke(
const gfx::Rect& selection_rect,
float brush_size) {
bool is_vertical_stroke = selection_rect.height() > selection_rect.width();
PageOrientation orientation = client_->GetOrientation();
// The first input point will always either be the top center of the text
// characters or the left center of the text characters, depending on the
// orientation and whether `selection_rect` is longer vertically. The second
// input point will be on the opposite end of the rect.
gfx::Point start;
gfx::Point end;
if (is_vertical_stroke) {
start = selection_rect.top_center();
end = selection_rect.bottom_center();
if (orientation == PageOrientation::kClockwise180 ||
orientation == PageOrientation::kClockwise270) {
std::swap(start, end);
}
} else {
start = selection_rect.left_center();
end = selection_rect.right_center();
if (orientation == PageOrientation::kClockwise90 ||
orientation == PageOrientation::kClockwise180) {
std::swap(start, end);
}
}
int page_index =
client_->PageIndexFromPoint(gfx::PointF(selection_rect.origin()));
CHECK_GE(page_index, 0);
gfx::PointF start_f =
ConvertEventPositionToCanonicalPosition(gfx::PointF(start), page_index);
gfx::PointF end_f =
ConvertEventPositionToCanonicalPosition(gfx::PointF(end), page_index);
// These points need to be offset to account for brush size. Depending on the
// direction of the stroke, the points will need to be offset in either the x
// or y axis. Strokes will always be drawn along the largest dimension of the
// rectangle.
bool should_offset_y =
(is_vertical_stroke && (orientation == PageOrientation::kOriginal ||
orientation == PageOrientation::kClockwise180)) ||
(!is_vertical_stroke && (orientation == PageOrientation::kClockwise90 ||
orientation == PageOrientation::kClockwise270));
float offset = brush_size / 2;
start_f.Offset(should_offset_y ? 0 : offset, should_offset_y ? offset : 0);
end_f.Offset(should_offset_y ? 0 : -offset, should_offset_y ? -offset : 0);
return {start_f, end_f};
}
std::map<int, std::vector<ink::Stroke>>
PdfInkModule::GetTextSelectionAsStrokes() {
std::map<int, std::vector<ink::Stroke>> result;
for (const gfx::Rect& selection_rect : client_->GetSelectionRects()) {
int page_index =
client_->PageIndexFromPoint(gfx::PointF(selection_rect.origin()));
// A selection rect's origin should always be on a page.
CHECK_GE(page_index, 0);
result[page_index].push_back(
{GetHighlightStrokeFromSelectionRect(selection_rect)});
}
return result;
}
void PdfInkModule::StartTextSelectionMultiClickTimer(
ink::StrokeInput::ToolType tool_type) {
text_selection_click_timer_.Start(
FROM_HERE, base::Milliseconds(ui::kDoubleClickTimeMs),
base::BindOnce(&ReportTextHighlight, highlighter_brush_.ink_brush(),
tool_type));
}
void PdfInkModule::StopTextSelectionMultiClickTimer() {
text_selection_click_timer_.Stop();
}
void PdfInkModule::MaybeRecordPenInput(ink::StrokeInput::ToolType tool_type) {
if (tool_type == ink::StrokeInput::ToolType::kStylus) {
using_stylus_instead_of_touch_ = true;
}
}
bool PdfInkModule::ShouldIgnoreTouchInput(
ink::StrokeInput::ToolType tool_type) {
return using_stylus_instead_of_touch_ &&
tool_type == ink::StrokeInput::ToolType::kTouch;
}
void PdfInkModule::HandleAnnotationRedoMessage(
const base::Value::Dict& message) {
ApplyUndoRedoCommands(undo_redo_model_.Redo());
}
void PdfInkModule::HandleAnnotationUndoMessage(
const base::Value::Dict& message) {
ApplyUndoRedoCommands(undo_redo_model_.Undo());
}
void PdfInkModule::HandleGetAllTextAnnotationsMessage(
const base::Value::Dict& message) {
// TODO(crbug.com/408926609): Fill in this method. For now, just return an
// empty set of annotations.
client_->PostMessage(
PrepareReplyMessage(message).Set("annotations", base::Value::List()));
}
void PdfInkModule::HandleGetAnnotationBrushMessage(
const base::Value::Dict& message) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
base::Value::Dict reply = PrepareReplyMessage(message);
// Get the brush type from `message` or the current brush type if not
// provided.
const std::string* brush_type_message = message.FindString("brushType");
std::string brush_type_string;
if (brush_type_message) {
brush_type_string = *brush_type_message;
} else {
brush_type_string =
is_drawing_stroke()
? PdfInkBrush::TypeToString(drawing_stroke_state().brush_type)
: "eraser";
}
base::Value::Dict data;
data.Set("type", brush_type_string);
if (brush_type_string == "eraser") {
reply.Set("data", std::move(data));
client_->PostMessage(std::move(reply));
return;
}
std::optional<PdfInkBrush::Type> brush_type =
PdfInkBrush::StringToType(brush_type_string);
CHECK(brush_type.has_value());
const ink::Brush& ink_brush = GetBrush(brush_type.value()).ink_brush();
data.Set("size", ink_brush.GetSize());
SkColor color = GetSkColorFromInkBrush(ink_brush);
data.Set("color", base::Value::Dict()
.Set("r", static_cast<int>(SkColorGetR(color)))
.Set("g", static_cast<int>(SkColorGetG(color)))
.Set("b", static_cast<int>(SkColorGetB(color))));
reply.Set("data", std::move(data));
client_->PostMessage(std::move(reply));
}
void PdfInkModule::HandleSetAnnotationBrushMessage(
const base::Value::Dict& message) {
CHECK_EQ(InkAnnotationMode::kDraw, mode_);
const base::Value::Dict* data = message.FindDict("data");
CHECK(data);
const std::string& brush_type_string = *data->FindString("type");
if (brush_type_string == "eraser") {
// TODO(crbug.com/342445982): Handle tool changes during text highlighting.
if (is_drawing_stroke()) {
DrawingStrokeState& state = drawing_stroke_state();
if (state.start_time.has_value()) {
// PdfInkModule is currently drawing a stroke. Finish that before
// transitioning, using the last known input.
CHECK(state.input_last_event.has_value());
const DrawingStrokeState::EventDetails& input_last_event =
state.input_last_event.value();
FinishStroke(input_last_event.position, input_last_event.timestamp,
input_last_event.tool_type);
}
current_tool_state_.emplace<EraserState>();
} else {
// Do not adjust `current_tool_state_` if an erase stroke is already
// in-progress. Changes to the tool state will only apply to subsequent
// strokes.
if (!erasing_stroke_state().erasing) {
current_tool_state_.emplace<EraserState>();
}
}
MaybeSetCursor();
return;
}
float size = base::checked_cast<float>(data->FindDouble("size").value());
CHECK(PdfInkBrush::IsToolSizeInRange(size));
if (is_erasing_stroke()) {
EraserState& state = erasing_stroke_state();
if (state.erasing) {
// An erasing stroke is in-progress. Finish that off before
// transitioning, using the last known input.
CHECK(state.input_last_event_position.has_value());
FinishEraseStroke(state.input_last_event_position.value(),
state.tool_type);
}
}
// All brush types except the eraser should have a color and size.
// TODO(crbug.com/342445982): Handle tool changes during text highlighting.
const base::Value::Dict* color = data->FindDict("color");
CHECK(color);
int color_r = color->FindInt("r").value();
int color_g = color->FindInt("g").value();
int color_b = color->FindInt("b").value();
CheckColorIsWithinRange(color_r);
CheckColorIsWithinRange(color_g);
CheckColorIsWithinRange(color_b);
std::optional<PdfInkBrush::Type> brush_type =
PdfInkBrush::StringToType(brush_type_string);
CHECK(brush_type.has_value());
pending_drawing_brush_state_ = PendingDrawingBrushState{
SkColorSetRGB(color_r, color_g, color_b), size, brush_type.value()};
// Do not adjust current tool state if a drawing stroke is already
// in-progress. Changes to the tool state will only apply to subsequent
// strokes.
if (is_drawing_stroke() && drawing_stroke_state().start_time.has_value()) {
return;
}
if (MaybeSetDrawingBrush()) {
MaybeSetCursor();
}
}
void PdfInkModule::HandleSetAnnotationModeMessage(
const base::Value::Dict& message) {
const std::string* mode = message.FindString("mode");
CHECK(mode);
if (*mode == "off") {
mode_ = InkAnnotationMode::kOff;
} else if (*mode == "draw") {
mode_ = InkAnnotationMode::kDraw;
} else if (*mode == "text") {
CHECK(features::kPdfInk2TextAnnotations.Get());
mode_ = InkAnnotationMode::kText;
} else {
NOTREACHED();
}
client_->OnAnnotationModeToggled(enabled());
if (enabled() && !loaded_data_from_pdf_) {
loaded_data_from_pdf_ = true;
PdfInkModuleClient::DocumentV2InkPathShapesMap loaded_v2_shapes =
client_->LoadV2InkPathsFromPdf();
for (auto& [page_index, page_shape_map] : loaded_v2_shapes) {
PageV2InkPathShapes& page_shapes = loaded_v2_shapes_[page_index];
page_shapes.reserve(page_shape_map.size());
for (auto& [shape_id, shape] : page_shape_map) {
page_shapes.emplace_back(shape, shape_id);
}
}
}
MaybeSetCursor();
}
void PdfInkModule::HandleStartTextAnnotationMessage(
const base::Value::Dict& message) {
// TODO(crbug.com/409439509): Fill in this method. For now, just create it
// so the backend doesn't CHECK when it's sent from the frontend.
}
void PdfInkModule::HandleFinishTextAnnotationMessage(
const base::Value::Dict& message) {
// TODO(crbug.com/409439509): Fill in this method. For now, just create it
// so the backend doesn't CHECK when it's sent from the frontend.
}
bool PdfInkModule::IsHighlightingTextAtPosition(
const gfx::PointF& position) const {
return features::kPdfInk2TextHighlighting.Get() &&
drawing_stroke_state().brush_type == PdfInkBrush::Type::kHighlighter &&
client_->IsSelectableTextOrLinkArea(position);
}
PdfInkBrush& PdfInkModule::GetDrawingBrush() {
// Use the const PdfInkBrush getter and remove the const qualifier to avoid
// duplicate getter logic.
return const_cast<PdfInkBrush&>(
static_cast<PdfInkModule const&>(*this).GetDrawingBrush());
}
const PdfInkBrush& PdfInkModule::GetDrawingBrush() const {
CHECK(is_drawing_stroke());
return GetBrush(drawing_stroke_state().brush_type);
}
const PdfInkBrush& PdfInkModule::GetBrush(PdfInkBrush::Type brush_type) const {
switch (brush_type) {
case (PdfInkBrush::Type::kHighlighter):
return highlighter_brush_;
case (PdfInkBrush::Type::kPen):
return pen_brush_;
}
NOTREACHED();
}
std::vector<ink::InProgressStroke>
PdfInkModule::CreateInProgressStrokeSegmentsFromInputs() const {
if (!is_drawing_stroke()) {
return {};
}
const DrawingStrokeState& state = drawing_stroke_state();
const ink::Brush& brush = GetDrawingBrush().ink_brush();
CHECK(PdfInkBrush::IsToolSizeInRange(brush.GetSize()));
std::vector<ink::InProgressStroke> stroke_segments;
stroke_segments.reserve(state.inputs.size());
for (size_t segment_number = 0; const auto& segment : state.inputs) {
++segment_number;
if (segment.IsEmpty()) {
// Only the last segment can possibly be empty, if the stroke left the
// page but never returned back in.
CHECK_EQ(segment_number, state.inputs.size());
break;
}
ink::InProgressStroke stroke;
stroke.Start(brush);
auto enqueue_results =
stroke.EnqueueInputs(segment, /*predicted_inputs=*/{});
CHECK(enqueue_results.ok());
stroke.FinishInputs();
auto update_results = stroke.UpdateShape(ink::Duration32());
CHECK(update_results.ok());
stroke_segments.push_back(std::move(stroke));
}
return stroke_segments;
}
gfx::PointF PdfInkModule::ConvertEventPositionToCanonicalPosition(
const gfx::PointF& position,
int page_index) {
// If the page is visible at `position`, then its rect must not be empty.
auto page_contents_rect = client_->GetPageContentsRect(page_index);
CHECK(!page_contents_rect.IsEmpty());
return EventPositionToCanonicalPosition(position, client_->GetOrientation(),
page_contents_rect,
client_->GetZoom());
}
bool PdfInkModule::RecordStrokePosition(const gfx::PointF& position,
base::TimeTicks timestamp,
ink::StrokeInput::ToolType tool_type) {
CHECK(is_drawing_stroke());
DrawingStrokeState& state = drawing_stroke_state();
gfx::PointF canonical_position =
ConvertEventPositionToCanonicalPosition(position, state.page_index);
base::TimeDelta time_diff = timestamp - state.start_time.value();
auto result = state.inputs.back().Append(
CreateInkStrokeInput(tool_type, canonical_position, time_diff));
return result.ok();
}
void PdfInkModule::ApplyUndoRedoCommands(
const PdfInkUndoRedoModel::Commands& commands) {
switch (PdfInkUndoRedoModel::GetCommandsType(commands)) {
case PdfInkUndoRedoModel::CommandsType::kNone: {
return;
}
case PdfInkUndoRedoModel::CommandsType::kDraw: {
ApplyUndoRedoCommandsHelper(
PdfInkUndoRedoModel::GetDrawCommands(commands).value(),
/*should_draw=*/true);
return;
}
case PdfInkUndoRedoModel::CommandsType::kErase: {
ApplyUndoRedoCommandsHelper(
PdfInkUndoRedoModel::GetEraseCommands(commands).value(),
/*should_draw=*/false);
return;
}
}
NOTREACHED();
}
void PdfInkModule::ApplyUndoRedoCommandsHelper(
std::set<PdfInkUndoRedoModel::IdType> ids,
bool should_draw) {
CHECK(!ids.empty());
std::set<InkStrokeId> stroke_ids;
std::set<InkModeledShapeId> shape_ids;
for (PdfInkUndoRedoModel::IdType id : ids) {
bool inserted;
if (std::holds_alternative<InkStrokeId>(id)) {
inserted = stroke_ids.insert(std::get<InkStrokeId>(id)).second;
} else {
CHECK(std::holds_alternative<InkModeledShapeId>(id));
inserted = shape_ids.insert(std::get<InkModeledShapeId>(id)).second;
}
CHECK(inserted);
}
// Sanity check strokes/shapes exist, if this method is being asked to erase
// them.
if (!stroke_ids.empty()) {
CHECK(!strokes_.empty());
}
if (!shape_ids.empty()) {
CHECK(!loaded_v2_shapes_.empty());
}
base::flat_set<int> page_indices_with_ink_thumbnail_updates;
base::flat_set<int> page_indices_with_pdf_thumbnail_updates;
for (auto& [page_index, page_ink_strokes] : strokes_) {
std::vector<InkStrokeId> page_ids;
page_ids.reserve(page_ink_strokes.size());
for (const auto& stroke : page_ink_strokes) {
page_ids.push_back(stroke.id);
}
std::vector<InkStrokeId> ids_to_apply_command;
std::ranges::set_intersection(stroke_ids, page_ids,
std::back_inserter(ids_to_apply_command));
if (ids_to_apply_command.empty()) {
continue;
}
// `it` is always valid, because all the IDs in `ids_to_apply_command` are
// in `page_ink_strokes`.
auto it = page_ink_strokes.begin();
ink::Envelope invalidate_envelope;
for (InkStrokeId id : ids_to_apply_command) {
it = std::ranges::lower_bound(
it, page_ink_strokes.end(), id, {},
[](const FinishedStrokeState& state) { return state.id; });
auto& stroke = *it;
CHECK_NE(stroke.should_draw, should_draw);
stroke.should_draw = should_draw;
client_->UpdateStrokeActive(page_index, id, should_draw);
invalidate_envelope.Add(stroke.stroke.GetShape().Bounds());
stroke_ids.erase(id);
}
client_->Invalidate(CanonicalInkEnvelopeToInvalidationScreenRect(
invalidate_envelope, client_->GetOrientation(),
client_->GetPageContentsRect(page_index), client_->GetZoom()));
page_indices_with_ink_thumbnail_updates.insert(page_index);
if (stroke_ids.empty()) {
break; // Break out of loop if there is no stroke remaining to apply.
}
}
for (auto& [page_index, page_ink_shapes] : loaded_v2_shapes_) {
std::vector<InkModeledShapeId> page_ids;
page_ids.reserve(page_ink_shapes.size());
for (const auto& shape : page_ink_shapes) {
page_ids.push_back(shape.id);
}
std::vector<InkModeledShapeId> ids_to_apply_command;
std::ranges::set_intersection(shape_ids, page_ids,
std::back_inserter(ids_to_apply_command));
if (ids_to_apply_command.empty()) {
continue;
}
// `it` is always valid, because all the IDs in `ids_to_apply_command` are
// in `page_ink_shapes`.
auto it = page_ink_shapes.begin();
ink::Envelope invalidate_envelope;
for (InkModeledShapeId id : ids_to_apply_command) {
it = std::ranges::lower_bound(
it, page_ink_shapes.end(), id, {},
[](const LoadedV2ShapeState& state) { return state.id; });
auto& shape_state = *it;
CHECK_NE(shape_state.should_draw, should_draw);
shape_state.should_draw = should_draw;
client_->UpdateShapeActive(page_index, shape_state.id, should_draw);
invalidate_envelope.Add(shape_state.shape.Bounds());
shape_ids.erase(id);
}
client_->Invalidate(CanonicalInkEnvelopeToInvalidationScreenRect(
invalidate_envelope, client_->GetOrientation(),
client_->GetPageContentsRect(page_index), client_->GetZoom()));
page_indices_with_pdf_thumbnail_updates.insert(page_index);
if (shape_ids.empty()) {
break; // Break out of loop if there is no shape remaining to apply.
}
}
RequestThumbnailUpdates(
/*ink_updates=*/page_indices_with_ink_thumbnail_updates,
/*pdf_updates=*/page_indices_with_pdf_thumbnail_updates);
}
void PdfInkModule::ApplyUndoRedoDiscards(
const PdfInkUndoRedoModel::DiscardedDrawCommands& discards) {
if (discards.empty()) {
return;
}
// Although `discards` contain the full set of IDs to discard, only the first
// ID is needed here. This is because the `page_ink_strokes` values in
// `strokes_` are in sorted order. All elements in `page_ink_strokes` with the
// first ID or larger IDs can be discarded.
const InkStrokeId start_id = *discards.begin();
for (auto& [page_index, page_ink_strokes] : strokes_) {
// Find the first element in `page_ink_strokes` whose ID >= `start_id`.
auto start = std::ranges::lower_bound(
page_ink_strokes, start_id, {},
[](const FinishedStrokeState& state) { return state.id; });
auto end = page_ink_strokes.end();
for (auto it = start; it < end; ++it) {
client_->DiscardStroke(page_index, it->id);
}
page_ink_strokes.erase(start, end);
}
// Check the pages with strokes and remove the ones that are now empty.
// Also find the maximum stroke ID that is in use.
std::optional<InkStrokeId> max_stroke_id;
for (auto it = strokes_.begin(); it != strokes_.end();) {
const auto& page_ink_strokes = it->second;
if (page_ink_strokes.empty()) {
it = strokes_.erase(it);
} else {
max_stroke_id = std::max(max_stroke_id.value_or(InkStrokeId(0)),
page_ink_strokes.back().id);
++it;
}
}
// Now that some strokes have been discarded, Let the StrokeIdGenerator know
// there are IDs available for reuse.
if (max_stroke_id.has_value()) {
// Since some stroke(s) got discarded, the maximum stroke ID value cannot be
// the max integer value. Thus adding 1 will not overflow.
CHECK_NE(max_stroke_id.value(),
InkStrokeId(std::numeric_limits<size_t>::max()));
stroke_id_generator_.ResetIdTo(
InkStrokeId(max_stroke_id.value().value() + 1));
} else {
stroke_id_generator_.ResetIdTo(InkStrokeId(0));
}
}
bool PdfInkModule::MaybeSetDrawingBrush() {
if (!pending_drawing_brush_state_.has_value()) {
return false;
}
current_tool_state_.emplace<DrawingStrokeState>();
drawing_stroke_state().brush_type = pending_drawing_brush_state_->type;
PdfInkBrush& current_brush = GetDrawingBrush();
current_brush.SetColor(pending_drawing_brush_state_->color);
current_brush.SetSize(pending_drawing_brush_state_->size);
pending_drawing_brush_state_.reset();
return true;
}
void PdfInkModule::MaybeSetCursor() {
switch (mode_) {
case InkAnnotationMode::kOff:
// Do nothing when disabled. The code outside of PdfInkModule will select
// a normal mouse cursor and switch to that.
return;
case InkAnnotationMode::kDraw: {
if (features::kPdfInk2TextHighlighting.Get() && is_text_highlighting()) {
return;
}
SkColor color;
float brush_size;
if (is_drawing_stroke()) {
const auto& ink_brush = GetDrawingBrush().ink_brush();
color = GetSkColorFromInkBrush(ink_brush);
brush_size = ink_brush.GetSize();
} else {
CHECK(is_erasing_stroke());
color = kEraserColor;
brush_size = kEraserSize;
}
SkBitmap bitmap = GenerateToolCursor(
color,
CursorDiameterFromBrushSizeAndZoom(brush_size, client_->GetZoom()));
gfx::Point hotspot(bitmap.width() / 2, bitmap.height() / 2);
client_->UpdateInkCursor(
ui::Cursor::NewCustom(std::move(bitmap), std::move(hotspot)));
return;
}
case InkAnnotationMode::kText:
// TODO(crbug.com/402546153): Update cursor for text annotation, once
// UX determines if it should always use I-beam.
client_->UpdateInkCursor(ui::mojom::CursorType::kIBeam);
return;
}
NOTREACHED();
}
void PdfInkModule::MaybeSetCursorOnMouseMove(const gfx::PointF& position) {
if (!features::kPdfInk2TextHighlighting.Get()) {
return;
}
CHECK(is_drawing_stroke());
if (drawing_stroke_state().brush_type != PdfInkBrush::Type::kHighlighter ||
!client_->IsSelectableTextOrLinkArea(position)) {
if (client_->GetCursor().type() == ui::mojom::CursorType::kIBeam) {
MaybeSetCursor();
}
return;
}
if (client_->GetCursor().type() != ui::mojom::CursorType::kIBeam) {
client_->UpdateInkCursor(ui::mojom::CursorType::kIBeam);
}
}
PdfInkModule::DrawingStrokeState::DrawingStrokeState() = default;
PdfInkModule::DrawingStrokeState::~DrawingStrokeState() = default;
PdfInkModule::EraserState::EraserState() = default;
PdfInkModule::EraserState::~EraserState() = default;
PdfInkModule::TextHighlightState::TextHighlightState() = default;
PdfInkModule::TextHighlightState::~TextHighlightState() = default;
PdfInkModule::FinishedStrokeState::FinishedStrokeState(ink::Stroke stroke,
InkStrokeId id)
: stroke(std::move(stroke)), id(id) {}
PdfInkModule::FinishedStrokeState::FinishedStrokeState(
PdfInkModule::FinishedStrokeState&&) noexcept = default;
PdfInkModule::FinishedStrokeState& PdfInkModule::FinishedStrokeState::operator=(
PdfInkModule::FinishedStrokeState&&) noexcept = default;
PdfInkModule::FinishedStrokeState::~FinishedStrokeState() = default;
PdfInkModule::LoadedV2ShapeState::LoadedV2ShapeState(ink::PartitionedMesh shape,
InkModeledShapeId id)
: shape(std::move(shape)), id(id) {}
PdfInkModule::LoadedV2ShapeState::LoadedV2ShapeState(
PdfInkModule::LoadedV2ShapeState&&) noexcept = default;
PdfInkModule::LoadedV2ShapeState& PdfInkModule::LoadedV2ShapeState::operator=(
PdfInkModule::LoadedV2ShapeState&&) noexcept = default;
PdfInkModule::LoadedV2ShapeState::~LoadedV2ShapeState() = default;
PdfInkModule::StrokeIdGenerator::StrokeIdGenerator() = default;
PdfInkModule::StrokeIdGenerator::~StrokeIdGenerator() = default;
InkStrokeId PdfInkModule::StrokeIdGenerator::GetIdAndAdvance() {
// Die intentionally if `next_stroke_id_` is about to overflow.
CHECK_NE(next_stroke_id_.value(), std::numeric_limits<size_t>::max());
InkStrokeId stroke_id = next_stroke_id_;
++next_stroke_id_.value();
return stroke_id;
}
void PdfInkModule::StrokeIdGenerator::ResetIdTo(InkStrokeId id) {
next_stroke_id_ = id;
}
PdfInkModule::PageInkStrokeIterator::PageInkStrokeIterator(
const PdfInkModule::DocumentStrokesMap& strokes)
: strokes_(strokes), pages_iterator_(strokes_->cbegin()) {
// Set up internal iterators for the first visible stroke, if there is one.
AdvanceToNextPageWithVisibleStrokes();
}
PdfInkModule::PageInkStrokeIterator::~PageInkStrokeIterator() = default;
std::optional<PdfInkModule::PageInkStroke>
PdfInkModule::PageInkStrokeIterator::GetNextStrokeAndAdvance() {
if (pages_iterator_ == strokes_->cend()) {
return std::nullopt;
}
// `page_strokes_iterator_` is set up when finding the page, and is updated
// after establishing the stroke to return. So the return value is based
// upon the current position of the iterator. Callers should not get here
// if the end of the strokes has been reached for the current page.
CHECK(page_strokes_iterator_ != pages_iterator_->second.cend());
CHECK(page_strokes_iterator_->should_draw);
const ink::Stroke& page_stroke = page_strokes_iterator_->stroke;
int page_index = pages_iterator_->first;
AdvanceForCurrentPage();
if (page_strokes_iterator_ == pages_iterator_->second.cend()) {
// This was the last stroke for the current page, so advancing requires
// moving on to another page and reinitializing `page_strokes_iterator_`.
++pages_iterator_;
AdvanceToNextPageWithVisibleStrokes();
}
return PageInkStroke{page_index, raw_ref<const ink::Stroke>(page_stroke)};
}
void PdfInkModule::PageInkStrokeIterator::
AdvanceToNextPageWithVisibleStrokes() {
for (; pages_iterator_ != strokes_->cend(); ++pages_iterator_) {
// Initialize and scan to the location of the first (if any) visible
// stroke for this page.
for (page_strokes_iterator_ = pages_iterator_->second.cbegin();
page_strokes_iterator_ != pages_iterator_->second.cend();
++page_strokes_iterator_) {
if (page_strokes_iterator_->should_draw) {
// This page has visible strokes, and `page_strokes_iterator_` has
// been initialized to the position of the first visible stroke.
return;
}
}
}
// No pages with visible strokes found.
}
void PdfInkModule::PageInkStrokeIterator::AdvanceForCurrentPage() {
CHECK(pages_iterator_ != strokes_->cend());
// Advance the iterator to next visible stroke in this page (if any) before
// returning.
do {
++page_strokes_iterator_;
if (page_strokes_iterator_ == pages_iterator_->second.cend()) {
break;
}
} while (!page_strokes_iterator_->should_draw);
}
} // namespace chrome_pdf
|