Back to project page Picasso-gradle.
The source code is released under:
Apache License
If you think the Android project Picasso-gradle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Square, Inc.//w w w . ja v a 2 s. co m * * 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.graphics.Bitmap; import android.net.Uri; import java.io.IOException; import java.io.InputStream; /** A mechanism to load images from external resources such as a disk cache and/or the internet. */ public interface Downloader { /** * Download the specified image {@code url} from the internet. * * @param uri Remote image URL. * @param localCacheOnly If {@code true} the URL should only be loaded if available in a local * disk cache. * @return {@link Response} containing either a {@link Bitmap} representation of the request or an * {@link InputStream} for the image data. {@code null} can be returned to indicate a problem * loading the bitmap. * @throws IOException if the requested URL cannot successfully be loaded. */ Response load(Uri uri, boolean localCacheOnly) throws IOException; /** * Allows to perform a clean up for this {@link Downloader} including closing the disk cache and * other resources. */ void shutdown(); /** Thrown for non-2XX responses. */ class ResponseException extends IOException { public ResponseException(String message) { super(message); } } /** Response stream or bitmap and info. */ class Response { final InputStream stream; final Bitmap bitmap; final boolean cached; final long contentLength; /** * Response image and info. * * @param bitmap Image. * @param loadedFromCache {@code true} if the source of the image is from a local disk cache. */ public Response(Bitmap bitmap, boolean loadedFromCache) { if (bitmap == null) { throw new IllegalArgumentException("Bitmap may not be null."); } this.stream = null; this.bitmap = bitmap; this.cached = loadedFromCache; this.contentLength = -1; } /** * Response stream and info. * * @param stream Image data stream. * @param loadedFromCache {@code true} if the source of the stream is from a local disk cache. * @deprecated Use {@link Response#Response(java.io.InputStream, boolean, long)} instead. */ @Deprecated @SuppressWarnings("UnusedDeclaration") public Response(InputStream stream, boolean loadedFromCache) { this(stream, loadedFromCache, -1); } /** * Response image and info. * * @param bitmap Image. * @param loadedFromCache {@code true} if the source of the image is from a local disk cache. * @param contentLength The content length of the response, typically derived by the * {@code Content-Length} HTTP header. * @deprecated The {@code contentLength} argument value is ignored. Use {@link #Response(Bitmap, * boolean)}. */ @Deprecated @SuppressWarnings("UnusedDeclaration") public Response(Bitmap bitmap, boolean loadedFromCache, long contentLength) { this(bitmap, loadedFromCache); } /** * Response stream and info. * * @param stream Image data stream. * @param loadedFromCache {@code true} if the source of the stream is from a local disk cache. * @param contentLength The content length of the response, typically derived by the * {@code Content-Length} HTTP header. */ public Response(InputStream stream, boolean loadedFromCache, long contentLength) { if (stream == null) { throw new IllegalArgumentException("Stream may not be null."); } this.stream = stream; this.bitmap = null; this.cached = loadedFromCache; this.contentLength = contentLength; } /** * Input stream containing image data. * <p> * If this returns {@code null}, image data will be available via {@link #getBitmap()}. */ public InputStream getInputStream() { return stream; } /** * Bitmap representing the image. * <p> * If this returns {@code null}, image data will be available via {@link #getInputStream()}. */ public Bitmap getBitmap() { return bitmap; } /** Content length of the response. Only valid when used with {@link #getInputStream()}. */ public long getContentLength() { return contentLength; } } }