/* * The MIT License (MIT) * * Copyright (c) 2016 Piasy * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.github.piasy.biv.loader.fresco; import android.content.Context; import android.net.Uri; import android.view.LayoutInflater; import android.view.View; import com.facebook.binaryresource.FileBinaryResource; import com.facebook.cache.common.CacheKey; import com.facebook.cache.disk.FileCache; import com.facebook.common.memory.PooledByteBuffer; import com.facebook.common.references.CloseableReference; import com.facebook.datasource.DataSource; import com.facebook.drawee.backends.pipeline.DraweeConfig; import com.facebook.drawee.backends.pipeline.Fresco; import com.facebook.drawee.drawable.ScalingUtils; import com.facebook.drawee.interfaces.DraweeController; import com.facebook.drawee.view.SimpleDraweeView; import com.facebook.imagepipeline.cache.DefaultCacheKeyFactory; import com.facebook.imagepipeline.core.DefaultExecutorSupplier; import com.facebook.imagepipeline.core.ImagePipeline; import com.facebook.imagepipeline.core.ImagePipelineConfig; import com.facebook.imagepipeline.core.ImagePipelineFactory; import com.facebook.imagepipeline.request.ImageRequest; import com.github.piasy.biv.loader.ImageLoader; import com.github.piasy.biv.view.BigImageView; import java.io.File; /** * Created by Piasy{github.com/Piasy} on 08/11/2016. */ public final class FrescoImageLoader implements ImageLoader { private final Context mAppContext; private final DefaultExecutorSupplier mExecutorSupplier; private FrescoImageLoader(Context appContext) { mAppContext = appContext; mExecutorSupplier = new DefaultExecutorSupplier(Runtime.getRuntime().availableProcessors()); } public static FrescoImageLoader with(Context appContext) { return with(appContext, null, null); } public static FrescoImageLoader with(Context appContext, ImagePipelineConfig imagePipelineConfig) { return with(appContext, imagePipelineConfig, null); } public static FrescoImageLoader with(Context appContext, ImagePipelineConfig imagePipelineConfig, DraweeConfig draweeConfig) { Fresco.initialize(appContext, imagePipelineConfig, draweeConfig); return new FrescoImageLoader(appContext); } @Override public void loadImage(Uri uri, final Callback callback) { ImageRequest request = ImageRequest.fromUri(uri); File localCache = getCacheFile(request); if (localCache.exists()) { callback.onCacheHit(localCache); } else { callback.onStart(); // ensure `onStart` is called before `onProgress` and `onFinish` callback.onProgress(0); // show 0 progress immediately ImagePipeline pipeline = Fresco.getImagePipeline(); DataSource<CloseableReference<PooledByteBuffer>> source = pipeline.fetchEncodedImage(request, true); source.subscribe(new ImageDownloadSubscriber(mAppContext) { @Override protected void onProgress(int progress) { callback.onProgress(progress); } @Override protected void onSuccess(File image) { callback.onFinish(); callback.onCacheMiss(image); } @Override protected void onFail(Throwable t) { // TODO: 12/11/2016 fail t.printStackTrace(); } }, mExecutorSupplier.forBackgroundTasks()); } } @Override public View showThumbnail(BigImageView parent, Uri thumbnail, int scaleType) { SimpleDraweeView thumbnailView = (SimpleDraweeView) LayoutInflater.from(parent.getContext()) .inflate(R.layout.ui_fresco_thumbnail, parent, false); DraweeController controller = Fresco.newDraweeControllerBuilder() .setUri(thumbnail) .build(); switch (scaleType) { case BigImageView.INIT_SCALE_TYPE_CENTER_CROP: thumbnailView.getHierarchy() .setActualImageScaleType(ScalingUtils.ScaleType.CENTER_CROP); break; case BigImageView.INIT_SCALE_TYPE_CENTER_INSIDE: thumbnailView.getHierarchy() .setActualImageScaleType(ScalingUtils.ScaleType.CENTER_INSIDE); default: break; } thumbnailView.setController(controller); return thumbnailView; } @Override public void prefetch(Uri uri) { ImagePipeline pipeline = Fresco.getImagePipeline(); pipeline.prefetchToDiskCache(ImageRequest.fromUri(uri), false); // we don't need context, but avoid null } private File getCacheFile(final ImageRequest request) { FileCache mainFileCache = ImagePipelineFactory .getInstance() .getMainFileCache(); final CacheKey cacheKey = DefaultCacheKeyFactory .getInstance() .getEncodedCacheKey(request, false); // we don't need context, but avoid null File cacheFile = request.getSourceFile(); // http://crashes.to/s/ee10638fb31 if (mainFileCache.hasKey(cacheKey) && mainFileCache.getResource(cacheKey) != null) { cacheFile = ((FileBinaryResource) mainFileCache.getResource(cacheKey)).getFile(); } return cacheFile; } }