欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Flutter中网络图片加载和缓存的实现

程序员文章站 2024-01-23 18:38:34
前言 应用开发中经常会碰到网络图片的加载,通常我们会对图片进行缓存,以便下次加载同一张图片时不用再重新下载,在包含有大量图片的应用中,会大幅提高图片展现速度、提升用户...

前言

应用开发中经常会碰到网络图片的加载,通常我们会对图片进行缓存,以便下次加载同一张图片时不用再重新下载,在包含有大量图片的应用中,会大幅提高图片展现速度、提升用户体验且为用户节省流量。flutter本身提供的image widget已经实现了加载网络图片的功能,且具备内存缓存的机制,接下来一起看一下image的网络图片加载的实现。

重温小部件image

常用小部件image中实现了几种构造函数,已经足够我们日常开发中各种场景下创建image对象使用了。

有参构造函数:

image(key key, @required this.image, ...)

开发者可根据自定义的imageprovider来创建image。

命名构造函数:

image.network(string src, ...)

src即是根据网络获取的图片url地址。

image.file(file file, ...)

file指本地一个图片文件对象,安卓中需要android.permission.read_external_storage权限。

image.asset(string name, ...)

name指项目中添加的图片资源名,事先在pubspec.yaml文件中有声明。

image.memory(uint8list bytes, ...)

bytes指内存中的图片数据,将其转化为图片对象。

其中image.network就是我们本篇分享的重点 -- 加载网络图片。

image.network源码分析

下面通过源码我们来看下image.network加载网络图片的具体实现。

 image.network(string src, {
  key key,
  double scale = 1.0,
  .
  .
 }) : image = networkimage(src, scale: scale, headers: headers),
    assert(alignment != null),
    assert(repeat != null),
    assert(matchtextdirection != null),
    super(key: key);

 /// the image to display.
 final imageprovider image;

首先,使用image.network命名构造函数创建image对象时,会同时初始化实例变量image,image是一个imageprovider对象,该imageprovider就是我们所需要的图片的提供者,它本身是一个抽象类,子类包括networkimage、fileimage、exactassetimage、assetimage、memoryimage等,网络加载图片使用的就是networkimage。

image作为一个statefulwidget其状态由_imagestate控制,_imagestate继承自state类,其生命周期方法包括initstate()、didchangedependencies()、build()、deactivate()、dispose()、didupdatewidget()等。我们重点来_imagestate中函数的执行。

由于插入渲染树时会先调用initstate()函数,然后调用didchangedependencies()函数,_imagestate中并没有重写initstate()函数,所以didchangedependencies()函数会执行,看下didchangedependencies()里的内容

@override
 void didchangedependencies() {
  _invertcolors = mediaquery.of(context, nullok: true)?.invertcolors
   ?? semanticsbinding.instance.accessibilityfeatures.invertcolors;
  _resolveimage();

  if (tickermode.of(context))
   _listentostream();
  else
   _stoplisteningtostream();

  super.didchangedependencies();
 }

_resolveimage()会被调用,函数内容如下

 void _resolveimage() {
  final imagestream newstream =
   widget.image.resolve(createlocalimageconfiguration(
     context,
     size: widget.width != null && widget.height != null ? size(widget.width, widget.height) : null
   ));
  assert(newstream != null);
  _updatesourcestream(newstream);
 }

函数中先创建了一个imagestream对象,该对象是一个图片资源的句柄,其持有着图片资源加载完毕后的监听回调和图片资源的管理者。而其中的imagestreamcompleter对象就是图片资源的一个管理类,也就是说,_imagestate通过imagestream和imagestreamcompleter管理类建立了联系。

再回头看一下imagestream对象是通过widget.image.resolve方法创建的,也就是对应networkimage的resolve方法,我们查看networkimage类的源码发现并没有resolve方法,于是查找其父类,在imageprovider类中找到了。

 imagestream resolve(imageconfiguration configuration) {
  assert(configuration != null);
  final imagestream stream = imagestream();
  t obtainedkey;
  future<void> handleerror(dynamic exception, stacktrace stack) async {
   .
   .
  }
  obtainkey(configuration).then<void>((t key) {
   obtainedkey = key;
   final imagestreamcompleter completer = paintingbinding.instance.imagecache.putifabsent(key, () => load(key), onerror: handleerror);
   if (completer != null) {
    stream.setcompleter(completer);
   }
  }).catcherror(handleerror);
  return stream;
 }

imagestream中的图片管理者imagestreamcompleter通过paintingbinding.instance.imagecache.putifabsent(key, () => load(key), onerror: handleerror);方法创建,imagecache是flutter框架中实现的用于图片缓存的单例,查看其中的putifabsent方法

 imagestreamcompleter putifabsent(object key, imagestreamcompleter loader(), { imageerrorlistener onerror }) {
  assert(key != null);
  assert(loader != null);
  imagestreamcompleter result = _pendingimages[key]?.completer;
  // nothing needs to be done because the image hasn't loaded yet.
  if (result != null)
   return result;
  // remove the provider from the list so that we can move it to the
  // recently used position below.
  final _cachedimage image = _cache.remove(key);
  if (image != null) {
   _cache[key] = image;
   return image.completer;
  }
  try {
   result = loader();
  } catch (error, stacktrace) {
   if (onerror != null) {
    onerror(error, stacktrace);
    return null;
   } else {
    rethrow;
   }
  }
  void listener(imageinfo info, bool synccall) {
   // images that fail to load don't contribute to cache size.
   final int imagesize = info?.image == null ? 0 : info.image.height * info.image.width * 4;
   final _cachedimage image = _cachedimage(result, imagesize);
   // if the image is bigger than the maximum cache size, and the cache size
   // is not zero, then increase the cache size to the size of the image plus
   // some change.
   if (maximumsizebytes > 0 && imagesize > maximumsizebytes) {
    _maximumsizebytes = imagesize + 1000;
   }
   _currentsizebytes += imagesize;
   final _pendingimage pendingimage = _pendingimages.remove(key);
   if (pendingimage != null) {
    pendingimage.removelistener();
   }

   _cache[key] = image;
   _checkcachesize();
  }
  if (maximumsize > 0 && maximumsizebytes > 0) {
   _pendingimages[key] = _pendingimage(result, listener);
   result.addlistener(listener);
  }
  return result;
 }

通过以上代码可以看到会通过key来查找缓存中是否存在,如果存在则返回,如果不存在则会通过执行loader()方法创建图片资源管理者,而后再将缓存图片资源的监听方法注册到新建的图片管理者中以便图片加载完毕后做缓存处理。

根据上面的代码调用paintingbinding.instance.imagecache.putifabsent(key, () => load(key), onerror: handleerror);看出load()方法由imageprovider对象实现,这里就是networkimage对象,看下其具体实现代码

 @override
 imagestreamcompleter load(networkimage key) {
  return multiframeimagestreamcompleter(
   codec: _loadasync(key),
   scale: key.scale,
   informationcollector: (stringbuffer information) {
    information.writeln('image provider: $this');
    information.write('image key: $key');
   }
  );
 }

代码中其就是创建一个multiframeimagestreamcompleter对象并返回,这是一个多帧图片管理器,表明flutter是支持gif图片的。创建对象时的codec变量由_loadasync方法的返回值初始化,查看该方法内容

 static final httpclient _httpclient = httpclient();

 future<ui.codec> _loadasync(networkimage key) async {
  assert(key == this);

  final uri resolved = uri.base.resolve(key.url);
  final httpclientrequest request = await _httpclient.geturl(resolved);
  headers?.foreach((string name, string value) {
   request.headers.add(name, value);
  });
  final httpclientresponse response = await request.close();
  if (response.statuscode != httpstatus.ok)
   throw exception('http request failed, statuscode: ${response?.statuscode}, $resolved');

  final uint8list bytes = await consolidatehttpclientresponsebytes(response);
  if (bytes.lengthinbytes == 0)
   throw exception('networkimage is an empty file: $resolved');

  return paintingbinding.instance.instantiateimagecodec(bytes);
 }

这里才是关键,就是通过httpclient对象对指定的url进行下载操作,下载完成后根据图片二进制数据实例化图像编解码器对象codec,然后返回。

那么图片下载完成后是如何显示到界面上的呢,下面看下multiframeimagestreamcompleter的构造方法实现

 multiframeimagestreamcompleter({
  @required future<ui.codec> codec,
  @required double scale,
  informationcollector informationcollector
 }) : assert(codec != null),
    _informationcollector = informationcollector,
    _scale = scale,
    _framesemitted = 0,
    _timer = null {
  codec.then<void>(_handlecodecready, onerror: (dynamic error, stacktrace stack) {
   reporterror(
    context: 'resolving an image codec',
    exception: error,
    stack: stack,
    informationcollector: informationcollector,
    silent: true,
   );
  });
 }

看,构造方法中的代码块,codec的异步方法执行完成后会调用_handlecodecready函数,函数内容如下

 void _handlecodecready(ui.codec codec) {
  _codec = codec;
  assert(_codec != null);

  _decodenextframeandschedule();
 }

方法中会将codec对象保存起来,然后解码图片帧

 future<void> _decodenextframeandschedule() async {
  try {
   _nextframe = await _codec.getnextframe();
  } catch (exception, stack) {
   reporterror(
    context: 'resolving an image frame',
    exception: exception,
    stack: stack,
    informationcollector: _informationcollector,
    silent: true,
   );
   return;
  }
  if (_codec.framecount == 1) {
   // this is not an animated image, just return it and don't schedule more
   // frames.
   _emitframe(imageinfo(image: _nextframe.image, scale: _scale));
   return;
  }
  schedulerbinding.instance.scheduleframecallback(_handleappframe);
 }

如果图片是png或jpg只有一帧,则执行_emitframe函数,从帧数据中拿到图片帧对象根据缩放比例创建imageinfo对象,然后设置显示的图片信息

 void _emitframe(imageinfo imageinfo) {
  setimage(imageinfo);
  _framesemitted += 1;
 }
 
 /// calls all the registered listeners to notify them of a new image.
 @protected
 void setimage(imageinfo image) {
  _currentimage = image;
  if (_listeners.isempty)
   return;
  final list<imagelistener> locallisteners = _listeners.map<imagelistener>(
   (_imagelistenerpair listenerpair) => listenerpair.listener
  ).tolist();
  for (imagelistener listener in locallisteners) {
   try {
    listener(image, false);
   } catch (exception, stack) {
    reporterror(
     context: 'by an image listener',
     exception: exception,
     stack: stack,
    );
   }
  }
 }

这时就会根据添加的监听器来通知一个新的图片需要渲染。那么这个监听器是什么时候添加的呢,我们回头看一下_imagestate类中的didchangedependencies()方法内容,执行完_resolveimage();后会执行_listentostream();方法

 void _listentostream() {
  if (_islisteningtostream)
   return;
  _imagestream.addlistener(_handleimagechanged);
  _islisteningtostream = true;
 }

该方法就向imagestream对象中添加了监听器_handleimagechanged,监听方法如下

 void _handleimagechanged(imageinfo imageinfo, bool synchronouscall) {
  setstate(() {
   _imageinfo = imageinfo;
  });
 }

最终就是调用setstate方法来通知界面刷新,将下载到的图片渲染到界面上来了。

实际问题

从以上源码分析,我们应该清楚了整个网络图片从加载到显示的过程,不过使用这种原生的方式我们发现网络图片只是进行了内存缓存,如果杀掉应用进程再重新打开后还是要重新下载图片,这对于用户而言,每次打开应用还是会消耗下载图片的流量,不过我们可以从中学习到一些思路来自己设计网络图片加载框架,下面作者就简单的基于image.network来进行一下改造,增加图片的磁盘缓存。

解决方案

我们通过源码分析可知,图片在缓存中未找到时,会通过网络直接下载获取,而下载的方法是在networkimage类中,于是我们可以参考networkimage来自定义一个imageprovider。

代码实现

拷贝一份networkimage的代码到新建的network_image.dart文件中,在_loadasync方法中我们加入磁盘缓存的代码。

 static final cachefileimage _cachefileimage = cachefileimage();

 future<ui.codec> _loadasync(networkimage key) async {
  assert(key == this);

/// 新增代码块start
/// 从缓存目录中查找图片是否存在
  final uint8list cachebytes = await _cachefileimage.getfilebytes(key.url);
  if(cachebytes != null) {
   return paintingbinding.instance.instantiateimagecodec(cachebytes);
  }
/// 新增代码块end

  final uri resolved = uri.base.resolve(key.url);
  final httpclientrequest request = await _httpclient.geturl(resolved);
  headers?.foreach((string name, string value) {
   request.headers.add(name, value);
  });
  final httpclientresponse response = await request.close();
  if (response.statuscode != httpstatus.ok)
   throw exception('http request failed, statuscode: ${response?.statuscode}, $resolved');

/// 新增代码块start
/// 将下载的图片数据保存到指定缓存文件中
  await _cachefileimage.savebytestofile(key.url, bytes);
/// 新增代码块end

  return paintingbinding.instance.instantiateimagecodec(bytes);
 }

代码中注释已经表明了基于原有代码新增的代码块,cachefileimage是自己定义的文件缓存类,完整代码如下

import 'dart:convert';
import 'dart:io';
import 'dart:typed_data';

import 'package:crypto/crypto.dart';
import 'package:path_provider/path_provider.dart';

class cachefileimage {

 /// 获取url字符串的md5值
 static string geturlmd5(string url) {
  var content = new utf8encoder().convert(url);
  var digest = md5.convert(content);
  return digest.tostring();
 }

 /// 获取图片缓存路径
 future<string> getcachepath() async {
  directory dir = await getapplicationdocumentsdirectory();
  directory cachepath = directory("${dir.path}/imagecache/");
  if(!cachepath.existssync()) {
   cachepath.createsync();
  }
  return cachepath.path;
 }

 /// 判断是否有对应图片缓存文件存在
 future<uint8list> getfilebytes(string url) async {
  string cachedirpath = await getcachepath();
  string urlmd5 = geturlmd5(url);
  file file = file("$cachedirpath/$urlmd5");
  print("读取文件:${file.path}");
  if(file.existssync()) {
   return await file.readasbytes();
  }

  return null;
 }

 /// 将下载的图片数据缓存到指定文件
 future savebytestofile(string url, uint8list bytes) async {
  string cachedirpath = await getcachepath();
  string urlmd5 = geturlmd5(url);
  file file = file("$cachedirpath/$urlmd5");
  if(!file.existssync()) {
   file.createsync();
   await file.writeasbytes(bytes);
  }
 }
}

这样就增加了文件缓存的功能,思路很简单,就是在获取网络图片之前先检查一下本地文件缓存目录中是否有缓存文件,如果有则不用再去下载,否则去下载图片,下载完成后立即将下载到的图片缓存到文件*下次需要时使用。

工程的pubspec.yaml中需要增加以下依赖库

dependencies:
 path_provider: ^0.4.1
 crypto: ^2.0.6

自定义imageprovider使用

在创建图片widget时使用带参数的非命名构造函数,指定image参数为自定义imageprovider对象即可,代码示例如下

import 'imageloader/network_image.dart' as network;

 widget getnetworkimage() {
  return container(
   color: colors.blue,
   width: 200,
   height: 200,
   child: image(image: network.networkimage("https://flutter.dev/images/flutter-mono-81x100.png")),
  );
 }

写在最后

以上对flutter中自带的image小部件的网络图片加载流程进行了源码分析,了解了源码的设计思路之后,我们新增了简单的本地文件缓存功能,这使我们的网络图片加载同时具备了内存缓存和文件缓存两种能力,大大提升了用户体验,如果其他同学有更好的方案可以给作者留言交流。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。