1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159 |
- /*
- * ownCloud Android client application
- *
- * @author Tobias Kaminsky
- * @author David A. Velasco
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package com.owncloud.android.datamodel;
- import android.accounts.Account;
- import android.accounts.AccountManager;
- import android.content.Context;
- import android.content.res.Resources;
- import android.graphics.Bitmap;
- import android.graphics.Bitmap.CompressFormat;
- import android.graphics.BitmapFactory;
- import android.graphics.Canvas;
- import android.graphics.Paint;
- import android.graphics.Point;
- import android.graphics.drawable.BitmapDrawable;
- import android.graphics.drawable.Drawable;
- import android.media.MediaMetadataRetriever;
- import android.media.ThumbnailUtils;
- import android.net.Uri;
- import android.os.AsyncTask;
- import android.provider.MediaStore;
- import android.support.annotation.Nullable;
- import android.text.TextUtils;
- import android.view.Display;
- import android.view.MenuItem;
- import android.view.WindowManager;
- import android.widget.ImageView;
- import com.owncloud.android.MainApp;
- import com.owncloud.android.R;
- import com.owncloud.android.authentication.AccountUtils;
- import com.owncloud.android.lib.common.OwnCloudAccount;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.utils.Log_OC;
- import com.owncloud.android.lib.resources.status.OwnCloudVersion;
- import com.owncloud.android.ui.TextDrawable;
- import com.owncloud.android.ui.adapter.DiskLruImageCache;
- import com.owncloud.android.ui.preview.PreviewImageFragment;
- import com.owncloud.android.utils.BitmapUtils;
- import com.owncloud.android.utils.ConnectivityUtils;
- import com.owncloud.android.utils.DisplayUtils.AvatarGenerationListener;
- import com.owncloud.android.utils.FileStorageUtils;
- import com.owncloud.android.utils.MimeTypeUtil;
- import org.apache.commons.httpclient.HttpStatus;
- import org.apache.commons.httpclient.methods.GetMethod;
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.io.InputStream;
- import java.lang.ref.WeakReference;
- import java.net.URLEncoder;
- import java.util.ArrayList;
- import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
- /**
- * Manager for concurrent access to thumbnails cache.
- */
- public class ThumbnailsCacheManager {
- public static final String PREFIX_RESIZED_IMAGE = "r";
- public static final String PREFIX_THUMBNAIL = "t";
- private static final String TAG = ThumbnailsCacheManager.class.getSimpleName();
- private static final String PNG_MIMETYPE = "image/png";
- private static final String CACHE_FOLDER = "thumbnailCache";
- public static final String AVATAR = "avatar";
- private static final String ETAG = "ETag";
- private static final Object mThumbnailsDiskCacheLock = new Object();
- private static DiskLruImageCache mThumbnailCache = null;
- private static boolean mThumbnailCacheStarting = true;
- private static final int DISK_CACHE_SIZE = 1024 * 1024 * 200; // 200MB
- private static final CompressFormat mCompressFormat = CompressFormat.JPEG;
- private static final int mCompressQuality = 70;
- private static OwnCloudClient mClient = null;
- public static final Bitmap mDefaultImg = BitmapFactory.decodeResource(MainApp.getAppContext().getResources(),
- R.drawable.file_image);
- public static final Bitmap mDefaultVideo = BitmapFactory.decodeResource(MainApp.getAppContext().getResources(),
- R.drawable.file_movie);
-
- public static class InitDiskCacheTask extends AsyncTask<File, Void, Void> {
- @Override
- protected Void doInBackground(File... params) {
- synchronized (mThumbnailsDiskCacheLock) {
- mThumbnailCacheStarting = true;
- if (mThumbnailCache == null) {
- try {
- // Check if media is mounted or storage is built-in, if so,
- // try and use external cache dir; otherwise use internal cache dir
- File cacheDir = MainApp.getAppContext().getExternalCacheDir();
- if (cacheDir != null) {
- String cachePath = cacheDir.getPath() + File.separator + CACHE_FOLDER;
- Log_OC.d(TAG, "create dir: " + cachePath);
- File diskCacheDir = new File(cachePath);
- mThumbnailCache = new DiskLruImageCache(diskCacheDir, DISK_CACHE_SIZE, mCompressFormat,
- mCompressQuality);
- } else {
- throw new FileNotFoundException("Thumbnail cache could not be opened");
- }
- } catch (java.io.IOException e) {
- Log_OC.d(TAG, e.getMessage());
- mThumbnailCache = null;
- }
- }
- mThumbnailCacheStarting = false; // Finished initialization
- mThumbnailsDiskCacheLock.notifyAll(); // Wake any waiting threads
- }
- return null;
- }
- }
- /**
- * Converts size of file icon from dp to pixel
- * @return int
- */
- private static int getThumbnailDimension(){
- // Converts dp to pixel
- Resources r = MainApp.getAppContext().getResources();
- return Math.round(r.getDimension(R.dimen.file_icon_size_grid));
- }
- /**
- * Converts dimension of screen as point
- *
- * @return Point
- */
- private static Point getScreenDimension() {
- WindowManager wm = (WindowManager) MainApp.getAppContext().getSystemService(Context.WINDOW_SERVICE);
- Display display = wm.getDefaultDisplay();
- Point point = new Point();
- display.getSize(point);
- return point;
- }
- /**
- * Add thumbnail to cache
- * @param imageKey: thumb key
- * @param bitmap: image for extracting thumbnail
- * @param path: image path
- * @param pxW: thumbnail width in pixel
- * @param pxH: thumbnail height in pixel
- * @return Bitmap
- */
- private static Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int pxW, int pxH){
- Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, pxW, pxH);
- // Rotate image, obeying exif tag
- thumbnail = BitmapUtils.rotateImage(thumbnail,path);
- // Add thumbnail to cache
- addBitmapToCache(imageKey, thumbnail);
- return thumbnail;
- }
-
- public static void addBitmapToCache(String key, Bitmap bitmap) {
- synchronized (mThumbnailsDiskCacheLock) {
- if (mThumbnailCache != null) {
- mThumbnailCache.put(key, bitmap);
- }
- }
- }
- public static Bitmap getBitmapFromDiskCache(String key) {
- synchronized (mThumbnailsDiskCacheLock) {
- // Wait while disk cache is started from background thread
- while (mThumbnailCacheStarting) {
- try {
- mThumbnailsDiskCacheLock.wait();
- } catch (InterruptedException e) {
- Log_OC.e(TAG, "Wait in mThumbnailsDiskCacheLock was interrupted", e);
- }
- }
- if (mThumbnailCache != null) {
- return mThumbnailCache.getBitmap(key);
- }
- }
- return null;
- }
- public static class ResizedImageGenerationTask extends AsyncTask<Object, Void, Bitmap> {
- private PreviewImageFragment previewImageFragment;
- private FileDataStorageManager storageManager;
- private Account account;
- private WeakReference<ImageView> imageViewReference;
- private OCFile file;
- public ResizedImageGenerationTask(PreviewImageFragment previewImageFragment, ImageView imageView,
- FileDataStorageManager storageManager, Account account)
- throws IllegalArgumentException {
- this.previewImageFragment = previewImageFragment;
- imageViewReference = new WeakReference<>(imageView);
- this.storageManager = storageManager;
- this.account = account;
- }
- @Override
- protected Bitmap doInBackground(Object... params) {
- Bitmap thumbnail = null;
- file = (OCFile) params[0];
- try {
- if (account != null) {
- OwnCloudAccount ocAccount = new OwnCloudAccount(account, MainApp.getAppContext());
- mClient = OwnCloudClientManagerFactory.getDefaultSingleton().getClientFor(ocAccount,
- MainApp.getAppContext());
- }
- thumbnail = doResizedImageInBackground();
- if (MimeTypeUtil.isVideo(file) && thumbnail != null) {
- thumbnail = addVideoOverlay(thumbnail);
- }
- } catch (OutOfMemoryError oome) {
- System.gc();
- Log_OC.e(TAG, "Out of memory -> garbage collector called");
- } catch (Throwable t) {
- // the app should never break due to a problem with thumbnails
- Log_OC.e(TAG, "Generation of thumbnail for " + file + " failed", t);
- }
- return thumbnail;
- }
- private Bitmap doResizedImageInBackground() {
- Bitmap thumbnail;
- String imageKey = PREFIX_RESIZED_IMAGE + String.valueOf(file.getRemoteId());
- // Check disk cache in background thread
- thumbnail = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (thumbnail == null || file.needsUpdateThumbnail()) {
- Point p = getScreenDimension();
- int pxW = p.x;
- int pxH = p.y;
- if (file.isDown()) {
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
- if (bitmap != null) {
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
- bitmap = handlePNG(bitmap, pxW, pxH);
- }
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
- file.setNeedsUpdateThumbnail(false);
- storageManager.saveFile(file);
- }
- } else {
- // Download thumbnail from server
- OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(account);
- if (mClient != null) {
- if (serverOCVersion.supportsRemoteThumbnails()) {
- GetMethod getMethod = null;
- try {
- String uri = mClient.getBaseUri() + "/index.php/core/preview.png?file="
- + URLEncoder.encode(file.getRemotePath())
- + "&x=" + pxW + "&y=" + pxH + "&a=1&mode=cover&forceIcon=0";
- getMethod = new GetMethod(uri);
- int status = mClient.executeMethod(getMethod);
- if (status == HttpStatus.SC_OK) {
- InputStream inputStream = getMethod.getResponseBodyAsStream();
- thumbnail = BitmapFactory.decodeStream(inputStream);
- } else {
- mClient.exhaustResponse(getMethod.getResponseBodyAsStream());
- }
- // Handle PNG
- if (thumbnail != null && file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
- thumbnail = handlePNG(thumbnail, thumbnail.getWidth(), thumbnail.getHeight());
- }
- // Add thumbnail to cache
- if (thumbnail != null) {
- Log_OC.d(TAG, "add thumbnail to cache: " + file.getFileName());
- addBitmapToCache(imageKey, thumbnail);
- }
- } catch (Exception e) {
- Log_OC.d(TAG, e.getMessage(), e);
- } finally {
- if (getMethod != null) {
- getMethod.releaseConnection();
- }
- }
- } else {
- Log_OC.d(TAG, "Server too old");
- }
- }
- }
- }
- return thumbnail;
- }
- protected void onPostExecute(Bitmap bitmap) {
- if (imageViewReference != null) {
- final ImageView imageView = imageViewReference.get();
- if (bitmap != null) {
- final ResizedImageGenerationTask bitmapWorkerTask = getResizedImageGenerationWorkerTask(imageView);
- if (this == bitmapWorkerTask) {
- String tagId = String.valueOf(file.getFileId());
- if (String.valueOf(imageView.getTag()).equals(tagId)) {
- imageView.setImageBitmap(bitmap);
- }
- }
- } else {
- new Thread(() -> {
- if (ConnectivityUtils.isInternetWalled(MainApp.getAppContext())) {
- previewImageFragment.setNoConnectionErrorMessage();
- } else {
- previewImageFragment.setErrorPreviewMessage();
- }
- }).start();
-
- }
- }
- }
- }
- public static class ThumbnailGenerationTaskObject {
- private Object file;
- private String imageKey;
- public ThumbnailGenerationTaskObject(Object file, String imageKey) {
- this.file = file;
- this.imageKey = imageKey;
- }
- private Object getFile() {
- return file;
- }
- private String getImageKey() {
- return imageKey;
- }
- }
- public static class ThumbnailGenerationTask extends AsyncTask<ThumbnailGenerationTaskObject, Void, Bitmap> {
- private final WeakReference<ImageView> mImageViewReference;
- private static Account mAccount;
- private ArrayList<ThumbnailGenerationTask> mAsyncTasks = null;
- private Object mFile;
- private String mImageKey = null;
- private FileDataStorageManager mStorageManager;
- private GetMethod getMethod;
- public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager, Account account)
- throws IllegalArgumentException {
- this(imageView, storageManager, account, null);
- }
- public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager,
- Account account, ArrayList<ThumbnailGenerationTask> asyncTasks)
- throws IllegalArgumentException {
- // Use a WeakReference to ensure the ImageView can be garbage collected
- mImageViewReference = new WeakReference<ImageView>(imageView);
- if (storageManager == null) {
- throw new IllegalArgumentException("storageManager must not be NULL");
- }
- mStorageManager = storageManager;
- mAccount = account;
- mAsyncTasks = asyncTasks;
- }
- public GetMethod getGetMethod() {
- return getMethod;
- }
- public ThumbnailGenerationTask(FileDataStorageManager storageManager, Account account){
- if (storageManager == null) {
- throw new IllegalArgumentException("storageManager must not be NULL");
- }
- mStorageManager = storageManager;
- mAccount = account;
- mImageViewReference = null;
- }
- public ThumbnailGenerationTask(ImageView imageView) {
- // Use a WeakReference to ensure the ImageView can be garbage collected
- mImageViewReference = new WeakReference<ImageView>(imageView);
- }
- @SuppressFBWarnings("Dm")
- @Override
- protected Bitmap doInBackground(ThumbnailGenerationTaskObject... params) {
- Bitmap thumbnail = null;
- try {
- if (mAccount != null) {
- OwnCloudAccount ocAccount = new OwnCloudAccount(
- mAccount,
- MainApp.getAppContext()
- );
- mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
- getClientFor(ocAccount, MainApp.getAppContext());
- }
- ThumbnailGenerationTaskObject object = params[0];
- mFile = object.getFile();
- mImageKey = object.getImageKey();
- if (mFile instanceof OCFile) {
- thumbnail = doThumbnailFromOCFileInBackground();
- if (MimeTypeUtil.isVideo((OCFile) mFile) && thumbnail != null) {
- thumbnail = addVideoOverlay(thumbnail);
- }
- } else if (mFile instanceof File) {
- thumbnail = doFileInBackground();
- String url = ((File) mFile).getAbsolutePath();
- String mMimeType = FileStorageUtils.getMimeTypeFromName(url);
- if (MimeTypeUtil.isVideo(mMimeType) && thumbnail != null) {
- thumbnail = addVideoOverlay(thumbnail);
- }
- //} else { do nothing
- }
- } catch(OutOfMemoryError oome) {
- System.gc();
- } catch (Throwable t) {
- // the app should never break due to a problem with thumbnails
- Log_OC.e(TAG, "Generation of thumbnail for " + mFile + " failed", t);
- }
- return thumbnail;
- }
- protected void onPostExecute(Bitmap bitmap) {
- if (bitmap != null && mImageViewReference != null) {
- final ImageView imageView = mImageViewReference.get();
- final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
- if (this == bitmapWorkerTask) {
- String tagId = "";
- if (mFile instanceof OCFile) {
- tagId = String.valueOf(((OCFile)mFile).getFileId());
- } else if (mFile instanceof File) {
- tagId = String.valueOf(mFile.hashCode());
- }
- if (String.valueOf(imageView.getTag()).equals(tagId)) {
- imageView.setImageBitmap(bitmap);
- }
- }
- }
- if (mAsyncTasks != null) {
- mAsyncTasks.remove(this);
- }
- }
- private Bitmap doThumbnailFromOCFileInBackground() {
- Bitmap thumbnail;
- OCFile file = (OCFile) mFile;
- String imageKey = PREFIX_THUMBNAIL + String.valueOf(file.getRemoteId());
- // Check disk cache in background thread
- thumbnail = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (thumbnail == null || file.needsUpdateThumbnail()) {
- int pxW;
- int pxH;
- pxW = pxH = getThumbnailDimension();
- if (file.isDown()) {
- Bitmap bitmap;
- if (MimeTypeUtil.isVideo(file)) {
- bitmap = ThumbnailUtils.createVideoThumbnail(file.getStoragePath(),
- MediaStore.Images.Thumbnails.MINI_KIND);
- } else {
- bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
- }
- if (bitmap != null) {
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
- bitmap = handlePNG(bitmap, pxW, pxH);
- }
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
- file.setNeedsUpdateThumbnail(false);
- mStorageManager.saveFile(file);
- }
- } else {
- // check if resized version is available
- String resizedImageKey = PREFIX_RESIZED_IMAGE + String.valueOf(file.getRemoteId());
- Bitmap resizedImage = getBitmapFromDiskCache(resizedImageKey);
- if (resizedImage != null) {
- thumbnail = ThumbnailUtils.extractThumbnail(resizedImage, pxW, pxH);
- } else {
- // Download thumbnail from server
- if (mClient != null && AccountUtils.getServerVersion(mAccount).supportsRemoteThumbnails()) {
- getMethod = null;
- try {
- // thumbnail
- String uri = mClient.getBaseUri() + "/index.php/apps/files/api/v1/thumbnail/" +
- pxW + "/" + pxH + Uri.encode(file.getRemotePath(), "/");
- Log_OC.d(TAG, "generate thumbnail: " + file.getFileName() +
- " URI: " + uri);
- getMethod = new GetMethod(uri);
- getMethod.setRequestHeader("Cookie",
- "nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
- getMethod.setRequestHeader(RemoteOperation.OCS_API_HEADER,
- RemoteOperation.OCS_API_HEADER_VALUE);
- int status = mClient.executeMethod(getMethod);
- if (status == HttpStatus.SC_OK) {
- InputStream inputStream = getMethod.getResponseBodyAsStream();
- Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
- thumbnail = ThumbnailUtils.extractThumbnail(bitmap, pxW, pxH);
- } else {
- mClient.exhaustResponse(getMethod.getResponseBodyAsStream());
- }
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
- thumbnail = handlePNG(thumbnail, pxW, pxH);
- }
- } catch (Exception e) {
- Log_OC.d(TAG, e.getMessage(), e);
- } finally {
- if (getMethod != null) {
- getMethod.releaseConnection();
- }
- }
- } else {
- Log_OC.d(TAG, "Server too old");
- }
- }
- // Add thumbnail to cache
- if (thumbnail != null) {
- Log_OC.d(TAG, "add thumbnail to cache: " + file.getFileName());
- addBitmapToCache(imageKey, thumbnail);
- }
- }
- }
- return thumbnail;
- }
- /**
- * Converts size of file icon from dp to pixel
- *
- * @return int
- */
- private int getThumbnailDimension() {
- // Converts dp to pixel
- Resources r = MainApp.getAppContext().getResources();
- Double d = Math.pow(2, Math.floor(Math.log(r.getDimension(R.dimen.file_icon_size_grid)) / Math.log(2)));
- return d.intValue();
- }
- private Bitmap doFileInBackground() {
- File file = (File)mFile;
- final String imageKey;
- if (mImageKey != null) {
- imageKey = mImageKey;
- } else {
- imageKey = String.valueOf(file.hashCode());
- }
- // local file should always generate a thumbnail
- mImageKey = PREFIX_THUMBNAIL + mImageKey;
- // Check disk cache in background thread
- Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (thumbnail == null) {
- int pxW;
- int pxH;
- pxW = pxH = getThumbnailDimension();
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), pxW, pxH);
- if (bitmap != null) {
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), pxW, pxH);
- }
- }
- return thumbnail;
- }
- }
- public static class MediaThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
- private enum Type {IMAGE, VIDEO}
- private final WeakReference<ImageView> mImageViewReference;
- private File mFile;
- private String mImageKey = null;
- public MediaThumbnailGenerationTask(ImageView imageView) {
- // Use a WeakReference to ensure the ImageView can be garbage collected
- mImageViewReference = new WeakReference<>(imageView);
- }
- @Override
- protected Bitmap doInBackground(Object... params) {
- Bitmap thumbnail = null;
- try {
- if (params[0] instanceof File) {
- mFile = (File) params[0];
- if (params.length == 2) {
- mImageKey = (String) params[1];
- }
- if (MimeTypeUtil.isImage(mFile)) {
- thumbnail = doFileInBackground(mFile, Type.IMAGE);
- } else if (MimeTypeUtil.isVideo(mFile)) {
- thumbnail = doFileInBackground(mFile, Type.VIDEO);
- }
- }
- } // the app should never break due to a problem with thumbnails
- catch (OutOfMemoryError t) {
- Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
- System.gc();
- } catch (Throwable t) {
- // the app should never break due to a problem with thumbnails
- Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
- }
- return thumbnail;
- }
- protected void onPostExecute(Bitmap bitmap) {
- String tagId = "";
- final ImageView imageView = mImageViewReference.get();
- if (imageView != null) {
- if (mFile != null) {
- tagId = String.valueOf(mFile.hashCode());
- }
- if (bitmap != null) {
- if (tagId.equals(String.valueOf(imageView.getTag()))) {
- imageView.setImageBitmap(bitmap);
- }
- } else {
- if (mFile != null) {
- if (mFile.isDirectory()) {
- imageView.setImageDrawable(MimeTypeUtil.getDefaultFolderIcon());
- } else {
- if (MimeTypeUtil.isVideo(mFile)) {
- imageView.setImageBitmap(ThumbnailsCacheManager.mDefaultVideo);
- } else {
- imageView.setImageDrawable(MimeTypeUtil.getFileTypeIcon(null, mFile.getName(), null));
- }
- }
- }
- }
- }
- }
- private Bitmap doFileInBackground(File file, Type type) {
- final String imageKey;
- if (mImageKey != null) {
- imageKey = mImageKey;
- } else {
- imageKey = String.valueOf(file.hashCode());
- }
- // Check disk cache in background thread
- Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (thumbnail == null) {
- if (Type.IMAGE.equals(type)) {
- int px = getThumbnailDimension();
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), px, px);
- if (bitmap != null) {
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px, px);
- }
- } else if (Type.VIDEO.equals(type)) {
- MediaMetadataRetriever retriever = new MediaMetadataRetriever();
- try {
- retriever.setDataSource(file.getAbsolutePath());
- thumbnail = retriever.getFrameAtTime(-1);
- } catch (Exception ex) {
- // can't create a bitmap
- Log_OC.w(TAG, "Failed to create bitmap from video " + file.getAbsolutePath());
- } finally {
- try {
- retriever.release();
- } catch (RuntimeException ex) {
- // Ignore failure at this point.
- Log_OC.w(TAG, "Failed release MediaMetadataRetriever for " + file.getAbsolutePath());
- }
- }
- if (thumbnail != null) {
- // Scale down bitmap if too large.
- int px = getThumbnailDimension();
- int width = thumbnail.getWidth();
- int height = thumbnail.getHeight();
- int max = Math.max(width, height);
- if (max > px) {
- thumbnail = BitmapUtils.scaleBitmap(thumbnail, px, width, height, max);
- thumbnail = addThumbnailToCache(imageKey, thumbnail, file.getPath(), px, px);
- }
- }
- }
- }
- return thumbnail;
- }
- }
- public static class AvatarGenerationTask extends AsyncTask<String, Void, Drawable> {
- private final WeakReference<AvatarGenerationListener> mAvatarGenerationListener;
- private final Object mCallContext;
- private final Resources mResources;
- private final float mAvatarRadius;
- private Account mAccount;
- private String mUsername;
- public AvatarGenerationTask(AvatarGenerationListener avatarGenerationListener, Object callContext,
- FileDataStorageManager storageManager, Account account, Resources resources,
- float avatarRadius) {
- mAvatarGenerationListener = new WeakReference<>(avatarGenerationListener);
- mCallContext = callContext;
- if (storageManager == null) {
- throw new IllegalArgumentException("storageManager must not be NULL");
- }
- mAccount = account;
- mResources = resources;
- mAvatarRadius = avatarRadius;
- }
- @SuppressFBWarnings("Dm")
- @Override
- protected Drawable doInBackground(String... params) {
- Drawable thumbnail = null;
- try {
- if (mAccount != null) {
- OwnCloudAccount ocAccount = new OwnCloudAccount(mAccount,
- MainApp.getAppContext());
- mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
- getClientFor(ocAccount, MainApp.getAppContext());
- }
- mUsername = params[0];
- thumbnail = doAvatarInBackground();
- } catch(OutOfMemoryError oome) {
- System.gc(); // todo, does this really make sense?
- } catch(Throwable t){
- // the app should never break due to a problem with avatars
- Log_OC.e(TAG, "Generation of avatar for " + mUsername + " failed", t);
- }
- return thumbnail;
- }
- protected void onPostExecute(Drawable drawable) {
- if (drawable != null) {
- AvatarGenerationListener listener = mAvatarGenerationListener.get();
- AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(mCallContext);
- if (this == avatarWorkerTask && listener.shouldCallGeneratedCallback(mUsername, mCallContext)) {
- listener.avatarGenerated(drawable, mCallContext);
- }
- }
- }
- /**
- * Converts size of file icon from dp to pixel
- * @return int
- */
- private int getAvatarDimension(){
- // Converts dp to pixel
- Resources r = MainApp.getAppContext().getResources();
- return Math.round(r.getDimension(R.dimen.file_avatar_size));
- }
- private @Nullable
- Drawable doAvatarInBackground() {
- Bitmap avatar = null;
- String username = mUsername;
- ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(
- MainApp.getAppContext().getContentResolver());
- String eTag = arbitraryDataProvider.getValue(mAccount, AVATAR);
- final String imageKey = "a_" + username + "_" + eTag;
- int px = getAvatarDimension();
- // Download avatar from server
- OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
- if (mClient != null) {
- if (serverOCVersion.supportsRemoteThumbnails()) {
- GetMethod get = null;
- try {
- String userId = AccountManager.get(MainApp.getAppContext()).getUserData(mAccount,
- com.owncloud.android.lib.common.accounts.AccountUtils.Constants.KEY_USER_ID);
- if (TextUtils.isEmpty(userId)) {
- userId = AccountUtils.getAccountUsername(username);
- }
- String uri = mClient.getBaseUri() + "/index.php/avatar/" + Uri.encode(userId) + "/" + px;
- Log_OC.d("Avatar", "URI: " + uri);
- get = new GetMethod(uri);
- if (!eTag.isEmpty()) {
- get.setRequestHeader("If-None-Match", eTag);
- }
- int status = mClient.executeMethod(get);
- // we are using eTag to download a new avatar only if it changed
- switch (status) {
- case HttpStatus.SC_OK:
- // new avatar
- InputStream inputStream = get.getResponseBodyAsStream();
- if (get.getResponseHeader(ETAG) != null) {
- eTag = get.getResponseHeader(ETAG).getValue().replace("\"", "");
- arbitraryDataProvider.storeOrUpdateKeyValue(mAccount.name, AVATAR, eTag);
- }
- Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
- avatar = ThumbnailUtils.extractThumbnail(bitmap, px, px);
- // Add avatar to cache
- if (avatar != null) {
- avatar = handlePNG(avatar, px, px);
- String newImageKey = "a_" + username + "_" + eTag;
- addBitmapToCache(newImageKey, avatar);
- } else {
- return TextDrawable.createAvatar(mAccount.name, mAvatarRadius);
- }
- break;
- case HttpStatus.SC_NOT_MODIFIED:
- // old avatar
- avatar = getBitmapFromDiskCache(imageKey);
- mClient.exhaustResponse(get.getResponseBodyAsStream());
- break;
- default:
- // everything else
- mClient.exhaustResponse(get.getResponseBodyAsStream());
- break;
- }
- } catch (Exception e) {
- try {
- return TextDrawable.createAvatar(mAccount.name, mAvatarRadius);
- } catch (Exception e1) {
- Log_OC.e(TAG, "Error generating fallback avatar");
- }
- } finally {
- if (get != null) {
- get.releaseConnection();
- }
- }
- } else {
- Log_OC.d(TAG, "Server too old");
- try {
- return TextDrawable.createAvatar(mAccount.name, mAvatarRadius);
- } catch (Exception e) {
- Log_OC.e(TAG, "Error generating fallback avatar");
- }
- }
- }
- return BitmapUtils.bitmapToCircularBitmapDrawable(mResources, avatar);
- }
- }
- public static boolean cancelPotentialThumbnailWork(Object file, ImageView imageView) {
- final ThumbnailGenerationTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
- if (bitmapWorkerTask != null) {
- final Object bitmapData = bitmapWorkerTask.mFile;
- // If bitmapData is not yet set or it differs from the new data
- if (bitmapData == null || !bitmapData.equals(file)) {
- // Cancel previous task
- bitmapWorkerTask.cancel(true);
- Log_OC.v(TAG, "Cancelled generation of thumbnail for a reused imageView");
- } else {
- // The same work is already in progress
- return false;
- }
- }
- // No task associated with the ImageView, or an existing task was cancelled
- return true;
- }
- public static boolean cancelPotentialAvatarWork(Object file, Object callContext) {
- if (callContext instanceof ImageView) {
- return cancelPotentialAvatarWork(file, (ImageView) callContext);
- } else if (callContext instanceof MenuItem) {
- return cancelPotentialAvatarWork(file, (MenuItem)callContext);
- }
- return false;
- }
- public static boolean cancelPotentialAvatarWork(Object file, ImageView imageView) {
- final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(imageView);
- if (avatarWorkerTask != null) {
- final Object usernameData = avatarWorkerTask.mUsername;
- // If usernameData is not yet set or it differs from the new data
- if (usernameData == null || !usernameData.equals(file)) {
- // Cancel previous task
- avatarWorkerTask.cancel(true);
- Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
- } else {
- // The same work is already in progress
- return false;
- }
- }
- // No task associated with the ImageView, or an existing task was cancelled
- return true;
- }
- public static boolean cancelPotentialAvatarWork(Object file, MenuItem menuItem) {
- final AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(menuItem);
- if (avatarWorkerTask != null) {
- final Object usernameData = avatarWorkerTask.mUsername;
- // If usernameData is not yet set or it differs from the new data
- if (usernameData == null || !usernameData.equals(file)) {
- // Cancel previous task
- avatarWorkerTask.cancel(true);
- Log_OC.v(TAG, "Cancelled generation of avatar for a reused imageView");
- } else {
- // The same work is already in progress
- return false;
- }
- }
- // No task associated with the ImageView, or an existing task was cancelled
- return true;
- }
- public static ThumbnailGenerationTask getBitmapWorkerTask(ImageView imageView) {
- if (imageView != null) {
- final Drawable drawable = imageView.getDrawable();
- if (drawable instanceof AsyncThumbnailDrawable) {
- final AsyncThumbnailDrawable asyncDrawable = (AsyncThumbnailDrawable) drawable;
- return asyncDrawable.getBitmapWorkerTask();
- }
- }
- return null;
- }
- private static ResizedImageGenerationTask getResizedImageGenerationWorkerTask(ImageView imageView) {
- if (imageView != null) {
- final Drawable drawable = imageView.getDrawable();
- if (drawable instanceof AsyncResizedImageDrawable) {
- final AsyncResizedImageDrawable asyncDrawable = (AsyncResizedImageDrawable) drawable;
- return asyncDrawable.getBitmapWorkerTask();
- }
- }
- return null;
- }
- public static Bitmap addVideoOverlay(Bitmap thumbnail){
- Bitmap playButton = BitmapFactory.decodeResource(MainApp.getAppContext().getResources(),
- R.drawable.view_play);
- Bitmap resizedPlayButton = Bitmap.createScaledBitmap(playButton,
- (int) (thumbnail.getWidth() * 0.3),
- (int) (thumbnail.getHeight() * 0.3), true);
- Bitmap resultBitmap = Bitmap.createBitmap(thumbnail.getWidth(),
- thumbnail.getHeight(),
- Bitmap.Config.ARGB_8888);
- Canvas c = new Canvas(resultBitmap);
- // compute visual center of play button, according to resized image
- int x1 = resizedPlayButton.getWidth();
- int y1 = resizedPlayButton.getHeight() / 2;
- int x2 = 0;
- int y2 = resizedPlayButton.getWidth();
- int x3 = 0;
- int y3 = 0;
- double ym = ( ((Math.pow(x3,2) - Math.pow(x1,2) + Math.pow(y3,2) - Math.pow(y1,2)) *
- (x2 - x1)) - (Math.pow(x2,2) - Math.pow(x1,2) + Math.pow(y2,2) -
- Math.pow(y1,2)) * (x3 - x1) ) / (2 * ( ((y3 - y1) * (x2 - x1)) -
- ((y2 - y1) * (x3 - x1)) ));
- double xm = ( (Math.pow(x2,2) - Math.pow(x1,2)) + (Math.pow(y2,2) - Math.pow(y1,2)) -
- (2*ym*(y2 - y1)) ) / (2*(x2 - x1));
- // offset to top left
- double ox = - xm;
- c.drawBitmap(thumbnail, 0, 0, null);
- Paint p = new Paint();
- p.setAlpha(230);
- c.drawBitmap(resizedPlayButton, (float) ((thumbnail.getWidth() / 2) + ox),
- (float) ((thumbnail.getHeight() / 2) - ym), p);
- return resultBitmap;
- }
- public static AvatarGenerationTask getAvatarWorkerTask(Object callContext) {
- if (callContext instanceof ImageView) {
- return getAvatarWorkerTask(((ImageView)callContext).getDrawable());
- } else if (callContext instanceof MenuItem) {
- return getAvatarWorkerTask(((MenuItem)callContext).getIcon());
- }
- return null;
- }
- private static AvatarGenerationTask getAvatarWorkerTask(Drawable drawable) {
- if (drawable instanceof AsyncAvatarDrawable) {
- final AsyncAvatarDrawable asyncDrawable = (AsyncAvatarDrawable) drawable;
- return asyncDrawable.getAvatarWorkerTask();
- }
- return null;
- }
- public static class AsyncThumbnailDrawable extends BitmapDrawable {
- private final WeakReference<ThumbnailGenerationTask> bitmapWorkerTaskReference;
- public AsyncThumbnailDrawable(
- Resources res, Bitmap bitmap, ThumbnailGenerationTask bitmapWorkerTask
- ) {
- super(res, bitmap);
- bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
- }
- public ThumbnailGenerationTask getBitmapWorkerTask() {
- return bitmapWorkerTaskReference.get();
- }
- }
- public static class AsyncResizedImageDrawable extends BitmapDrawable {
- private final WeakReference<ResizedImageGenerationTask> bitmapWorkerTaskReference;
- public AsyncResizedImageDrawable(Resources res, Bitmap bitmap, ResizedImageGenerationTask bitmapWorkerTask) {
- super(res, bitmap);
- bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
- }
- private ResizedImageGenerationTask getBitmapWorkerTask() {
- return bitmapWorkerTaskReference.get();
- }
- }
- public static class AsyncMediaThumbnailDrawable extends BitmapDrawable {
- private final WeakReference<MediaThumbnailGenerationTask> bitmapWorkerTaskReference;
- public AsyncMediaThumbnailDrawable(Resources res, Bitmap bitmap,
- MediaThumbnailGenerationTask bitmapWorkerTask) {
- super(res, bitmap);
- bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
- }
- }
- public static class AsyncAvatarDrawable extends BitmapDrawable {
- private final WeakReference<AvatarGenerationTask> avatarWorkerTaskReference;
- public AsyncAvatarDrawable(Resources res, Drawable bitmap, AvatarGenerationTask avatarWorkerTask) {
- super(res, BitmapUtils.drawableToBitmap(bitmap));
- avatarWorkerTaskReference = new WeakReference<>(avatarWorkerTask);
- }
- public AvatarGenerationTask getAvatarWorkerTask() {
- return avatarWorkerTaskReference.get();
- }
- }
- private static Bitmap handlePNG(Bitmap bitmap, int pxW, int pxH) {
- Bitmap resultBitmap = Bitmap.createBitmap(pxW, pxH, Bitmap.Config.ARGB_8888);
- Canvas c = new Canvas(resultBitmap);
- c.drawColor(MainApp.getAppContext().getResources().getColor(R.color.background_color));
- c.drawBitmap(bitmap, 0, 0, null);
- return resultBitmap;
- }
- public static void generateResizedImage(OCFile file) {
- Point p = getScreenDimension();
- int pxW = p.x;
- int pxH = p.y;
- String imageKey = PREFIX_RESIZED_IMAGE + String.valueOf(file.getRemoteId());
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getStoragePath(), pxW, pxH);
- if (bitmap != null) {
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase(PNG_MIMETYPE)) {
- bitmap = handlePNG(bitmap, pxW, pxH);
- }
- addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), pxW, pxH);
- }
- }
- }
|