picasso图片缓存框架

简介: <p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; font-family:Arial; font-size:14px; line-height:26px"> picasso是Square公司开源的一个Android图形缓存库,地址<a target="_blank" href

picasso是Square公司开源的一个Android图形缓存库,地址http://square.github.io/picasso/,可以实现图片下载和缓存功能。

picasso使用简单,如下

[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);  

主要有以下一些特性:

  • 在adapter中回收和取消当前的下载;
  • 使用最少的内存完成复杂的图形转换操作;
  • 自动的内存和硬盘缓存;
  • 图形转换操作,如变换大小,旋转等,提供了接口来让用户可以自定义转换操作;
  • 加载载网络或本地资源;

代码分析

Cache,缓存类



Lrucacha,主要是get和set方法,存储的结构采用了LinkedHashMap,这种map内部实现了lru算法(Least Recently Used 近期最少使用算法)。
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. this.map = new LinkedHashMap<String, Bitmap>(00.75f, true);  

最后一个参数的解释:
true if the ordering should be done based on the last access (from least-recently accessed to most-recently accessed), and false if the ordering should be the order in which the entries were inserted.
因为可能会涉及多线程,所以在存取的时候都会加锁。而且每次set操作后都会判断当前缓存区是否已满,如果满了就清掉最少使用的图形。代码如下
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. private void trimToSize(int maxSize) {  
  2.         while (true) {  
  3.             String key;  
  4.             Bitmap value;  
  5.             synchronized (this) {  
  6.                 if (size < 0 || (map.isEmpty() && size != 0)) {  
  7.                     throw new IllegalStateException(getClass().getName()  
  8.                             + ".sizeOf() is reporting inconsistent results!");  
  9.                 }  
  10.   
  11.                 if (size <= maxSize || map.isEmpty()) {  
  12.                     break;  
  13.                 }  
  14.   
  15.                 Map.Entry<String, Bitmap> toEvict = map.entrySet().iterator()  
  16.                         .next();  
  17.                 key = toEvict.getKey();  
  18.                 value = toEvict.getValue();  
  19.                 map.remove(key);  
  20.                 size -= Utils.getBitmapBytes(value);  
  21.                 evictionCount++;  
  22.             }  
  23.         }  
  24. }  

Request,操作封装类



所有对图形的操作都会记录在这里,供之后图形的创建使用,如重新计算大小,旋转角度,也可以自定义变换,只需要实现Transformation,一个bitmap转换的接口。
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. public interface Transformation {  
  2.   /** 
  3.    * Transform the source bitmap into a new bitmap. If you create a new bitmap instance, you must 
  4.    * call {@link android.graphics.Bitmap#recycle()} on {@code source}. You may return the original 
  5.    * if no transformation is required. 
  6.    */  
  7.   Bitmap transform(Bitmap source);  
  8.   
  9.   /** 
  10.    * Returns a unique key for the transformation, used for caching purposes. If the transformation 
  11.    * has parameters (e.g. size, scale factor, etc) then these should be part of the key. 
  12.    */  
  13.   String key();  
  14. }  

当操作封装好以后,会将Request传到另一个结构中Action。

Action

Action代表了一个具体的加载任务,主要用于图片加载后的结果回调,有两个抽象方法,complete和error,也就是当图片解析为bitmap后用户希望做什么。最简单的就是将bitmap设置给imageview,失败了就将错误通过回调通知到上层。


ImageViewAction实现了Action,在complete中将bitmap和imageview组成了一个PicassoDrawable,里面会实现淡出的动画效果。
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. @Override  
  2.     public void complete(Bitmap result, Picasso.LoadedFrom from) {  
  3.         if (result == null) {  
  4.             throw new AssertionError(String.format(  
  5.                     "Attempted to complete action with no result!\n%s"this));  
  6.         }  
  7.   
  8.         ImageView target = this.target.get();  
  9.         if (target == null) {  
  10.             return;  
  11.         }  
  12.   
  13.         Context context = picasso.context;  
  14.         boolean debugging = picasso.debugging;  
  15.         PicassoDrawable.setBitmap(target, context, result, from, noFade,  
  16.                 debugging);  
  17.   
  18.         if (callback != null) {  
  19.             callback.onSuccess();  
  20.         }  
  21.     }  

有了加载任务,具体的图片下载与解析是在哪里呢?这些都是耗时的操作,应该放在异步线程中进行,就是下面的BitmapHunter。

BitmapHunter


BitmapHunter是一个Runnable,其中有一个decode的抽象方法,用于子类实现不同类型资源的解析。

[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. @Override  
  2.     public void run() {  
  3.         try {  
  4.             Thread.currentThread()  
  5.                     .setName(Utils.THREAD_PREFIX + data.getName());  
  6.   
  7.             result = hunt();  
  8.   
  9.             if (result == null) {  
  10.                 dispatcher.dispatchFailed(this);  
  11.             } else {  
  12.                 dispatcher.dispatchComplete(this);  
  13.             }  
  14.         } catch (IOException e) {  
  15.             exception = e;  
  16.             dispatcher.dispatchRetry(this);  
  17.         } catch (Exception e) {  
  18.             exception = e;  
  19.             dispatcher.dispatchFailed(this);  
  20.         } finally {  
  21.             Thread.currentThread().setName(Utils.THREAD_IDLE_NAME);  
  22.         }  
  23.     }  
  24.   
  25.     abstract Bitmap decode(Request data) throws IOException;  
  26.   
  27.     Bitmap hunt() throws IOException {  
  28.         Bitmap bitmap;  
  29.   
  30.         if (!skipMemoryCache) {  
  31.             bitmap = cache.get(key);  
  32.             if (bitmap != null) {  
  33.                 stats.dispatchCacheHit();  
  34.                 loadedFrom = MEMORY;  
  35.                 return bitmap;  
  36.             }  
  37.         }  
  38.   
  39.         bitmap = decode(data);  
  40.   
  41.         if (bitmap != null) {  
  42.             stats.dispatchBitmapDecoded(bitmap);  
  43.             if (data.needsTransformation() || exifRotation != 0) {  
  44.                 synchronized (DECODE_LOCK) {  
  45.                     if (data.needsMatrixTransform() || exifRotation != 0) {  
  46.                         bitmap = transformResult(data, bitmap, exifRotation);  
  47.                     }  
  48.                     if (data.hasCustomTransformations()) {  
  49.                         bitmap = applyCustomTransformations(  
  50.                                 data.transformations, bitmap);  
  51.                     }  
  52.                 }  
  53.                 stats.dispatchBitmapTransformed(bitmap);  
  54.             }  
  55.         }  
  56.   
  57.         return bitmap;  
  58.     }  

可以看到,在decode生成原始bitmap,之后会做需要的转换transformResult和applyCustomTransformations。最后在将最终的结果传递到上层dispatcher.dispatchComplete(this)。
基本的组成元素有了,那这一切是怎么连接起来运行呢,答案是Dispatcher。

Dispatcher任务调度器

在bitmaphunter成功得到bitmap后,就是通过dispatcher将结果传递出去的,当然让bitmaphunter执行也要通过Dispatcher。

Dispatcher内有一个HandlerThread,所有的请求都会通过这个thread转换,也就是请求也是异步的,这样应该是为了Ui线程更加流畅,同时保证请求的顺序,因为handler的消息队列。
外部调用的是dispatchXXX方法,然后通过handler将请求转换到对应的performXXX方法。
例如生成Action以后就会调用dispather的dispatchSubmit()来请求执行,
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. void dispatchSubmit(Action action) {  
  2.         handler.sendMessage(handler.obtainMessage(REQUEST_SUBMIT, action));  
  3.     }  

handler接到消息后转换到performSubmit方法
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. void performSubmit(Action action) {  
  2.         BitmapHunter hunter = hunterMap.get(action.getKey());  
  3.         if (hunter != null) {  
  4.             hunter.attach(action);  
  5.             return;  
  6.         }  
  7.   
  8.         if (service.isShutdown()) {  
  9.             return;  
  10.         }  
  11.   
  12.         hunter = forRequest(context, action.getPicasso(), this, cache, stats,  
  13.                 action, downloader);  
  14.         hunter.future = service.submit(hunter);  
  15.         hunterMap.put(action.getKey(), hunter);  
  16.     }  

这里将通过action得到具体的BitmapHunder,然后交给ExecutorService执行。
下面是Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView)的过程,
[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. public static Picasso with(Context context) {  
  2.         if (singleton == null) {  
  3.             singleton = new Builder(context).build();  
  4.         }  
  5.         return singleton;  
  6.     }  
  7.       
  8.     public Picasso build() {  
  9.             Context context = this.context;  
  10.   
  11.             if (downloader == null) {  
  12.                 downloader = Utils.createDefaultDownloader(context);  
  13.             }  
  14.             if (cache == null) {  
  15.                 cache = new LruCache(context);  
  16.             }  
  17.             if (service == null) {  
  18.                 service = new PicassoExecutorService();  
  19.             }  
  20.             if (transformer == null) {  
  21.                 transformer = RequestTransformer.IDENTITY;  
  22.             }  
  23.   
  24.             Stats stats = new Stats(cache);  
  25.   
  26.             Dispatcher dispatcher = new Dispatcher(context, service, HANDLER,  
  27.                     downloader, cache, stats);  
  28.   
  29.             return new Picasso(context, dispatcher, cache, listener,  
  30.                     transformer, stats, debugging);  
  31.         }  

在Picasso.with()的时候会将执行所需的所有必备元素创建出来,如缓存cache、执行executorService、调度dispatch等,在load()时创建Request,在into()中创建action、bitmapHunter,并最终交给dispatcher执行。
目录
相关文章
|
缓存 Java Spring
Spring框架(四) 三级缓存与循环依赖
首先我们需要明白什么是循环依赖 , 打个比方 , 就是说A对象在创建的过程中 , 需要依赖注入B对象 , 但是B对象没有 , 就需要去创建 , 而在创建B对象的过程中又需要注入A对象 , A对象此时还在创建中,所以就构成了一个死循环 , A,B相互依赖 这样的关系被成为循环依赖(当然 , 可能还会有其他的情况),下面我们就来看看Spring是如何让解决循环依赖的
160 0
|
7月前
|
缓存 NoSQL Java
微服务框架(十二)Spring Boot Redis 缓存
  此系列文章将会描述Java框架Spring Boot、服务治理框架Dubbo、应用容器引擎Docker,及使用Spring Boot集成Dubbo、Mybatis等开源框架,其中穿插着Spring Boot中日志切面等技术的实现。 本文为Spring Boot集成Redis。 在这篇文章中,我们将配置一个Spring Boot应用程序示例,并将其与Redis Cache 集成。虽然Redis是一个开源是一个开源内存数据结构存储,用作数据库,缓存和消息代理,但本文仅演示缓存集成。
|
15天前
|
缓存 NoSQL Java
什么是缓存?如何在 Spring Boot 中使用缓存框架
什么是缓存?如何在 Spring Boot 中使用缓存框架
21 0
|
3月前
|
缓存 Java 开发工具
Spring是如何解决循环依赖的?从底层源码入手,详细解读Spring框架的三级缓存
三级缓存是Spring框架里,一个经典的技术点,它很好地解决了循环依赖的问题,也是很多面试中会被问到的问题,本文从源码入手,详细剖析Spring三级缓存的来龙去脉。
222 24
Spring是如何解决循环依赖的?从底层源码入手,详细解读Spring框架的三级缓存
|
4月前
|
缓存 NoSQL Java
SpringBoot的三种缓存技术(Spring Cache、Layering Cache 框架、Alibaba JetCache 框架)
Spring Cache 是 Spring 提供的简易缓存方案,支持本地与 Redis 缓存。通过添加 `spring-boot-starter-data-redis` 和 `spring-boot-starter-cache` 依赖,并使用 `@EnableCaching` 开启缓存功能。JetCache 由阿里开源,功能更丰富,支持多级缓存和异步 API,通过引入 `jetcache-starter-redis` 依赖并配置 YAML 文件启用。Layering Cache 则提供分层缓存机制,需引入 `layering-cache-starter` 依赖并使用特定注解实现缓存逻辑。
1158 1
SpringBoot的三种缓存技术(Spring Cache、Layering Cache 框架、Alibaba JetCache 框架)
|
4月前
|
缓存 分布式计算 Java
详细解读MapReduce框架中的分布式缓存
【8月更文挑战第31天】
50 0
|
4月前
|
开发框架 缓存 NoSQL
基于SqlSugar的开发框架循序渐进介绍(17)-- 基于CSRedis实现缓存的处理
基于SqlSugar的开发框架循序渐进介绍(17)-- 基于CSRedis实现缓存的处理
|
5月前
|
存储 缓存 开发框架
Winform框架中窗体基类的用户身份信息的缓存和提取
Winform框架中窗体基类的用户身份信息的缓存和提取
|
5月前
|
存储 缓存 NoSQL
GuavaCache、EVCache、Tair、Aerospike 缓存框架比较
**摘要:** Guava Cache、EVCache、Tair 和 Aerospike 是不同的缓存解决方案。Guava Cache 是轻量级的本地缓存,适用于Java应用,提供丰富的配置选项和自动加载功能。EVCache 基于 Memcached,适合分布式场景,高并发访问。Tair,阿里巴巴的分布式缓存,支持多种数据结构,适用于大规模系统。Aerospike 是高性能NoSQL数据库,结合缓存和持久化,适用于低延迟和大数据量的场景。选择时要考虑应用场景、性能需求和数据规模。
GuavaCache、EVCache、Tair、Aerospike 缓存框架比较
|
6月前
|
存储 缓存 NoSQL
SpringBoot配置第三方专业缓存框架j2cache
SpringBoot配置第三方专业缓存框架j2cache
218 5