DiskLruImageCache.java 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * Copyright (C) 2015 ownCloud Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2,
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. package com.owncloud.android.ui.adapter;
  20. import android.graphics.Bitmap;
  21. import android.graphics.Bitmap.CompressFormat;
  22. import android.graphics.BitmapFactory;
  23. import com.jakewharton.disklrucache.DiskLruCache;
  24. import com.owncloud.android.BuildConfig;
  25. import com.owncloud.android.lib.common.utils.Log_OC;
  26. import java.io.BufferedInputStream;
  27. import java.io.BufferedOutputStream;
  28. import java.io.File;
  29. import java.io.FileNotFoundException;
  30. import java.io.IOException;
  31. import java.io.InputStream;
  32. import java.io.OutputStream;
  33. public class DiskLruImageCache {
  34. private DiskLruCache mDiskCache;
  35. private CompressFormat mCompressFormat;
  36. private int mCompressQuality;
  37. private static final int CACHE_VERSION = 1;
  38. private static final int VALUE_COUNT = 1;
  39. private static final int IO_BUFFER_SIZE = 8 * 1024;
  40. private static final String CACHE_TEST_DISK = "cache_test_DISK_";
  41. private static final String TAG = DiskLruImageCache.class.getSimpleName();
  42. //public DiskLruImageCache( Context context,String uniqueName, int diskCacheSize,
  43. public DiskLruImageCache(
  44. File diskCacheDir, int diskCacheSize, CompressFormat compressFormat, int quality
  45. ) throws IOException {
  46. mDiskCache = DiskLruCache.open(
  47. diskCacheDir, CACHE_VERSION, VALUE_COUNT, diskCacheSize
  48. );
  49. mCompressFormat = compressFormat;
  50. mCompressQuality = quality;
  51. }
  52. private boolean writeBitmapToFile( Bitmap bitmap, DiskLruCache.Editor editor )
  53. throws IOException, FileNotFoundException {
  54. OutputStream out = null;
  55. try {
  56. out = new BufferedOutputStream( editor.newOutputStream( 0 ), IO_BUFFER_SIZE );
  57. return bitmap.compress( mCompressFormat, mCompressQuality, out );
  58. } finally {
  59. if ( out != null ) {
  60. out.close();
  61. }
  62. }
  63. }
  64. public void put( String key, Bitmap data ) {
  65. DiskLruCache.Editor editor = null;
  66. String validKey = convertToValidKey(key);
  67. try {
  68. editor = mDiskCache.edit( validKey );
  69. if ( editor == null ) {
  70. return;
  71. }
  72. if( writeBitmapToFile( data, editor ) ) {
  73. mDiskCache.flush();
  74. editor.commit();
  75. if ( BuildConfig.DEBUG ) {
  76. Log_OC.d( CACHE_TEST_DISK, "image put on disk cache " + validKey );
  77. }
  78. } else {
  79. editor.abort();
  80. if ( BuildConfig.DEBUG ) {
  81. Log_OC.d( CACHE_TEST_DISK, "ERROR on: image put on disk cache " + validKey );
  82. }
  83. }
  84. } catch (IOException e) {
  85. if ( BuildConfig.DEBUG ) {
  86. Log_OC.d( CACHE_TEST_DISK, "ERROR on: image put on disk cache " + validKey );
  87. }
  88. try {
  89. if ( editor != null ) {
  90. editor.abort();
  91. }
  92. } catch (IOException ignored) {
  93. }
  94. }
  95. }
  96. public Bitmap getBitmap( String key ) {
  97. Bitmap bitmap = null;
  98. DiskLruCache.Snapshot snapshot = null;
  99. String validKey = convertToValidKey(key);
  100. try {
  101. snapshot = mDiskCache.get( validKey );
  102. if ( snapshot == null ) {
  103. return null;
  104. }
  105. final InputStream in = snapshot.getInputStream( 0 );
  106. if ( in != null ) {
  107. final BufferedInputStream buffIn =
  108. new BufferedInputStream( in, IO_BUFFER_SIZE );
  109. bitmap = BitmapFactory.decodeStream( buffIn );
  110. }
  111. } catch ( IOException e ) {
  112. Log_OC.d(TAG, e.getMessage(), e);
  113. } finally {
  114. if (snapshot != null) {
  115. snapshot.close();
  116. }
  117. }
  118. if ( BuildConfig.DEBUG ) {
  119. Log_OC.d(CACHE_TEST_DISK, bitmap == null ?
  120. "not found" : "image read from disk " + validKey);
  121. }
  122. return bitmap;
  123. }
  124. public boolean containsKey( String key ) {
  125. boolean contained = false;
  126. DiskLruCache.Snapshot snapshot = null;
  127. String validKey = convertToValidKey(key);
  128. try {
  129. snapshot = mDiskCache.get( validKey );
  130. contained = snapshot != null;
  131. } catch (IOException e) {
  132. Log_OC.d(TAG, e.getMessage(), e);
  133. } finally {
  134. if (snapshot != null) {
  135. snapshot.close();
  136. }
  137. }
  138. return contained;
  139. }
  140. public void clearCache() {
  141. if ( BuildConfig.DEBUG ) {
  142. Log_OC.d( CACHE_TEST_DISK, "disk cache CLEARED");
  143. }
  144. try {
  145. mDiskCache.delete();
  146. } catch ( IOException e ) {
  147. Log_OC.d(TAG, e.getMessage(), e);
  148. }
  149. }
  150. public File getCacheFolder() {
  151. return mDiskCache.getDirectory();
  152. }
  153. private String convertToValidKey(String key) {
  154. return Integer.toString(key.hashCode());
  155. }
  156. /**
  157. * Remove passed key from cache
  158. * @param key
  159. */
  160. public void removeKey( String key ) {
  161. String validKey = convertToValidKey(key);
  162. try {
  163. mDiskCache.remove(validKey);
  164. Log_OC.d(TAG, "removeKey from cache: " + validKey);
  165. } catch (IOException e) {
  166. Log_OC.d(TAG, e.getMessage(), e);
  167. }
  168. }
  169. }