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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/accessibility/browser_accessibility_manager_android.h"
#include <vector>
#include "base/check.h"
#include "base/containers/contains.h"
#include "base/i18n/char_iterator.h"
#include "base/strings/utf_string_conversions.h"
#include "content/browser/accessibility/browser_accessibility_android.h"
#include "content/browser/accessibility/web_contents_accessibility_android.h"
#include "content/public/common/content_features.h"
#include "ui/accessibility/ax_event_generator.h"
#include "ui/accessibility/ax_role_properties.h"
#include "ui/accessibility/ax_selection.h"
#include "ui/accessibility/platform/ax_platform_tree_manager_delegate.h"
namespace content {
// static
ui::BrowserAccessibilityManager* BrowserAccessibilityManagerAndroid::Create(
const ui::AXTreeUpdate& initial_tree,
ui::AXNodeIdDelegate& node_id_delegate,
ui::AXPlatformTreeManagerDelegate* delegate) {
if (!delegate) {
return new BrowserAccessibilityManagerAndroid(initial_tree, nullptr,
node_id_delegate, nullptr);
}
WebContentsAccessibilityAndroid* wcax = nullptr;
if (delegate->AccessibilityIsRootFrame()) {
wcax = static_cast<WebContentsAccessibilityAndroid*>(
delegate->AccessibilityGetWebContentsAccessibility());
}
return new BrowserAccessibilityManagerAndroid(
initial_tree, wcax ? wcax->GetWeakPtr() : nullptr, node_id_delegate,
delegate);
}
// static
ui::BrowserAccessibilityManager* BrowserAccessibilityManagerAndroid::Create(
ui::AXNodeIdDelegate& node_id_delegate,
ui::AXPlatformTreeManagerDelegate* delegate) {
return BrowserAccessibilityManagerAndroid::Create(
BrowserAccessibilityManagerAndroid::GetEmptyDocument(), node_id_delegate,
delegate);
}
BrowserAccessibilityManagerAndroid::BrowserAccessibilityManagerAndroid(
const ui::AXTreeUpdate& initial_tree,
base::WeakPtr<WebContentsAccessibilityAndroid> web_contents_accessibility,
ui::AXNodeIdDelegate& node_id_delegate,
ui::AXPlatformTreeManagerDelegate* delegate)
: ui::BrowserAccessibilityManager(node_id_delegate, delegate),
web_contents_accessibility_(std::move(web_contents_accessibility)),
prune_tree_for_screen_reader_(true) {
// The Java layer handles the root scroll offset.
use_root_scroll_offsets_when_computing_bounds_ = false;
Initialize(initial_tree);
}
BrowserAccessibilityManagerAndroid::~BrowserAccessibilityManagerAndroid() =
default;
// static
ui::AXTreeUpdate BrowserAccessibilityManagerAndroid::GetEmptyDocument() {
ui::AXNodeData empty_document;
empty_document.id = ui::kInitialEmptyDocumentRootNodeID;
empty_document.role = ax::mojom::Role::kRootWebArea;
empty_document.SetRestriction(ax::mojom::Restriction::kReadOnly);
ui::AXTreeUpdate update;
update.root_id = empty_document.id;
update.nodes.push_back(empty_document);
return update;
}
void BrowserAccessibilityManagerAndroid::ResetWebContentsAccessibility() {
web_contents_accessibility_.reset();
}
bool BrowserAccessibilityManagerAndroid::ShouldAllowImageDescriptions() {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
return (wcax && wcax->should_allow_image_descriptions()) ||
allow_image_descriptions_for_testing_;
}
ui::BrowserAccessibility* BrowserAccessibilityManagerAndroid::GetFocus() const {
// On Android, don't follow active descendant when focus is in a textfield,
// otherwise editable comboboxes such as the search field on google.com do
// not work with Talkback. See crbug.com/761501.
// TODO(accessibility) How does Talkback then read the active item?
// This fix came in crrev.com/c/647339 but said that a more comprehensive fix
// was landing in in crrev.com/c/642056, so is this override still necessary?
ui::AXNodeID focus_id = GetTreeData().focus_id;
ui::BrowserAccessibility* focus = GetFromID(focus_id);
if (focus && focus->IsAtomicTextField()) {
return focus;
}
return ui::BrowserAccessibilityManager::GetFocus();
}
ui::AXNode* BrowserAccessibilityManagerAndroid::RetargetForEvents(
ui::AXNode* node,
RetargetEventType type) const {
// TODO(crbug.com/40856596): Node should not be null. But this seems to be
// happening in the wild for reasons not yet determined. Because the only
// consequence of node being null is that we'll fail to fire an event on a
// non-existent object, the style guide's suggestion of using a CHECK
// temporarily seems a bit strong. Nonetheless we should get to the bottom of
// this. So we are temporarily using NOTREACHED in the hopes that ClusterFuzz
// will lead to a reliably-reproducible test case.
if (!node) {
NOTREACHED();
}
// Sometimes we get events on nodes in our internal accessibility tree
// that aren't exposed on Android. Get |updated| to point to the lowest
// ancestor that is exposed.
DUMP_WILL_BE_CHECK(node);
ui::BrowserAccessibility* wrapper = GetFromAXNode(node);
DUMP_WILL_BE_CHECK(wrapper);
ui::BrowserAccessibility* updated =
wrapper->PlatformGetLowestPlatformAncestor();
DCHECK(updated);
switch (type) {
case RetargetEventType::RetargetEventTypeGenerated: {
// If the closest platform object is a password field, the event we're
// getting is doing something in the shadow dom, for example replacing a
// character with a dot after a short pause. On Android we don't want to
// fire an event for those changes, but we do want to make sure our
// internal state is correct, so we call OnDataChanged() and then return.
if (updated->IsPasswordField() && wrapper != updated) {
updated->OnDataChanged();
return nullptr;
}
break;
}
case RetargetEventType::RetargetEventTypeBlinkGeneral:
break;
case RetargetEventType::RetargetEventTypeBlinkHover: {
// If this node is uninteresting and just a wrapper around a sole
// interesting descendant, prefer that descendant instead.
const BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(updated);
const BrowserAccessibilityAndroid* sole_interesting_node =
android_node->GetSoleInterestingNodeFromSubtree();
if (sole_interesting_node) {
android_node = sole_interesting_node;
}
// Finally, if this node is still uninteresting, try to walk up to
// find an interesting parent.
while (android_node && !android_node->IsInterestingOnAndroid()) {
android_node = static_cast<BrowserAccessibilityAndroid*>(
android_node->PlatformGetParent());
}
updated = const_cast<BrowserAccessibilityAndroid*>(android_node);
break;
}
default:
NOTREACHED();
}
return updated ? updated->node() : nullptr;
}
void BrowserAccessibilityManagerAndroid::FireFocusEvent(ui::AXNode* node) {
ui::AXTreeManager::FireFocusEvent(node);
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
// When focusing a node on Android, we want to ensure that we clear the
// Java-side cache for the previously focused node as well.
if (ui::BrowserAccessibility* last_focused_node =
GetFromAXNode(GetLastFocusedNode())) {
BrowserAccessibilityAndroid* android_last_focused_node =
static_cast<BrowserAccessibilityAndroid*>(last_focused_node);
ClearNodeInfoCacheForGivenId(android_last_focused_node->GetUniqueId());
}
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(GetFromAXNode(node));
wcax->HandleFocusChanged(android_node->GetUniqueId());
}
void BrowserAccessibilityManagerAndroid::FireLocationChanged(
ui::BrowserAccessibility* node) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(node);
wcax->HandleContentChanged(android_node->GetUniqueId());
}
void BrowserAccessibilityManagerAndroid::FireBlinkEvent(
ax::mojom::Event event_type,
ui::BrowserAccessibility* node,
int action_request_id) {
ui::BrowserAccessibilityManager::FireBlinkEvent(event_type, node,
action_request_id);
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(node);
switch (event_type) {
case ax::mojom::Event::kClicked:
wcax->HandleClicked(android_node->GetUniqueId());
break;
case ax::mojom::Event::kEndOfTest:
wcax->HandleEndOfTestSignal();
break;
case ax::mojom::Event::kHover:
HandleHoverEvent(node);
break;
case ax::mojom::Event::kScrolledToAnchor:
wcax->HandleScrolledToAnchor(android_node->GetUniqueId());
break;
default:
break;
}
}
void BrowserAccessibilityManagerAndroid::FireGeneratedEvent(
ui::AXEventGenerator::Event event_type,
const ui::AXNode* node) {
BrowserAccessibilityManager::FireGeneratedEvent(event_type, node);
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
ui::BrowserAccessibility* wrapper = GetFromAXNode(node);
DCHECK(wrapper);
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(wrapper);
// Always send AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED to notify
// the Android system that the accessibility hierarchy rooted at this
// node has changed.
if (event_type != ui::AXEventGenerator::Event::SUBTREE_CREATED) {
wcax->HandleContentChanged(android_node->GetUniqueId());
}
switch (event_type) {
case ui::AXEventGenerator::Event::ACTIVE_DESCENDANT_CHANGED: {
wcax->HandleActiveDescendantChanged(android_node->GetUniqueId());
break;
}
case ui::AXEventGenerator::Event::ALERT: {
wcax->HandlePaneOpened(android_node->GetUniqueId());
break;
}
case ui::AXEventGenerator::Event::CHECKED_STATE_CHANGED:
wcax->HandleCheckStateChanged(android_node->GetUniqueId());
if (android_node->GetRole() == ax::mojom::Role::kToggleButton ||
android_node->GetRole() == ax::mojom::Role::kSwitch ||
android_node->GetRole() == ax::mojom::Role::kRadioButton) {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_STATE_DESCRIPTION);
}
break;
case ui::AXEventGenerator::Event::DESCRIPTION_CHANGED: {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_UNDEFINED);
if (android_node->GetRole() == ax::mojom::Role::kDialog ||
android_node->GetRole() == ax::mojom::Role::kAlertDialog) {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_PANE_TITLE);
}
break;
}
case ui::AXEventGenerator::Event::DOCUMENT_SELECTION_CHANGED: {
ui::AXNodeID focus_id =
ax_tree()->GetUnignoredSelection().focus_object_id;
ui::BrowserAccessibility* focus_object = GetFromID(focus_id);
if (focus_object) {
BrowserAccessibilityAndroid* android_focus_object =
static_cast<BrowserAccessibilityAndroid*>(focus_object);
wcax->HandleTextSelectionChanged(android_focus_object->GetUniqueId());
}
break;
}
case ui::AXEventGenerator::Event::EXPANDED: {
if (ui::IsComboBox(android_node->GetRole()) &&
GetFocus()->IsDescendantOf(android_node)) {
wcax->HandlePaneOpened(android_node->GetUniqueId());
}
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_EXPANDED);
break;
}
case ui::AXEventGenerator::Event::COLLAPSED: {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_EXPANDED);
break;
}
case ui::AXEventGenerator::Event::IMAGE_ANNOTATION_CHANGED: {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_TEXT);
break;
}
case ui::AXEventGenerator::Event::LIVE_REGION_NODE_CHANGED: {
// This event is fired when an object appears in a live region.
// Speak its text unless the experimental deprecation of the announce
// approach is enabled, in which case we do nothing. The node will have a
// live region type set, and the window content change event will inform
// the framework of the node change.
if (!base::FeatureList::IsEnabled(
features::kAccessibilityDeprecateTypeAnnounce)) {
std::u16string text = android_node->GetTextContentUTF16();
wcax->AnnounceLiveRegionText(text);
}
break;
}
case ui::AXEventGenerator::Event::MENU_POPUP_START: {
wcax->HandleMenuOpened(android_node->GetUniqueId());
break;
}
case ui::AXEventGenerator::Event::NAME_CHANGED: {
// If this is a simple text element, also send an event to the framework.
if (ui::IsText(android_node->GetRole()) ||
android_node->IsAndroidTextView()) {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_TEXT);
}
// If the name of a dialog changes, its pane title also changes.
// Notify the Android framework about the pane title change.
if (ui::IsDialog(android_node->GetRole())) {
wcax->HandleWindowContentChange(
android_node->GetUniqueId(),
ANDROID_ACCESSIBILITY_EVENT_CONTENT_CHANGE_TYPE_PANE_TITLE);
}
break;
}
case ui::AXEventGenerator::Event::RANGE_VALUE_CHANGED:
DCHECK(android_node->GetData().IsRangeValueSupported());
if (android_node->IsSlider()) {
wcax->HandleSliderChanged(android_node->GetUniqueId());
}
break;
case ui::AXEventGenerator::Event::SCROLL_HORIZONTAL_POSITION_CHANGED:
case ui::AXEventGenerator::Event::SCROLL_VERTICAL_POSITION_CHANGED:
wcax->HandleScrollPositionChanged(android_node->GetUniqueId());
break;
case ui::AXEventGenerator::Event::SUBTREE_CREATED: {
// When a dialog is shown, we will send a SUBTREE_CREATED event.
// When this happens, we want to generate a TYPE_WINDOW_STATE_CHANGED
// event and populate the node's paneTitle with the dialog description.
// Note that kAlertDialog is not included in this condition because the
// pane opened event is already handled for kAlertDialog by the ALERT
// event.
if (android_node->GetRole() == ax::mojom::Role::kDialog) {
wcax->HandlePaneOpened(android_node->GetUniqueId());
}
break;
}
case ui::AXEventGenerator::Event::VALUE_IN_TEXT_FIELD_CHANGED:
// Sometimes `RetargetForEvents` will walk up to the lowest platform leaf
// and fire the same event on that node. However, in some rare cases the
// leaf node might not be a text field. For example, in the unusual case
// when the text field is inside a button, the leaf node is the button not
// the text field.
if (android_node->IsTextField() && GetFocus() == wrapper) {
wcax->HandleEditableTextChanged(android_node->GetUniqueId());
}
break;
// Currently unused events on this platform.
case ui::AXEventGenerator::Event::NONE:
case ui::AXEventGenerator::Event::ACCESS_KEY_CHANGED:
case ui::AXEventGenerator::Event::ARIA_CURRENT_CHANGED:
case ui::AXEventGenerator::Event::ARIA_NOTIFICATIONS_POSTED:
case ui::AXEventGenerator::Event::ATK_TEXT_OBJECT_ATTRIBUTE_CHANGED:
case ui::AXEventGenerator::Event::ATOMIC_CHANGED:
case ui::AXEventGenerator::Event::AUTO_COMPLETE_CHANGED:
case ui::AXEventGenerator::Event::AUTOFILL_AVAILABILITY_CHANGED:
case ui::AXEventGenerator::Event::BUSY_CHANGED:
case ui::AXEventGenerator::Event::CARET_BOUNDS_CHANGED:
case ui::AXEventGenerator::Event::CHECKED_STATE_DESCRIPTION_CHANGED:
case ui::AXEventGenerator::Event::CHILDREN_CHANGED:
case ui::AXEventGenerator::Event::CONTROLS_CHANGED:
case ui::AXEventGenerator::Event::DETAILS_CHANGED:
case ui::AXEventGenerator::Event::DESCRIBED_BY_CHANGED:
case ui::AXEventGenerator::Event::DOCUMENT_TITLE_CHANGED:
case ui::AXEventGenerator::Event::EDITABLE_TEXT_CHANGED:
case ui::AXEventGenerator::Event::ENABLED_CHANGED:
case ui::AXEventGenerator::Event::FOCUS_CHANGED:
case ui::AXEventGenerator::Event::FLOW_FROM_CHANGED:
case ui::AXEventGenerator::Event::FLOW_TO_CHANGED:
case ui::AXEventGenerator::Event::HASPOPUP_CHANGED:
case ui::AXEventGenerator::Event::HIERARCHICAL_LEVEL_CHANGED:
case ui::AXEventGenerator::Event::IGNORED_CHANGED:
case ui::AXEventGenerator::Event::INVALID_STATUS_CHANGED:
case ui::AXEventGenerator::Event::KEY_SHORTCUTS_CHANGED:
case ui::AXEventGenerator::Event::LABELED_BY_CHANGED:
case ui::AXEventGenerator::Event::LANGUAGE_CHANGED:
case ui::AXEventGenerator::Event::LAYOUT_INVALIDATED:
case ui::AXEventGenerator::Event::LIVE_REGION_CHANGED:
case ui::AXEventGenerator::Event::LIVE_REGION_CREATED:
case ui::AXEventGenerator::Event::LIVE_RELEVANT_CHANGED:
case ui::AXEventGenerator::Event::LIVE_STATUS_CHANGED:
case ui::AXEventGenerator::Event::MENU_POPUP_END:
case ui::AXEventGenerator::Event::MENU_ITEM_SELECTED:
case ui::AXEventGenerator::Event::MULTILINE_STATE_CHANGED:
case ui::AXEventGenerator::Event::MULTISELECTABLE_STATE_CHANGED:
case ui::AXEventGenerator::Event::OBJECT_ATTRIBUTE_CHANGED:
case ui::AXEventGenerator::Event::ORIENTATION_CHANGED:
case ui::AXEventGenerator::Event::PARENT_CHANGED:
case ui::AXEventGenerator::Event::PLACEHOLDER_CHANGED:
case ui::AXEventGenerator::Event::POSITION_IN_SET_CHANGED:
case ui::AXEventGenerator::Event::RANGE_VALUE_MAX_CHANGED:
case ui::AXEventGenerator::Event::RANGE_VALUE_MIN_CHANGED:
case ui::AXEventGenerator::Event::RANGE_VALUE_STEP_CHANGED:
case ui::AXEventGenerator::Event::READONLY_CHANGED:
case ui::AXEventGenerator::Event::RELATED_NODE_CHANGED:
case ui::AXEventGenerator::Event::REQUIRED_STATE_CHANGED:
case ui::AXEventGenerator::Event::ROLE_CHANGED:
case ui::AXEventGenerator::Event::ROW_COUNT_CHANGED:
case ui::AXEventGenerator::Event::SELECTED_CHANGED:
case ui::AXEventGenerator::Event::SELECTED_CHILDREN_CHANGED:
case ui::AXEventGenerator::Event::SELECTED_VALUE_CHANGED:
case ui::AXEventGenerator::Event::SET_SIZE_CHANGED:
case ui::AXEventGenerator::Event::SORT_CHANGED:
case ui::AXEventGenerator::Event::STATE_CHANGED:
case ui::AXEventGenerator::Event::TEXT_ATTRIBUTE_CHANGED:
case ui::AXEventGenerator::Event::TEXT_SELECTION_CHANGED:
case ui::AXEventGenerator::Event::WIN_IACCESSIBLE_STATE_CHANGED:
break;
}
}
void BrowserAccessibilityManagerAndroid::FireAriaNotificationEvent(
ui::BrowserAccessibility* node,
const std::string& announcement,
ax::mojom::AriaNotificationPriority priority_property,
ax::mojom::AriaNotificationInterrupt interrupt_property,
const std::string& type) {
DCHECK(node);
auto* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
// TODO(aleventhal): If aria-notification becomes a web standard, a solution
// that doesn't use a forced announcement must be implemented.
if (!base::FeatureList::IsEnabled(
features::kAccessibilityDeprecateTypeAnnounce)) {
wcax->AnnounceLiveRegionText(base::UTF8ToUTF16(announcement));
}
}
void BrowserAccessibilityManagerAndroid::SendLocationChangeEvents(
const std::vector<ui::AXLocationChange>& changes) {
// Android is not very efficient at handling notifications, and location
// changes in particular are frequent and not time-critical. If a lot of
// nodes changed location, just send a single notification after a short
// delay (to batch them), rather than lots of individual notifications.
if (changes.size() > 3) {
auto* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
wcax->SendDelayedWindowContentChangedEvent();
return;
}
BrowserAccessibilityManager::SendLocationChangeEvents(changes);
}
bool BrowserAccessibilityManagerAndroid::NextAtGranularity(
int32_t granularity,
int32_t cursor_index,
BrowserAccessibilityAndroid* node,
int32_t* start_index,
int32_t* end_index) {
switch (granularity) {
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_CHARACTER: {
std::u16string text = node->GetAccessibleNameUTF16();
if (cursor_index >= static_cast<int32_t>(text.length())) {
return false;
}
base::i18n::UTF16CharIterator iter(text);
while (!iter.end() &&
static_cast<int32_t>(iter.array_pos()) <= cursor_index) {
iter.Advance();
}
*end_index = iter.array_pos();
iter.Rewind();
*start_index = iter.array_pos();
break;
}
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_WORD:
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_LINE: {
std::vector<int32_t> starts;
std::vector<int32_t> ends;
node->GetGranularityBoundaries(granularity, &starts, &ends, 0);
if (starts.size() == 0) {
return false;
}
size_t index = 0;
while (index < starts.size() - 1 && starts[index] < cursor_index) {
index++;
}
if (starts[index] < cursor_index) {
return false;
}
*start_index = starts[index];
*end_index = ends[index];
break;
}
default:
NOTREACHED();
}
return true;
}
bool BrowserAccessibilityManagerAndroid::PreviousAtGranularity(
int32_t granularity,
int32_t cursor_index,
BrowserAccessibilityAndroid* node,
int32_t* start_index,
int32_t* end_index) {
switch (granularity) {
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_CHARACTER: {
if (cursor_index <= 0) {
return false;
}
std::u16string text = node->GetAccessibleNameUTF16();
base::i18n::UTF16CharIterator iter(text);
int previous_index = 0;
while (!iter.end() &&
static_cast<int32_t>(iter.array_pos()) < cursor_index) {
previous_index = iter.array_pos();
iter.Advance();
}
*start_index = previous_index;
*end_index = iter.array_pos();
break;
}
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_WORD:
case ANDROID_ACCESSIBILITY_NODE_INFO_MOVEMENT_GRANULARITY_LINE: {
std::vector<int32_t> starts;
std::vector<int32_t> ends;
node->GetGranularityBoundaries(granularity, &starts, &ends, 0);
if (starts.size() == 0) {
return false;
}
size_t index = starts.size() - 1;
while (index > 0 && starts[index] >= cursor_index) {
index--;
}
if (starts[index] >= cursor_index) {
return false;
}
*start_index = starts[index];
*end_index = ends[index];
break;
}
default:
NOTREACHED();
}
return true;
}
void BrowserAccessibilityManagerAndroid::ClearNodeInfoCacheForGivenId(
int32_t unique_id) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
// We do not need to clear a node more than once per atomic update.
if (base::Contains(nodes_already_cleared_, unique_id)) {
return;
}
nodes_already_cleared_.emplace(unique_id);
wcax->ClearNodeInfoCacheForGivenId(unique_id);
}
bool BrowserAccessibilityManagerAndroid::OnHoverEvent(
const ui::MotionEventAndroid& event) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
return wcax ? wcax->OnHoverEvent(event) : false;
}
void BrowserAccessibilityManagerAndroid::HandleHoverEvent(
ui::BrowserAccessibility* node) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(node);
if (android_node) {
wcax->HandleHover(android_node->GetUniqueId());
}
}
std::unique_ptr<ui::BrowserAccessibility>
BrowserAccessibilityManagerAndroid::CreateBrowserAccessibility(
ui::AXNode* node) {
return ui::BrowserAccessibility::Create(this, node);
}
void BrowserAccessibilityManagerAndroid::OnAtomicUpdateStarting(
ui::AXTree* tree,
const std::set<ui::AXNodeID>& deleting_nodes,
const std::set<ui::AXNodeID>& reparenting_nodes) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (wcax) {
// This set needs to start fresh. This secondary cache is of requests to
// java to clear that primary cache of Android objects. The idea being only
// such such request is needed for each atomic update to the tree and node
// data.
nodes_already_cleared_.clear();
// Update the maximum number of nodes in the cache after each atomic update.
wcax->UpdateMaxNodesInCache();
for (ui::AXNodeID id : deleting_nodes) {
ui::BrowserAccessibility* wrapper = GetFromID(id);
if (!wrapper) {
continue;
}
BrowserAccessibilityAndroid* android_node =
static_cast<BrowserAccessibilityAndroid*>(wrapper);
ClearNodeInfoCacheForGivenId(android_node->GetUniqueId());
// When a node will be deleted, clear its parent from the cache as well,
// or the parent could erroneously report the cleared node as a child
// later on.
BrowserAccessibilityAndroid* parent_node =
static_cast<BrowserAccessibilityAndroid*>(
android_node->PlatformGetParent());
if (parent_node != nullptr) {
ClearNodeInfoCacheForGivenId(parent_node->GetUniqueId());
}
}
}
BrowserAccessibilityManager::OnAtomicUpdateStarting(tree, deleting_nodes,
reparenting_nodes);
}
void BrowserAccessibilityManagerAndroid::OnAtomicUpdateFinished(
ui::AXTree* tree,
bool root_changed,
const std::vector<ui::AXTreeObserver::Change>& changes) {
BrowserAccessibilityManager::OnAtomicUpdateFinished(tree, root_changed,
changes);
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return;
}
// Reset content changed events counter every time we finish an atomic update.
wcax->ResetContentChangedEventsCounter();
// When the root changes, send the new root id and a navigate signal to Java.
if (root_changed) {
auto* root_manager = static_cast<BrowserAccessibilityManagerAndroid*>(
GetManagerForRootFrame());
DCHECK(root_manager);
auto* root = static_cast<BrowserAccessibilityAndroid*>(
root_manager->GetBrowserAccessibilityRoot());
DCHECK(root);
wcax->HandleNavigate(root->GetUniqueId());
}
// Invalidate java-side cache for structural generated events. This
// encompasses less nodes than `changes`, but includes unignored retargeted
// event targets that isn't in `changes`. Eventually, we should prefer
// invalidations of generated events to those in
// BrowserAccessibility::OnDataChanged.
for (const auto& targeted_event : event_generator()) {
BrowserAccessibilityAndroid* wrapper =
static_cast<BrowserAccessibilityAndroid*>(
GetFromID(targeted_event.node_id));
CHECK(wrapper);
auto event_type = targeted_event.event_params->event;
if (event_type == ui::AXEventGenerator::Event::CHILDREN_CHANGED ||
event_type == ui::AXEventGenerator::Event::PARENT_CHANGED) {
// Structural changes in the unignored/platform tree requires the leaf
// cache be invalidated.
BrowserAccessibilityAndroid::ResetLeafCache();
ClearNodeInfoCacheForGivenId(wrapper->GetUniqueId());
}
}
}
WebContentsAccessibilityAndroid*
BrowserAccessibilityManagerAndroid::GetWebContentsAXFromRootManager() {
ui::BrowserAccessibility* parent_node =
GetParentNodeFromParentTreeAsBrowserAccessibility();
if (!parent_node) {
return web_contents_accessibility_.get();
}
auto* parent_manager =
static_cast<BrowserAccessibilityManagerAndroid*>(parent_node->manager());
return parent_manager->GetWebContentsAXFromRootManager();
}
std::u16string
BrowserAccessibilityManagerAndroid::GenerateAccessibilityNodeInfoString(
int32_t unique_id) {
WebContentsAccessibilityAndroid* wcax = GetWebContentsAXFromRootManager();
if (!wcax) {
return {};
}
return wcax->GenerateAccessibilityNodeInfoString(unique_id);
}
std::vector<std::string>
BrowserAccessibilityManagerAndroid::GetMetadataForTree() const {
return GetTreeData().metadata;
}
} // namespace content
|