Unverified Commit 1cf492f2 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Re-apply "Gesture recognizer cleanup" (#82885)

This is a re-application of https://github.com/flutter/flutter/pull/81884,
but with https://github.com/flutter/flutter/pull/82834 landed first.

Fixes https://github.com/flutter/flutter/issues/81883
parent 867030df
...@@ -27,8 +27,7 @@ class EagerGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -27,8 +27,7 @@ class EagerGestureRecognizer extends OneSequenceGestureRecognizer {
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
// We call startTrackingPointer as this is where OneSequenceGestureRecognizer joins the arena. super.addAllowedPointer(event);
startTrackingPointer(event.pointer, event.transform);
resolve(GestureDisposition.accepted); resolve(GestureDisposition.accepted);
stopTrackingPointer(event.pointer); stopTrackingPointer(event.pointer);
} }
......
...@@ -220,10 +220,10 @@ class ForcePressGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -220,10 +220,10 @@ class ForcePressGestureRecognizer extends OneSequenceGestureRecognizer {
// If the device has a maximum pressure of less than or equal to 1, it // If the device has a maximum pressure of less than or equal to 1, it
// doesn't have touch pressure sensing capabilities. Do not participate // doesn't have touch pressure sensing capabilities. Do not participate
// in the gesture arena. // in the gesture arena.
if (event is! PointerUpEvent && event.pressureMax <= 1.0) { if (event.pressureMax <= 1.0) {
resolve(GestureDisposition.rejected); resolve(GestureDisposition.rejected);
} else { } else {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
if (_state == _ForceState.ready) { if (_state == _ForceState.ready) {
_state = _ForceState.possible; _state = _ForceState.possible;
_lastPosition = OffsetPair.fromEventPosition(event); _lastPosition = OffsetPair.fromEventPosition(event);
......
...@@ -263,7 +263,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -263,7 +263,7 @@ abstract class DragGestureRecognizer extends OneSequenceGestureRecognizer {
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
_velocityTrackers[event.pointer] = velocityTrackerBuilder(event); _velocityTrackers[event.pointer] = velocityTrackerBuilder(event);
if (_state == _DragState.ready) { if (_state == _DragState.ready) {
_state = _DragState.possible; _state = _DragState.possible;
......
...@@ -248,11 +248,32 @@ abstract class OneSequenceGestureRecognizer extends GestureRecognizer { ...@@ -248,11 +248,32 @@ abstract class OneSequenceGestureRecognizer extends GestureRecognizer {
final Set<int> _trackedPointers = HashSet<int>(); final Set<int> _trackedPointers = HashSet<int>();
@override @override
@protected
void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform);
}
@override
@protected
void handleNonAllowedPointer(PointerDownEvent event) { void handleNonAllowedPointer(PointerDownEvent event) {
resolve(GestureDisposition.rejected); resolve(GestureDisposition.rejected);
} }
/// Called when a pointer event is routed to this recognizer. /// Called when a pointer event is routed to this recognizer.
///
/// This will be called for every pointer event while the pointer is being
/// tracked. Typically, this recognizer will start tracking the pointer in
/// [addAllowedPointer], which means that [handleEvent] will be called
/// starting with the [PointerDownEvent] that was passed to [addAllowedPointer].
///
/// See also:
///
/// * [startTrackingPointer], which causes pointer events to be routed to
/// this recognizer.
/// * [stopTrackingPointer], which stops events from being routed to this
/// recognizer.
/// * [stopTrackingIfPointerNoLongerDown], which conditionally stops events
/// from being routed to this recognizer.
@protected @protected
void handleEvent(PointerEvent event); void handleEvent(PointerEvent event);
...@@ -338,6 +359,11 @@ abstract class OneSequenceGestureRecognizer extends GestureRecognizer { ...@@ -338,6 +359,11 @@ abstract class OneSequenceGestureRecognizer extends GestureRecognizer {
/// null if no transformation is necessary. /// null if no transformation is necessary.
/// ///
/// Use [stopTrackingPointer] to remove the route added by this function. /// Use [stopTrackingPointer] to remove the route added by this function.
///
/// This method also adds this recognizer (or its [team] if it's non-null) to
/// the gesture arena for the specified pointer.
///
/// This is called by [OneSequenceGestureRecognizer.addAllowedPointer].
@protected @protected
void startTrackingPointer(int pointer, [Matrix4? transform]) { void startTrackingPointer(int pointer, [Matrix4? transform]) {
GestureBinding.instance!.pointerRouter.addRoute(pointer, handleEvent, transform); GestureBinding.instance!.pointerRouter.addRoute(pointer, handleEvent, transform);
...@@ -466,13 +492,27 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -466,13 +492,27 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
/// The current state of the recognizer. /// The current state of the recognizer.
/// ///
/// See [GestureRecognizerState] for a description of the states. /// See [GestureRecognizerState] for a description of the states.
GestureRecognizerState state = GestureRecognizerState.ready; GestureRecognizerState get state => _state;
GestureRecognizerState _state = GestureRecognizerState.ready;
/// The ID of the primary pointer this recognizer is tracking. /// The ID of the primary pointer this recognizer is tracking.
int? primaryPointer; ///
/// If this recognizer is no longer tracking any pointers, this field holds
/// the ID of the primary pointer this recognizer was most recently tracking.
/// This enables the recognizer to know which pointer it was most recently
/// tracking when [acceptGesture] or [rejectGesture] is called (which may be
/// called after the recognizer is no longer tracking a pointer if, e.g.
/// [GestureArenaManager.hold] has been called, or if there are other
/// recognizers keeping the arena open).
int? get primaryPointer => _primaryPointer;
int? _primaryPointer;
/// The location at which the primary pointer contacted the screen. /// The location at which the primary pointer contacted the screen.
OffsetPair? initialPosition; ///
/// This will only be non-null while this recognizer is tracking at least
/// one pointer.
OffsetPair? get initialPosition => _initialPosition;
OffsetPair? _initialPosition;
// Whether this pointer is accepted by winning the arena or as defined by // Whether this pointer is accepted by winning the arena or as defined by
// a subclass calling acceptGesture. // a subclass calling acceptGesture.
...@@ -481,11 +521,11 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -481,11 +521,11 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
if (state == GestureRecognizerState.ready) { if (state == GestureRecognizerState.ready) {
state = GestureRecognizerState.possible; _state = GestureRecognizerState.possible;
primaryPointer = event.pointer; _primaryPointer = event.pointer;
initialPosition = OffsetPair(local: event.localPosition, global: event.position); _initialPosition = OffsetPair(local: event.localPosition, global: event.position);
if (deadline != null) if (deadline != null)
_timer = Timer(deadline!, () => didExceedDeadlineWithEvent(event)); _timer = Timer(deadline!, () => didExceedDeadlineWithEvent(event));
} }
...@@ -528,7 +568,8 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -528,7 +568,8 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
/// Override to be notified when [deadline] is exceeded. /// Override to be notified when [deadline] is exceeded.
/// ///
/// You must override this method or [didExceedDeadlineWithEvent] if you /// You must override this method or [didExceedDeadlineWithEvent] if you
/// supply a [deadline]. /// supply a [deadline]. Subclasses that override this method must _not_
/// call `super.didExceedDeadline()`.
@protected @protected
void didExceedDeadline() { void didExceedDeadline() {
assert(deadline == null); assert(deadline == null);
...@@ -538,7 +579,8 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -538,7 +579,8 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
/// gesture. /// gesture.
/// ///
/// You must override this method or [didExceedDeadline] if you supply a /// You must override this method or [didExceedDeadline] if you supply a
/// [deadline]. /// [deadline]. Subclasses that override this method must _not_ call
/// `super.didExceedDeadlineWithEvent(event)`.
@protected @protected
void didExceedDeadlineWithEvent(PointerDownEvent event) { void didExceedDeadlineWithEvent(PointerDownEvent event) {
didExceedDeadline(); didExceedDeadline();
...@@ -556,7 +598,7 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -556,7 +598,7 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
void rejectGesture(int pointer) { void rejectGesture(int pointer) {
if (pointer == primaryPointer && state == GestureRecognizerState.possible) { if (pointer == primaryPointer && state == GestureRecognizerState.possible) {
_stopTimer(); _stopTimer();
state = GestureRecognizerState.defunct; _state = GestureRecognizerState.defunct;
} }
} }
...@@ -564,7 +606,9 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -564,7 +606,9 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
void didStopTrackingLastPointer(int pointer) { void didStopTrackingLastPointer(int pointer) {
assert(state != GestureRecognizerState.ready); assert(state != GestureRecognizerState.ready);
_stopTimer(); _stopTimer();
state = GestureRecognizerState.ready; _state = GestureRecognizerState.ready;
_initialPosition = null;
_gestureAccepted = false;
} }
@override @override
...@@ -597,6 +641,7 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni ...@@ -597,6 +641,7 @@ abstract class PrimaryPointerGestureRecognizer extends OneSequenceGestureRecogni
/// Usually, the [global] [Offset] is in the coordinate space of the screen /// Usually, the [global] [Offset] is in the coordinate space of the screen
/// after conversion to logical pixels and the [local] offset is the same /// after conversion to logical pixels and the [local] offset is the same
/// [Offset], but transformed to a local coordinate space. /// [Offset], but transformed to a local coordinate space.
@immutable
class OffsetPair { class OffsetPair {
/// Creates a [OffsetPair] combining a [local] and [global] [Offset]. /// Creates a [OffsetPair] combining a [local] and [global] [Offset].
const OffsetPair({ const OffsetPair({
......
...@@ -351,7 +351,7 @@ class ScaleGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -351,7 +351,7 @@ class ScaleGestureRecognizer extends OneSequenceGestureRecognizer {
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
_velocityTrackers[event.pointer] = VelocityTracker.withKind(event.kind); _velocityTrackers[event.pointer] = VelocityTracker.withKind(event.kind);
if (_state == _ScaleState.ready) { if (_state == _ScaleState.ready) {
_state = _ScaleState.possible; _state = _ScaleState.possible;
......
...@@ -456,7 +456,7 @@ class _UiKitViewGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -456,7 +456,7 @@ class _UiKitViewGestureRecognizer extends OneSequenceGestureRecognizer {
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) { for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) {
recognizer.addPointer(event); recognizer.addPointer(event);
} }
...@@ -544,7 +544,7 @@ class _PlatformViewGestureRecognizer extends OneSequenceGestureRecognizer { ...@@ -544,7 +544,7 @@ class _PlatformViewGestureRecognizer extends OneSequenceGestureRecognizer {
@override @override
void addAllowedPointer(PointerDownEvent event) { void addAllowedPointer(PointerDownEvent event) {
startTrackingPointer(event.pointer, event.transform); super.addAllowedPointer(event);
for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) { for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) {
recognizer.addPointer(event); recognizer.addPointer(event);
} }
......
...@@ -2,26 +2,48 @@ ...@@ -2,26 +2,48 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:ui' show VoidCallback;
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
class TestGestureRecognizer extends GestureRecognizer { import 'gesture_tester.dart';
TestGestureRecognizer({ Object? debugOwner }) : super(debugOwner: debugOwner);
@override // Down/move/up pair 1: normal tap sequence
String get debugDescription => 'debugDescription content'; const PointerDownEvent down = PointerDownEvent(
pointer: 5,
position: Offset(10, 10),
);
@override const PointerMoveEvent move = PointerMoveEvent(
void addPointer(PointerDownEvent event) { } pointer: 5,
position: Offset(15, 15),
);
@override const PointerUpEvent up = PointerUpEvent(
void acceptGesture(int pointer) { } pointer: 5,
position: Offset(15, 15),
);
@override // Down/move/up pair 2: tap sequence with a large move in the middle
void rejectGesture(int pointer) { } const PointerDownEvent down2 = PointerDownEvent(
} pointer: 6,
position: Offset(10, 10),
);
const PointerMoveEvent move2 = PointerMoveEvent(
pointer: 6,
position: Offset(100, 200),
);
const PointerUpEvent up2 = PointerUpEvent(
pointer: 6,
position: Offset(100, 200),
);
void main() { void main() {
setUp(ensureGestureBinding);
test('GestureRecognizer smoketest', () { test('GestureRecognizer smoketest', () {
final TestGestureRecognizer recognizer = TestGestureRecognizer(debugOwner: 0); final TestGestureRecognizer recognizer = TestGestureRecognizer(debugOwner: 0);
expect(recognizer, hasAGoodToStringDeep); expect(recognizer, hasAGoodToStringDeep);
...@@ -64,4 +86,187 @@ void main() { ...@@ -64,4 +86,187 @@ void main() {
), ),
); );
}); });
group('PrimaryPointerGestureRecognizer', () {
testGesture('cleans up state after winning arena', (GestureTester tester) {
final List<String> resolutions = <String>[];
final IndefiniteGestureRecognizer indefinite = IndefiniteGestureRecognizer();
final TestPrimaryPointerGestureRecognizer<PointerUpEvent> accepting = TestPrimaryPointerGestureRecognizer<PointerUpEvent>(
GestureDisposition.accepted,
onAcceptGesture: () => resolutions.add('accepted'),
onRejectGesture: () => resolutions.add('rejected'),
);
expect(accepting.state, GestureRecognizerState.ready);
expect(accepting.primaryPointer, isNull);
expect(accepting.initialPosition, isNull);
expect(resolutions, <String>[]);
indefinite.addPointer(down);
accepting.addPointer(down);
expect(accepting.state, GestureRecognizerState.possible);
expect(accepting.primaryPointer, 5);
expect(accepting.initialPosition!.global, down.position);
expect(accepting.initialPosition!.local, down.localPosition);
expect(resolutions, <String>[]);
tester.closeArena(5);
tester.async.flushMicrotasks();
tester.route(down);
tester.route(up);
expect(accepting.state, GestureRecognizerState.ready);
expect(accepting.primaryPointer, 5);
expect(accepting.initialPosition, isNull);
expect(resolutions, <String>['accepted']);
});
testGesture('cleans up state after losing arena', (GestureTester tester) {
final List<String> resolutions = <String>[];
final IndefiniteGestureRecognizer indefinite = IndefiniteGestureRecognizer();
final TestPrimaryPointerGestureRecognizer<PointerMoveEvent> rejecting = TestPrimaryPointerGestureRecognizer<PointerMoveEvent>(
GestureDisposition.rejected,
onAcceptGesture: () => resolutions.add('accepted'),
onRejectGesture: () => resolutions.add('rejected'),
);
expect(rejecting.state, GestureRecognizerState.ready);
expect(rejecting.primaryPointer, isNull);
expect(rejecting.initialPosition, isNull);
expect(resolutions, <String>[]);
indefinite.addPointer(down);
rejecting.addPointer(down);
expect(rejecting.state, GestureRecognizerState.possible);
expect(rejecting.primaryPointer, 5);
expect(rejecting.initialPosition!.global, down.position);
expect(rejecting.initialPosition!.local, down.localPosition);
expect(resolutions, <String>[]);
tester.closeArena(5);
tester.async.flushMicrotasks();
tester.route(down);
tester.route(move);
expect(rejecting.state, GestureRecognizerState.defunct);
expect(rejecting.primaryPointer, 5);
expect(rejecting.initialPosition!.global, down.position);
expect(rejecting.initialPosition!.local, down.localPosition);
expect(resolutions, <String>['rejected']);
tester.route(up);
expect(rejecting.state, GestureRecognizerState.ready);
expect(rejecting.primaryPointer, 5);
expect(rejecting.initialPosition, isNull);
expect(resolutions, <String>['rejected']);
});
testGesture('works properly when recycled', (GestureTester tester) {
final List<String> resolutions = <String>[];
final IndefiniteGestureRecognizer indefinite = IndefiniteGestureRecognizer();
final TestPrimaryPointerGestureRecognizer<PointerUpEvent> accepting = TestPrimaryPointerGestureRecognizer<PointerUpEvent>(
GestureDisposition.accepted,
preAcceptSlopTolerance: 15,
postAcceptSlopTolerance: 1000,
onAcceptGesture: () => resolutions.add('accepted'),
onRejectGesture: () => resolutions.add('rejected'),
);
// Send one complete pointer sequence
indefinite.addPointer(down);
accepting.addPointer(down);
tester.closeArena(5);
tester.async.flushMicrotasks();
tester.route(down);
tester.route(up);
expect(resolutions, <String>['accepted']);
resolutions.clear();
// Send a follow-on sequence that breaks preAcceptSlopTolerance
indefinite.addPointer(down2);
accepting.addPointer(down2);
tester.closeArena(6);
tester.async.flushMicrotasks();
tester.route(down2);
tester.route(move2);
expect(resolutions, <String>['rejected']);
tester.route(up2);
expect(resolutions, <String>['rejected']);
});
});
}
class TestGestureRecognizer extends GestureRecognizer {
TestGestureRecognizer({ Object? debugOwner }) : super(debugOwner: debugOwner);
@override
String get debugDescription => 'debugDescription content';
@override
void addPointer(PointerDownEvent event) { }
@override
void acceptGesture(int pointer) { }
@override
void rejectGesture(int pointer) { }
}
/// Gesture recognizer that adds itself to the gesture arena but never
/// resolves itself.
class IndefiniteGestureRecognizer extends GestureRecognizer {
@override
void addAllowedPointer(PointerDownEvent event) {
GestureBinding.instance!.gestureArena.add(event.pointer, this);
}
@override
void acceptGesture(int pointer) { }
@override
void rejectGesture(int pointer) { }
@override
String get debugDescription => 'Unresolving';
}
/// Gesture recognizer that resolves with [resolution] when it handles an event
/// on the primary pointer of type [T]
class TestPrimaryPointerGestureRecognizer<T extends PointerEvent> extends PrimaryPointerGestureRecognizer {
TestPrimaryPointerGestureRecognizer(
this.resolution, {
this.onAcceptGesture,
this.onRejectGesture,
double? preAcceptSlopTolerance,
double? postAcceptSlopTolerance,
}) : super(
preAcceptSlopTolerance: preAcceptSlopTolerance,
postAcceptSlopTolerance: postAcceptSlopTolerance,
);
final GestureDisposition resolution;
final VoidCallback? onAcceptGesture;
final VoidCallback? onRejectGesture;
@override
void acceptGesture(int pointer) {
super.acceptGesture(pointer);
if (onAcceptGesture != null) {
onAcceptGesture!();
}
}
@override
void rejectGesture(int pointer) {
super.rejectGesture(pointer);
if (onRejectGesture != null) {
onRejectGesture!();
}
}
@override
void handlePrimaryPointer(PointerEvent event) {
if (event is T) {
resolve(resolution);
}
}
@override
String get debugDescription => 'TestPrimaryPointer';
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment