Reland "Remove ImageProvider.load, DecoderCallback and PaintingBinding.instantiateImageCodec
(#132679) (reverted in #133482) (#133605)
Relanding the commit per https://github.com/flutter/flutter/pull/133482#issuecomment-1698030976 ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [ ] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [ ] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the change I am making, or this PR is [test-exempt]. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene [test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [Features we expect every widget to implement]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat
This commit is contained in:
parent
d49eb4afac
commit
7f3abea35a
@ -13,6 +13,9 @@ import 'debug.dart';
|
||||
import 'image_provider.dart' as image_provider;
|
||||
import 'image_stream.dart';
|
||||
|
||||
// Method signature for _loadAsync decode callbacks.
|
||||
typedef _SimpleDecoderCallback = Future<ui.Codec> Function(ui.ImmutableBuffer buffer);
|
||||
|
||||
/// The dart:io implementation of [image_provider.NetworkImage].
|
||||
@immutable
|
||||
class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkImage> implements image_provider.NetworkImage {
|
||||
@ -35,25 +38,6 @@ class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkIm
|
||||
return SynchronousFuture<NetworkImage>(this);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(image_provider.NetworkImage key, image_provider.DecoderCallback decode) {
|
||||
// Ownership of this controller is handed off to [_loadAsync]; it is that
|
||||
// method's responsibility to close the controller's stream when the image
|
||||
// has been loaded or an error is thrown.
|
||||
final StreamController<ImageChunkEvent> chunkEvents = StreamController<ImageChunkEvent>();
|
||||
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key as NetworkImage, chunkEvents, decodeDeprecated: decode),
|
||||
chunkEvents: chunkEvents.stream,
|
||||
scale: key.scale,
|
||||
debugLabel: key.url,
|
||||
informationCollector: () => <DiagnosticsNode>[
|
||||
DiagnosticsProperty<image_provider.ImageProvider>('Image provider', this),
|
||||
DiagnosticsProperty<image_provider.NetworkImage>('Image key', key),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(image_provider.NetworkImage key, image_provider.DecoderBufferCallback decode) {
|
||||
// Ownership of this controller is handed off to [_loadAsync]; it is that
|
||||
@ -62,7 +46,7 @@ class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkIm
|
||||
final StreamController<ImageChunkEvent> chunkEvents = StreamController<ImageChunkEvent>();
|
||||
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key as NetworkImage, chunkEvents, decodeBufferDeprecated: decode),
|
||||
codec: _loadAsync(key as NetworkImage, chunkEvents, decode: decode),
|
||||
chunkEvents: chunkEvents.stream,
|
||||
scale: key.scale,
|
||||
debugLabel: key.url,
|
||||
@ -112,9 +96,7 @@ class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkIm
|
||||
Future<ui.Codec> _loadAsync(
|
||||
NetworkImage key,
|
||||
StreamController<ImageChunkEvent> chunkEvents, {
|
||||
image_provider.ImageDecoderCallback? decode,
|
||||
image_provider.DecoderBufferCallback? decodeBufferDeprecated,
|
||||
image_provider.DecoderCallback? decodeDeprecated,
|
||||
required _SimpleDecoderCallback decode,
|
||||
}) async {
|
||||
try {
|
||||
assert(key == this);
|
||||
@ -148,16 +130,7 @@ class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkIm
|
||||
throw Exception('NetworkImage is an empty file: $resolved');
|
||||
}
|
||||
|
||||
if (decode != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decode(buffer);
|
||||
} else if (decodeBufferDeprecated != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decodeBufferDeprecated(buffer);
|
||||
} else {
|
||||
assert(decodeDeprecated != null);
|
||||
return decodeDeprecated!(bytes);
|
||||
}
|
||||
return decode(await ui.ImmutableBuffer.fromUint8List(bytes));
|
||||
} catch (e) {
|
||||
// Depending on where the exception was thrown, the image cache may not
|
||||
// have had a chance to track the key in the cache at all.
|
||||
|
@ -16,6 +16,9 @@ import 'image_stream.dart';
|
||||
/// Creates a type for an overridable factory function for testing purposes.
|
||||
typedef HttpRequestFactory = web.XMLHttpRequest Function();
|
||||
|
||||
// Method signature for _loadAsync decode callbacks.
|
||||
typedef _SimpleDecoderCallback = Future<ui.Codec> Function(ui.ImmutableBuffer buffer);
|
||||
|
||||
/// Default HTTP client.
|
||||
web.XMLHttpRequest _httpClient() {
|
||||
return web.XMLHttpRequest();
|
||||
@ -55,23 +58,6 @@ class NetworkImage
|
||||
return SynchronousFuture<NetworkImage>(this);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(image_provider.NetworkImage key, image_provider.DecoderCallback decode) {
|
||||
// Ownership of this controller is handed off to [_loadAsync]; it is that
|
||||
// method's responsibility to close the controller's stream when the image
|
||||
// has been loaded or an error is thrown.
|
||||
final StreamController<ImageChunkEvent> chunkEvents =
|
||||
StreamController<ImageChunkEvent>();
|
||||
|
||||
return MultiFrameImageStreamCompleter(
|
||||
chunkEvents: chunkEvents.stream,
|
||||
codec: _loadAsync(key as NetworkImage, null, null, decode, chunkEvents),
|
||||
scale: key.scale,
|
||||
debugLabel: key.url,
|
||||
informationCollector: _imageStreamInformationCollector(key),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(image_provider.NetworkImage key, image_provider.DecoderBufferCallback decode) {
|
||||
// Ownership of this controller is handed off to [_loadAsync]; it is that
|
||||
@ -82,7 +68,7 @@ class NetworkImage
|
||||
|
||||
return MultiFrameImageStreamCompleter(
|
||||
chunkEvents: chunkEvents.stream,
|
||||
codec: _loadAsync(key as NetworkImage, null, decode, null, chunkEvents),
|
||||
codec: _loadAsync(key as NetworkImage, decode, chunkEvents),
|
||||
scale: key.scale,
|
||||
debugLabel: key.url,
|
||||
informationCollector: _imageStreamInformationCollector(key),
|
||||
@ -98,7 +84,7 @@ class NetworkImage
|
||||
|
||||
return MultiFrameImageStreamCompleter(
|
||||
chunkEvents: chunkEvents.stream,
|
||||
codec: _loadAsync(key as NetworkImage, decode, null, null, chunkEvents),
|
||||
codec: _loadAsync(key as NetworkImage, decode, chunkEvents),
|
||||
scale: key.scale,
|
||||
debugLabel: key.url,
|
||||
informationCollector: _imageStreamInformationCollector(key),
|
||||
@ -122,9 +108,7 @@ class NetworkImage
|
||||
// in place of the typical `instantiateImageCodec` method.
|
||||
Future<ui.Codec> _loadAsync(
|
||||
NetworkImage key,
|
||||
image_provider.ImageDecoderCallback? decode,
|
||||
image_provider.DecoderBufferCallback? decodeBufferDeprecated,
|
||||
image_provider.DecoderCallback? decodeDeprecated,
|
||||
_SimpleDecoderCallback decode,
|
||||
StreamController<ImageChunkEvent> chunkEvents,
|
||||
) async {
|
||||
assert(key == this);
|
||||
@ -179,17 +163,7 @@ class NetworkImage
|
||||
throw image_provider.NetworkImageLoadException(
|
||||
statusCode: request.status, uri: resolved);
|
||||
}
|
||||
|
||||
if (decode != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decode(buffer);
|
||||
} else if (decodeBufferDeprecated != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decodeBufferDeprecated(buffer);
|
||||
} else {
|
||||
assert(decodeDeprecated != null);
|
||||
return decodeDeprecated!(bytes);
|
||||
}
|
||||
return decode(await ui.ImmutableBuffer.fromUint8List(bytes));
|
||||
} else {
|
||||
return ui_web.createImageCodecFromUrl(
|
||||
resolved,
|
||||
|
@ -78,47 +78,6 @@ mixin PaintingBinding on BindingBase, ServicesBinding {
|
||||
@protected
|
||||
ImageCache createImageCache() => ImageCache();
|
||||
|
||||
/// Calls through to [dart:ui.instantiateImageCodec] from [ImageCache].
|
||||
///
|
||||
/// This method is deprecated. use [instantiateImageCodecFromBuffer] with an
|
||||
/// [ImmutableBuffer] instance instead of this method.
|
||||
///
|
||||
/// The `cacheWidth` and `cacheHeight` parameters, when specified, indicate
|
||||
/// the size to decode the image to.
|
||||
///
|
||||
/// Both `cacheWidth` and `cacheHeight` must be positive values greater than
|
||||
/// or equal to 1, or null. It is valid to specify only one of `cacheWidth`
|
||||
/// and `cacheHeight` with the other remaining null, in which case the omitted
|
||||
/// dimension will be scaled to maintain the aspect ratio of the original
|
||||
/// dimensions. When both are null or omitted, the image will be decoded at
|
||||
/// its native resolution.
|
||||
///
|
||||
/// The `allowUpscaling` parameter determines whether the `cacheWidth` or
|
||||
/// `cacheHeight` parameters are clamped to the intrinsic width and height of
|
||||
/// the original image. By default, the dimensions are clamped to avoid
|
||||
/// unnecessary memory usage for images. Callers that wish to display an image
|
||||
/// above its native resolution should prefer scaling the canvas the image is
|
||||
/// drawn into.
|
||||
@Deprecated(
|
||||
'Use instantiateImageCodecWithSize with an ImmutableBuffer instance instead. '
|
||||
'This feature was deprecated after v2.13.0-1.0.pre.',
|
||||
)
|
||||
Future<ui.Codec> instantiateImageCodec(
|
||||
Uint8List bytes, {
|
||||
int? cacheWidth,
|
||||
int? cacheHeight,
|
||||
bool allowUpscaling = false,
|
||||
}) {
|
||||
assert(cacheWidth == null || cacheWidth > 0);
|
||||
assert(cacheHeight == null || cacheHeight > 0);
|
||||
return ui.instantiateImageCodec(
|
||||
bytes,
|
||||
targetWidth: cacheWidth,
|
||||
targetHeight: cacheHeight,
|
||||
allowUpscaling: allowUpscaling,
|
||||
);
|
||||
}
|
||||
|
||||
/// Calls through to [dart:ui.instantiateImageCodecFromBuffer] from [ImageCache].
|
||||
///
|
||||
/// The [buffer] parameter should be an [ui.ImmutableBuffer] instance which can
|
||||
|
@ -3,7 +3,7 @@
|
||||
// found in the LICENSE file.
|
||||
|
||||
import 'dart:typed_data';
|
||||
import 'dart:ui' as ui show Codec, FrameInfo, Image;
|
||||
import 'dart:ui' as ui show Codec, FrameInfo, Image, ImmutableBuffer;
|
||||
|
||||
import 'binding.dart';
|
||||
|
||||
@ -17,10 +17,11 @@ import 'binding.dart';
|
||||
/// [instantiateImageCodec] if support for animated images is necessary.
|
||||
///
|
||||
/// This function differs from [ui.decodeImageFromList] in that it defers to
|
||||
/// [PaintingBinding.instantiateImageCodec], and therefore can be mocked in
|
||||
/// tests.
|
||||
/// [PaintingBinding.instantiateImageCodecWithSize], and therefore can be mocked
|
||||
/// in tests.
|
||||
Future<ui.Image> decodeImageFromList(Uint8List bytes) async {
|
||||
final ui.Codec codec = await PaintingBinding.instance.instantiateImageCodec(bytes);
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
final ui.Codec codec = await PaintingBinding.instance.instantiateImageCodecWithSize(buffer);
|
||||
final ui.FrameInfo frameInfo = await codec.getNextFrame();
|
||||
return frameInfo.image;
|
||||
}
|
||||
|
@ -160,25 +160,6 @@ class ImageConfiguration {
|
||||
}
|
||||
}
|
||||
|
||||
/// Performs the decode process for use in [ImageProvider.load].
|
||||
///
|
||||
/// This typedef is deprecated. Use [ImageDecoderCallback] with
|
||||
/// [ImageProvider.loadImage] instead.
|
||||
///
|
||||
/// This callback allows decoupling of the `cacheWidth`, `cacheHeight`, and
|
||||
/// `allowUpscaling` parameters from implementations of [ImageProvider] that do
|
||||
/// not expose them.
|
||||
///
|
||||
/// See also:
|
||||
///
|
||||
/// * [ResizeImage], which uses this to override the `cacheWidth`,
|
||||
/// `cacheHeight`, and `allowUpscaling` parameters.
|
||||
@Deprecated(
|
||||
'Use ImageDecoderCallback with ImageProvider.loadImage instead. '
|
||||
'This feature was deprecated after v2.13.0-1.0.pre.',
|
||||
)
|
||||
typedef DecoderCallback = Future<ui.Codec> Function(Uint8List buffer, {int? cacheWidth, int? cacheHeight, bool allowUpscaling});
|
||||
|
||||
/// Performs the decode process for use in [ImageProvider.loadBuffer].
|
||||
///
|
||||
/// This callback allows decoupling of the `cacheWidth`, `cacheHeight`, and
|
||||
@ -195,6 +176,9 @@ typedef DecoderCallback = Future<ui.Codec> Function(Uint8List buffer, {int? cach
|
||||
)
|
||||
typedef DecoderBufferCallback = Future<ui.Codec> Function(ui.ImmutableBuffer buffer, {int? cacheWidth, int? cacheHeight, bool allowUpscaling});
|
||||
|
||||
// Method signature for _loadAsync decode callbacks.
|
||||
typedef _SimpleDecoderCallback = Future<ui.Codec> Function(ui.ImmutableBuffer buffer);
|
||||
|
||||
/// Performs the decode process for use in [ImageProvider.loadImage].
|
||||
///
|
||||
/// This callback allows decoupling of the `getTargetSize` parameter from
|
||||
@ -250,7 +234,7 @@ typedef ImageDecoderCallback = Future<ui.Codec> Function(
|
||||
/// from the cache if possible, or call [loadImage] to fetch the encoded image
|
||||
/// bytes and schedule decoding.
|
||||
/// 4. The [loadImage] method is responsible for both fetching the encoded bytes
|
||||
/// and decoding them using the provided [DecoderCallback]. It is called
|
||||
/// and decoding them using the provided [ImageDecoderCallback]. It is called
|
||||
/// in a context that uses the [ImageErrorListener] to report errors back.
|
||||
///
|
||||
/// Subclasses normally only have to implement the [loadImage] and [obtainKey]
|
||||
@ -365,10 +349,10 @@ abstract class ImageProvider<T extends Object> {
|
||||
///
|
||||
/// This is the public entry-point of the [ImageProvider] class hierarchy.
|
||||
///
|
||||
/// Subclasses should implement [obtainKey] and [load], which are used by this
|
||||
/// method. If they need to change the implementation of [ImageStream] used,
|
||||
/// they should override [createStream]. If they need to manage the actual
|
||||
/// resolution of the image, they should override [resolveStreamForKey].
|
||||
/// Subclasses should implement [obtainKey] and [loadImage], which are used by
|
||||
/// this method. If they need to change the implementation of [ImageStream]
|
||||
/// used, they should override [createStream]. If they need to manage the
|
||||
/// actual resolution of the image, they should override [resolveStreamForKey].
|
||||
///
|
||||
/// See the Lifecycle documentation on [ImageProvider] for more information.
|
||||
@nonVirtual
|
||||
@ -542,10 +526,6 @@ abstract class ImageProvider<T extends Object> {
|
||||
// of type `_AbstractImageStreamCompleter`.
|
||||
if (result is _AbstractImageStreamCompleter) {
|
||||
result = loadBuffer(key, PaintingBinding.instance.instantiateImageCodecFromBuffer);
|
||||
if (result is _AbstractImageStreamCompleter) {
|
||||
// Same fallback as above but for the deprecated `load()` method.
|
||||
result = load(key, PaintingBinding.instance.instantiateImageCodec);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
},
|
||||
@ -610,39 +590,17 @@ abstract class ImageProvider<T extends Object> {
|
||||
/// that describes the precise image to load.
|
||||
///
|
||||
/// The type of the key is determined by the subclass. It is a value that
|
||||
/// unambiguously identifies the image (_including its scale_) that the [load]
|
||||
/// method will fetch. Different [ImageProvider]s given the same constructor
|
||||
/// arguments and [ImageConfiguration] objects should return keys that are
|
||||
/// '==' to each other (possibly by using a class for the key that itself
|
||||
/// implements [==]).
|
||||
/// unambiguously identifies the image (_including its scale_) that the
|
||||
/// [loadImage] method will fetch. Different [ImageProvider]s given the same
|
||||
/// constructor arguments and [ImageConfiguration] objects should return keys
|
||||
/// that are '==' to each other (possibly by using a class for the key that
|
||||
/// itself implements [==]).
|
||||
///
|
||||
/// If the result can be determined synchronously, this function should return
|
||||
/// a [SynchronousFuture]. This allows image resolution to progress
|
||||
/// synchronously during a frame rather than delaying image loading.
|
||||
Future<T> obtainKey(ImageConfiguration configuration);
|
||||
|
||||
/// Converts a key into an [ImageStreamCompleter], and begins fetching the
|
||||
/// image.
|
||||
///
|
||||
/// This method is deprecated. Implement [loadImage] for faster image
|
||||
/// loading. Only one of [load] and [loadImage] must be implemented, and
|
||||
/// [loadImage] is preferred.
|
||||
///
|
||||
/// The [decode] callback provides the logic to obtain the codec for the
|
||||
/// image.
|
||||
///
|
||||
/// See also:
|
||||
///
|
||||
/// * [ResizeImage], for modifying the key to account for cache dimensions.
|
||||
@protected
|
||||
@Deprecated(
|
||||
'Implement loadImage for faster image loading. '
|
||||
'This feature was deprecated after v2.13.0-1.0.pre.',
|
||||
)
|
||||
ImageStreamCompleter load(T key, DecoderCallback decode) {
|
||||
throw UnsupportedError('Implement loadImage for faster image loading');
|
||||
}
|
||||
|
||||
/// Converts a key into an [ImageStreamCompleter], and begins fetching the
|
||||
/// image.
|
||||
///
|
||||
@ -776,25 +734,7 @@ abstract class AssetBundleImageProvider extends ImageProvider<AssetBundleImageKe
|
||||
return true;
|
||||
}());
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeBufferDeprecated: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: key.name,
|
||||
informationCollector: collector,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(AssetBundleImageKey key, DecoderCallback decode) {
|
||||
InformationCollector? collector;
|
||||
assert(() {
|
||||
collector = () => <DiagnosticsNode>[
|
||||
DiagnosticsProperty<ImageProvider>('Image provider', this),
|
||||
DiagnosticsProperty<AssetBundleImageKey>('Image key', key),
|
||||
];
|
||||
return true;
|
||||
}());
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeDeprecated: decode),
|
||||
codec: _loadAsync(key, decode: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: key.name,
|
||||
informationCollector: collector,
|
||||
@ -804,48 +744,22 @@ abstract class AssetBundleImageProvider extends ImageProvider<AssetBundleImageKe
|
||||
/// Fetches the image from the asset bundle, decodes it, and returns a
|
||||
/// corresponding [ImageInfo] object.
|
||||
///
|
||||
/// This function is used by [load].
|
||||
/// This function is used by [loadImage].
|
||||
@protected
|
||||
Future<ui.Codec> _loadAsync(
|
||||
AssetBundleImageKey key, {
|
||||
ImageDecoderCallback? decode,
|
||||
DecoderBufferCallback? decodeBufferDeprecated,
|
||||
DecoderCallback? decodeDeprecated,
|
||||
required _SimpleDecoderCallback decode,
|
||||
}) async {
|
||||
if (decode != null) {
|
||||
ui.ImmutableBuffer buffer;
|
||||
// Hot reload/restart could change whether an asset bundle or key in a
|
||||
// bundle are available, or if it is a network backed bundle.
|
||||
try {
|
||||
buffer = await key.bundle.loadBuffer(key.name);
|
||||
} on FlutterError {
|
||||
PaintingBinding.instance.imageCache.evict(key);
|
||||
rethrow;
|
||||
}
|
||||
return decode(buffer);
|
||||
}
|
||||
if (decodeBufferDeprecated != null) {
|
||||
ui.ImmutableBuffer buffer;
|
||||
// Hot reload/restart could change whether an asset bundle or key in a
|
||||
// bundle are available, or if it is a network backed bundle.
|
||||
try {
|
||||
buffer = await key.bundle.loadBuffer(key.name);
|
||||
} on FlutterError {
|
||||
PaintingBinding.instance.imageCache.evict(key);
|
||||
rethrow;
|
||||
}
|
||||
return decodeBufferDeprecated(buffer);
|
||||
}
|
||||
ByteData data;
|
||||
final ui.ImmutableBuffer buffer;
|
||||
// Hot reload/restart could change whether an asset bundle or key in a
|
||||
// bundle are available, or if it is a network backed bundle.
|
||||
try {
|
||||
data = await key.bundle.load(key.name);
|
||||
buffer = await key.bundle.loadBuffer(key.name);
|
||||
} on FlutterError {
|
||||
PaintingBinding.instance.imageCache.evict(key);
|
||||
rethrow;
|
||||
}
|
||||
return decodeDeprecated!(data.buffer.asUint8List());
|
||||
return decode(buffer);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1337,28 +1251,6 @@ class ResizeImage extends ImageProvider<ResizeImageKey> {
|
||||
return provider;
|
||||
}
|
||||
|
||||
@override
|
||||
@Deprecated(
|
||||
'Implement loadImage for faster image loading. '
|
||||
'This feature was deprecated after v2.13.0-1.0.pre.',
|
||||
)
|
||||
ImageStreamCompleter load(ResizeImageKey key, DecoderCallback decode) {
|
||||
Future<ui.Codec> decodeResize(Uint8List buffer, {int? cacheWidth, int? cacheHeight, bool? allowUpscaling}) {
|
||||
assert(
|
||||
cacheWidth == null && cacheHeight == null && allowUpscaling == null,
|
||||
'ResizeImage cannot be composed with another ImageProvider that applies '
|
||||
'cacheWidth, cacheHeight, or allowUpscaling.',
|
||||
);
|
||||
return decode(buffer, cacheWidth: width, cacheHeight: height, allowUpscaling: this.allowUpscaling);
|
||||
}
|
||||
final ImageStreamCompleter completer = imageProvider.load(key._providerCacheKey, decodeResize);
|
||||
if (!kReleaseMode) {
|
||||
completer.debugLabel = '${completer.debugLabel} - Resized(${key._width}×${key._height})';
|
||||
}
|
||||
_configureErrorListener(completer, key);
|
||||
return completer;
|
||||
}
|
||||
|
||||
@override
|
||||
@Deprecated(
|
||||
'Implement loadImage for image loading. '
|
||||
@ -1494,11 +1386,11 @@ class ResizeImage extends ImageProvider<ResizeImageKey> {
|
||||
///
|
||||
/// The image will be cached regardless of cache headers from the server.
|
||||
///
|
||||
/// When a network image is used on the Web platform, the `cacheWidth` and
|
||||
/// `cacheHeight` parameters of the [DecoderCallback] are only supported when the
|
||||
/// application is running with the CanvasKit renderer. When the application is using
|
||||
/// the HTML renderer, the web engine delegates image decoding of network images to the Web,
|
||||
/// which does not support custom decode sizes.
|
||||
/// When a network image is used on the Web platform, the `getTargetSize`
|
||||
/// parameter of the [ImageDecoderCallback] is only supported when the
|
||||
/// application is running with the CanvasKit renderer. When the application is
|
||||
/// using the HTML renderer, the web engine delegates image decoding of network
|
||||
/// images to the Web, which does not support custom decode sizes.
|
||||
///
|
||||
/// See also:
|
||||
///
|
||||
@ -1525,9 +1417,6 @@ abstract class NetworkImage extends ImageProvider<NetworkImage> {
|
||||
/// When running Flutter on the web, headers are not used.
|
||||
Map<String, String>? get headers;
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(NetworkImage key, DecoderCallback decode);
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(NetworkImage key, DecoderBufferCallback decode);
|
||||
|
||||
@ -1562,22 +1451,10 @@ class FileImage extends ImageProvider<FileImage> {
|
||||
return SynchronousFuture<FileImage>(this);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(FileImage key, DecoderCallback decode) {
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeDeprecated: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: key.file.path,
|
||||
informationCollector: () => <DiagnosticsNode>[
|
||||
ErrorDescription('Path: ${file.path}'),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(FileImage key, DecoderBufferCallback decode) {
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeBufferDeprecated: decode),
|
||||
codec: _loadAsync(key, decode: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: key.file.path,
|
||||
informationCollector: () => <DiagnosticsNode>[
|
||||
@ -1601,12 +1478,9 @@ class FileImage extends ImageProvider<FileImage> {
|
||||
|
||||
Future<ui.Codec> _loadAsync(
|
||||
FileImage key, {
|
||||
ImageDecoderCallback? decode,
|
||||
DecoderBufferCallback? decodeBufferDeprecated,
|
||||
DecoderCallback? decodeDeprecated,
|
||||
required _SimpleDecoderCallback decode,
|
||||
}) async {
|
||||
assert(key == this);
|
||||
|
||||
// TODO(jonahwilliams): making this sync caused test failures that seem to
|
||||
// indicate that we can fail to call evict unless at least one await has
|
||||
// occurred in the test.
|
||||
@ -1617,19 +1491,9 @@ class FileImage extends ImageProvider<FileImage> {
|
||||
PaintingBinding.instance.imageCache.evict(key);
|
||||
throw StateError('$file is empty and cannot be loaded as an image.');
|
||||
}
|
||||
if (decode != null) {
|
||||
if (file.runtimeType == File) {
|
||||
return decode(await ui.ImmutableBuffer.fromFilePath(file.path));
|
||||
}
|
||||
return decode(await ui.ImmutableBuffer.fromUint8List(await file.readAsBytes()));
|
||||
}
|
||||
if (decodeBufferDeprecated != null) {
|
||||
if (file.runtimeType == File) {
|
||||
return decodeBufferDeprecated(await ui.ImmutableBuffer.fromFilePath(file.path));
|
||||
}
|
||||
return decodeBufferDeprecated(await ui.ImmutableBuffer.fromUint8List(await file.readAsBytes()));
|
||||
}
|
||||
return decodeDeprecated!(await file.readAsBytes());
|
||||
return (file.runtimeType == File)
|
||||
? decode(await ui.ImmutableBuffer.fromFilePath(file.path))
|
||||
: decode(await ui.ImmutableBuffer.fromUint8List(await file.readAsBytes()));
|
||||
}
|
||||
|
||||
@override
|
||||
@ -1655,8 +1519,8 @@ class FileImage extends ImageProvider<FileImage> {
|
||||
/// The provided [bytes] buffer should not be changed after it is provided
|
||||
/// to a [MemoryImage]. To provide an [ImageStream] that represents an image
|
||||
/// that changes over time, consider creating a new subclass of [ImageProvider]
|
||||
/// whose [load] method returns a subclass of [ImageStreamCompleter] that can
|
||||
/// handle providing multiple images.
|
||||
/// whose [loadImage] method returns a subclass of [ImageStreamCompleter] that
|
||||
/// can handle providing multiple images.
|
||||
///
|
||||
/// See also:
|
||||
///
|
||||
@ -1675,7 +1539,7 @@ class MemoryImage extends ImageProvider<MemoryImage> {
|
||||
///
|
||||
/// See also:
|
||||
///
|
||||
/// * [PaintingBinding.instantiateImageCodec]
|
||||
/// * [PaintingBinding.instantiateImageCodecWithSize]
|
||||
final Uint8List bytes;
|
||||
|
||||
/// The scale to place in the [ImageInfo] object of the image.
|
||||
@ -1691,19 +1555,11 @@ class MemoryImage extends ImageProvider<MemoryImage> {
|
||||
return SynchronousFuture<MemoryImage>(this);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(MemoryImage key, DecoderCallback decode) {
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeDeprecated: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: 'MemoryImage(${describeIdentity(key.bytes)})',
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(MemoryImage key, DecoderBufferCallback decode) {
|
||||
assert(key == this);
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: _loadAsync(key, decodeBufferDeprecated: decode),
|
||||
codec: _loadAsync(key, decode: decode),
|
||||
scale: key.scale,
|
||||
debugLabel: 'MemoryImage(${describeIdentity(key.bytes)})',
|
||||
);
|
||||
@ -1720,20 +1576,10 @@ class MemoryImage extends ImageProvider<MemoryImage> {
|
||||
|
||||
Future<ui.Codec> _loadAsync(
|
||||
MemoryImage key, {
|
||||
ImageDecoderCallback? decode,
|
||||
DecoderBufferCallback? decodeBufferDeprecated,
|
||||
DecoderCallback? decodeDeprecated,
|
||||
required _SimpleDecoderCallback decode,
|
||||
}) async {
|
||||
assert(key == this);
|
||||
if (decode != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decode(buffer);
|
||||
}
|
||||
if (decodeBufferDeprecated != null) {
|
||||
final ui.ImmutableBuffer buffer = await ui.ImmutableBuffer.fromUint8List(bytes);
|
||||
return decodeBufferDeprecated(buffer);
|
||||
}
|
||||
return decodeDeprecated!(bytes);
|
||||
return decode(await ui.ImmutableBuffer.fromUint8List(bytes));
|
||||
}
|
||||
|
||||
@override
|
||||
|
@ -63,7 +63,7 @@ class ScrollAwareImageProvider<T extends Object> extends ImageProvider<T> {
|
||||
/// been resolved.
|
||||
final DisposableBuildContext context;
|
||||
|
||||
/// The wrapped image provider to delegate [obtainKey] and [load] to.
|
||||
/// The wrapped image provider to delegate [obtainKey] and [loadImage] to.
|
||||
final ImageProvider<T> imageProvider;
|
||||
|
||||
@override
|
||||
@ -105,9 +105,6 @@ class ScrollAwareImageProvider<T extends Object> extends ImageProvider<T> {
|
||||
imageProvider.resolveStreamForKey(configuration, stream, key, handleError);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(T key, DecoderCallback decode) => imageProvider.load(key, decode);
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(T key, DecoderBufferCallback decode) => imageProvider.loadBuffer(key, decode);
|
||||
|
||||
|
@ -3556,7 +3556,7 @@ class DelayedImageProvider extends ImageProvider<DelayedImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(DelayedImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(DelayedImageProvider key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(_completer.future);
|
||||
}
|
||||
|
||||
@ -3592,7 +3592,7 @@ class _TestImageProvider extends ImageProvider<Object> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(Object key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(Object key, ImageDecoderCallback decode) {
|
||||
_loadCallCount += 1;
|
||||
return _streamCompleter;
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ class SynchronousTestImageProvider extends ImageProvider<int> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
SynchronousFuture<ImageInfo>(TestImageInfo(key, image: image)),
|
||||
);
|
||||
@ -52,7 +52,7 @@ class SynchronousErrorTestImageProvider extends ImageProvider<int> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
throw throwable;
|
||||
}
|
||||
}
|
||||
@ -68,7 +68,7 @@ class AsyncTestImageProvider extends ImageProvider<int> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
Future<ImageInfo>.value(TestImageInfo(key, image: image)),
|
||||
);
|
||||
@ -88,7 +88,7 @@ class DelayedImageProvider extends ImageProvider<DelayedImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(DelayedImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(DelayedImageProvider key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(_completer.future);
|
||||
}
|
||||
|
||||
@ -111,7 +111,7 @@ class MultiFrameImageProvider extends ImageProvider<MultiFrameImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(MultiFrameImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(MultiFrameImageProvider key, ImageDecoderCallback decode) {
|
||||
return completer;
|
||||
}
|
||||
|
||||
|
@ -25,7 +25,7 @@ class FakeImageProvider extends ImageProvider<FakeImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(FakeImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(FakeImageProvider key, ImageDecoderCallback decode) {
|
||||
assert(key == this);
|
||||
return MultiFrameImageStreamCompleter(
|
||||
codec: SynchronousFuture<ui.Codec>(_codec),
|
||||
|
@ -28,11 +28,6 @@ class TestImageProvider extends ImageProvider<TestImageProvider> {
|
||||
super.resolveStreamForKey(config, stream, key, handleError);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(TestImageProvider key, DecoderCallback decode) {
|
||||
throw UnsupportedError('Use ImageProvider.loadImage instead.');
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter loadBuffer(TestImageProvider key, DecoderBufferCallback decode) {
|
||||
throw UnsupportedError('Use ImageProvider.loadImage instead.');
|
||||
|
@ -54,7 +54,7 @@ class TestImageProvider extends ImageProvider<int> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
SynchronousFuture<ImageInfo>(TestImageInfo(imageValue, image: image.clone())),
|
||||
);
|
||||
@ -68,7 +68,7 @@ class FailingTestImageProvider extends TestImageProvider {
|
||||
const FailingTestImageProvider(super.key, super.imageValue, { required super.image });
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(Future<ImageInfo>.sync(() => Future<ImageInfo>.error('loading failed!')));
|
||||
}
|
||||
}
|
||||
@ -95,11 +95,6 @@ class ErrorImageProvider extends ImageProvider<ErrorImageProvider> {
|
||||
throw Error();
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(ErrorImageProvider key, DecoderCallback decode) {
|
||||
throw Error();
|
||||
}
|
||||
|
||||
@override
|
||||
Future<ErrorImageProvider> obtainKey(ImageConfiguration configuration) {
|
||||
return SynchronousFuture<ErrorImageProvider>(this);
|
||||
@ -121,11 +116,6 @@ class ObtainKeyErrorImageProvider extends ImageProvider<ObtainKeyErrorImageProvi
|
||||
Future<ObtainKeyErrorImageProvider> obtainKey(ImageConfiguration configuration) {
|
||||
throw Error();
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(ObtainKeyErrorImageProvider key, DecoderCallback decode) {
|
||||
throw UnimplementedError();
|
||||
}
|
||||
}
|
||||
|
||||
class LoadErrorImageProvider extends ImageProvider<LoadErrorImageProvider> {
|
||||
@ -143,16 +133,11 @@ class LoadErrorImageProvider extends ImageProvider<LoadErrorImageProvider> {
|
||||
Future<LoadErrorImageProvider> obtainKey(ImageConfiguration configuration) {
|
||||
return SynchronousFuture<LoadErrorImageProvider>(this);
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(LoadErrorImageProvider key, DecoderCallback decode) {
|
||||
throw UnimplementedError();
|
||||
}
|
||||
}
|
||||
|
||||
class LoadErrorCompleterImageProvider extends ImageProvider<LoadErrorCompleterImageProvider> {
|
||||
@override
|
||||
ImageStreamCompleter load(LoadErrorCompleterImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(LoadErrorCompleterImageProvider key, ImageDecoderCallback decode) {
|
||||
final Completer<ImageInfo> completer = Completer<ImageInfo>.sync();
|
||||
completer.completeError(Error());
|
||||
return OneFrameImageStreamCompleter(completer.future);
|
||||
|
@ -14,9 +14,9 @@ class PaintingBindingSpy extends BindingBase with SchedulerBinding, ServicesBind
|
||||
int get instantiateImageCodecCalledCount => counter;
|
||||
|
||||
@override
|
||||
Future<ui.Codec> instantiateImageCodec(Uint8List list, {int? cacheWidth, int? cacheHeight, bool allowUpscaling = false}) {
|
||||
Future<ui.Codec> instantiateImageCodecWithSize(ui.ImmutableBuffer buffer, { ui.TargetImageSizeCallback? getTargetSize }) {
|
||||
counter++;
|
||||
return ui.instantiateImageCodec(list);
|
||||
return ui.instantiateImageCodecWithSize(buffer, getTargetSize: getTargetSize);
|
||||
}
|
||||
|
||||
@override
|
||||
|
@ -156,7 +156,7 @@ class TestImageProvider extends ImageProvider<TestImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(TestImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(TestImageProvider key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
SynchronousFuture<ImageInfo>(ImageInfo(image: image)),
|
||||
);
|
||||
|
@ -25,7 +25,7 @@ class TestImageProvider extends ImageProvider<TestImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(TestImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(TestImageProvider key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
future.then<ImageInfo>((void value) => ImageInfo(image: image)),
|
||||
);
|
||||
|
@ -58,7 +58,7 @@ class LoadTestImageProvider extends ImageProvider<Object> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(Object key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(Object key, ImageDecoderCallback decode) {
|
||||
throw UnimplementedError();
|
||||
}
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ class _TestImageProvider extends ImageProvider<Object> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(Object key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(Object key, ImageDecoderCallback decode) {
|
||||
_loadCallCount += 1;
|
||||
return _streamCompleter;
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ class TestImageProvider extends ImageProvider<TestImageProvider> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(TestImageProvider key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(TestImageProvider key, ImageDecoderCallback decode) {
|
||||
return OneFrameImageStreamCompleter(
|
||||
SynchronousFuture<ImageInfo>(ImageInfo(image: image)),
|
||||
);
|
||||
|
@ -2083,7 +2083,7 @@ class _TestImageProvider extends ImageProvider<Object> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(Object key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(Object key, ImageDecoderCallback decode) {
|
||||
_loadCallCount += 1;
|
||||
return _streamCompleter;
|
||||
}
|
||||
@ -2198,7 +2198,7 @@ class _FailingImageProvider extends ImageProvider<int> {
|
||||
}
|
||||
|
||||
@override
|
||||
ImageStreamCompleter load(int key, DecoderCallback decode) {
|
||||
ImageStreamCompleter loadImage(int key, ImageDecoderCallback decode) {
|
||||
if (failOnLoad) {
|
||||
throw throws;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user