#include "ui/accessibility/platform/compute_attributes.h"
#include <cstddef>
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/accessibility/ax_enums.mojom.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/accessibility/platform/ax_platform_node_delegate.h"
namespace ui {
namespace {
absl::optional<int32_t> GetCellAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
switch (attribute) {
case ax::mojom::IntAttribute::kAriaCellColumnIndex:
return delegate->GetTableCellAriaColIndex();
case ax::mojom::IntAttribute::kAriaCellRowIndex:
return delegate->GetTableCellAriaRowIndex();
case ax::mojom::IntAttribute::kTableCellColumnIndex:
return delegate->GetTableCellColIndex();
case ax::mojom::IntAttribute::kTableCellRowIndex:
return delegate->GetTableCellRowIndex();
case ax::mojom::IntAttribute::kTableCellColumnSpan:
return delegate->GetTableCellColSpan();
case ax::mojom::IntAttribute::kTableCellRowSpan:
return delegate->GetTableCellRowSpan();
default:
return absl::nullopt;
}
}
absl::optional<int32_t> GetRowAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
if (attribute == ax::mojom::IntAttribute::kTableRowIndex) {
return delegate->GetTableRowRowIndex();
}
return absl::nullopt;
}
absl::optional<int32_t> GetTableAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
switch (attribute) {
case ax::mojom::IntAttribute::kTableColumnCount:
return delegate->GetTableColCount();
case ax::mojom::IntAttribute::kTableRowCount:
return delegate->GetTableRowCount();
case ax::mojom::IntAttribute::kAriaColumnCount:
return delegate->GetTableAriaColCount();
case ax::mojom::IntAttribute::kAriaRowCount:
return delegate->GetTableAriaRowCount();
default:
return absl::nullopt;
}
}
absl::optional<int> GetOrderedSetItemAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
switch (attribute) {
case ax::mojom::IntAttribute::kPosInSet:
return delegate->GetPosInSet();
case ax::mojom::IntAttribute::kSetSize:
return delegate->GetSetSize();
default:
return absl::nullopt;
}
}
absl::optional<int> GetOrderedSetAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
switch (attribute) {
case ax::mojom::IntAttribute::kSetSize:
return delegate->GetSetSize();
default:
return absl::nullopt;
}
}
absl::optional<int32_t> GetFromData(const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
int32_t value;
if (delegate->GetIntAttribute(attribute, &value)) {
return value;
}
return absl::nullopt;
}
}
absl::optional<int32_t> ComputeAttribute(
const ui::AXPlatformNodeDelegate* delegate,
ax::mojom::IntAttribute attribute) {
absl::optional<int32_t> maybe_value = absl::nullopt;
if (attribute == ax::mojom::IntAttribute::kColor)
return delegate->GetColor();
else if (attribute == ax::mojom::IntAttribute::kBackgroundColor)
return delegate->GetBackgroundColor();
if (delegate->IsTableCellOrHeader())
maybe_value = GetCellAttribute(delegate, attribute);
else if (delegate->IsTableRow())
maybe_value = GetRowAttribute(delegate, attribute);
else if (delegate->IsTable())
maybe_value = GetTableAttribute(delegate, attribute);
else if (delegate->IsOrderedSetItem())
maybe_value = GetOrderedSetItemAttribute(delegate, attribute);
else if (delegate->IsOrderedSet())
maybe_value = GetOrderedSetAttribute(delegate, attribute);
if (!maybe_value.has_value()) {
return GetFromData(delegate, attribute);
}
return maybe_value;
}
}