Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
85b22ff5
Unverified
Commit
85b22ff5
authored
Mar 13, 2021
by
chunhtai
Committed by
GitHub
Mar 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix semantics node id overflow issue (#77287)
parent
a01f3724
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
6 deletions
+36
-6
semantics.dart
packages/flutter/lib/src/semantics/semantics.dart
+16
-6
semantics_test.dart
packages/flutter/test/semantics/semantics_test.dart
+20
-0
No files found.
packages/flutter/lib/src/semantics/semantics.dart
View file @
85b22ff5
...
...
@@ -1207,7 +1207,7 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
SemanticsNode
({
this
.
key
,
VoidCallback
?
showOnScreen
,
})
:
id
=
_generateNewId
(),
})
:
_
id
=
_generateNewId
(),
_showOnScreen
=
showOnScreen
;
/// Creates a semantic node to represent the root of the semantics tree.
...
...
@@ -1217,7 +1217,7 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
this
.
key
,
VoidCallback
?
showOnScreen
,
required
SemanticsOwner
owner
,
})
:
id
=
0
,
})
:
_
id
=
0
,
_showOnScreen
=
showOnScreen
{
attach
(
owner
);
}
...
...
@@ -1244,9 +1244,15 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
/// The unique identifier for this node.
///
/// The root node has an id of zero. Other nodes are given a unique id when
/// they are created.
final
int
id
;
/// The root node has an id of zero. Other nodes are given a unique id
/// when they are attached to a [SemanticsOwner]. If they are detached, their
/// ids are invalid and should not be used.
///
/// In rare circumstances, id may change if this node is detached and
/// re-attached to the [SemanticsOwner]. This should only happen when the
/// application has generated too many semantics nodes.
int
get
id
=>
_id
;
int
_id
;
final
VoidCallback
?
_showOnScreen
;
...
...
@@ -1541,7 +1547,11 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
@override
void
attach
(
SemanticsOwner
owner
)
{
super
.
attach
(
owner
);
assert
(!
owner
.
_nodes
.
containsKey
(
id
));
while
(
owner
.
_nodes
.
containsKey
(
id
))
{
// Ids may repeat if the Flutter has generated > 2^16 ids. We need to keep
// regenerating the id until we found an id that is not used.
_id
=
_generateNewId
();
}
owner
.
_nodes
[
id
]
=
this
;
owner
.
_detachedNodes
.
remove
(
this
);
if
(
_dirty
)
{
...
...
packages/flutter/test/semantics/semantics_test.dart
View file @
85b22ff5
...
...
@@ -8,6 +8,8 @@ import 'package:flutter_test/flutter_test.dart';
import
'../rendering/rendering_tester.dart'
;
const
int
kMaxFrameworkAccessibilityIdentifier
=
(
1
<<
16
)
-
1
;
void
main
(
)
{
setUp
(()
{
debugResetSemanticsIdCounter
();
...
...
@@ -567,6 +569,24 @@ void main() {
);
});
test
(
'Semantics id does not repeat'
,
()
{
final
SemanticsOwner
owner
=
SemanticsOwner
();
const
int
expectId
=
1400
;
SemanticsNode
?
nodeToRemove
;
for
(
int
i
=
0
;
i
<
kMaxFrameworkAccessibilityIdentifier
;
i
++)
{
final
SemanticsNode
node
=
SemanticsNode
();
node
.
attach
(
owner
);
if
(
node
.
id
==
expectId
)
{
nodeToRemove
=
node
;
}
}
nodeToRemove
!.
detach
();
final
SemanticsNode
newNode
=
SemanticsNode
();
newNode
.
attach
(
owner
);
// Id is reused.
expect
(
newNode
.
id
,
expectId
);
});
test
(
'Tags show up in debug properties'
,
()
{
final
SemanticsNode
actionNode
=
SemanticsNode
()
..
tags
=
<
SemanticsTag
>{
RenderViewport
.
useTwoPaneSemantics
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment