Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Revert "Fix Android platform view creation flow" (#109389)
Browse files Browse the repository at this point in the history
Merging on red to green the build.
  • Loading branch information
Casey Hillers committed Aug 11, 2022
1 parent c91b481 commit 9ad052a
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 181 deletions.
14 changes: 11 additions & 3 deletions packages/flutter/lib/src/rendering/platform_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,17 @@ class RenderAndroidView extends PlatformViewRenderBox {
Size targetSize;
do {
targetSize = size;
_currentTextureSize = await _viewController.setSize(targetSize);
if (_isDisposed) {
return;
if (_viewController.isCreated) {
_currentTextureSize = await _viewController.setSize(targetSize);
if (_isDisposed) {
return;
}
} else {
await _viewController.create(size: targetSize);
if (_isDisposed) {
return;
}
_currentTextureSize = targetSize;
}
// We've resized the platform view to targetSize, but it is possible that
// while we were resizing the render object's size was changed again.
Expand Down
74 changes: 24 additions & 50 deletions packages/flutter/lib/src/services/platform_views.dart
Original file line number Diff line number Diff line change
Expand Up @@ -764,33 +764,17 @@ abstract class AndroidViewController extends PlatformViewController {
Future<void> _sendDisposeMessage();

/// Sends the message to create the platform view with an initial [size].
///
/// Returns true if the view was actually created. In some cases (e.g.,
/// trying to create a texture-based view with a null size) creation will
/// fail and need to be re-attempted later.
Future<bool> _sendCreateMessage({Size? size});

/// Sends the message to resize the platform view to [size].
Future<Size> _sendResizeMessage(Size size);

@override
bool get awaitingCreation => _state == _AndroidViewState.waitingForSize;
Future<void> _sendCreateMessage({Size? size});

@override
Future<void> create({Size? size}) async {
assert(_state != _AndroidViewState.disposed, 'trying to create a disposed Android view');

assert(_state == _AndroidViewState.waitingForSize, 'Android view is already sized. View id: $viewId');
_state = _AndroidViewState.creating;
final bool created = await _sendCreateMessage(size: size);

if (created) {
_state = _AndroidViewState.created;
for (final PlatformViewCreatedCallback callback in _platformViewCreatedCallbacks) {
callback(viewId);
}
} else {
_state = _AndroidViewState.waitingForSize;
await _sendCreateMessage(size: size);

_state = _AndroidViewState.created;
for (final PlatformViewCreatedCallback callback in _platformViewCreatedCallbacks) {
callback(viewId);
}
}

Expand All @@ -808,17 +792,7 @@ abstract class AndroidViewController extends PlatformViewController {
///
/// As a result, consumers are expected to clip the texture using [size], while using
/// the return value to size the texture.
Future<Size> setSize(Size size) async {
assert(_state != _AndroidViewState.disposed, 'Android view is disposed. View id: $viewId');
if (_state == _AndroidViewState.waitingForSize) {
// Either `create` hasn't been called, or it couldn't run due to missing
// size information, so create the view now.
await create(size: size);
return size;
} else {
return _sendResizeMessage(size);
}
}
Future<Size> setSize(Size size);

/// Sets the offset of the platform view.
///
Expand Down Expand Up @@ -998,7 +972,7 @@ class ExpensiveAndroidViewController extends AndroidViewController {
}) : super._();

@override
Future<bool> _sendCreateMessage({Size? size}) async {
Future<void> _sendCreateMessage({Size? size}) {
final Map<String, dynamic> args = <String, dynamic>{
'id': viewId,
'viewType': _viewType,
Expand All @@ -1014,8 +988,7 @@ class ExpensiveAndroidViewController extends AndroidViewController {
paramsByteData.lengthInBytes,
);
}
await SystemChannels.platform_views.invokeMethod<void>('create', args);
return true;
return SystemChannels.platform_views.invokeMethod<void>('create', args);
}

@override
Expand All @@ -1032,7 +1005,7 @@ class ExpensiveAndroidViewController extends AndroidViewController {
}

@override
Future<Size> _sendResizeMessage(Size size) {
Future<Size> setSize(Size size) {
throw UnimplementedError('Not supported for $SurfaceAndroidViewController.');
}

Expand Down Expand Up @@ -1071,7 +1044,8 @@ class TextureAndroidViewController extends AndroidViewController {
Offset _off = Offset.zero;

@override
Future<Size> _sendResizeMessage(Size size) async {
Future<Size> setSize(Size size) async {
assert(_state != _AndroidViewState.disposed, 'Android view is disposed. View id: $viewId');
assert(_state != _AndroidViewState.waitingForSize, 'Android view must have an initial size. View id: $viewId');
assert(size != null);
assert(!size.isEmpty);
Expand All @@ -1090,6 +1064,16 @@ class TextureAndroidViewController extends AndroidViewController {
return Size(meta!['width']! as double, meta['height']! as double);
}

@override
Future<void> create({Size? size}) async {
if (size == null) {
return;
}
assert(_state == _AndroidViewState.waitingForSize, 'Android view is already sized. View id: $viewId');
assert(!size.isEmpty);
return super.create(size: size);
}

@override
Future<void> setOffset(Offset off) async {
if (off == _off) {
Expand All @@ -1116,9 +1100,9 @@ class TextureAndroidViewController extends AndroidViewController {
}

@override
Future<bool> _sendCreateMessage({Size? size}) async {
Future<void> _sendCreateMessage({Size? size}) async {
if (size == null) {
return false;
return;
}

assert(!size.isEmpty, 'trying to create $TextureAndroidViewController without setting a valid size.');
Expand All @@ -1139,7 +1123,6 @@ class TextureAndroidViewController extends AndroidViewController {
);
}
_textureId = await SystemChannels.platform_views.invokeMethod<int>('create', args);
return true;
}

@override
Expand Down Expand Up @@ -1236,15 +1219,6 @@ abstract class PlatformViewController {
/// * [PlatformViewsRegistry], which is a helper for managing platform view IDs.
int get viewId;

/// True if [create] has not been successfully called the platform view.
///
/// This can indicate either that [create] was never called, or that [create]
/// was deferred for implementation-specific reasons.
///
/// A `false` return value does not necessarily indicate that the [Future]
/// returned by [create] has completed, only that creation has been started.
bool get awaitingCreation => false;

/// Dispatches the `event` to the platform view.
Future<void> dispatchPointerEvent(PointerEvent event);

Expand Down
14 changes: 4 additions & 10 deletions packages/flutter/lib/src/widgets/platform_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -871,20 +871,14 @@ class _PlatformViewLinkState extends State<PlatformViewLink> {

@override
Widget build(BuildContext context) {
final PlatformViewController? controller = _controller;
if (controller == null) {
if (_controller == null) {
return const SizedBox.expand();
}
if (!_platformViewCreated) {
// Depending on the implementation, the initial size can be used to size
// the platform view.
return _PlatformViewPlaceHolder(onLayout: (Size size) {
if (controller.awaitingCreation) {
controller.create(size: size);
}
});
// Depending on the platform, the initial size can be used to size the platform view.
return _PlatformViewPlaceHolder(onLayout: (Size size) => _controller!.create(size: size));
}
_surface ??= widget._surfaceFactory(context, controller);
_surface ??= widget._surfaceFactory(context, _controller!);
return Focus(
focusNode: _focusNode,
onFocusChange: _handleFrameworkFocusChanged,
Expand Down
15 changes: 2 additions & 13 deletions packages/flutter/test/services/fake_platform_views.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,11 @@ class FakePlatformViewController extends PlatformViewController {
}

class FakeAndroidViewController implements AndroidViewController {
FakeAndroidViewController(this.viewId, {this.requiresSize = false});
FakeAndroidViewController(this.viewId);

bool disposed = false;
bool focusCleared = false;
bool created = false;
// If true, [create] won't be considered to have been called successfully
// unless it includes a size.
bool requiresSize;

bool _createCalledSuccessfully = false;

/// Events that are dispatched.
List<PointerEvent> dispatchedPointerEvents = <PointerEvent>[];
Expand Down Expand Up @@ -97,9 +92,6 @@ class FakeAndroidViewController implements AndroidViewController {
@override
int get textureId => 0;

@override
bool get awaitingCreation => !_createCalledSuccessfully;

@override
bool get isCreated => created;

Expand All @@ -122,10 +114,7 @@ class FakeAndroidViewController implements AndroidViewController {
}

@override
Future<void> create({Size? size}) async {
assert(!_createCalledSuccessfully);
_createCalledSuccessfully = size != null || !requiresSize;
}
Future<void> create({Size? size}) async {}

@override
List<PlatformViewCreatedCallback> get createdCallbacks => <PlatformViewCreatedCallback>[];
Expand Down
106 changes: 1 addition & 105 deletions packages/flutter/test/widgets/platform_view_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,6 @@ void main() {

containerFocusNode.requestFocus();

viewsController.createCompleter!.complete();
await tester.pump();

expect(containerFocusNode.hasFocus, isTrue);
Expand Down Expand Up @@ -2424,110 +2423,7 @@ void main() {
onCreatePlatformView: (PlatformViewCreationParams params) {
onPlatformViewCreatedCallBack = params.onPlatformViewCreated;
createdPlatformViewId = params.id;
return FakePlatformViewController(params.id)..create();
},
surfaceFactory: (BuildContext context, PlatformViewController controller) {
return PlatformViewSurface(
gestureRecognizers: const <Factory<OneSequenceGestureRecognizer>>{},
controller: controller,
hitTestBehavior: PlatformViewHitTestBehavior.opaque,
);
},
);

await tester.pumpWidget(platformViewLink);

expect(
tester.allWidgets.map((Widget widget) => widget.runtimeType.toString()).toList(),
equals(<String>['PlatformViewLink', '_PlatformViewPlaceHolder']),
);

onPlatformViewCreatedCallBack(createdPlatformViewId);

await tester.pump();

expect(
tester.allWidgets.map((Widget widget) => widget.runtimeType.toString()).toList(),
equals(<String>['PlatformViewLink', 'Focus', '_FocusMarker', 'Semantics', 'PlatformViewSurface']),
);

expect(createdPlatformViewId, currentViewId + 1);
},
);

testWidgets(
'PlatformViewLink calls create when needed for Android texture display modes',
(WidgetTester tester) async {
final int currentViewId = platformViewsRegistry.getNextPlatformViewId();
late int createdPlatformViewId;

late PlatformViewCreatedCallback onPlatformViewCreatedCallBack;
late PlatformViewController controller;

final PlatformViewLink platformViewLink = PlatformViewLink(
viewType: 'webview',
onCreatePlatformView: (PlatformViewCreationParams params) {
onPlatformViewCreatedCallBack = params.onPlatformViewCreated;
createdPlatformViewId = params.id;
controller = FakeAndroidViewController(params.id, requiresSize: true);
controller.create();
// This test should be simulating one of the texture-based display
// modes, where `create` is a no-op when not provided a size, and
// creation is triggered via a later call to setSize, or to `create`
// with a size.
expect(controller.awaitingCreation, true);
return controller;
},
surfaceFactory: (BuildContext context, PlatformViewController controller) {
return PlatformViewSurface(
gestureRecognizers: const <Factory<OneSequenceGestureRecognizer>>{},
controller: controller,
hitTestBehavior: PlatformViewHitTestBehavior.opaque,
);
},
);

await tester.pumpWidget(platformViewLink);

expect(
tester.allWidgets.map((Widget widget) => widget.runtimeType.toString()).toList(),
equals(<String>['PlatformViewLink', '_PlatformViewPlaceHolder']),
);

onPlatformViewCreatedCallBack(createdPlatformViewId);

await tester.pump();

expect(
tester.allWidgets.map((Widget widget) => widget.runtimeType.toString()).toList(),
equals(<String>['PlatformViewLink', 'Focus', '_FocusMarker', 'Semantics', 'PlatformViewSurface']),
);

expect(createdPlatformViewId, currentViewId + 1);
expect(controller.awaitingCreation, false);
},
);

testWidgets(
'PlatformViewLink does not double-call create for Android Hybrid Composition',
(WidgetTester tester) async {
final int currentViewId = platformViewsRegistry.getNextPlatformViewId();
late int createdPlatformViewId;

late PlatformViewCreatedCallback onPlatformViewCreatedCallBack;
late PlatformViewController controller;

final PlatformViewLink platformViewLink = PlatformViewLink(
viewType: 'webview',
onCreatePlatformView: (PlatformViewCreationParams params) {
onPlatformViewCreatedCallBack = params.onPlatformViewCreated;
createdPlatformViewId = params.id;
controller = FakeAndroidViewController(params.id);
controller.create();
// This test should be simulating Hybrid Composition mode, where
// `create` takes effect immidately.
expect(controller.awaitingCreation, false);
return controller;
return FakePlatformViewController(params.id);
},
surfaceFactory: (BuildContext context, PlatformViewController controller) {
return PlatformViewSurface(
Expand Down

0 comments on commit 9ad052a

Please sign in to comment.