/* * Copyright (C) 2013 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.squareup.picasso; import android.content.Context; import android.support.annotation.NonNull; import android.support.annotation.VisibleForTesting; import java.io.File; import java.io.IOException; import okhttp3.Cache; import okhttp3.Call; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; /** A {@link Downloader} which uses OkHttp to download images. */ public final class OkHttp3Downloader implements Downloader { @VisibleForTesting final Call.Factory client; private final Cache cache; private boolean sharedClient = true; /** * Create new downloader that uses OkHttp. This will install an image cache into your application * cache directory. */ public OkHttp3Downloader(final Context context) { this(Utils.createDefaultCacheDir(context)); } /** * Create new downloader that uses OkHttp. This will install an image cache into the specified * directory. * * @param cacheDir The directory in which the cache should be stored */ public OkHttp3Downloader(final File cacheDir) { this(cacheDir, Utils.calculateDiskCacheSize(cacheDir)); } /** * Create new downloader that uses OkHttp. This will install an image cache into your application * cache directory. * * @param maxSize The size limit for the cache. */ public OkHttp3Downloader(final Context context, final long maxSize) { this(Utils.createDefaultCacheDir(context), maxSize); } /** * Create new downloader that uses OkHttp. This will install an image cache into the specified * directory. * * @param cacheDir The directory in which the cache should be stored * @param maxSize The size limit for the cache. */ public OkHttp3Downloader(final File cacheDir, final long maxSize) { this(new OkHttpClient.Builder().cache(new Cache(cacheDir, maxSize)).build()); sharedClient = false; } /** * Create a new downloader that uses the specified OkHttp instance. A response cache will not be * automatically configured. */ public OkHttp3Downloader(OkHttpClient client) { this.client = client; this.cache = client.cache(); } /** Create a new downloader that uses the specified {@link Call.Factory} instance. */ public OkHttp3Downloader(Call.Factory client) { this.client = client; this.cache = null; } @NonNull @Override public Response load(@NonNull Request request) throws IOException { return client.newCall(request).execute(); } @Override public void shutdown() { if (!sharedClient && cache != null) { try { cache.close(); } catch (IOException ignored) { } } } }