ThumbnailsCacheManager.java 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author Tobias Kaminsky
  5. * @author David A. Velasco
  6. * Copyright (C) 2015 ownCloud Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. package com.owncloud.android.datamodel;
  22. import android.accounts.Account;
  23. import android.accounts.AccountManager;
  24. import android.content.Context;
  25. import android.content.res.Resources;
  26. import android.graphics.Bitmap;
  27. import android.graphics.Bitmap.CompressFormat;
  28. import android.graphics.BitmapFactory;
  29. import android.graphics.Canvas;
  30. import android.graphics.Paint;
  31. import android.graphics.Point;
  32. import android.graphics.drawable.BitmapDrawable;
  33. import android.graphics.drawable.Drawable;
  34. import android.media.MediaMetadataRetriever;
  35. import android.media.ThumbnailUtils;
  36. import android.net.Uri;
  37. import android.os.AsyncTask;
  38. import android.provider.MediaStore;
  39. import android.text.TextUtils;
  40. import android.view.Display;
  41. import android.view.MenuItem;
  42. import android.view.WindowManager;
  43. import android.widget.ImageView;
  44. import com.owncloud.android.MainApp;
  45. import com.owncloud.android.R;
  46. import com.owncloud.android.authentication.AccountUtils;
  47. import com.owncloud.android.lib.common.OwnCloudAccount;
  48. import com.owncloud.android.lib.common.OwnCloudClient;
  49. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  50. import com.owncloud.android.lib.common.operations.RemoteOperation;
  51. import com.owncloud.android.lib.common.utils.Log_OC;
  52. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  53. import com.owncloud.android.ui.adapter.DiskLruImageCache;
  54. import com.owncloud.android.ui.preview.PreviewImageFragment;
  55. import com.owncloud.android.utils.BitmapUtils;
  56. import com.owncloud.android.utils.ConnectivityUtils;
  57. import com.owncloud.android.utils.DisplayUtils.AvatarGenerationListener;
  58. import com.owncloud.android.utils.FileStorageUtils;
  59. import com.owncloud.android.utils.MimeTypeUtil;
  60. import org.apache.commons.httpclient.HttpStatus;
  61. import org.apache.commons.httpclient.methods.GetMethod;
  62. import java.io.File;
  63. import java.io.FileNotFoundException;
  64. import java.io.InputStream;
  65. import java.lang.ref.WeakReference;
  66. import java.util.ArrayList;
  67. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  68. /**
  69. * Manager for concurrent access to thumbnails cache.
  70. */
  71. public class ThumbnailsCacheManager {
  72. public static final String PREFIX_RESIZED_IMAGE = "r";
  73. public static final String PREFIX_THUMBNAIL = "t";
  74. private static final String TAG = ThumbnailsCacheManager.class.getSimpleName();
  75. private static final String PNG_MIMETYPE = "image/png";
  76. private static final String CACHE_FOLDER = "thumbnailCache";
  77. private static final Object mThumbnailsDiskCacheLock = new Object();
  78. private static DiskLruImageCache mThumbnailCache = null;
  79. private static boolean mThumbnailCacheStarting = true;
  80. private static final int DISK_CACHE_SIZE = 1024 * 1024 * 200; // 200MB
  81. private static final CompressFormat mCompressFormat = CompressFormat.JPEG;
  82. private static final int mCompressQuality = 70;
  83. private static OwnCloudClient mClient = null;
  84. public static final Bitmap mDefaultImg =
  85. BitmapFactory.decodeResource(
  86. MainApp.getAppContext().getResources(),
  87. R.drawable.file_image
  88. );
  89. public static final Bitmap mDefaultVideo =
  90. BitmapFactory.decodeResource(
  91. MainApp.getAppContext().getResources(),
  92. R.drawable.file_movie
  93. );
  94. public static class InitDiskCacheTask extends AsyncTask<File, Void, Void> {
  95. @Override
  96. protected Void doInBackground(File... params) {
  97. synchronized (mThumbnailsDiskCacheLock) {
  98. mThumbnailCacheStarting = true;
  99. if (mThumbnailCache == null) {
  100. try {
  101. // Check if media is mounted or storage is built-in, if so,
  102. // try and use external cache dir; otherwise use internal cache dir
  103. File cacheDir = MainApp.getAppContext().getExternalCacheDir();
  104. if (cacheDir != null) {
  105. String cachePath = cacheDir.getPath() + File.separator + CACHE_FOLDER;
  106. Log_OC.d(TAG, "create dir: " + cachePath);
  107. File diskCacheDir = new File(cachePath);
  108. mThumbnailCache = new DiskLruImageCache(diskCacheDir, DISK_CACHE_SIZE, mCompressFormat,
  109. mCompressQuality);
  110. } else {
  111. throw new FileNotFoundException("Thumbnail cache could not be opened");
  112. }
  113. } catch (java.io.IOException e) {
  114. Log_OC.d(TAG, e.getMessage());
  115. mThumbnailCache = null;
  116. }
  117. }
  118. mThumbnailCacheStarting = false; // Finished initialization
  119. mThumbnailsDiskCacheLock.notifyAll(); // Wake any waiting threads
  120. }
  121. return null;
  122. }
  123. }
  124. /**
  125. * Converts size of file icon from dp to pixel
  126. * @return int
  127. */
  128. private static int getThumbnailDimension(){
  129. // Converts dp to pixel
  130. Resources r = MainApp.getAppContext().getResources();
  131. return Math.round(r.getDimension(R.dimen.file_icon_size_grid));
  132. }
  133. /**
  134. * Converts dimension of screen as point
  135. *
  136. * @return Point
  137. */
  138. private static Point getScreenDimension() {
  139. WindowManager wm = (WindowManager) MainApp.getAppContext().getSystemService(Context.WINDOW_SERVICE);
  140. Display display = wm.getDefaultDisplay();
  141. Point point = new Point();
  142. display.getSize(point);
  143. return point;
  144. }
  145. /**
  146. * Add thumbnail to cache
  147. * @param imageKey: thumb key
  148. * @param bitmap: image for extracting thumbnail
  149. * @param path: image path
  150. * @param pxW: thumbnail width in pixel
  151. * @param pxH: thumbnail height in pixel
  152. * @return Bitmap
  153. */
  154. private static Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int pxW, int pxH){
  155. Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, pxW, pxH);
  156. // Rotate image, obeying exif tag
  157. thumbnail = BitmapUtils.rotateImage(thumbnail,path);
  158. // Add thumbnail to cache
  159. addBitmapToCache(imageKey, thumbnail);
  160. return thumbnail;
  161. }
  162. public static void addBitmapToCache(String key, Bitmap bitmap) {
  163. synchronized (mThumbnailsDiskCacheLock) {
  164. if (mThumbnailCache != null) {
  165. mThumbnailCache.put(key, bitmap);
  166. }
  167. }
  168. }
  169. public static Bitmap getBitmapFromDiskCache(String key) {
  170. synchronized (mThumbnailsDiskCacheLock) {
  171. // Wait while disk cache is started from background thread
  172. while (mThumbnailCacheStarting) {
  173. try {
  174. mThumbnailsDiskCacheLock.wait();
  175. } catch (InterruptedException e) {
  176. Log_OC.e(TAG, "Wait in mThumbnailsDiskCacheLock was interrupted", e);
  177. }
  178. }
  179. if (mThumbnailCache != null) {
  180. return mThumbnailCache.getBitmap(key);
  181. }
  182. }
  183. return null;
  184. }
  185. public static class ResizedImageGenerationTask extends AsyncTask<Object, Void, Bitmap> {
  186. private PreviewImageFragment previewImageFragment;
  187. private FileDataStorageManager storageManager;
  188. private Account account;
  189. private WeakReference<ImageView> imageViewReference;
  190. private OCFile file;
  191. public ResizedImageGenerationTask(PreviewImageFragment previewImageFragment, ImageView imageView,
  192. FileDataStorageManager storageManager, Account account)
  193. throws IllegalArgumentException {
  194. this.previewImageFragment = previewImageFragment;
  195. imageViewReference = new WeakReference<>(imageView);
  196. this.storageManager = storageManager;
  197. this.account = account;
  198. }
  199. @Override
  200. protected Bitmap doInBackground(Object... params) {
  201. Bitmap thumbnail = null;
  202. file = (OCFile) params[0];
  203. try {
  204. if (account != null) {
  205. OwnCloudAccount ocAccount = new OwnCloudAccount(account, MainApp.getAppContext());
  206. mClient = OwnCloudClientManagerFactory.getDefaultSingleton().getClientFor(ocAccount,
  207. MainApp.getAppContext());
  208. }
  209. thumbnail = doResizedImageInBackground();
  210. if (MimeTypeUtil.isVideo(file) && thumbnail != null) {
  211. thumbnail = addVideoOverlay(thumbnail);
  212. }
  213. } catch (OutOfMemoryError oome) {
  214. System.gc();
  215. Log_OC.e(TAG, "Out of memory -> garbage collector called");
  216. } catch (Throwable t) {
  217. // the app should never break due to a problem with thumbnails
  218. Log_OC.e(TAG, "Generation of thumbnail for " + file + " failed", t);
  219. }
  220. return thumbnail;
  221. }
  222. private Bitmap doResizedImageInBackground() {
  223. Bitmap thumbnail;
  224. String imageKey = PREFIX_RESIZED_IMAGE + String.valueOf(file.getRemoteId());
  225. // Check disk cache in background thread
  226. thumbnail = getBitmapFromDiskCache(imageKey);
  227. // Not found in disk cache
  228. if (thumbnail == null || file.needsUpdateThumbnail()) {
  229. Point p = getScreenDimension();
  230. int pxW = p.x;
  231. int pxH = p.y;
  232. if (file.isDown()) {
  233. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
  234. if (bitmap != null) {
  235. // Handle PNG
  236. if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
  237. bitmap = handlePNG(bitmap, pxW);
  238. }
  239. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
  240. file.setNeedsUpdateThumbnail(false);
  241. storageManager.saveFile(file);
  242. }
  243. } else {
  244. // Download thumbnail from server
  245. OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(account);
  246. if (mClient != null && serverOCVersion != null) {
  247. if (serverOCVersion.supportsRemoteThumbnails()) {
  248. GetMethod getMethod = null;
  249. try {
  250. // resized image via gallery app
  251. String uri = mClient.getBaseUri() + "/index.php/apps/gallery/api/preview/" +
  252. Integer.parseInt(file.getRemoteId().substring(0, 8)) + "/" + pxW + "/" + pxH;
  253. Log_OC.d(TAG, "generate resizedImage: " + file.getFileName() + " URI: " + uri);
  254. getMethod = new GetMethod(uri);
  255. getMethod.setRequestHeader("Cookie",
  256. "nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
  257. int status = mClient.executeMethod(getMethod);
  258. if (status == HttpStatus.SC_OK) {
  259. InputStream inputStream = getMethod.getResponseBodyAsStream();
  260. thumbnail = BitmapFactory.decodeStream(inputStream);
  261. } else {
  262. mClient.exhaustResponse(getMethod.getResponseBodyAsStream());
  263. }
  264. // Handle PNG
  265. if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
  266. thumbnail = handlePNG(thumbnail, pxW);
  267. }
  268. // Add thumbnail to cache
  269. if (thumbnail != null) {
  270. Log_OC.d(TAG, "add thumbnail to cache: " + file.getFileName());
  271. addBitmapToCache(imageKey, thumbnail);
  272. }
  273. } catch (Exception e) {
  274. Log_OC.d(TAG, e.getMessage(), e);
  275. } finally {
  276. if (getMethod != null) {
  277. getMethod.releaseConnection();
  278. }
  279. }
  280. } else {
  281. Log_OC.d(TAG, "Server too old");
  282. }
  283. }
  284. }
  285. }
  286. return thumbnail;
  287. }
  288. protected void onPostExecute(Bitmap bitmap) {
  289. if (imageViewReference != null) {
  290. final ImageView imageView = imageViewReference.get();
  291. if (bitmap != null) {
  292. final ResizedImageGenerationTask bitmapWorkerTask = getResizedImageGenerationWorkerTask(imageView);
  293. if (this == bitmapWorkerTask) {
  294. String tagId = String.valueOf(file.getFileId());
  295. if (String.valueOf(imageView.getTag()).equals(tagId)) {
  296. imageView.setImageBitmap(bitmap);
  297. }
  298. }
  299. } else {
  300. if (ConnectivityUtils.isAppConnected(MainApp.getAppContext())) {
  301. previewImageFragment.setErrorPreviewMessage();
  302. } else {
  303. previewImageFragment.setNoConnectionErrorMessage();
  304. }
  305. }
  306. }
  307. }
  308. }
  309. public static class ThumbnailGenerationTaskObject {
  310. private Object file;
  311. private String imageKey;
  312. public ThumbnailGenerationTaskObject(Object file, String imageKey) {
  313. this.file = file;
  314. this.imageKey = imageKey;
  315. }
  316. private Object getFile() {
  317. return file;
  318. }
  319. private String getImageKey() {
  320. return imageKey;
  321. }
  322. }
  323. public static class ThumbnailGenerationTask extends AsyncTask<ThumbnailGenerationTaskObject, Void, Bitmap> {
  324. private final WeakReference<ImageView> mImageViewReference;
  325. private static Account mAccount;
  326. private ArrayList<ThumbnailGenerationTask> mAsyncTasks = null;
  327. private Object mFile;
  328. private String mImageKey = null;
  329. private FileDataStorageManager mStorageManager;
  330. private GetMethod getMethod;
  331. public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager, Account account)
  332. throws IllegalArgumentException {
  333. this(imageView, storageManager, account, null);
  334. }
  335. public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager,
  336. Account account, ArrayList<ThumbnailGenerationTask> asyncTasks)
  337. throws IllegalArgumentException {
  338. // Use a WeakReference to ensure the ImageView can be garbage collected
  339. mImageViewReference = new WeakReference<ImageView>(imageView);
  340. if (storageManager == null) {
  341. throw new IllegalArgumentException("storageManager must not be NULL");
  342. }
  343. mStorageManager = storageManager;
  344. mAccount = account;
  345. mAsyncTasks = asyncTasks;
  346. }
  347. public GetMethod getGetMethod() {
  348. return getMethod;
  349. }
  350. public ThumbnailGenerationTask(FileDataStorageManager storageManager, Account account){
  351. if (storageManager == null) {
  352. throw new IllegalArgumentException("storageManager must not be NULL");
  353. }
  354. mStorageManager = storageManager;
  355. mAccount = account;
  356. mImageViewReference = null;
  357. }
  358. public ThumbnailGenerationTask(ImageView imageView) {
  359. // Use a WeakReference to ensure the ImageView can be garbage collected
  360. mImageViewReference = new WeakReference<ImageView>(imageView);
  361. }
  362. @SuppressFBWarnings("Dm")
  363. @Override
  364. protected Bitmap doInBackground(ThumbnailGenerationTaskObject... params) {
  365. Bitmap thumbnail = null;
  366. try {
  367. if (mAccount != null) {
  368. OwnCloudAccount ocAccount = new OwnCloudAccount(
  369. mAccount,
  370. MainApp.getAppContext()
  371. );
  372. mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  373. getClientFor(ocAccount, MainApp.getAppContext());
  374. }
  375. ThumbnailGenerationTaskObject object = params[0];
  376. mFile = object.getFile();
  377. mImageKey = object.getImageKey();
  378. if (mFile instanceof OCFile) {
  379. thumbnail = doThumbnailFromOCFileInBackground();
  380. if (MimeTypeUtil.isVideo((OCFile) mFile) && thumbnail != null) {
  381. thumbnail = addVideoOverlay(thumbnail);
  382. }
  383. } else if (mFile instanceof File) {
  384. thumbnail = doFileInBackground();
  385. String url = ((File) mFile).getAbsolutePath();
  386. String mMimeType = FileStorageUtils.getMimeTypeFromName(url);
  387. if (MimeTypeUtil.isVideo(mMimeType) && thumbnail != null) {
  388. thumbnail = addVideoOverlay(thumbnail);
  389. }
  390. //} else { do nothing
  391. }
  392. } catch(OutOfMemoryError oome) {
  393. System.gc();
  394. } catch (Throwable t) {
  395. // the app should never break due to a problem with thumbnails
  396. Log_OC.e(TAG, "Generation of thumbnail for " + mFile + " failed", t);
  397. }
  398. return thumbnail;
  399. }
  400. protected void onPostExecute(Bitmap bitmap) {
  401. if (bitmap != null && mImageViewReference != null) {
  402. final ImageView imageView = mImageViewReference.get();
  403. final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
  404. if (this == bitmapWorkerTask) {
  405. String tagId = "";
  406. if (mFile instanceof OCFile) {
  407. tagId = String.valueOf(((OCFile)mFile).getFileId());
  408. } else if (mFile instanceof File) {
  409. tagId = String.valueOf(mFile.hashCode());
  410. }
  411. if (String.valueOf(imageView.getTag()).equals(tagId)) {
  412. imageView.setImageBitmap(bitmap);
  413. }
  414. }
  415. }
  416. if (mAsyncTasks != null) {
  417. mAsyncTasks.remove(this);
  418. }
  419. }
  420. private Bitmap doThumbnailFromOCFileInBackground() {
  421. Bitmap thumbnail;
  422. OCFile file = (OCFile) mFile;
  423. String imageKey = PREFIX_THUMBNAIL + String.valueOf(file.getRemoteId());
  424. // Check disk cache in background thread
  425. thumbnail = getBitmapFromDiskCache(imageKey);
  426. // Not found in disk cache
  427. if (thumbnail == null || file.needsUpdateThumbnail()) {
  428. int pxW;
  429. int pxH;
  430. pxW = pxH = getThumbnailDimension();
  431. if (file.isDown()) {
  432. Bitmap bitmap;
  433. if (MimeTypeUtil.isVideo(file)) {
  434. bitmap = ThumbnailUtils.createVideoThumbnail(file.getStoragePath(),
  435. MediaStore.Images.Thumbnails.MINI_KIND);
  436. } else {
  437. bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
  438. }
  439. if (bitmap != null) {
  440. // Handle PNG
  441. if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
  442. bitmap = handlePNG(bitmap, pxW);
  443. }
  444. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
  445. file.setNeedsUpdateThumbnail(false);
  446. mStorageManager.saveFile(file);
  447. }
  448. } else {
  449. // Download thumbnail from server
  450. OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
  451. if (mClient != null && serverOCVersion != null) {
  452. if (serverOCVersion.supportsRemoteThumbnails()) {
  453. getMethod = null;
  454. try {
  455. // thumbnail
  456. String uri = mClient.getBaseUri() + "/index.php/apps/files/api/v1/thumbnail/" +
  457. pxW + "/" + pxH + Uri.encode(file.getRemotePath(), "/");
  458. Log_OC.d(TAG, "generate thumbnail: " + file.getFileName() +
  459. " URI: " + uri);
  460. getMethod = new GetMethod(uri);
  461. getMethod.setRequestHeader("Cookie",
  462. "nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
  463. getMethod.setRequestHeader(RemoteOperation.OCS_API_HEADER,
  464. RemoteOperation.OCS_API_HEADER_VALUE);
  465. int status = mClient.executeMethod(getMethod);
  466. if (status == HttpStatus.SC_OK) {
  467. InputStream inputStream = getMethod.getResponseBodyAsStream();
  468. Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
  469. thumbnail = ThumbnailUtils.extractThumbnail(bitmap, pxW, pxH);
  470. } else {
  471. mClient.exhaustResponse(getMethod.getResponseBodyAsStream());
  472. }
  473. // Handle PNG
  474. if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
  475. thumbnail = handlePNG(thumbnail, pxW);
  476. }
  477. // Add thumbnail to cache
  478. if (thumbnail != null) {
  479. Log_OC.d(TAG, "add thumbnail to cache: " + file.getFileName());
  480. addBitmapToCache(imageKey, thumbnail);
  481. }
  482. } catch (Exception e) {
  483. Log_OC.d(TAG, e.getMessage(), e);
  484. } finally {
  485. if (getMethod != null) {
  486. getMethod.releaseConnection();
  487. }
  488. }
  489. } else {
  490. Log_OC.d(TAG, "Server too old");
  491. }
  492. }
  493. }
  494. }
  495. return thumbnail;
  496. }
  497. /**
  498. * Converts size of file icon from dp to pixel
  499. *
  500. * @return int
  501. */
  502. private int getThumbnailDimension() {
  503. // Converts dp to pixel
  504. Resources r = MainApp.getAppContext().getResources();
  505. Double d = Math.pow(2, Math.floor(Math.log(r.getDimension(R.dimen.file_icon_size_grid)) / Math.log(2)));
  506. return d.intValue();
  507. }
  508. private Bitmap doFileInBackground() {
  509. File file = (File)mFile;
  510. final String imageKey;
  511. if (mImageKey != null) {
  512. imageKey = mImageKey;
  513. } else {
  514. imageKey = String.valueOf(file.hashCode());
  515. }
  516. // local file should always generate a thumbnail
  517. mImageKey = PREFIX_THUMBNAIL + mImageKey;
  518. // Check disk cache in background thread
  519. Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
  520. // Not found in disk cache
  521. if (thumbnail == null) {
  522. int pxW;
  523. int pxH;
  524. pxW = pxH = getThumbnailDimension();
  525. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), pxW, pxH);
  526. if (bitmap != null) {
  527. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), pxW, pxH);
  528. }
  529. }
  530. return thumbnail;
  531. }
  532. }
  533. public static class MediaThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
  534. private enum Type {IMAGE, VIDEO}
  535. private final WeakReference<ImageView> mImageViewReference;
  536. private File mFile;
  537. private String mImageKey = null;
  538. public MediaThumbnailGenerationTask(ImageView imageView) {
  539. // Use a WeakReference to ensure the ImageView can be garbage collected
  540. mImageViewReference = new WeakReference<>(imageView);
  541. }
  542. @Override
  543. protected Bitmap doInBackground(Object... params) {
  544. Bitmap thumbnail = null;
  545. try {
  546. if (params[0] instanceof File) {
  547. mFile = (File) params[0];
  548. if (params.length == 2) {
  549. mImageKey = (String) params[1];
  550. }
  551. if (MimeTypeUtil.isImage(mFile)) {
  552. thumbnail = doFileInBackground(mFile, Type.IMAGE);
  553. } else if (MimeTypeUtil.isVideo(mFile)) {
  554. thumbnail = doFileInBackground(mFile, Type.VIDEO);
  555. }
  556. }
  557. } // the app should never break due to a problem with thumbnails
  558. catch (OutOfMemoryError t) {
  559. Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
  560. System.gc();
  561. } catch (Throwable t) {
  562. // the app should never break due to a problem with thumbnails
  563. Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
  564. }
  565. return thumbnail;
  566. }
  567. protected void onPostExecute(Bitmap bitmap) {
  568. String tagId = "";
  569. final ImageView imageView = mImageViewReference.get();
  570. if (imageView != null) {
  571. if (mFile != null) {
  572. tagId = String.valueOf(mFile.hashCode());
  573. }
  574. if (bitmap != null) {
  575. if (tagId.equals(String.valueOf(imageView.getTag()))) {
  576. imageView.setImageBitmap(bitmap);
  577. }
  578. } else {
  579. if (mFile != null) {
  580. if (mFile.isDirectory()) {
  581. imageView.setImageDrawable(MimeTypeUtil.getDefaultFolderIcon());
  582. } else {
  583. if (MimeTypeUtil.isVideo(mFile)) {
  584. imageView.setImageBitmap(ThumbnailsCacheManager.mDefaultVideo);
  585. } else {
  586. imageView.setImageDrawable(MimeTypeUtil.getFileTypeIcon(null, mFile.getName(), null));
  587. }
  588. }
  589. }
  590. }
  591. }
  592. }
  593. private Bitmap doFileInBackground(File file, Type type) {
  594. final String imageKey;
  595. if (mImageKey != null) {
  596. imageKey = mImageKey;
  597. } else {
  598. imageKey = String.valueOf(file.hashCode());
  599. }
  600. // Check disk cache in background thread
  601. Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
  602. // Not found in disk cache
  603. if (thumbnail == null) {
  604. if (Type.IMAGE.equals(type)) {
  605. int px = getThumbnailDimension();
  606. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), px, px);
  607. if (bitmap != null) {
  608. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px, px);
  609. }
  610. } else if (Type.VIDEO.equals(type)) {
  611. MediaMetadataRetriever retriever = new MediaMetadataRetriever();
  612. try {
  613. retriever.setDataSource(file.getAbsolutePath());
  614. thumbnail = retriever.getFrameAtTime(-1);
  615. } catch (Exception ex) {
  616. // can't create a bitmap
  617. Log_OC.w(TAG, "Failed to create bitmap from video " + file.getAbsolutePath());
  618. } finally {
  619. try {
  620. retriever.release();
  621. } catch (RuntimeException ex) {
  622. // Ignore failure at this point.
  623. Log_OC.w(TAG, "Failed release MediaMetadataRetriever for " + file.getAbsolutePath());
  624. }
  625. }
  626. if (thumbnail != null) {
  627. // Scale down bitmap if too large.
  628. int px = getThumbnailDimension();
  629. int width = thumbnail.getWidth();
  630. int height = thumbnail.getHeight();
  631. int max = Math.max(width, height);
  632. if (max > px) {
  633. thumbnail = BitmapUtils.scaleBitmap(thumbnail, px, width, height, max);
  634. thumbnail = addThumbnailToCache(imageKey, thumbnail, file.getPath(), px, px);
  635. }
  636. }
  637. }
  638. }
  639. return thumbnail;
  640. }
  641. }
  642. public static class AvatarGenerationTask extends AsyncTask<String, Void, Bitmap> {
  643. private final WeakReference<AvatarGenerationListener> mAvatarGenerationListener;
  644. private final Object mCallContext;
  645. private Account mAccount;
  646. private String mUsername;
  647. public AvatarGenerationTask(AvatarGenerationListener avatarGenerationListener, Object callContext,
  648. FileDataStorageManager storageManager, Account account) {
  649. mAvatarGenerationListener = new WeakReference<>(avatarGenerationListener);
  650. mCallContext = callContext;
  651. if (storageManager == null) {
  652. throw new IllegalArgumentException("storageManager must not be NULL");
  653. }
  654. mAccount = account;
  655. }
  656. @SuppressFBWarnings("Dm")
  657. @Override
  658. protected Bitmap doInBackground(String... params) {
  659. Bitmap thumbnail = null;
  660. try {
  661. if (mAccount != null) {
  662. OwnCloudAccount ocAccount = new OwnCloudAccount(mAccount,
  663. MainApp.getAppContext());
  664. mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  665. getClientFor(ocAccount, MainApp.getAppContext());
  666. }
  667. mUsername = params[0];
  668. thumbnail = doAvatarInBackground();
  669. } catch(OutOfMemoryError oome) {
  670. System.gc(); // todo, does this really make sense?
  671. } catch(Throwable t){
  672. // the app should never break due to a problem with avatars
  673. Log_OC.e(TAG, "Generation of avatar for " + mUsername + " failed", t);
  674. }
  675. return thumbnail;
  676. }
  677. protected void onPostExecute(Bitmap bitmap) {
  678. if (bitmap != null) {
  679. AvatarGenerationListener listener = mAvatarGenerationListener.get();
  680. AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(mCallContext);
  681. if (this == avatarWorkerTask
  682. && listener.shouldCallGeneratedCallback(mUsername, mCallContext)) {
  683. listener.avatarGenerated(new BitmapDrawable(bitmap), mCallContext);
  684. }
  685. }
  686. }
  687. /**
  688. * Converts size of file icon from dp to pixel
  689. * @return int
  690. */
  691. private int getAvatarDimension(){
  692. // Converts dp to pixel
  693. Resources r = MainApp.getAppContext().getResources();
  694. return Math.round(r.getDimension(R.dimen.file_avatar_size));
  695. }
  696. private Bitmap doAvatarInBackground() {
  697. String username = mUsername;
  698. final String imageKey = "a_" + username;
  699. // Check disk cache in background thread
  700. Bitmap avatar = getBitmapFromDiskCache(imageKey);
  701. // Not found in disk cache
  702. if (avatar == null) {
  703. int px = getAvatarDimension();
  704. // Download avatar from server
  705. OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
  706. if (mClient != null && serverOCVersion != null) {
  707. if (serverOCVersion.supportsRemoteThumbnails()) {
  708. GetMethod get = null;
  709. try {
  710. String userId = AccountManager.get(MainApp.getAppContext()).getUserData(mAccount,
  711. com.owncloud.android.lib.common.accounts.AccountUtils.Constants.KEY_USER_ID);
  712. if (TextUtils.isEmpty(userId)) {
  713. userId = AccountUtils.getAccountUsername(username);
  714. }
  715. String uri = mClient.getBaseUri() + "/index.php/avatar/" + Uri.encode(userId) + "/" + px;
  716. Log_OC.d("Avatar", "URI: " + uri);
  717. get = new GetMethod(uri);
  718. int status = mClient.executeMethod(get);
  719. if (status == HttpStatus.SC_OK) {
  720. InputStream inputStream = get.getResponseBodyAsStream();
  721. Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
  722. avatar = ThumbnailUtils.extractThumbnail(bitmap, px, px);
  723. // Add avatar to cache
  724. if (avatar != null) {
  725. avatar = handlePNG(avatar, px);
  726. addBitmapToCache(imageKey, avatar);
  727. }
  728. } else {
  729. mClient.exhaustResponse(get.getResponseBodyAsStream());
  730. }
  731. } catch (Exception e) {
  732. Log_OC.e(TAG, "Error downloading avatar", e);
  733. } finally {
  734. if (get != null) {
  735. get.releaseConnection();
  736. }
  737. }
  738. } else {
  739. Log_OC.d(TAG, "Server too old");
  740. }
  741. }
  742. }
  743. return avatar;
  744. }
  745. }
  746. public static boolean cancelPotentialThumbnailWork(Object file, ImageView imageView) {
  747. final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
  748. if (bitmapWorkerTask != null) {
  749. final Object bitmapData = bitmapWorkerTask.mFile;
  750. // If bitmapData is not yet set or it differs from the new data
  751. if (bitmapData == null || !bitmapData.equals(file)) {
  752. // Cancel previous task
  753. bitmapWorkerTask.cancel(true);
  754. Log_OC.v(TAG, "Cancelled generation of thumbnail for a reused imageView");
  755. } else {
  756. // The same work is already in progress
  757. return false;
  758. }
  759. }
  760. // No task associated with the ImageView, or an existing task was cancelled
  761. return true;
  762. }
  763. public static boolean cancelPotentialAvatarWork(Object file, Object callContext) {
  764. if (callContext instanceof ImageView) {
  765. return cancelPotentialAvatarWork(file, (ImageView) callContext);
  766. } else if (callContext instanceof MenuItem) {
  767. return cancelPotentialAvatarWork(file, (MenuItem)callContext);
  768. }
  769. return false;
  770. }
  771. public static boolean cancelPotentialAvatarWork(Object file, ImageView imageView) {
  772. final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(imageView);
  773. if (avatarWorkerTask != null) {
  774. final Object usernameData = avatarWorkerTask.mUsername;
  775. // If usernameData is not yet set or it differs from the new data
  776. if (usernameData == null || !usernameData.equals(file)) {
  777. // Cancel previous task
  778. avatarWorkerTask.cancel(true);
  779. Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
  780. } else {
  781. // The same work is already in progress
  782. return false;
  783. }
  784. }
  785. // No task associated with the ImageView, or an existing task was cancelled
  786. return true;
  787. }
  788. public static boolean cancelPotentialAvatarWork(Object file, MenuItem menuItem) {
  789. final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(menuItem);
  790. if (avatarWorkerTask != null) {
  791. final Object usernameData = avatarWorkerTask.mUsername;
  792. // If usernameData is not yet set or it differs from the new data
  793. if (usernameData == null || !usernameData.equals(file)) {
  794. // Cancel previous task
  795. avatarWorkerTask.cancel(true);
  796. Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
  797. } else {
  798. // The same work is already in progress
  799. return false;
  800. }
  801. }
  802. // No task associated with the ImageView, or an existing task was cancelled
  803. return true;
  804. }
  805. public static ThumbnailGenerationTask getBitmapWorkerTask(ImageView imageView) {
  806. if (imageView != null) {
  807. final Drawable drawable = imageView.getDrawable();
  808. if (drawable instanceof AsyncThumbnailDrawable) {
  809. final AsyncThumbnailDrawable asyncDrawable = (AsyncThumbnailDrawable) drawable;
  810. return asyncDrawable.getBitmapWorkerTask();
  811. }
  812. }
  813. return null;
  814. }
  815. private static ResizedImageGenerationTask getResizedImageGenerationWorkerTask(ImageView imageView) {
  816. if (imageView != null) {
  817. final Drawable drawable = imageView.getDrawable();
  818. if (drawable instanceof AsyncResizedImageDrawable) {
  819. final AsyncResizedImageDrawable asyncDrawable = (AsyncResizedImageDrawable) drawable;
  820. return asyncDrawable.getBitmapWorkerTask();
  821. }
  822. }
  823. return null;
  824. }
  825. public static Bitmap addVideoOverlay(Bitmap thumbnail){
  826. Bitmap playButton = BitmapFactory.decodeResource(MainApp.getAppContext().getResources(),
  827. R.drawable.view_play);
  828. Bitmap resizedPlayButton = Bitmap.createScaledBitmap(playButton,
  829. (int) (thumbnail.getWidth() * 0.3),
  830. (int) (thumbnail.getHeight() * 0.3), true);
  831. Bitmap resultBitmap = Bitmap.createBitmap(thumbnail.getWidth(),
  832. thumbnail.getHeight(),
  833. Bitmap.Config.ARGB_8888);
  834. Canvas c = new Canvas(resultBitmap);
  835. // compute visual center of play button, according to resized image
  836. int x1 = resizedPlayButton.getWidth();
  837. int y1 = resizedPlayButton.getHeight() / 2;
  838. int x2 = 0;
  839. int y2 = resizedPlayButton.getWidth();
  840. int x3 = 0;
  841. int y3 = 0;
  842. double ym = ( ((Math.pow(x3,2) - Math.pow(x1,2) + Math.pow(y3,2) - Math.pow(y1,2)) *
  843. (x2 - x1)) - (Math.pow(x2,2) - Math.pow(x1,2) + Math.pow(y2,2) -
  844. Math.pow(y1,2)) * (x3 - x1) ) / (2 * ( ((y3 - y1) * (x2 - x1)) -
  845. ((y2 - y1) * (x3 - x1)) ));
  846. double xm = ( (Math.pow(x2,2) - Math.pow(x1,2)) + (Math.pow(y2,2) - Math.pow(y1,2)) -
  847. (2*ym*(y2 - y1)) ) / (2*(x2 - x1));
  848. // offset to top left
  849. double ox = - xm;
  850. c.drawBitmap(thumbnail, 0, 0, null);
  851. Paint p = new Paint();
  852. p.setAlpha(230);
  853. c.drawBitmap(resizedPlayButton, (float) ((thumbnail.getWidth() / 2) + ox),
  854. (float) ((thumbnail.getHeight() / 2) - ym), p);
  855. return resultBitmap;
  856. }
  857. public static AvatarGenerationTask getAvatarWorkerTask(Object callContext) {
  858. if (callContext instanceof ImageView) {
  859. return getAvatarWorkerTask(((ImageView)callContext).getDrawable());
  860. } else if (callContext instanceof MenuItem) {
  861. return getAvatarWorkerTask(((MenuItem)callContext).getIcon());
  862. }
  863. return null;
  864. }
  865. private static AvatarGenerationTask getAvatarWorkerTask(Drawable drawable) {
  866. if (drawable instanceof AsyncAvatarDrawable) {
  867. final AsyncAvatarDrawable asyncDrawable = (AsyncAvatarDrawable) drawable;
  868. return asyncDrawable.getAvatarWorkerTask();
  869. }
  870. return null;
  871. }
  872. public static class AsyncThumbnailDrawable extends BitmapDrawable {
  873. private final WeakReference<ThumbnailGenerationTask> bitmapWorkerTaskReference;
  874. public AsyncThumbnailDrawable(
  875. Resources res, Bitmap bitmap, ThumbnailGenerationTask bitmapWorkerTask
  876. ) {
  877. super(res, bitmap);
  878. bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
  879. }
  880. public ThumbnailGenerationTask getBitmapWorkerTask() {
  881. return bitmapWorkerTaskReference.get();
  882. }
  883. }
  884. public static class AsyncResizedImageDrawable extends BitmapDrawable {
  885. private final WeakReference<ResizedImageGenerationTask> bitmapWorkerTaskReference;
  886. public AsyncResizedImageDrawable(Resources res, Bitmap bitmap, ResizedImageGenerationTask bitmapWorkerTask) {
  887. super(res, bitmap);
  888. bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
  889. }
  890. private ResizedImageGenerationTask getBitmapWorkerTask() {
  891. return bitmapWorkerTaskReference.get();
  892. }
  893. }
  894. public static class AsyncMediaThumbnailDrawable extends BitmapDrawable {
  895. private final WeakReference<MediaThumbnailGenerationTask> bitmapWorkerTaskReference;
  896. public AsyncMediaThumbnailDrawable(Resources res, Bitmap bitmap,
  897. MediaThumbnailGenerationTask bitmapWorkerTask) {
  898. super(res, bitmap);
  899. bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
  900. }
  901. }
  902. public static class AsyncAvatarDrawable extends BitmapDrawable {
  903. private final WeakReference<AvatarGenerationTask> avatarWorkerTaskReference;
  904. public AsyncAvatarDrawable(
  905. Resources res, Bitmap bitmap, AvatarGenerationTask avatarWorkerTask
  906. ) {
  907. super(res, bitmap);
  908. avatarWorkerTaskReference =
  909. new WeakReference<AvatarGenerationTask>(avatarWorkerTask);
  910. }
  911. public AvatarGenerationTask getAvatarWorkerTask() {
  912. return avatarWorkerTaskReference.get();
  913. }
  914. }
  915. private static Bitmap handlePNG(Bitmap bitmap, int px){
  916. Bitmap resultBitmap = Bitmap.createBitmap(px,
  917. px,
  918. Bitmap.Config.ARGB_8888);
  919. Canvas c = new Canvas(resultBitmap);
  920. c.drawColor(MainApp.getAppContext().getResources().
  921. getColor(R.color.background_color));
  922. c.drawBitmap(bitmap, 0, 0, null);
  923. return resultBitmap;
  924. }
  925. public static void generateResizedImage(OCFile file) {
  926. Point p = getScreenDimension();
  927. int pxW = p.x;
  928. int pxH = p.y;
  929. String imageKey = PREFIX_RESIZED_IMAGE + String.valueOf(file.getRemoteId());
  930. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
  931. if (bitmap != null) {
  932. // Handle PNG
  933. if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
  934. bitmap = handlePNG(bitmap, pxW);
  935. }
  936. addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
  937. }
  938. }
  939. }