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
|
// 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.
#include "ui/accessibility/mojom/ax_node_data_mojom_traits.h"
#include "base/containers/flat_map.h"
#include "ui/accessibility/mojom/ax_relative_bounds.mojom-shared.h"
#include "ui/accessibility/mojom/ax_relative_bounds_mojom_traits.h"
namespace mojo {
namespace {
bool HasAnyHighlightEntries(std::vector<int32_t>& marker_types) {
for (auto marker : marker_types) {
if (marker & static_cast<int32_t>(ax::mojom::MarkerType::kHighlight)) {
// Can stop looking once we know there is one highlight.
return true;
}
}
return false;
}
} // namespace
// static
bool StructTraits<ax::mojom::AXNodeDataDataView, ui::AXNodeData>::Read(
ax::mojom::AXNodeDataDataView data,
ui::AXNodeData* out) {
out->id = data.id();
out->role = data.role();
out->state = data.state();
out->actions = data.actions();
// TODO(dcheng): AXNodeData should probably just switch over to absl's
// flat_hash_map for simplicity at some point.
base::flat_map<ax::mojom::StringAttribute, std::string> string_attributes;
if (!data.ReadStringAttributes(&string_attributes))
return false;
out->string_attributes = std::move(string_attributes).extract();
base::flat_map<ax::mojom::IntAttribute, int32_t> int_attributes;
if (!data.ReadIntAttributes(&int_attributes))
return false;
out->int_attributes = std::move(int_attributes).extract();
base::flat_map<ax::mojom::FloatAttribute, float> float_attributes;
if (!data.ReadFloatAttributes(&float_attributes))
return false;
out->float_attributes = std::move(float_attributes).extract();
base::flat_map<ax::mojom::BoolAttribute, bool> bool_attributes;
if (!data.ReadBoolAttributes(&bool_attributes))
return false;
out->bool_attributes = std::move(bool_attributes).extract();
base::flat_map<ax::mojom::IntListAttribute, std::vector<int32_t>>
intlist_attributes;
if (!data.ReadIntlistAttributes(&intlist_attributes))
return false;
// Enforce some invariants:
// If marker types are present, marker starts and ends must be present.
// If any marker type is a highlight, highlights must be present.
if (intlist_attributes.contains(ax::mojom::IntListAttribute::kMarkerTypes)) {
if (!intlist_attributes.contains(
ax::mojom::IntListAttribute::kMarkerStarts)) {
return false;
}
if (!intlist_attributes.contains(
ax::mojom::IntListAttribute::kMarkerEnds)) {
return false;
}
auto& marker_types =
intlist_attributes[ax::mojom::IntListAttribute::kMarkerTypes];
auto& marker_starts =
intlist_attributes[ax::mojom::IntListAttribute::kMarkerStarts];
auto& marker_ends =
intlist_attributes[ax::mojom::IntListAttribute::kMarkerEnds];
if (marker_types.size() != marker_starts.size() ||
marker_types.size() != marker_ends.size()) {
return false;
}
if (HasAnyHighlightEntries(marker_types)) {
if (!intlist_attributes.contains(
ax::mojom::IntListAttribute::kHighlightTypes)) {
return false;
}
auto& highlight_types =
intlist_attributes[ax::mojom::IntListAttribute::kHighlightTypes];
if (marker_types.size() != highlight_types.size()) {
return false;
}
}
}
out->intlist_attributes = std::move(intlist_attributes).extract();
base::flat_map<ax::mojom::StringListAttribute, std::vector<std::string>>
stringlist_attributes;
if (!data.ReadStringlistAttributes(&stringlist_attributes))
return false;
out->stringlist_attributes = std::move(stringlist_attributes).extract();
base::flat_map<std::string, std::string> html_attributes;
if (!data.ReadHtmlAttributes(&html_attributes))
return false;
out->html_attributes = std::move(html_attributes).extract();
if (!data.ReadChildIds(&out->child_ids))
return false;
if (!data.ReadRelativeBounds(&out->relative_bounds))
return false;
return true;
}
} // namespace mojo
|