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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#define INITGUID // required for GUID_PROP_INPUTSCOPE
#include "ui/base/ime/win/tsf_text_store.h"
#include <InputScope.h>
#include <OleCtl.h>
#include <tsattrs.h>
#include <wrl/client.h>
#include <algorithm>
#include "base/logging.h"
#include "base/notimplemented.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/trace_event/trace_event.h"
#include "base/win/scoped_variant.h"
#include "components/stylus_handwriting/win/features.h"
#include "ui/base/ime/text_input_client.h"
#include "ui/base/ime/text_input_flags.h"
#include "ui/base/ime/win/tsf_input_scope.h"
#include "ui/display/win/screen_win.h"
#include "ui/events/event_dispatcher.h"
#include "ui/gfx/geometry/rect.h"
namespace ui {
namespace {
// We support only one view.
const TsViewCookie kViewCookie = 1;
// Fetches the client rectangle, top left and bottom right points using the
// window handle in screen coordinates.
bool GetWindowClientRect(HWND window_handle,
POINT* left_top,
POINT* right_bottom) {
RECT client_rect = {};
if (!IsWindow(window_handle))
return false;
if (!GetClientRect(window_handle, &client_rect))
return false;
*left_top = {client_rect.left, client_rect.top};
*right_bottom = {client_rect.right, client_rect.bottom};
if (!ClientToScreen(window_handle, left_top))
return false;
if (!ClientToScreen(window_handle, right_bottom))
return false;
return true;
}
} // namespace
TSFTextStore::TSFTextStore() {
TRACE_EVENT0("ime", "TSFTextStore::TSFTextStore");
}
TSFTextStore::~TSFTextStore() {}
HRESULT TSFTextStore::Initialize() {
HRESULT hr = ::CoCreateInstance(CLSID_TF_CategoryMgr, nullptr, CLSCTX_ALL,
IID_PPV_ARGS(&category_manager_));
if (FAILED(hr)) {
DVLOG(1) << "Failed to initialize CategoryMgr.";
return hr;
}
hr = ::CoCreateInstance(CLSID_TF_DisplayAttributeMgr, nullptr, CLSCTX_ALL,
IID_PPV_ARGS(&display_attribute_manager_));
if (FAILED(hr)) {
DVLOG(1) << "Failed to initialize DisplayAttributeMgr.";
return hr;
}
hr = ::CoCreateInstance(CLSID_TF_InputProcessorProfiles, nullptr,
CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(&input_processor_profile_mgr_));
if (FAILED(hr)) {
DVLOG(1) << "Failed to initialize InputProcessorProfileMgr.";
return hr;
}
return S_OK;
}
ULONG STDMETHODCALLTYPE TSFTextStore::AddRef() {
return InterlockedIncrement(&ref_count_);
}
ULONG STDMETHODCALLTYPE TSFTextStore::Release() {
const LONG count = InterlockedDecrement(&ref_count_);
if (!count) {
delete this;
return 0;
}
return static_cast<ULONG>(count);
}
HRESULT TSFTextStore::QueryInterface(REFIID iid, void** result) {
if (iid == IID_IUnknown || iid == IID_ITextStoreACP) {
*result = static_cast<ITextStoreACP*>(this);
} else if (iid == IID_ITfContextOwnerCompositionSink) {
*result = static_cast<ITfContextOwnerCompositionSink*>(this);
} else if (iid == IID_ITfLanguageProfileNotifySink) {
*result = static_cast<ITfLanguageProfileNotifySink*>(this);
} else if (iid == IID_ITfTextEditSink) {
*result = static_cast<ITfTextEditSink*>(this);
} else if (iid == IID_ITfKeyTraceEventSink) {
*result = static_cast<ITfKeyTraceEventSink*>(this);
} else {
*result = nullptr;
return E_NOINTERFACE;
}
AddRef();
return S_OK;
}
HRESULT TSFTextStore::AdviseSink(REFIID iid, IUnknown* unknown, DWORD mask) {
if (!IsEqualGUID(iid, IID_ITextStoreACPSink))
return E_INVALIDARG;
if (text_store_acp_sink_) {
if (text_store_acp_sink_.Get() == unknown) {
text_store_acp_sink_mask_ = mask;
return S_OK;
} else {
return CONNECT_E_ADVISELIMIT;
}
}
if (FAILED(unknown->QueryInterface(IID_PPV_ARGS(&text_store_acp_sink_))))
return E_UNEXPECTED;
text_store_acp_sink_mask_ = mask;
return S_OK;
}
HRESULT TSFTextStore::FindNextAttrTransition(LONG acp_start,
LONG acp_halt,
ULONG num_filter_attributes,
const TS_ATTRID* filter_attributes,
DWORD flags,
LONG* acp_next,
BOOL* found,
LONG* found_offset) {
if (!acp_next || !found || !found_offset)
return E_INVALIDARG;
// We don't support any attributes.
// So we always return "not found".
*acp_next = 0;
*found = FALSE;
*found_offset = 0;
return S_OK;
}
HRESULT TSFTextStore::GetACPFromPoint(TsViewCookie view_cookie,
const POINT* point,
DWORD flags,
LONG* acp) {
if (view_cookie == kViewCookie) {
NOTIMPLEMENTED();
return E_NOTIMPL;
}
// If the `view_cookie` isn't known and StylusHandwritingWin is enabled,
// try to query the "proximate" bounds cache as a fallback. See comments
// around `IndexFromPointFlags` and its values for how each flag affects the
// results. When successful, yields a character index via the out parameter
// `acp`, otherwise returns an error HRESULT.
if (stylus_handwriting::win::IsStylusHandwritingWinEnabled()) {
IndexFromPointFlags index_flags{};
if (flags & GXFPF_NEAREST) {
index_flags |= IndexFromPointFlags::kNearestToUncontainedPoint;
}
if (flags & GXFPF_ROUND_NEAREST) {
index_flags |= IndexFromPointFlags::kNearestToContainedPoint;
}
const gfx::Point screen_point_in_dips =
gfx::ToFlooredPoint(display::win::GetScreenWin()->ScreenToDIPPoint(
gfx::PointF(gfx::Point(*point))));
const std::optional<size_t> index =
text_input_client_->GetProximateCharacterIndexFromPoint(
screen_point_in_dips, index_flags);
if (!index.has_value()) {
return TS_E_INVALIDPOINT;
}
*acp = index.value();
return S_OK;
}
return E_INVALIDARG;
}
HRESULT TSFTextStore::GetActiveView(TsViewCookie* view_cookie) {
if (!view_cookie)
return E_INVALIDARG;
// We support only one view.
*view_cookie = kViewCookie;
return S_OK;
}
HRESULT TSFTextStore::GetEmbedded(LONG acp_pos,
REFGUID service,
REFIID iid,
IUnknown** unknown) {
// We don't support any embedded objects.
NOTIMPLEMENTED();
if (!unknown)
return E_INVALIDARG;
*unknown = nullptr;
return E_NOTIMPL;
}
HRESULT TSFTextStore::GetEndACP(LONG* acp) {
if (!acp)
return E_INVALIDARG;
if (!HasReadLock())
return TS_E_NOLOCK;
*acp = string_buffer_document_.size();
return S_OK;
}
HRESULT TSFTextStore::GetFormattedText(LONG acp_start,
LONG acp_end,
IDataObject** data_object) {
NOTIMPLEMENTED();
return E_NOTIMPL;
}
HRESULT TSFTextStore::GetScreenExt(TsViewCookie view_cookie, RECT* rect) {
if (view_cookie != kViewCookie)
return E_INVALIDARG;
if (!rect)
return E_INVALIDARG;
if (!text_input_client_)
return E_UNEXPECTED;
// {0, 0, 0, 0} means that the document rect is not currently displayed.
SetRect(rect, 0, 0, 0, 0);
std::optional<gfx::Rect> result_rect;
std::optional<gfx::Rect> tmp_rect;
// If the EditContext is active, then fetch the layout bounds from
// the active EditContext, else get it from the focused element's
// bounding client rect.
text_input_client_->GetActiveTextInputControlLayoutBounds(&result_rect,
&tmp_rect);
if (result_rect) {
// This conversion is required for high dpi monitors.
*rect = display::win::GetScreenWin()
->DIPToScreenRect(window_handle_, result_rect.value())
.ToRECT();
} else {
// Default if the layout bounds are not present in text input client.
POINT left_top;
POINT right_bottom;
if (!GetWindowClientRect(window_handle_, &left_top, &right_bottom))
return E_FAIL;
rect->left = left_top.x;
rect->top = left_top.y;
rect->right = right_bottom.x;
rect->bottom = right_bottom.y;
}
TRACE_EVENT1("ime", "TSFTextStore::GetScreenExt", "control_bounding_rect",
gfx::Rect(*rect).ToString());
return S_OK;
}
HRESULT TSFTextStore::GetSelection(ULONG selection_index,
ULONG selection_buffer_size,
TS_SELECTION_ACP* selection_buffer,
ULONG* fetched_count) {
if (!selection_buffer)
return E_INVALIDARG;
if (!fetched_count)
return E_INVALIDARG;
if (!HasReadLock())
return TS_E_NOLOCK;
*fetched_count = 0;
if ((selection_buffer_size > 0) &&
((selection_index == 0) || (selection_index == TS_DEFAULT_SELECTION))) {
selection_buffer[0].acpStart = selection_.start();
selection_buffer[0].acpEnd = selection_.end();
selection_buffer[0].style.ase = TS_AE_END;
selection_buffer[0].style.fInterimChar = FALSE;
*fetched_count = 1;
}
return S_OK;
}
HRESULT TSFTextStore::GetStatus(TS_STATUS* status) {
if (!status)
return E_INVALIDARG;
status->dwDynamicFlags |= TS_SD_INPUTPANEMANUALDISPLAYENABLE;
// We don't support hidden text.
// TODO(IME): Remove TS_SS_TRANSITORY to support Korean reconversion
status->dwStaticFlags = TS_SS_TRANSITORY | TS_SS_NOHIDDENTEXT;
// No text support is needed for empty text store.
if (is_empty_text_store_) {
status->dwDynamicFlags |= TS_SD_READONLY;
}
return S_OK;
}
HRESULT TSFTextStore::GetText(LONG acp_start,
LONG acp_end,
wchar_t* text_buffer,
ULONG text_buffer_size,
ULONG* text_buffer_copied,
TS_RUNINFO* run_info_buffer,
ULONG run_info_buffer_size,
ULONG* run_info_buffer_copied,
LONG* next_acp) {
if (!text_buffer_copied || !run_info_buffer_copied)
return E_INVALIDARG;
if (!text_buffer && text_buffer_size != 0)
return E_INVALIDARG;
if (!run_info_buffer && run_info_buffer_size != 0)
return E_INVALIDARG;
if (!next_acp)
return E_INVALIDARG;
if (!HasReadLock())
return TF_E_NOLOCK;
const LONG string_buffer_size = string_buffer_document_.size();
if (acp_end == -1)
acp_end = string_buffer_size;
if (!((0 <= acp_start) && (acp_start <= acp_end) &&
(acp_end <= string_buffer_size))) {
return TF_E_INVALIDPOS;
}
acp_end = std::min(acp_end, acp_start + static_cast<LONG>(text_buffer_size));
*text_buffer_copied = acp_end - acp_start;
const std::u16string& result =
string_buffer_document_.substr(acp_start, *text_buffer_copied);
for (size_t i = 0; i < result.size(); ++i) {
text_buffer[i] = result[i];
}
if (*text_buffer_copied > 0 && run_info_buffer_size) {
run_info_buffer[0].uCount = *text_buffer_copied;
run_info_buffer[0].type = TS_RT_PLAIN;
*run_info_buffer_copied = 1;
} else {
*run_info_buffer_copied = 0;
}
*next_acp = acp_end;
return S_OK;
}
HRESULT TSFTextStore::GetTextExt(TsViewCookie view_cookie,
LONG acp_start,
LONG acp_end,
RECT* rect,
BOOL* clipped) {
if (!rect || !clipped)
return E_INVALIDARG;
if (!text_input_client_)
return E_UNEXPECTED;
const bool is_stylus_handwriting_win_enabled =
stylus_handwriting::win::IsStylusHandwritingWinEnabled();
if (view_cookie != kViewCookie && !is_stylus_handwriting_win_enabled) {
return E_INVALIDARG;
}
if (!HasReadLock())
return TS_E_NOLOCK;
if (view_cookie == kViewCookie &&
!((static_cast<LONG>(composition_start_) <= acp_start) &&
(acp_start <= acp_end) &&
(acp_end <= static_cast<LONG>(string_buffer_document_.size())))) {
return TS_E_INVALIDPOS;
}
TRACE_EVENT1(
"ime", "TSFTextStore::GetTextExt", "start, end",
base::NumberToString(acp_start) + ", " + base::NumberToString(acp_end));
// According to a behavior of notepad.exe and wordpad.exe, top left corner of
// rect indicates a first character's one, and bottom right corner of rect
// indicates a last character's one.
// TODO(IME): add tests for scenario that left position is bigger than right
// position.
std::optional<gfx::Rect> result_rect;
const uint32_t start_pos = acp_start - composition_start_;
const uint32_t end_pos = acp_end - composition_start_;
gfx::Rect tmp_rect;
if (view_cookie == kViewCookie && start_pos == end_pos) {
if (text_input_client_->HasCompositionText()) {
// According to MSDN document, if |acp_start| and |acp_end| are equal it
// is OK to just return E_INVALIDARG.
// http://msdn.microsoft.com/en-us/library/ms538435
// But when using Pinyin IME of Windows 8, this method is called with the
// equal values of |acp_start| and |acp_end|. So we handle this condition.
// TODO(crbug.com/371021293): Since Windows 8 is no longer a supported
// platform, can this now just return E_INVALIDARG?
if (start_pos == 0) {
if (text_input_client_->GetCompositionCharacterBounds(0, &tmp_rect)) {
tmp_rect.set_width(0);
result_rect = gfx::Rect(tmp_rect);
} else {
return TS_E_NOLAYOUT;
}
} else if (text_input_client_->GetCompositionCharacterBounds(
start_pos - 1, &tmp_rect)) {
tmp_rect.set_x(tmp_rect.right());
tmp_rect.set_width(0);
result_rect = gfx::Rect(tmp_rect);
} else {
return TS_E_NOLAYOUT;
}
} else {
result_rect = gfx::Rect(text_input_client_->GetCaretBounds());
}
} else if (view_cookie == kViewCookie) {
if (text_input_client_->HasCompositionText()) {
if (text_input_client_->GetCompositionCharacterBounds(start_pos,
&tmp_rect)) {
result_rect = gfx::Rect(tmp_rect);
if (text_input_client_->GetCompositionCharacterBounds(end_pos - 1,
&tmp_rect)) {
result_rect->set_width(tmp_rect.x() - result_rect->x() +
tmp_rect.width());
result_rect->set_height(tmp_rect.y() - result_rect->y() +
tmp_rect.height());
} else {
// We may not be able to get the last character bounds, so we use the
// first character bounds instead of returning TS_E_NOLAYOUT.
}
} else {
return TS_E_NOLAYOUT;
}
} else {
result_rect = gfx::Rect(text_input_client_->GetCaretBounds());
}
} else if (is_stylus_handwriting_win_enabled) {
if (acp_start == acp_end) {
return E_INVALIDARG;
}
// If the `view_cookie` isn't known and StylusHandwritingWin is enabled,
// try to query the "proximate" bounds cache as a fallback.
result_rect = text_input_client_->GetProximateCharacterBounds(
gfx::Range(acp_start, acp_end));
if (!result_rect.has_value()) {
return TS_E_NOLAYOUT;
}
}
TRACE_EVENT1("ime", "TSFTextStore::GetTextExt", "DIP rect",
result_rect->ToString());
*rect = display::win::GetScreenWin()
->DIPToScreenRect(window_handle_, result_rect.value())
.ToRECT();
*clipped = FALSE;
TRACE_EVENT1("ime", "TSFTextStore::GetTextExt", "screen rect",
gfx::Rect(*rect).ToString());
return S_OK;
}
HRESULT TSFTextStore::GetWnd(TsViewCookie view_cookie, HWND* window_handle) {
if (!window_handle)
return E_INVALIDARG;
if (view_cookie != kViewCookie)
return E_INVALIDARG;
*window_handle = window_handle_;
return S_OK;
}
HRESULT TSFTextStore::InsertEmbedded(DWORD flags,
LONG acp_start,
LONG acp_end,
IDataObject* data_object,
TS_TEXTCHANGE* change) {
// We don't support any embedded objects.
NOTIMPLEMENTED();
return E_NOTIMPL;
}
HRESULT TSFTextStore::InsertEmbeddedAtSelection(DWORD flags,
IDataObject* data_object,
LONG* acp_start,
LONG* acp_end,
TS_TEXTCHANGE* change) {
// We don't support any embedded objects.
NOTIMPLEMENTED();
return E_NOTIMPL;
}
HRESULT TSFTextStore::InsertTextAtSelection(DWORD flags,
const wchar_t* text_buffer,
ULONG text_buffer_size,
LONG* acp_start,
LONG* acp_end,
TS_TEXTCHANGE* text_change) {
const LONG start_pos = selection_.start();
const LONG end_pos = selection_.end();
const LONG new_end_pos = start_pos + text_buffer_size;
if (flags & TS_IAS_QUERYONLY) {
if (!HasReadLock())
return TS_E_NOLOCK;
if (acp_start)
*acp_start = start_pos;
if (acp_end) {
*acp_end = end_pos;
}
return S_OK;
}
if (!HasReadWriteLock())
return TS_E_NOLOCK;
if (!text_buffer)
return E_INVALIDARG;
if (text_buffer_size >= 0) {
if (!new_text_inserted_) {
new_text_inserted_ = true;
replace_text_range_.set_start(start_pos);
replace_text_range_.set_end(end_pos);
replace_text_size_ = text_buffer_size;
} else {
// aggregate new replace text with previous replace text into one range.
LONG old_delta = (LONG)replace_text_range_.start() -
(LONG)replace_text_range_.end() + replace_text_size_;
LONG new_delta = start_pos - end_pos + text_buffer_size;
replace_text_range_.set_start(std::min(static_cast<size_t>(start_pos),
replace_text_range_.start()));
// New replacement text ends after previous replacement text. We need to
// use the new end after adjusting with previous delta.
if ((uint32_t)end_pos >=
replace_text_range_.start() + replace_text_size_) {
replace_text_range_.set_end(end_pos - old_delta);
}
replace_text_size_ = replace_text_range_.length() + old_delta + new_delta;
}
}
DCHECK_LE(start_pos, end_pos);
string_buffer_document_ =
string_buffer_document_.substr(0, start_pos) +
std::u16string(text_buffer, text_buffer + text_buffer_size) +
string_buffer_document_.substr(end_pos);
// reconstruct string that needs to be inserted.
string_pending_insertion_ =
string_buffer_document_.substr(start_pos, text_buffer_size);
if (acp_start)
*acp_start = start_pos;
if (acp_end)
*acp_end = new_end_pos;
if (text_change) {
text_change->acpStart = start_pos;
text_change->acpOldEnd = end_pos;
text_change->acpNewEnd = new_end_pos;
}
selection_.set_start(start_pos);
selection_.set_end(new_end_pos);
return S_OK;
}
HRESULT TSFTextStore::QueryInsert(LONG acp_test_start,
LONG acp_test_end,
ULONG text_size,
LONG* acp_result_start,
LONG* acp_result_end) {
if (!acp_result_start || !acp_result_end || acp_test_start > acp_test_end)
return E_INVALIDARG;
const LONG composition_start = static_cast<LONG>(composition_start_);
const LONG buffer_size = static_cast<LONG>(string_buffer_document_.size());
*acp_result_start =
std::min(std::max(acp_test_start, composition_start), buffer_size);
*acp_result_end =
std::min(std::max(acp_test_end, composition_start), buffer_size) +
text_size;
return S_OK;
}
HRESULT TSFTextStore::QueryInsertEmbedded(const GUID* service,
const FORMATETC* format,
BOOL* insertable) {
if (!format)
return E_INVALIDARG;
// We don't support any embedded objects.
if (insertable)
*insertable = FALSE;
return S_OK;
}
HRESULT TSFTextStore::RequestAttrsAtPosition(LONG acp_pos,
ULONG attribute_buffer_size,
const TS_ATTRID* attribute_buffer,
DWORD flags) {
// We don't support any document attributes.
// This method just returns S_OK, and the subsequently called
// RetrieveRequestedAttrs() returns 0 as the number of supported attributes.
return S_OK;
}
HRESULT TSFTextStore::RequestAttrsTransitioningAtPosition(
LONG acp_pos,
ULONG attribute_buffer_size,
const TS_ATTRID* attribute_buffer,
DWORD flags) {
// We don't support any document attributes.
// This method just returns S_OK, and the subsequently called
// RetrieveRequestedAttrs() returns 0 as the number of supported attributes.
return S_OK;
}
HRESULT TSFTextStore::RequestLock(DWORD lock_flags, HRESULT* result) {
if (!text_input_client_)
return E_UNEXPECTED;
// No lock is necessary for an empty text store. This is to deny lock to an
// unsuspecting TSF in the wild that always assumes a text update with a
// store.
if (is_empty_text_store_) {
return E_FAIL;
}
// If the text input type has already switched to NONE in the text input
// client, then do nothing. See crbug.com/1483978.
if (text_input_client_->GetTextInputType() == ui::TEXT_INPUT_TYPE_NONE) {
return E_FAIL;
}
if (!text_store_acp_sink_.Get())
return E_FAIL;
if (!result)
return E_INVALIDARG;
if (current_lock_type_ != 0) {
if (lock_flags & TS_LF_SYNC) {
// Can't lock synchronously.
*result = TS_E_SYNCHRONOUS;
return S_OK;
}
// Queue the lock request.
lock_queue_.push_back(lock_flags & TS_LF_READWRITE);
*result = TS_S_ASYNC;
return S_OK;
}
// Lock
current_lock_type_ = (lock_flags & TS_LF_READWRITE);
edit_flag_ = false;
// if there is not already some composition text, they we are about to start
// composition. we need to set last_composition_start to the selection start.
// Otherwise we are updating an existing composition, we should use the cached
// composition_start_ for reference.
const size_t last_composition_start = text_input_client_->HasCompositionText()
? composition_start_
: selection_.start();
// Grant the lock.
*result = text_store_acp_sink_->OnLockGranted(current_lock_type_);
// Unlock
current_lock_type_ = 0;
// Handles the pending lock requests.
while (!lock_queue_.empty()) {
current_lock_type_ = lock_queue_.front();
lock_queue_.pop_front();
text_store_acp_sink_->OnLockGranted(current_lock_type_);
current_lock_type_ = 0;
}
// if nothing has changed from input service, then only need to
// compare our cache with latest textinputstate.
if (!edit_flag_) {
ResetCacheAfterEditSession();
CalculateTextandSelectionDiffAndNotifyIfNeeded();
return S_OK;
}
if (!text_input_client_)
return E_UNEXPECTED;
// If string_pending_insertion_ is empty, then there are four cases:
// 1. there is no composition We only need to do comparison between our
// cache and latest textinputstate and send notifications accordingly.
// There might be selection change from input service without staring new
// composition. We should update tic selection.
// 2. A new composition is about to start on existing text. We need to start
// composition on range from composition_range_.
// 3. There is composition. User cancels the composition by deleting all of
// the composing text, we need to reset the composition_start_ and call
// into blink to complete the existing composition(later in this method).
// 4. There is no composition. IME removes previous inserted text. We need to
// ask tic to delete the text range.
if (string_pending_insertion_.empty()) {
if (!text_input_client_->HasCompositionText()) {
// Remove replacing text.
if (new_text_inserted_ && !replace_text_range_.is_empty() &&
!replace_text_size_) {
is_tic_write_in_progress_ = true;
text_input_client_->SetEditableSelectionRange(replace_text_range_);
text_input_client_->ExtendSelectionAndDelete(0, 0);
is_tic_write_in_progress_ = false;
}
if (has_composition_range_ && on_start_composition_called_) {
is_tic_write_in_progress_ = true;
string_pending_insertion_ = string_buffer_document_.substr(
composition_range_.GetMin(), composition_range_.length());
StartCompositionOnExistingText();
is_tic_write_in_progress_ = false;
} else {
composition_start_ = selection_.start();
if (!selection_.EqualsIgnoringDirection(selection_from_client_) &&
!IsInputIME()) {
text_input_client_->SetEditableSelectionRange(selection_);
}
CalculateTextandSelectionDiffAndNotifyIfNeeded();
}
ResetCacheAfterEditSession();
return S_OK;
} else {
composition_start_ = last_composition_start;
}
}
// If we saved a keydown event before this, now is the right time to fire it
// We should only fire JS key event during composition or OnStartComposition()
// is called during current edit session.
if ((has_composition_range_ || on_start_composition_called_) &&
wparam_keydown_cached_ != 0 && lparam_keydown_cached_ != 0) {
DispatchKeyEvent(ui::EventType::kKeyPressed, wparam_keydown_cached_,
lparam_keydown_cached_);
}
// If the text store is edited in OnLockGranted(), we may need to call
// TextInputClient::InsertText() or TextInputClient::SetCompositionText().
// Calculate the end location. we use the replace text end pos if there is no
// more active composition.
size_t new_composition_start =
!has_composition_range_ && new_text_inserted_
? replace_text_range_.start() + replace_text_size_
: composition_start_;
// There are several scenarios that we want to commit composition text. For
// those scenarios, we need to call TextInputClient::InsertText to complete
// the current composition. When there are some committed text.
// 1. If new_composition_start is greater than last_composition_start and
// there is active composition, then we know that there are some committed
// text. It is not necessarily true that composition_string is empty. We need
// to complete current composition with committed text and start new
// composition with composition_string.
// 2. If the replacement text is coming from on-screen keyboard, we should
// replace current selection with new text.
// 3. User commits current composition text.
if (((new_composition_start > last_composition_start &&
text_input_client_->HasCompositionText()) ||
!has_composition_range_) &&
text_input_client_) {
is_tic_write_in_progress_ = true;
CommitTextAndEndCompositionIfAny(last_composition_start,
new_composition_start);
is_tic_write_in_progress_ = false;
}
const std::u16string& composition_string = string_buffer_document_.substr(
composition_range_.GetMin(), composition_range_.length());
// Only need to set composition if the current composition string
// (composition_string) is not the same as previous composition string
// (prev_composition_string_) during same composition or the composition
// string is the same for different composition or selection is changed during
// composition or IME spans are changed during same composition. If
// composition_string is empty and there is an existing composition going on,
// we still need to call into blink to complete the composition started by
// TSF.
if ((has_composition_range_ &&
(previous_composition_start_ != composition_range_.start() ||
previous_composition_string_ != composition_string ||
!previous_composition_selection_range_.EqualsIgnoringDirection(
selection_) ||
previous_text_spans_ != text_spans_)) ||
((wparam_keydown_fired_ != 0) &&
text_input_client_->HasCompositionText() &&
composition_string.empty())) {
previous_composition_string_ = composition_string;
previous_composition_start_ = composition_range_.start();
previous_composition_selection_range_ = selection_;
previous_text_spans_ = text_spans_;
// We need to remove replacing text first before starting new composition if
// there are any.
is_tic_write_in_progress_ = true;
if (new_text_inserted_ && !replace_text_range_.is_empty() &&
!text_input_client_->HasCompositionText() &&
last_composition_start > replace_text_range_.start()) {
text_input_client_->ExtendSelectionAndDelete(
last_composition_start - replace_text_range_.start(), 0);
}
StartCompositionOnNewText(new_composition_start, composition_string);
is_tic_write_in_progress_ = false;
}
ResetCacheAfterEditSession();
CalculateTextandSelectionDiffAndNotifyIfNeeded();
return S_OK;
}
HRESULT TSFTextStore::RequestSupportedAttrs(
DWORD /* flags */, // Seems that we should ignore this.
ULONG attribute_buffer_size,
const TS_ATTRID* attribute_buffer) {
if (!attribute_buffer)
return E_INVALIDARG;
if (!text_input_client_)
return E_FAIL;
supported_attrs_.clear();
for (size_t i = 0; i < attribute_buffer_size; ++i) {
const auto& attribute = attribute_buffer[i];
if (IsEqualGUID(GUID_PROP_INPUTSCOPE, attribute) ||
IsEqualGUID(GUID_PROP_URL, attribute) ||
IsEqualGUID(TSATTRID_Text_VerticalWriting, attribute)) {
supported_attrs_.push_back(attribute);
}
}
return S_OK;
}
HRESULT TSFTextStore::RetrieveRequestedAttrs(ULONG attribute_buffer_size,
TS_ATTRVAL* attribute_buffer,
ULONG* attribute_buffer_copied) {
if (!attribute_buffer_copied)
return E_INVALIDARG;
if (!attribute_buffer)
return E_INVALIDARG;
if (!text_input_client_)
return E_UNEXPECTED;
*attribute_buffer_copied = 0;
if (attribute_buffer_size == 0)
return S_OK;
*attribute_buffer_copied = std::min(
attribute_buffer_size, static_cast<ULONG>(supported_attrs_.size()));
for (size_t i = 0; i < *attribute_buffer_copied; ++i) {
attribute_buffer[i].idAttr = supported_attrs_[i];
// In TSF, this parameter value is zero.
// https://docs.microsoft.com/en-us/windows/win32/api/textstor/ns-textstor-ts_attrval
attribute_buffer[i].dwOverlapId = 0;
// If the caller is asking for the input scope, then create one based on
// the input client and return the COM object for it.
if (IsEqualGUID(GUID_PROP_INPUTSCOPE, supported_attrs_[i])) {
attribute_buffer[i].varValue.vt = VT_UNKNOWN;
attribute_buffer[i].varValue.punkVal = tsf_inputscope::CreateInputScope(
text_input_client_->GetTextInputType(),
text_input_client_->GetTextInputMode(),
text_input_client_->ShouldDoLearning());
attribute_buffer[i].varValue.punkVal->AddRef();
} else if (IsEqualGUID(GUID_PROP_URL, supported_attrs_[i])) {
const ui::TextInputClient::EditingContext editing_context =
text_input_client_->GetTextEditingContext();
attribute_buffer[i].varValue.vt = VT_BSTR;
std::wstring wide_url;
// If the caller is asking for the URL, get the URL from the
// the text input client (if there is one).
if (!editing_context.page_url.is_empty()) {
const std::string& url_string = editing_context.page_url.spec();
wide_url = base::UTF8ToWide(url_string);
}
attribute_buffer[i].varValue.bstrVal =
SysAllocStringLen(wide_url.c_str(), wide_url.length());
} else if (IsEqualGUID(TSATTRID_Text_VerticalWriting,
supported_attrs_[i])) {
attribute_buffer[i].varValue.vt = VT_BOOL;
attribute_buffer[i].varValue.boolVal =
!!(text_input_client_->GetTextInputFlags() &
ui::TEXT_INPUT_FLAG_VERTICAL);
}
}
return S_OK;
}
HRESULT TSFTextStore::SetSelection(ULONG selection_buffer_size,
const TS_SELECTION_ACP* selection_buffer) {
if (!HasReadWriteLock())
return TF_E_NOLOCK;
if (selection_buffer_size > 0) {
const LONG start_pos = selection_buffer[0].acpStart;
const LONG end_pos = selection_buffer[0].acpEnd;
if (!((start_pos <= end_pos) &&
(end_pos <= static_cast<LONG>(string_buffer_document_.size())))) {
return TF_E_INVALIDPOS;
}
selection_.set_start(start_pos);
selection_.set_end(end_pos);
is_selection_interim_char_ = selection_buffer[0].style.fInterimChar;
}
return S_OK;
}
HRESULT TSFTextStore::SetText(DWORD flags,
LONG acp_start,
LONG acp_end,
const wchar_t* text_buffer,
ULONG text_buffer_size,
TS_TEXTCHANGE* text_change) {
TRACE_EVENT0("ime", "TSFTextStore::SetText");
if (!HasReadWriteLock())
return TS_E_NOLOCK;
TS_SELECTION_ACP selection;
selection.acpStart = acp_start;
selection.acpEnd = acp_end;
selection.style.ase = TS_AE_NONE;
selection.style.fInterimChar = 0;
HRESULT ret;
ret = SetSelection(1, &selection);
if (ret != S_OK)
return ret;
TS_TEXTCHANGE change;
ret = InsertTextAtSelection(0, text_buffer, text_buffer_size, &acp_start,
&acp_end, &change);
if (ret != S_OK)
return ret;
if (text_change)
*text_change = change;
return S_OK;
}
HRESULT TSFTextStore::UnadviseSink(IUnknown* unknown) {
if (text_store_acp_sink_.Get() != unknown)
return CONNECT_E_NOCONNECTION;
text_store_acp_sink_.Reset();
text_store_acp_sink_mask_ = 0;
return S_OK;
}
HRESULT TSFTextStore::OnStartComposition(ITfCompositionView* composition_view,
BOOL* ok) {
TRACE_EVENT0("ime", "TSFTextStore::OnStartComposition");
if (ok)
*ok = TRUE;
on_start_composition_called_ = true;
return S_OK;
}
HRESULT TSFTextStore::OnUpdateComposition(ITfCompositionView* composition_view,
ITfRange* range) {
return S_OK;
}
HRESULT TSFTextStore::OnEndComposition(ITfCompositionView* composition_view) {
TRACE_EVENT0("ime", "TSFTextStore::OnEndComposition");
return S_OK;
}
HRESULT TSFTextStore::OnLanguageChange(LANGID langid, BOOL* pfAccept) {
*pfAccept = TRUE;
return S_OK;
}
HRESULT TSFTextStore::OnLanguageChanged() {
if (text_input_client_)
text_input_client_->OnInputMethodChanged();
return S_OK;
}
HRESULT TSFTextStore::OnKeyTraceDown(WPARAM wParam, LPARAM lParam) {
// fire the event right away if we're in composition
if (has_composition_range_) {
DispatchKeyEvent(ui::EventType::kKeyPressed, wParam, lParam);
} else {
// we're not in composition but we might be starting it - remember these key
// events to fire when composition starts
wparam_keydown_cached_ = wParam;
lparam_keydown_cached_ = lParam;
}
return S_OK;
}
HRESULT TSFTextStore::OnKeyTraceUp(WPARAM wParam, LPARAM lParam) {
if (has_composition_range_ || wparam_keydown_fired_ == wParam) {
DispatchKeyEvent(ui::EventType::kKeyReleased, wParam, lParam);
} else if (wparam_keydown_cached_ == wParam) {
// If we didn't fire corresponding keydown event, then we need to clear the
// cached keydown wParam and lParam.
wparam_keydown_cached_ = 0;
lparam_keydown_cached_ = 0;
}
return S_OK;
}
void TSFTextStore::DispatchKeyEvent(ui::EventType type,
WPARAM wparam,
LPARAM lparam) {
if (!text_input_client_)
return;
if (type == ui::EventType::kKeyPressed) {
// clear the saved values since we just fired a keydown
wparam_keydown_cached_ = 0;
lparam_keydown_cached_ = 0;
wparam_keydown_fired_ = wparam;
} else if (type == ui::EventType::kKeyReleased) {
// clear the saved values since we just fired a keyup
wparam_keydown_fired_ = 0;
} else {
// shouldn't expect event other than et_key_pressed and et_key_released;
return;
}
// prepare ui::KeyEvent.
UINT message = type == ui::EventType::kKeyPressed ? WM_KEYDOWN : WM_KEYUP;
const CHROME_MSG key_event_MSG = {window_handle_, message, VK_PROCESSKEY,
lparam};
ui::KeyEvent key_event = KeyEventFromMSG(key_event_MSG);
if (ime_key_event_dispatcher_) {
ime_key_event_dispatcher_->DispatchKeyEventPostIME(&key_event);
}
}
HRESULT TSFTextStore::OnEndEdit(ITfContext* context,
TfEditCookie read_only_edit_cookie,
ITfEditRecord* edit_record) {
TRACE_EVENT0("ime", "TSFTextStore::OnEndEdit");
if (!context || !edit_record)
return E_INVALIDARG;
size_t committed_size;
ImeTextSpans spans;
if (!GetCompositionStatus(context, read_only_edit_cookie, &committed_size,
&spans)) {
return S_OK;
}
text_spans_ = spans;
edit_flag_ = true;
// This function is guaranteed to be called after each keystroke during
// composition Therefore we can use this function to update composition status
// after each keystroke. If there is existing composition range, we can cache
// the composition range and set composition start position as the start of
// composition range. If there is no existing composition range, then we know
// that there is no active composition, we then need to reset the cached
// composition range and set the new composition start as the current
// selection start.
DCHECK(context);
HRESULT hr = S_OK;
Microsoft::WRL::ComPtr<ITfContextComposition> context_composition;
hr = context->QueryInterface(IID_PPV_ARGS(&context_composition));
if (FAILED(hr)) {
return hr;
}
Microsoft::WRL::ComPtr<IEnumITfCompositionView> enum_composition_view;
hr = context_composition->EnumCompositions(&enum_composition_view);
if (FAILED(hr)) {
return hr;
}
Microsoft::WRL::ComPtr<ITfCompositionView> composition_view;
Microsoft::WRL::ComPtr<ITfRange> range;
Microsoft::WRL::ComPtr<ITfRangeACP> range_acp;
if (enum_composition_view->Next(1, &composition_view, nullptr) == S_OK
&& SUCCEEDED(composition_view->GetRange(&range))
&& SUCCEEDED(range->QueryInterface(IID_PPV_ARGS(&range_acp)))) {
LONG start = 0;
LONG length = 0;
// We should only consider it as a valid composition if the
// composition range is not collapsed (|length| > 0).
if (SUCCEEDED(range_acp->GetExtent(&start, &length)) && length > 0) {
composition_start_ = start;
has_composition_range_ = true;
composition_range_.set_start(start);
composition_range_.set_end(start + length);
return S_OK;
}
}
composition_start_ = selection_.start();
if (has_composition_range_) {
has_composition_range_ = false;
composition_range_.set_start(0);
composition_range_.set_end(0);
previous_composition_string_.clear();
previous_composition_start_ = 0;
previous_composition_selection_range_ = gfx::Range::InvalidRange();
previous_text_spans_.clear();
}
return S_OK;
}
bool TSFTextStore::GetDisplayAttribute(TfGuidAtom guid_atom,
TF_DISPLAYATTRIBUTE* attribute) {
TRACE_EVENT0("ime", "TSFTextStore::GetDisplayAttribute");
GUID guid;
if (FAILED(category_manager_->GetGUID(guid_atom, &guid)))
return false;
Microsoft::WRL::ComPtr<ITfDisplayAttributeInfo> display_attribute_info;
if (FAILED(display_attribute_manager_->GetDisplayAttributeInfo(
guid, &display_attribute_info, nullptr))) {
return false;
}
// Display Attribute can be null so query for attributes only when its
// available
if (display_attribute_info)
return SUCCEEDED(display_attribute_info->GetAttributeInfo(attribute));
return false;
}
bool TSFTextStore::GetCompositionStatus(
ITfContext* context,
const TfEditCookie read_only_edit_cookie,
size_t* committed_size,
ImeTextSpans* spans) {
DCHECK(context);
DCHECK(committed_size);
DCHECK(spans);
const GUID* rgGuids[2] = {&GUID_PROP_COMPOSING, &GUID_PROP_ATTRIBUTE};
Microsoft::WRL::ComPtr<ITfReadOnlyProperty> track_property;
if (FAILED(
context->TrackProperties(rgGuids, 2, nullptr, 0, &track_property))) {
return false;
}
*committed_size = 0;
spans->clear();
Microsoft::WRL::ComPtr<ITfRange> start_to_end_range;
Microsoft::WRL::ComPtr<ITfRange> end_range;
if (FAILED(context->GetStart(read_only_edit_cookie, &start_to_end_range))) {
return false;
}
if (FAILED(context->GetEnd(read_only_edit_cookie, &end_range)))
return false;
if (FAILED(start_to_end_range->ShiftEndToRange(
read_only_edit_cookie, end_range.Get(), TF_ANCHOR_END))) {
return false;
}
Microsoft::WRL::ComPtr<IEnumTfRanges> ranges;
if (FAILED(track_property->EnumRanges(read_only_edit_cookie, &ranges,
start_to_end_range.Get()))) {
return false;
}
while (true) {
Microsoft::WRL::ComPtr<ITfRange> range;
if (ranges->Next(1, &range, nullptr) != S_OK)
break;
base::win::ScopedVariant value;
Microsoft::WRL::ComPtr<IEnumTfPropertyValue> enum_prop_value;
if (FAILED(track_property->GetValue(read_only_edit_cookie, range.Get(),
value.Receive()))) {
return false;
}
if (FAILED(value.AsInput()->punkVal->QueryInterface(
IID_PPV_ARGS(&enum_prop_value))))
return false;
TF_PROPERTYVAL property_value;
bool is_composition = false;
bool has_display_attribute = false;
TF_DISPLAYATTRIBUTE display_attribute = {};
while (enum_prop_value->Next(1, &property_value, nullptr) == S_OK) {
if (IsEqualGUID(property_value.guidId, GUID_PROP_COMPOSING)) {
is_composition = (property_value.varValue.lVal == TRUE);
} else if (IsEqualGUID(property_value.guidId, GUID_PROP_ATTRIBUTE)) {
TfGuidAtom guid_atom =
static_cast<TfGuidAtom>(property_value.varValue.lVal);
if (GetDisplayAttribute(guid_atom, &display_attribute))
has_display_attribute = true;
}
VariantClear(&property_value.varValue);
}
Microsoft::WRL::ComPtr<ITfRangeACP> range_acp;
range.As(&range_acp);
LONG start_pos, length;
range_acp->GetExtent(&start_pos, &length);
if (!is_composition) {
if (*committed_size < static_cast<size_t>(start_pos + length))
*committed_size = start_pos + length;
} else {
// Check for the formats of the actively composed text.
ImeTextSpan span;
span.start_offset = start_pos;
span.end_offset = start_pos + length;
span.background_color = SK_ColorTRANSPARENT;
if (selection_.EqualsIgnoringDirection(
gfx::Range(span.start_offset, span.end_offset))) {
span.interim_char_selection = is_selection_interim_char_;
}
if (has_display_attribute)
GetStyle(display_attribute, &span);
spans->push_back(span);
}
}
return true;
}
void TSFTextStore::ResetCompositionState() {
previous_composition_string_.clear();
previous_composition_start_ = 0;
previous_composition_selection_range_ = gfx::Range::InvalidRange();
previous_text_spans_.clear();
string_pending_insertion_.clear();
composition_range_.set_start(0);
composition_range_.set_end(0);
selection_ = gfx::Range(composition_from_client_.end(),
composition_from_client_.end());
composition_start_ = selection_.end();
}
bool TSFTextStore::TerminateComposition() {
TRACE_EVENT0("ime", "TSFTextStore::TerminateComposition");
if (context_ && has_composition_range_) {
Microsoft::WRL::ComPtr<ITfContextOwnerCompositionServices> service;
if (SUCCEEDED(context_->QueryInterface(IID_PPV_ARGS(&service)))) {
service->TerminateComposition(nullptr);
has_composition_range_ = false;
return true;
}
}
return false;
}
void TSFTextStore::CalculateTextandSelectionDiffAndNotifyIfNeeded() {
// If this is a re-entrant call, then bail out early so we don't end up
// in an infinite loop of sending notifications as TSF calls back into us
// when we send a text/selection change notification.
if (!text_input_client_ || is_notification_in_progress_ ||
is_tic_write_in_progress_)
return;
// TODO(snianu) Perhaps we can do the diff at the TextInputManager layer and
// only report the diffs?
TRACE_EVENT0("ime",
"TSFTextStore::CalculateTextandSelectionDiffAndNotifyIfNeeded");
gfx::Range latest_buffer_range_from_client;
std::u16string latest_buffer_from_client;
gfx::Range latest_selection_from_client;
if (text_input_client_->GetTextRange(&latest_buffer_range_from_client) &&
text_input_client_->GetTextFromRange(latest_buffer_range_from_client,
&latest_buffer_from_client) &&
text_input_client_->GetEditableSelectionRange(
&latest_selection_from_client) &&
latest_selection_from_client.IsBoundedBy(
latest_buffer_range_from_client)) {
gfx::Range latest_composition_from_client;
if (text_input_client_->HasCompositionText() &&
text_input_client_->GetCompositionTextRange(
&latest_composition_from_client))
composition_from_client_ = latest_composition_from_client;
else
composition_from_client_ = latest_selection_from_client;
// if the text and selection from text input client is the same as the text
// and buffer we got last time, either the state hasn't changed since last
// time we synced or the change hasn't completed yet. Either case we don't
// want to update our buffer and selection cache. We also don't notify
// input service about the change.
if (!buffer_from_client_.compare(latest_buffer_from_client) &&
selection_from_client_.EqualsIgnoringDirection(
latest_selection_from_client)) {
return;
}
// update cache value for next comparison.
buffer_from_client_ = latest_buffer_from_client;
selection_from_client_.set_start(latest_selection_from_client.start());
selection_from_client_.set_end(latest_selection_from_client.end());
if (has_composition_range_) {
return;
}
bool notify_text_change =
(text_store_acp_sink_mask_ & TS_AS_TEXT_CHANGE) != 0;
bool notify_selection_change =
(text_store_acp_sink_mask_ & TS_AS_SEL_CHANGE) != 0;
bool text_changed = false;
bool selection_changed = false;
TS_TEXTCHANGE text_change = {};
if (latest_buffer_from_client.compare(string_buffer_document_)) {
// Execute diffing algorithm only if we need to send notification.
if (notify_text_change) {
size_t acp_start = 0;
size_t acp_old_end = string_buffer_document_.size();
size_t acp_new_end = latest_buffer_from_client.size();
// Compare two strings to find first difference.
for (; acp_start < std::min(latest_buffer_from_client.size(),
string_buffer_document_.size());
acp_start++) {
if (latest_buffer_from_client.at(acp_start) !=
string_buffer_document_.at(acp_start)) {
break;
}
}
// Compare two strings to find last difference.
while (acp_old_end > 0 && acp_new_end > 0) {
acp_old_end--;
acp_new_end--;
if (acp_old_end >= acp_start && acp_new_end >= acp_start) {
if (latest_buffer_from_client.at(acp_new_end) !=
string_buffer_document_.at(acp_old_end)) {
acp_old_end++;
acp_new_end++;
break;
}
} else {
acp_old_end++;
acp_new_end++;
break;
}
}
text_change.acpStart = acp_start;
text_change.acpOldEnd = acp_old_end;
text_change.acpNewEnd = acp_new_end;
}
string_buffer_document_ = latest_buffer_from_client;
text_changed = true;
}
if (!selection_.EqualsIgnoringDirection(latest_selection_from_client)) {
selection_.set_start(latest_selection_from_client.GetMin());
selection_.set_end(latest_selection_from_client.GetMax());
selection_changed = true;
}
// We should notify input service about text/selection change only after
// the cache has already been updated because input service may call back
// into us during notification.
is_notification_in_progress_ = true;
if (notify_text_change && text_changed) {
TRACE_EVENT2(
"ime", "TSFTextStore::CalculateTextandSelectionDiffAndNotifyIfNeeded",
"text_change_start", base::NumberToString(text_change.acpStart),
"text_change_end", base::NumberToString(text_change.acpNewEnd));
text_store_acp_sink_->OnTextChange(0, &text_change);
}
if (notify_selection_change && selection_changed) {
TRACE_EVENT1(
"ime", "TSFTextStore::CalculateTextandSelectionDiffAndNotifyIfNeeded",
"new_selection", selection_.ToString());
text_store_acp_sink_->OnSelectionChange();
}
is_notification_in_progress_ = false;
}
}
void TSFTextStore::OnContextInitialized(ITfContext* context) {
context_ = context;
}
void TSFTextStore::SetFocusedTextInputClient(
HWND focused_window,
TextInputClient* text_input_client) {
window_handle_ = focused_window;
text_input_client_ = text_input_client;
}
void TSFTextStore::RemoveFocusedTextInputClient(
TextInputClient* text_input_client) {
if (text_input_client_ == text_input_client) {
window_handle_ = nullptr;
text_input_client_ = nullptr;
}
}
void TSFTextStore::SetImeKeyEventDispatcher(
ImeKeyEventDispatcher* ime_key_event_dispatcher) {
ime_key_event_dispatcher_ = ime_key_event_dispatcher;
}
void TSFTextStore::RemoveImeKeyEventDispatcher(
ImeKeyEventDispatcher* ime_key_event_dispatcher) {
if (ime_key_event_dispatcher == ime_key_event_dispatcher_) {
ime_key_event_dispatcher_ = nullptr;
}
}
bool TSFTextStore::CancelComposition() {
// This method should correspond to
// ImmNotifyIME(NI_COMPOSITIONSTR, CPS_CANCEL, 0)
// in IMM32 hence calling falling back to |ConfirmComposition()| is not
// technically correct, because |ConfirmComposition()| corresponds to
// |CPS_COMPLETE| rather than |CPS_CANCEL|.
// However in Chromium it seems that |InputMethod::CancelComposition()|
// might have already committed composing text despite its name.
// TODO(IME): Check other platforms to see if |CancelComposition()| is
// actually working or not.
if (edit_flag_ || !text_input_client_)
return false;
TRACE_EVENT0("ime", "TSFTextStore::CancelComposition");
ResetCompositionState();
return TerminateComposition();
}
bool TSFTextStore::ConfirmComposition() {
// If there is an on-going document lock, we must not edit the text.
if (edit_flag_)
return false;
if (string_pending_insertion_.empty())
return true;
if (!text_input_client_)
return false;
ResetCompositionState();
return TerminateComposition();
}
void TSFTextStore::SendOnLayoutChange() {
// A re-entrant call leads to infinite loop in TSF.
// We bail out if are in the process of notifying TSF about changes.
if (is_notification_in_progress_ || is_empty_text_store_) {
return;
}
CalculateTextandSelectionDiffAndNotifyIfNeeded();
if (text_store_acp_sink_ &&
(text_store_acp_sink_mask_ & TS_AS_LAYOUT_CHANGE)) {
TRACE_EVENT0("ime", "TSFTextStore::SendOnLayoutChange");
text_store_acp_sink_->OnLayoutChange(TS_LC_CHANGE, 0);
}
}
bool TSFTextStore::HasReadLock() const {
return (current_lock_type_ & TS_LF_READ) == TS_LF_READ;
}
bool TSFTextStore::HasReadWriteLock() const {
return (current_lock_type_ & TS_LF_READWRITE) == TS_LF_READWRITE;
}
void TSFTextStore::StartCompositionOnExistingText() const {
ui::ImeTextSpans text_spans = text_spans_;
// Adjusts the offset.
for (size_t i = 0; i < text_spans.size(); ++i) {
text_spans[i].start_offset -= composition_start_;
text_spans[i].end_offset -= composition_start_;
}
text_input_client_->SetCompositionFromExistingText(composition_range_,
text_spans);
}
void TSFTextStore::CommitTextAndEndCompositionIfAny(size_t old_size,
size_t new_size) const {
size_t new_committed_string_offset;
size_t new_committed_string_size;
if (new_text_inserted_ && !text_input_client_->HasCompositionText()) {
// This is a special case to handle text replacement scenarios during
// English typing when we are trying to replace an existing text with some
// new text. Some third-party IMEs also use SetText() API instead of
// InsertTextAtSelection() API to insert new text.
size_t new_text_size;
if (new_size == replace_text_range_.start()) {
// This usually happens when TSF is trying to replace a part of a string
// from the selection end
new_text_size = new_size;
} else {
new_text_size = new_size - replace_text_range_.start();
}
// If |new_text_size| is 0, then we want to commit composition with current
// composition text if there is any. Construct |new_committed_string| to be
// current composition text so that |TextInputClient::InsertText| will
// commit current composition text.
// Also clamp the offsets if they are out of bounds of the buffer
new_committed_string_offset =
std::min(static_cast<ULONG>(replace_text_range_.start()),
static_cast<ULONG>(string_buffer_document_.size()));
new_committed_string_size =
(new_text_size == 0 && selection_.end() > new_committed_string_offset)
? selection_.end() - new_committed_string_offset
: new_text_size;
// if the |replace_text_range_| start is greater than |old_size|, then we
// don't need to delete anything because the replacement text hasn't been
// inserted into blink yet.
if (old_size > replace_text_range_.start()) {
text_input_client_->ExtendSelectionAndDelete(
old_size - replace_text_range_.start(), 0);
}
} else {
new_committed_string_offset = old_size;
new_committed_string_size = new_size - old_size;
// This is a special case. We should only replace existing text and commit
// the new text if replacement text has already been inserted into Blink.
if (new_text_inserted_ && (old_size > replace_text_range_.start()) &&
!replace_text_range_.is_empty()) {
// Delete text that has already been inserted into blink.
text_input_client_->ExtendSelectionAndDelete(
replace_text_range_.end() - replace_text_range_.start(), 0);
new_committed_string_offset = replace_text_range_.start();
new_committed_string_size = replace_text_size_;
}
// If |new_committed_string_size| is 0, then we want to commit composition
// with current composition text if there is any. Construct
// |new_committed_string| to be current composition text so that
// |TextInputClient::InsertText| will commit current composition text.
// Also clamp the offsets if they are out of bounds of the buffer
new_committed_string_offset =
std::min(static_cast<ULONG>(new_committed_string_offset),
static_cast<ULONG>(string_buffer_document_.size()));
new_committed_string_size =
(new_committed_string_size == 0 &&
selection_.end() > new_committed_string_offset)
? selection_.end() - new_committed_string_offset
: new_committed_string_size;
}
// Construct string to be committed.
const std::u16string& new_committed_string = string_buffer_document_.substr(
new_committed_string_offset, new_committed_string_size);
// TODO(crbug.com/41467857): Unify the behavior of
// |TextInputClient::InsertText(text)| for the empty text.
if (!new_committed_string.empty()) {
// If composition was started and committed in one edit session, we still
// need to start the composition first and then commit it.
if (!text_input_client_->HasCompositionText() &&
on_start_composition_called_) {
ImeTextSpans spans;
ImeTextSpan span;
span.start_offset = 0;
span.end_offset = new_committed_string.size();
spans.push_back(span);
CompositionText composition_text;
composition_text.text = new_committed_string;
composition_text.ime_text_spans = spans;
composition_text.selection.set_start(new_committed_string.size());
composition_text.selection.set_end(new_committed_string.size());
text_input_client_->SetCompositionText(composition_text);
}
text_input_client_->InsertText(
new_committed_string,
ui::TextInputClient::InsertTextCursorBehavior::kMoveCursorAfterText);
} else {
text_input_client_->ClearCompositionText();
}
if (!selection_.is_empty() && !IsInputIME() &&
selection_.GetMax() <= string_buffer_document_.size()) {
text_input_client_->SetEditableSelectionRange(selection_);
}
// Notify accessibility about this committed composition
text_input_client_->SetActiveCompositionForAccessibility(
replace_text_range_, new_committed_string,
/*is_composition_committed*/ true);
}
void TSFTextStore::StartCompositionOnNewText(
size_t start_offset,
const std::u16string& composition_string) {
CompositionText composition_text;
composition_text.text = composition_string;
composition_text.ime_text_spans = text_spans_;
for (size_t i = 0; i < composition_text.ime_text_spans.size(); ++i) {
composition_text.ime_text_spans[i].start_offset -= start_offset;
composition_text.ime_text_spans[i].end_offset -= start_offset;
}
if (selection_.start() < start_offset) {
composition_text.selection.set_start(0);
} else {
composition_text.selection.set_start(selection_.start() - start_offset);
}
if (selection_.end() < start_offset) {
composition_text.selection.set_end(0);
} else {
composition_text.selection.set_end(selection_.end() - start_offset);
}
if (text_input_client_) {
text_input_client_->SetCompositionText(composition_text);
// Notify accessibility about this ongoing composition if the string is not
// empty
if (!composition_string.empty()) {
text_input_client_->SetActiveCompositionForAccessibility(
composition_range_, composition_string,
/*is_composition_committed*/ false);
} else {
// User wants to commit the current composition
const std::u16string& committed_string = string_buffer_document_.substr(
composition_range_.GetMin(), composition_range_.length());
text_input_client_->SetActiveCompositionForAccessibility(
composition_range_, committed_string,
/*is_composition_committed*/ true);
}
}
}
void TSFTextStore::GetStyle(const TF_DISPLAYATTRIBUTE& attribute,
ImeTextSpan* span) {
// Use the display attribute to pick the right formats for the underline and
// text.
// Set the default values first and then check if display attribute has
// any style or not.
span->thickness = attribute.fBoldLine ? ImeTextSpan::Thickness::kThick
: ImeTextSpan::Thickness::kThin;
switch (attribute.lsStyle) {
case TF_LS_SOLID: {
span->underline_style = ImeTextSpan::UnderlineStyle::kSolid;
break;
}
case TF_LS_DOT: {
span->underline_style = ImeTextSpan::UnderlineStyle::kDot;
break;
}
case TF_LS_DASH: {
span->underline_style = ImeTextSpan::UnderlineStyle::kDash;
break;
}
case TF_LS_SQUIGGLE: {
span->underline_style = ImeTextSpan::UnderlineStyle::kSquiggle;
break;
}
case TF_LS_NONE: {
span->underline_style = ImeTextSpan::UnderlineStyle::kNone;
break;
}
default: {
span->underline_style = ImeTextSpan::UnderlineStyle::kSolid;
}
}
if (attribute.crText.type != TF_CT_NONE) {
span->text_color = SkColorSetRGB(GetRValue(attribute.crText.cr),
GetGValue(attribute.crText.cr),
GetBValue(attribute.crText.cr));
}
if (attribute.crLine.type != TF_CT_NONE) {
span->underline_color = SkColorSetRGB(GetRValue(attribute.crLine.cr),
GetGValue(attribute.crLine.cr),
GetBValue(attribute.crLine.cr));
}
}
void TSFTextStore::ResetCacheAfterEditSession() {
// reset the flag since we've already inserted/replaced the text.
new_text_inserted_ = false;
is_selection_interim_char_ = false;
// reset |on_start_composition_called_| for next edit session.
on_start_composition_called_ = false;
// reset string_buffer_ if composition is no longer active.
if (text_input_client_ && !text_input_client_->HasCompositionText())
string_pending_insertion_.clear();
}
bool TSFTextStore::IsInputIME() const {
TF_INPUTPROCESSORPROFILE profile;
if (SUCCEEDED(input_processor_profile_mgr_->GetActiveProfile(
GUID_TFCAT_TIP_KEYBOARD, &profile))) {
return profile.hkl == NULL &&
profile.dwProfileType == TF_PROFILETYPE_INPUTPROCESSOR;
}
return false;
}
void TSFTextStore::UseEmptyTextStore(bool is_enabled) {
is_empty_text_store_ = is_enabled;
}
bool TSFTextStore::MaybeSendOnUrlChanged() {
// When the user interacts with a traditional editing control, TSF will query
// for the current Url as needed. However, when TSF supports empty stores, we
// will also notify the OS when a frame with a committed Url is focused, to
// enable scenarios where, for example, a page implements its own controls in
// JavaScript (crbug.com/1447061).
if (!is_empty_text_store_ || (text_store_acp_sink_ == nullptr)) {
return false;
}
TS_ATTRID attrs[1];
attrs[0] = GUID_PROP_URL;
text_store_acp_sink_->OnAttrsChange(NULL, NULL, 1, attrs);
return true;
}
} // namespace ui
|