ThumbnailsCacheManager.java 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834
  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.content.res.Resources;
  24. import android.graphics.Bitmap;
  25. import android.graphics.Bitmap.CompressFormat;
  26. import android.graphics.BitmapFactory;
  27. import android.graphics.Canvas;
  28. import android.graphics.Paint;
  29. import android.graphics.drawable.BitmapDrawable;
  30. import android.graphics.drawable.Drawable;
  31. import android.media.ThumbnailUtils;
  32. import android.net.Uri;
  33. import android.os.AsyncTask;
  34. import android.view.MenuItem;
  35. import android.widget.ImageView;
  36. import com.owncloud.android.MainApp;
  37. import com.owncloud.android.R;
  38. import com.owncloud.android.authentication.AccountUtils;
  39. import com.owncloud.android.lib.common.OwnCloudAccount;
  40. import com.owncloud.android.lib.common.OwnCloudClient;
  41. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  42. import com.owncloud.android.lib.common.utils.Log_OC;
  43. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  44. import com.owncloud.android.ui.adapter.DiskLruImageCache;
  45. import com.owncloud.android.utils.BitmapUtils;
  46. import com.owncloud.android.utils.DisplayUtils.AvatarGenerationListener;
  47. import com.owncloud.android.utils.FileStorageUtils;
  48. import com.owncloud.android.utils.MimeTypeUtil;
  49. import org.apache.commons.httpclient.HttpStatus;
  50. import org.apache.commons.httpclient.methods.GetMethod;
  51. import java.io.File;
  52. import java.io.InputStream;
  53. import java.lang.ref.WeakReference;
  54. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  55. /**
  56. * Manager for concurrent access to thumbnails cache.
  57. */
  58. public class ThumbnailsCacheManager {
  59. private static final String TAG = ThumbnailsCacheManager.class.getSimpleName();
  60. private static final String CACHE_FOLDER = "thumbnailCache";
  61. private static final Object mThumbnailsDiskCacheLock = new Object();
  62. private static DiskLruImageCache mThumbnailCache = null;
  63. private static boolean mThumbnailCacheStarting = true;
  64. private static final int DISK_CACHE_SIZE = 1024 * 1024 * 10; // 10MB
  65. private static final CompressFormat mCompressFormat = CompressFormat.JPEG;
  66. private static final int mCompressQuality = 70;
  67. private static OwnCloudClient mClient = null;
  68. public static final Bitmap mDefaultImg =
  69. BitmapFactory.decodeResource(
  70. MainApp.getAppContext().getResources(),
  71. R.drawable.file_image
  72. );
  73. public static final Bitmap mDefaultVideo =
  74. BitmapFactory.decodeResource(
  75. MainApp.getAppContext().getResources(),
  76. R.drawable.file_movie
  77. );
  78. public static class InitDiskCacheTask extends AsyncTask<File, Void, Void> {
  79. @Override
  80. protected Void doInBackground(File... params) {
  81. synchronized (mThumbnailsDiskCacheLock) {
  82. mThumbnailCacheStarting = true;
  83. if (mThumbnailCache == null) {
  84. try {
  85. // Check if media is mounted or storage is built-in, if so,
  86. // try and use external cache dir; otherwise use internal cache dir
  87. final String cachePath =
  88. MainApp.getAppContext().getExternalCacheDir().getPath() +
  89. File.separator + CACHE_FOLDER;
  90. Log_OC.d(TAG, "create dir: " + cachePath);
  91. final File diskCacheDir = new File(cachePath);
  92. mThumbnailCache = new DiskLruImageCache(
  93. diskCacheDir,
  94. DISK_CACHE_SIZE,
  95. mCompressFormat,
  96. mCompressQuality
  97. );
  98. } catch (Exception e) {
  99. Log_OC.d(TAG, "Thumbnail cache could not be opened ", e);
  100. mThumbnailCache = null;
  101. }
  102. }
  103. mThumbnailCacheStarting = false; // Finished initialization
  104. mThumbnailsDiskCacheLock.notifyAll(); // Wake any waiting threads
  105. }
  106. return null;
  107. }
  108. }
  109. /**
  110. * Converts size of file icon from dp to pixel
  111. * @return int
  112. */
  113. private static int getThumbnailDimension(){
  114. // Converts dp to pixel
  115. Resources r = MainApp.getAppContext().getResources();
  116. return Math.round(r.getDimension(R.dimen.file_icon_size_grid));
  117. }
  118. /**
  119. * Add thumbnail to cache
  120. * @param imageKey: thumb key
  121. * @param bitmap: image for extracting thumbnail
  122. * @param path: image path
  123. * @param px: thumbnail dp
  124. * @return Bitmap
  125. */
  126. private static Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int px){
  127. Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
  128. // Rotate image, obeying exif tag
  129. thumbnail = BitmapUtils.rotateImage(thumbnail,path);
  130. // Add thumbnail to cache
  131. addBitmapToCache(imageKey, thumbnail);
  132. return thumbnail;
  133. }
  134. public static void addBitmapToCache(String key, Bitmap bitmap) {
  135. synchronized (mThumbnailsDiskCacheLock) {
  136. if (mThumbnailCache != null) {
  137. mThumbnailCache.put(key, bitmap);
  138. }
  139. }
  140. }
  141. public static Bitmap getBitmapFromDiskCache(String key) {
  142. synchronized (mThumbnailsDiskCacheLock) {
  143. // Wait while disk cache is started from background thread
  144. while (mThumbnailCacheStarting) {
  145. try {
  146. mThumbnailsDiskCacheLock.wait();
  147. } catch (InterruptedException e) {
  148. Log_OC.e(TAG, "Wait in mThumbnailsDiskCacheLock was interrupted", e);
  149. }
  150. }
  151. if (mThumbnailCache != null) {
  152. return mThumbnailCache.getBitmap(key);
  153. }
  154. }
  155. return null;
  156. }
  157. public static class ThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
  158. private final WeakReference<ImageView> mImageViewReference;
  159. private static Account mAccount;
  160. private Object mFile;
  161. private String mImageKey = null;
  162. private FileDataStorageManager mStorageManager;
  163. public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager,
  164. Account account) throws IllegalArgumentException {
  165. // Use a WeakReference to ensure the ImageView can be garbage collected
  166. mImageViewReference = new WeakReference<ImageView>(imageView);
  167. if (storageManager == null) {
  168. throw new IllegalArgumentException("storageManager must not be NULL");
  169. }
  170. mStorageManager = storageManager;
  171. mAccount = account;
  172. }
  173. public ThumbnailGenerationTask(FileDataStorageManager storageManager, Account account){
  174. if (storageManager == null) {
  175. throw new IllegalArgumentException("storageManager must not be NULL");
  176. }
  177. mStorageManager = storageManager;
  178. mAccount = account;
  179. mImageViewReference = null;
  180. }
  181. public ThumbnailGenerationTask(ImageView imageView) {
  182. // Use a WeakReference to ensure the ImageView can be garbage collected
  183. mImageViewReference = new WeakReference<ImageView>(imageView);
  184. }
  185. @SuppressFBWarnings("Dm")
  186. @Override
  187. protected Bitmap doInBackground(Object... params) {
  188. Bitmap thumbnail = null;
  189. try {
  190. if (mAccount != null) {
  191. OwnCloudAccount ocAccount = new OwnCloudAccount(
  192. mAccount,
  193. MainApp.getAppContext()
  194. );
  195. mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  196. getClientFor(ocAccount, MainApp.getAppContext());
  197. }
  198. mFile = params[0];
  199. if (params.length == 2) {
  200. mImageKey = (String) params[1];
  201. }
  202. if (mFile instanceof OCFile) {
  203. thumbnail = doOCFileInBackground();
  204. if (MimeTypeUtil.isVideo((OCFile) mFile) && thumbnail != null) {
  205. thumbnail = addVideoOverlay(thumbnail);
  206. }
  207. } else if (mFile instanceof File) {
  208. thumbnail = doFileInBackground();
  209. String url = ((File) mFile).getAbsolutePath();
  210. String mMimeType = FileStorageUtils.getMimeTypeFromName(url);
  211. if (MimeTypeUtil.isVideo(mMimeType) && thumbnail != null) {
  212. thumbnail = addVideoOverlay(thumbnail);
  213. }
  214. //} else { do nothing
  215. }
  216. } catch(OutOfMemoryError oome) {
  217. System.gc();
  218. } catch (Throwable t) {
  219. // the app should never break due to a problem with thumbnails
  220. Log_OC.e(TAG, "Generation of thumbnail for " + mFile + " failed", t);
  221. }
  222. return thumbnail;
  223. }
  224. protected void onPostExecute(Bitmap bitmap){
  225. if (bitmap != null && mImageViewReference != null) {
  226. final ImageView imageView = mImageViewReference.get();
  227. final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
  228. if (this == bitmapWorkerTask) {
  229. String tagId = "";
  230. if (mFile instanceof OCFile){
  231. tagId = String.valueOf(((OCFile)mFile).getFileId());
  232. } else if (mFile instanceof File){
  233. tagId = String.valueOf(mFile.hashCode());
  234. }
  235. if (String.valueOf(imageView.getTag()).equals(tagId)) {
  236. imageView.setImageBitmap(bitmap);
  237. }
  238. }
  239. }
  240. }
  241. /**
  242. * Converts size of file icon from dp to pixel
  243. * @return int
  244. */
  245. private int getThumbnailDimension(){
  246. // Converts dp to pixel
  247. Resources r = MainApp.getAppContext().getResources();
  248. Double d = Math.pow(2,Math.floor(Math.log(r.getDimension(R.dimen.file_icon_size_grid))/Math.log(2)));
  249. return d.intValue();
  250. }
  251. private Bitmap doOCFileInBackground() {
  252. OCFile file = (OCFile)mFile;
  253. final String imageKey = String.valueOf(file.getRemoteId());
  254. // Check disk cache in background thread
  255. Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
  256. // Not found in disk cache
  257. if (thumbnail == null || file.needsUpdateThumbnail()) {
  258. int px = getThumbnailDimension();
  259. if (file.isDown()) {
  260. Bitmap temp = BitmapUtils.decodeSampledBitmapFromFile(
  261. file.getStoragePath(), px, px);
  262. Bitmap bitmap = ThumbnailUtils.extractThumbnail(temp, px, px);
  263. if (bitmap != null) {
  264. // Handle PNG
  265. if (file.getMimetype().equalsIgnoreCase("image/png")) {
  266. bitmap = handlePNG(bitmap, px);
  267. }
  268. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), px);
  269. file.setNeedsUpdateThumbnail(false);
  270. mStorageManager.saveFile(file);
  271. }
  272. } else {
  273. // Download thumbnail from server
  274. OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
  275. if (mClient != null && serverOCVersion != null) {
  276. if (serverOCVersion.supportsRemoteThumbnails()) {
  277. GetMethod get = null;
  278. try {
  279. String uri = mClient.getBaseUri() + "" +
  280. "/index.php/apps/files/api/v1/thumbnail/" +
  281. px + "/" + px + Uri.encode(file.getRemotePath(), "/");
  282. Log_OC.d("Thumbnail", "URI: " + uri);
  283. get = new GetMethod(uri);
  284. get.setRequestHeader("Cookie",
  285. "nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
  286. int status = mClient.executeMethod(get);
  287. if (status == HttpStatus.SC_OK) {
  288. InputStream inputStream = get.getResponseBodyAsStream();
  289. Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
  290. thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
  291. // Handle PNG
  292. if (file.getMimetype().equalsIgnoreCase("image/png")) {
  293. thumbnail = handlePNG(thumbnail, px);
  294. }
  295. // Add thumbnail to cache
  296. if (thumbnail != null) {
  297. addBitmapToCache(imageKey, thumbnail);
  298. }
  299. } else {
  300. mClient.exhaustResponse(get.getResponseBodyAsStream());
  301. }
  302. } catch (Exception e) {
  303. Log_OC.d(TAG, e.getMessage(), e);
  304. } finally {
  305. if (get != null) {
  306. get.releaseConnection();
  307. }
  308. }
  309. } else {
  310. Log_OC.d(TAG, "Server too old");
  311. }
  312. }
  313. }
  314. }
  315. return thumbnail;
  316. }
  317. private Bitmap doFileInBackground() {
  318. File file = (File)mFile;
  319. final String imageKey;
  320. if (mImageKey != null) {
  321. imageKey = mImageKey;
  322. } else {
  323. imageKey = String.valueOf(file.hashCode());
  324. }
  325. // Check disk cache in background thread
  326. Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
  327. // Not found in disk cache
  328. if (thumbnail == null) {
  329. int px = getThumbnailDimension();
  330. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(
  331. file.getAbsolutePath(), px, px);
  332. if (bitmap != null) {
  333. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px);
  334. }
  335. }
  336. return thumbnail;
  337. }
  338. }
  339. public static class MediaThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
  340. private final WeakReference<ImageView> mImageViewReference;
  341. private File mFile;
  342. private String mImageKey = null;
  343. public MediaThumbnailGenerationTask(ImageView imageView) {
  344. // Use a WeakReference to ensure the ImageView can be garbage collected
  345. mImageViewReference = new WeakReference<>(imageView);
  346. }
  347. @Override
  348. protected Bitmap doInBackground(Object... params) {
  349. Bitmap thumbnail = null;
  350. try {
  351. if (params[0] instanceof File) {
  352. mFile = (File) params[0];
  353. if (params.length == 2) {
  354. mImageKey = (String) params[1];
  355. }
  356. if (MimeTypeUtil.isImage(mFile)) {
  357. thumbnail = doFileInBackground(mFile);
  358. }
  359. }
  360. } // the app should never break due to a problem with thumbnails
  361. catch (OutOfMemoryError t) {
  362. Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
  363. System.gc();
  364. } catch (Throwable t) {
  365. // the app should never break due to a problem with thumbnails
  366. Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
  367. }
  368. return thumbnail;
  369. }
  370. protected void onPostExecute(Bitmap bitmap) {
  371. String tagId = "";
  372. final ImageView imageView = mImageViewReference.get();
  373. if (imageView != null) {
  374. if (mFile != null) {
  375. tagId = String.valueOf(mFile.hashCode());
  376. }
  377. if (bitmap != null) {
  378. if (tagId.equals(String.valueOf(imageView.getTag()))) {
  379. imageView.setImageBitmap(bitmap);
  380. }
  381. } else {
  382. if (mFile != null) {
  383. if (mFile.isDirectory()) {
  384. imageView.setImageDrawable(MimeTypeUtil.getDefaultFolderIcon());
  385. } else {
  386. if (MimeTypeUtil.isVideo(mFile)) {
  387. imageView.setImageBitmap(ThumbnailsCacheManager.mDefaultVideo);
  388. } else {
  389. imageView.setImageResource(MimeTypeUtil.getFileTypeIconId(null, mFile.getName()));
  390. }
  391. }
  392. }
  393. }
  394. }
  395. }
  396. private Bitmap doFileInBackground(File file) {
  397. final String imageKey;
  398. if (mImageKey != null) {
  399. imageKey = mImageKey;
  400. } else {
  401. imageKey = String.valueOf(file.hashCode());
  402. }
  403. // Check disk cache in background thread
  404. Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
  405. // Not found in disk cache
  406. if (thumbnail == null) {
  407. int px = getThumbnailDimension();
  408. Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), px, px);
  409. if (bitmap != null) {
  410. thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px);
  411. }
  412. }
  413. return thumbnail;
  414. }
  415. }
  416. public static class AvatarGenerationTask extends AsyncTask<String, Void, Bitmap> {
  417. private final WeakReference<AvatarGenerationListener> mAvatarGenerationListener;
  418. private final Object mCallContext;
  419. private Account mAccount;
  420. private String mUsername;
  421. public AvatarGenerationTask(AvatarGenerationListener avatarGenerationListener, Object callContext,
  422. FileDataStorageManager storageManager, Account account) {
  423. mAvatarGenerationListener = new WeakReference<>(avatarGenerationListener);
  424. mCallContext = callContext;
  425. if (storageManager == null) {
  426. throw new IllegalArgumentException("storageManager must not be NULL");
  427. }
  428. mAccount = account;
  429. }
  430. @SuppressFBWarnings("Dm")
  431. @Override
  432. protected Bitmap doInBackground(String... params) {
  433. Bitmap thumbnail = null;
  434. try {
  435. if (mAccount != null) {
  436. OwnCloudAccount ocAccount = new OwnCloudAccount(mAccount,
  437. MainApp.getAppContext());
  438. mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  439. getClientFor(ocAccount, MainApp.getAppContext());
  440. }
  441. mUsername = params[0];
  442. thumbnail = doAvatarInBackground();
  443. } catch(OutOfMemoryError oome) {
  444. System.gc(); // todo, does this really make sense?
  445. } catch(Throwable t){
  446. // the app should never break due to a problem with avatars
  447. Log_OC.e(TAG, "Generation of avatar for " + mUsername + " failed", t);
  448. }
  449. return thumbnail;
  450. }
  451. protected void onPostExecute(Bitmap bitmap) {
  452. if (bitmap != null) {
  453. AvatarGenerationListener listener = mAvatarGenerationListener.get();
  454. AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(mCallContext);
  455. if (this == avatarWorkerTask
  456. && listener.shouldCallGeneratedCallback(mUsername, mCallContext)) {
  457. listener.avatarGenerated(new BitmapDrawable(bitmap), mCallContext);
  458. }
  459. }
  460. }
  461. /**
  462. * Add thumbnail to cache
  463. * @param imageKey: thumb key
  464. * @param bitmap: image for extracting thumbnail
  465. * @param path: image path
  466. * @param px: thumbnail dp
  467. * @return Bitmap
  468. */
  469. private Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int px){
  470. Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
  471. // Rotate image, obeying exif tag
  472. thumbnail = BitmapUtils.rotateImage(thumbnail,path);
  473. // Add thumbnail to cache
  474. addBitmapToCache(imageKey, thumbnail);
  475. return thumbnail;
  476. }
  477. /**
  478. * Converts size of file icon from dp to pixel
  479. * @return int
  480. */
  481. private int getAvatarDimension(){
  482. // Converts dp to pixel
  483. Resources r = MainApp.getAppContext().getResources();
  484. return Math.round(r.getDimension(R.dimen.file_avatar_size));
  485. }
  486. private Bitmap doAvatarInBackground() {
  487. String username = mUsername;
  488. final String imageKey = "a_" + username;
  489. // Check disk cache in background thread
  490. Bitmap avatar = getBitmapFromDiskCache(imageKey);
  491. // Not found in disk cache
  492. if (avatar == null) {
  493. int px = getAvatarDimension();
  494. // Download avatar from server
  495. OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
  496. if (mClient != null && serverOCVersion != null) {
  497. if (serverOCVersion.supportsRemoteThumbnails()) {
  498. GetMethod get = null;
  499. try {
  500. String uri = mClient.getBaseUri() + "" +
  501. "/index.php/avatar/" + AccountUtils.getAccountUsername(username) + "/" + px;
  502. Log_OC.d("Avatar", "URI: " + uri);
  503. get = new GetMethod(uri);
  504. int status = mClient.executeMethod(get);
  505. if (status == HttpStatus.SC_OK) {
  506. InputStream inputStream = get.getResponseBodyAsStream();
  507. Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
  508. avatar = ThumbnailUtils.extractThumbnail(bitmap, px, px);
  509. // Add avatar to cache
  510. if (avatar != null) {
  511. avatar = handlePNG(avatar, px);
  512. addBitmapToCache(imageKey, avatar);
  513. }
  514. } else {
  515. mClient.exhaustResponse(get.getResponseBodyAsStream());
  516. }
  517. } catch (Exception e) {
  518. Log_OC.e(TAG, "Error downloading avatar", e);
  519. } finally {
  520. if (get != null) {
  521. get.releaseConnection();
  522. }
  523. }
  524. } else {
  525. Log_OC.d(TAG, "Server too old");
  526. }
  527. }
  528. }
  529. return avatar;
  530. }
  531. }
  532. public static boolean cancelPotentialThumbnailWork(Object file, ImageView imageView) {
  533. final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
  534. if (bitmapWorkerTask != null) {
  535. final Object bitmapData = bitmapWorkerTask.mFile;
  536. // If bitmapData is not yet set or it differs from the new data
  537. if (bitmapData == null || !bitmapData.equals(file)) {
  538. // Cancel previous task
  539. bitmapWorkerTask.cancel(true);
  540. Log_OC.v(TAG, "Cancelled generation of thumbnail for a reused imageView");
  541. } else {
  542. // The same work is already in progress
  543. return false;
  544. }
  545. }
  546. // No task associated with the ImageView, or an existing task was cancelled
  547. return true;
  548. }
  549. public static boolean cancelPotentialAvatarWork(Object file, Object callContext) {
  550. if (callContext instanceof ImageView) {
  551. return cancelPotentialAvatarWork(file, (ImageView) callContext);
  552. } else if (callContext instanceof MenuItem) {
  553. return cancelPotentialAvatarWork(file, (MenuItem)callContext);
  554. }
  555. return false;
  556. }
  557. public static boolean cancelPotentialAvatarWork(Object file, ImageView imageView) {
  558. final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(imageView);
  559. if (avatarWorkerTask != null) {
  560. final Object usernameData = avatarWorkerTask.mUsername;
  561. // If usernameData is not yet set or it differs from the new data
  562. if (usernameData == null || !usernameData.equals(file)) {
  563. // Cancel previous task
  564. avatarWorkerTask.cancel(true);
  565. Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
  566. } else {
  567. // The same work is already in progress
  568. return false;
  569. }
  570. }
  571. // No task associated with the ImageView, or an existing task was cancelled
  572. return true;
  573. }
  574. public static boolean cancelPotentialAvatarWork(Object file, MenuItem menuItem) {
  575. final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(menuItem);
  576. if (avatarWorkerTask != null) {
  577. final Object usernameData = avatarWorkerTask.mUsername;
  578. // If usernameData is not yet set or it differs from the new data
  579. if (usernameData == null || !usernameData.equals(file)) {
  580. // Cancel previous task
  581. avatarWorkerTask.cancel(true);
  582. Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
  583. } else {
  584. // The same work is already in progress
  585. return false;
  586. }
  587. }
  588. // No task associated with the ImageView, or an existing task was cancelled
  589. return true;
  590. }
  591. public static ThumbnailGenerationTask getBitmapWorkerTask(ImageView imageView) {
  592. if (imageView != null) {
  593. final Drawable drawable = imageView.getDrawable();
  594. if (drawable instanceof AsyncThumbnailDrawable) {
  595. final AsyncThumbnailDrawable asyncDrawable = (AsyncThumbnailDrawable) drawable;
  596. return asyncDrawable.getBitmapWorkerTask();
  597. }
  598. }
  599. return null;
  600. }
  601. public static Bitmap addVideoOverlay(Bitmap thumbnail){
  602. Bitmap playButton = BitmapFactory.decodeResource(MainApp.getAppContext().getResources(),
  603. R.drawable.view_play);
  604. Bitmap resizedPlayButton = Bitmap.createScaledBitmap(playButton,
  605. (int) (thumbnail.getWidth() * 0.3),
  606. (int) (thumbnail.getHeight() * 0.3), true);
  607. Bitmap resultBitmap = Bitmap.createBitmap(thumbnail.getWidth(),
  608. thumbnail.getHeight(),
  609. Bitmap.Config.ARGB_8888);
  610. Canvas c = new Canvas(resultBitmap);
  611. // compute visual center of play button, according to resized image
  612. int x1 = resizedPlayButton.getWidth();
  613. int y1 = resizedPlayButton.getHeight() / 2;
  614. int x2 = 0;
  615. int y2 = resizedPlayButton.getWidth();
  616. int x3 = 0;
  617. int y3 = 0;
  618. double ym = ( ((Math.pow(x3,2) - Math.pow(x1,2) + Math.pow(y3,2) - Math.pow(y1,2)) *
  619. (x2 - x1)) - (Math.pow(x2,2) - Math.pow(x1,2) + Math.pow(y2,2) -
  620. Math.pow(y1,2)) * (x3 - x1) ) / (2 * ( ((y3 - y1) * (x2 - x1)) -
  621. ((y2 - y1) * (x3 - x1)) ));
  622. double xm = ( (Math.pow(x2,2) - Math.pow(x1,2)) + (Math.pow(y2,2) - Math.pow(y1,2)) -
  623. (2*ym*(y2 - y1)) ) / (2*(x2 - x1));
  624. // offset to top left
  625. double ox = - xm;
  626. c.drawBitmap(thumbnail, 0, 0, null);
  627. Paint p = new Paint();
  628. p.setAlpha(230);
  629. c.drawBitmap(resizedPlayButton, (float) ((thumbnail.getWidth() / 2) + ox),
  630. (float) ((thumbnail.getHeight() / 2) - ym), p);
  631. return resultBitmap;
  632. }
  633. public static AvatarGenerationTask getAvatarWorkerTask(Object callContext) {
  634. if (callContext instanceof ImageView) {
  635. return getAvatarWorkerTask(((ImageView)callContext).getDrawable());
  636. } else if (callContext instanceof MenuItem) {
  637. return getAvatarWorkerTask(((MenuItem)callContext).getIcon());
  638. }
  639. return null;
  640. }
  641. private static AvatarGenerationTask getAvatarWorkerTask(Drawable drawable) {
  642. if (drawable instanceof AsyncAvatarDrawable) {
  643. final AsyncAvatarDrawable asyncDrawable = (AsyncAvatarDrawable) drawable;
  644. return asyncDrawable.getAvatarWorkerTask();
  645. }
  646. return null;
  647. }
  648. public static class AsyncThumbnailDrawable extends BitmapDrawable {
  649. private final WeakReference<ThumbnailGenerationTask> bitmapWorkerTaskReference;
  650. public AsyncThumbnailDrawable(
  651. Resources res, Bitmap bitmap, ThumbnailGenerationTask bitmapWorkerTask
  652. ) {
  653. super(res, bitmap);
  654. bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
  655. }
  656. public ThumbnailGenerationTask getBitmapWorkerTask() {
  657. return bitmapWorkerTaskReference.get();
  658. }
  659. }
  660. public static class AsyncMediaThumbnailDrawable extends BitmapDrawable {
  661. private final WeakReference<MediaThumbnailGenerationTask> bitmapWorkerTaskReference;
  662. public AsyncMediaThumbnailDrawable(
  663. Resources res, Bitmap bitmap, MediaThumbnailGenerationTask bitmapWorkerTask
  664. ) {
  665. super(res, bitmap);
  666. bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
  667. }
  668. public MediaThumbnailGenerationTask getBitmapWorkerTask() {
  669. return bitmapWorkerTaskReference.get();
  670. }
  671. }
  672. public static class AsyncAvatarDrawable extends BitmapDrawable {
  673. private final WeakReference<AvatarGenerationTask> avatarWorkerTaskReference;
  674. public AsyncAvatarDrawable(
  675. Resources res, Bitmap bitmap, AvatarGenerationTask avatarWorkerTask
  676. ) {
  677. super(res, bitmap);
  678. avatarWorkerTaskReference =
  679. new WeakReference<AvatarGenerationTask>(avatarWorkerTask);
  680. }
  681. public AvatarGenerationTask getAvatarWorkerTask() {
  682. return avatarWorkerTaskReference.get();
  683. }
  684. }
  685. private static Bitmap handlePNG(Bitmap bitmap, int px){
  686. Bitmap resultBitmap = Bitmap.createBitmap(px,
  687. px,
  688. Bitmap.Config.ARGB_8888);
  689. Canvas c = new Canvas(resultBitmap);
  690. c.drawColor(MainApp.getAppContext().getResources().
  691. getColor(R.color.background_color));
  692. c.drawBitmap(bitmap, 0, 0, null);
  693. return resultBitmap;
  694. }
  695. }