summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/asynctask/ImageDiskCache.java
blob: b90d78c14fdd321511e5aa431909f8d002e4dcbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package de.danoeh.antennapod.asynctask;

import android.os.Handler;
import android.util.Log;
import android.util.Pair;
import android.widget.ImageView;
import de.danoeh.antennapod.BuildConfig;
import de.danoeh.antennapod.PodcastApp;
import de.danoeh.antennapod.R;
import de.danoeh.antennapod.service.download.DownloadRequest;
import de.danoeh.antennapod.service.download.HttpDownloader;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;

import java.io.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * Provides local cache for storing downloaded image. An image disk cache downloads images and stores them as long
 * as the cache is not full. Once the cache is full, the image disk cache will delete older images.
 */
public class ImageDiskCache {
    private static final String TAG = "ImageDiskCache";

    private static HashMap<String, ImageDiskCache> cacheSingletons = new HashMap<String, ImageDiskCache>();

    /**
     * Return a default instance of an ImageDiskCache. This cache will store data in the external cache folder.
     */
    public static synchronized ImageDiskCache getDefaultInstance() {
        final String DEFAULT_PATH = "imagecache";
        final long DEFAULT_MAX_CACHE_SIZE = 10 * 1024 * 1024;

        File cacheDir = PodcastApp.getInstance().getExternalCacheDir();
        if (cacheDir == null) {
            return null;
        }
        return getInstance(new File(cacheDir, DEFAULT_PATH).getAbsolutePath(), DEFAULT_MAX_CACHE_SIZE);
    }

    /**
     * Return an instance of an ImageDiskCache that stores images in the specified folder.
     */
    public static synchronized ImageDiskCache getInstance(String path, long maxCacheSize) {
        if (path == null) {
            throw new NullPointerException();
        }
        if (cacheSingletons.containsKey(path)) {
            return cacheSingletons.get(path);
        }

        ImageDiskCache cache = cacheSingletons.get(path);
        if (cache == null) {
            cache = new ImageDiskCache(path, maxCacheSize);
            cacheSingletons.put(new File(path).getAbsolutePath(), cache);
        }
        cacheSingletons.put(path, cache);
        return cache;
    }

    /**
     * Filename - cache object mapping
     */
    private static final String CACHE_FILE_NAME = "cachefile";
    private ExecutorService executor;
    private ConcurrentHashMap<String, DiskCacheObject> diskCache;
    private final long maxCacheSize;
    private int cacheSize;
    private final File cacheFolder;
    private Handler handler;

    private ImageDiskCache(String path, long maxCacheSize) {
        this.maxCacheSize = maxCacheSize;
        this.cacheFolder = new File(path);
        if (!cacheFolder.exists() && !cacheFolder.mkdir()) {
            throw new IllegalArgumentException("Image disk cache could not create cache folder in: " + path);
        }

        executor = Executors.newFixedThreadPool(Runtime.getRuntime()
                .availableProcessors());
        handler = new Handler();
    }

    private synchronized void initCacheFolder() {
        if (diskCache == null) {
            if (BuildConfig.DEBUG) Log.d(TAG, "Initializing cache folder");
            File cacheFile = new File(cacheFolder, CACHE_FILE_NAME);
            if (cacheFile.exists()) {
                try {
                    InputStream in = new FileInputStream(cacheFile);
                    BufferedInputStream buffer = new BufferedInputStream(in);
                    ObjectInputStream objectInput = new ObjectInputStream(buffer);
                    diskCache = (ConcurrentHashMap<String, DiskCacheObject>) objectInput.readObject();
                    // calculate cache size
                    for (DiskCacheObject dco : diskCache.values()) {
                        cacheSize += dco.size;
                    }
                    deleteInvalidFiles();
                } catch (IOException e) {
                    e.printStackTrace();
                    diskCache = new ConcurrentHashMap<String, DiskCacheObject>();
                } catch (ClassCastException e) {
                    e.printStackTrace();
                    diskCache = new ConcurrentHashMap<String, DiskCacheObject>();
                } catch (ClassNotFoundException e) {
                    e.printStackTrace();
                    diskCache = new ConcurrentHashMap<String, DiskCacheObject>();
                }
            } else {
                diskCache = new ConcurrentHashMap<String, DiskCacheObject>();
            }
        }
    }

    private List<File> getCacheFileList() {
        Collection<DiskCacheObject> values = diskCache.values();
        List<File> files = new ArrayList<File>();
        for (DiskCacheObject dco : values) {
            files.add(dco.getFile());
        }
        files.add(new File(cacheFolder, CACHE_FILE_NAME));
        return files;
    }

    private Pair<String, DiskCacheObject> getOldestCacheObject() {
        Collection<String> keys = diskCache.keySet();
        DiskCacheObject oldest = null;
        String oldestKey = null;

        for (String key : keys) {

            if (oldestKey == null) {
                oldestKey = key;
                oldest = diskCache.get(key);
            } else {
                DiskCacheObject dco = diskCache.get(key);
                if (oldest.timestamp > dco.timestamp) {
                    oldestKey = key;
                    oldest = diskCache.get(key);
                }
            }
        }
        return new Pair<String, DiskCacheObject>(oldestKey, oldest);
    }

    private synchronized void deleteCacheObject(String key, DiskCacheObject value) {
        Log.i(TAG, "Deleting cached object: " + key);
        diskCache.remove(key);
        boolean result = value.getFile().delete();
        if (!result) {
            Log.w(TAG, "Could not delete file " + value.fileUrl);
        }
        cacheSize -= value.size;
    }

    private synchronized void deleteInvalidFiles() {
        // delete files that are not stored inside the cache
        File[] files = cacheFolder.listFiles();
        List<File> cacheFiles = getCacheFileList();
        for (File file : files) {
            if (!cacheFiles.contains(file)) {
                Log.i(TAG, "Deleting unused file: " + file.getAbsolutePath());
                boolean result = file.delete();
                if (!result) {
                    Log.w(TAG, "Could not delete file: " + file.getAbsolutePath());
                }
            }
        }
    }

    private synchronized void cleanup() {
        if (cacheSize > maxCacheSize) {
            while (cacheSize > maxCacheSize) {
                Pair<String, DiskCacheObject> oldest = getOldestCacheObject();
                deleteCacheObject(oldest.first, oldest.second);
            }
        }
    }

    /**
     * Loads a new image from the disk cache. If the image that the url points to has already been downloaded, the image will
     * be loaded from the disk. Otherwise, the image will be downloaded first.
     * The image will be stored in the thumbnail cache.
     */
    public void loadThumbnailBitmap(final String url, final ImageView target, final int length) {
        final ImageLoader il = ImageLoader.getInstance();
        target.setTag(R.id.image_disk_cache_key, url);
        if (diskCache != null) {
            DiskCacheObject dco = getFromCacheIfAvailable(url);
            if (dco != null) {
                il.loadThumbnailBitmap(dco.loadImage(), target, length);
                return;
            }
        }
        target.setImageResource(android.R.color.transparent);
        executor.submit(new ImageDownloader(url) {
            @Override
            protected void onImageLoaded(DiskCacheObject diskCacheObject) {
                final Object tag = target.getTag(R.id.image_disk_cache_key);
                if (tag != null && StringUtils.equals((String) tag, url)) {
                    il.loadThumbnailBitmap(diskCacheObject.loadImage(), target, length);
                }
            }
        });

    }

    /**
     * Loads a new image from the disk cache. If the image that the url points to has already been downloaded, the image will
     * be loaded from the disk. Otherwise, the image will be downloaded first.
     * The image will be stored in the cover cache.
     */
    public void loadCoverBitmap(final String url, final ImageView target, final int length) {
        final ImageLoader il = ImageLoader.getInstance();
        target.setTag(R.id.image_disk_cache_key, url);
        if (diskCache != null) {
            DiskCacheObject dco = getFromCacheIfAvailable(url);
            if (dco != null) {
                il.loadThumbnailBitmap(dco.loadImage(), target, length);
                return;
            }
        }
        target.setImageResource(android.R.color.transparent);
        executor.submit(new ImageDownloader(url) {
            @Override
            protected void onImageLoaded(DiskCacheObject diskCacheObject) {
                final Object tag = target.getTag(R.id.image_disk_cache_key);
                if (tag != null && StringUtils.equals((String) tag, url)) {
                    il.loadCoverBitmap(diskCacheObject.loadImage(), target, length);
                }
            }
        });
    }

    private synchronized void addToDiskCache(String url, DiskCacheObject obj) {
        if (diskCache == null) {
            initCacheFolder();
        }
        if (BuildConfig.DEBUG) Log.d(TAG, "Adding new image to disk cache: " + url);
        diskCache.put(url, obj);
        cacheSize += obj.size;
        if (cacheSize > maxCacheSize) {
            cleanup();
        }
        saveCacheInfoFile();
    }

    private synchronized void saveCacheInfoFile() {
        OutputStream out = null;
        try {
            out = new BufferedOutputStream(new FileOutputStream(new File(cacheFolder, CACHE_FILE_NAME)));
            ObjectOutputStream objOut = new ObjectOutputStream(out);
            objOut.writeObject(diskCache);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            IOUtils.closeQuietly(out);
        }
    }

    private synchronized DiskCacheObject getFromCacheIfAvailable(String key) {
        if (diskCache == null) {
            initCacheFolder();
        }
        DiskCacheObject dco = diskCache.get(key);
        if (dco != null) {
            dco.timestamp = System.currentTimeMillis();
        }
        return dco;
    }

    ConcurrentHashMap<String, File> runningDownloads = new ConcurrentHashMap<String, File>();

    private abstract class ImageDownloader implements Runnable {
        private String downloadUrl;

        public ImageDownloader(String downloadUrl) {
            this.downloadUrl = downloadUrl;
        }

        protected abstract void onImageLoaded(DiskCacheObject diskCacheObject);

        public void run() {
            DiskCacheObject tmp = getFromCacheIfAvailable(downloadUrl);
            if (tmp != null) {
                onImageLoaded(tmp);
                return;
            }

            DiskCacheObject dco = null;
            File newFile = new File(cacheFolder, Integer.toString(downloadUrl.hashCode()));
            synchronized (ImageDiskCache.this) {
                if (runningDownloads.containsKey(newFile.getAbsolutePath())) {
                    Log.d(TAG, "Download is already running: " + newFile.getAbsolutePath());
                    return;
                } else {
                    runningDownloads.put(newFile.getAbsolutePath(), newFile);
                }
            }
            if (newFile.exists()) {
                newFile.delete();
            }

            HttpDownloader result = downloadFile(newFile.getAbsolutePath(), downloadUrl);
            if (result.getResult().isSuccessful()) {
                long size = result.getDownloadRequest().getSoFar();

                dco = new DiskCacheObject(newFile.getAbsolutePath(), size);
                addToDiskCache(downloadUrl, dco);
                if (BuildConfig.DEBUG) Log.d(TAG, "Image was downloaded");
            } else {
                Log.w(TAG, "Download of url " + downloadUrl + " failed. Reason: " + result.getResult().getReasonDetailed() + "(" + result.getResult().getReason() + ")");
            }

            if (dco != null) {
                final DiskCacheObject dcoRef = dco;
                handler.post(new Runnable() {
                    @Override
                    public void run() {
                        onImageLoaded(dcoRef);
                    }
                });

            }
            runningDownloads.remove(newFile.getAbsolutePath());

        }

        private HttpDownloader downloadFile(String destination, String source) {
            DownloadRequest request = new DownloadRequest(destination, source, "", 0, 0);
            HttpDownloader downloader = new HttpDownloader(request);
            downloader.call();
            return downloader;
        }
    }

    private static class DiskCacheObject implements Serializable {
        private final String fileUrl;

        /**
         * Last usage of this image cache object.
         */
        private long timestamp;
        private final long size;

        public DiskCacheObject(String fileUrl, long size) {
            if (fileUrl == null) {
                throw new NullPointerException();
            }
            this.fileUrl = fileUrl;
            this.timestamp = System.currentTimeMillis();
            this.size = size;
        }

        public File getFile() {
            return new File(fileUrl);
        }

        public ImageLoader.ImageWorkerTaskResource loadImage() {
            return new ImageLoader.ImageWorkerTaskResource() {

                @Override
                public InputStream openImageInputStream() {
                    try {
                        return new FileInputStream(getFile());
                    } catch (FileNotFoundException e) {
                        e.printStackTrace();
                    }
                    return null;
                }

                @Override
                public InputStream reopenImageInputStream(InputStream input) {
                    IOUtils.closeQuietly(input);
                    return openImageInputStream();
                }

                @Override
                public String getImageLoaderCacheKey() {
                    return fileUrl;
                }
            };
        }
    }
}