Last active
March 14, 2018 10:34
-
-
Save fada21/10655652 to your computer and use it in GitHub Desktop.
Disk cache larger size for Picasso OkHttp (use like PicassoBigCache.INSTANCE.getPicassoBigCache(ctx) -> rest as in regular Picasso api .
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.? | |
import java.io.File; | |
import android.annotation.SuppressLint; | |
import android.content.Context; | |
import android.os.Build; | |
import android.os.StatFs; | |
import com.squareup.picasso.Downloader; | |
import com.squareup.picasso.OkHttpDownloader; | |
import com.squareup.picasso.Picasso; | |
import com.squareup.picasso.Picasso.Builder; | |
import com.squareup.picasso.UrlConnectionDownloader; | |
public enum PicassoBigCache { | |
INSTANCE; | |
private static final String BIG_CACHE_PATH = "picasso-big-cache"; | |
private static final int MIN_DISK_CACHE_SIZE = 32 * 1024 * 1024; // 32MB | |
private static final int MAX_DISK_CACHE_SIZE = 512 * 1024 * 1024; // 512MB | |
private static final float MAX_AVAILABLE_SPACE_USE_FRACTION = 0.9f; | |
private static final float MAX_TOTAL_SPACE_USE_FRACTION = 0.25f; | |
private Picasso picassoInstance; | |
private void init(Context ctx) { | |
if (ctx == null) { | |
throw new IllegalStateException("Must provide context to init PicassoBigCache!"); // fail fast | |
} | |
ctx = ctx.getApplicationContext(); // need application context - activity's context could cause harm | |
Builder builder = new Picasso.Builder(ctx); | |
builder.downloader(createBigCacheDownloader(ctx)); | |
picassoInstance = builder.build(); | |
} | |
public Picasso getPicassoBigCache(Context ctx) { | |
if (picassoInstance == null) { | |
synchronized (INSTANCE) { | |
if (picassoInstance == null) | |
init(ctx); | |
} | |
} | |
return picassoInstance; | |
} | |
static Downloader createBigCacheDownloader(Context ctx) { | |
try { | |
Class.forName("com.squareup.okhttp.OkHttpClient"); | |
File cacheDir = createDefaultCacheDir(ctx, BIG_CACHE_PATH); | |
long cacheSize = calculateDiskCacheSize(cacheDir); | |
OkHttpDownloader downloader = new OkHttpDownloader(cacheDir, cacheSize); | |
return downloader; | |
} catch (ClassNotFoundException e) { | |
return new UrlConnectionDownloader(ctx); | |
} | |
} | |
static File createDefaultCacheDir(Context context, String path) { | |
File cacheDir = context.getApplicationContext().getExternalCacheDir(); | |
if (cacheDir == null) | |
cacheDir = context.getApplicationContext().getCacheDir(); | |
File cache = new File(cacheDir, path); | |
if (!cache.exists()) { | |
cache.mkdirs(); | |
} | |
return cache; | |
} | |
/** | |
* Calculates bonded min max cache size. Min value is {@link #MIN_DISK_CACHE_SIZE} | |
* | |
* @param dir | |
* cache dir | |
* @return disk space in bytes | |
*/ | |
static long calculateDiskCacheSize(File dir) { | |
long size = Math.min(calculateAvailableCacheSize(dir), MAX_DISK_CACHE_SIZE); | |
return Math.max(size, MIN_DISK_CACHE_SIZE); | |
} | |
/** | |
* Calculates minimum of available or total fraction of disk space | |
* | |
* @param dir | |
* @return space in bytes | |
*/ | |
@SuppressLint("NewApi") | |
static long calculateAvailableCacheSize(File dir) { | |
long size = 0; | |
try { | |
StatFs statFs = new StatFs(dir.getAbsolutePath()); | |
int sdkInt = Build.VERSION.SDK_INT; | |
long totalBytes; | |
long availableBytes; | |
if (sdkInt < Build.VERSION_CODES.JELLY_BEAN_MR2) { | |
int blockSize = statFs.getBlockSize(); | |
availableBytes = ((long) statFs.getAvailableBlocks()) * blockSize; | |
totalBytes = ((long) statFs.getBlockCount()) * blockSize; | |
} else { | |
availableBytes = statFs.getAvailableBytes(); | |
totalBytes = statFs.getTotalBytes(); | |
} | |
// Target at least 90% of available or 25% of total space | |
size = (long) Math.min(availableBytes * MAX_AVAILABLE_SPACE_USE_FRACTION, totalBytes * MAX_TOTAL_SPACE_USE_FRACTION); | |
} catch (IllegalArgumentException ignored) { | |
// ignored | |
} | |
return size; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this cache the images for offline use indefinitely?