123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834 |
- /**
- * 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.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.drawable.BitmapDrawable;
- import android.graphics.drawable.Drawable;
- import android.media.ThumbnailUtils;
- import android.net.Uri;
- import android.os.AsyncTask;
- import android.view.MenuItem;
- 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.utils.Log_OC;
- import com.owncloud.android.lib.resources.status.OwnCloudVersion;
- import com.owncloud.android.ui.adapter.DiskLruImageCache;
- import com.owncloud.android.utils.BitmapUtils;
- 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.InputStream;
- import java.lang.ref.WeakReference;
- import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
- /**
- * Manager for concurrent access to thumbnails cache.
- */
- public class ThumbnailsCacheManager {
-
- private static final String TAG = ThumbnailsCacheManager.class.getSimpleName();
-
- private static final String CACHE_FOLDER = "thumbnailCache";
- 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 * 10; // 10MB
- 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
- final String cachePath =
- MainApp.getAppContext().getExternalCacheDir().getPath() +
- File.separator + CACHE_FOLDER;
- Log_OC.d(TAG, "create dir: " + cachePath);
- final File diskCacheDir = new File(cachePath);
- mThumbnailCache = new DiskLruImageCache(
- diskCacheDir,
- DISK_CACHE_SIZE,
- mCompressFormat,
- mCompressQuality
- );
- } catch (Exception e) {
- Log_OC.d(TAG, "Thumbnail cache could not be opened ", e);
- 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));
- }
- /**
- * Add thumbnail to cache
- * @param imageKey: thumb key
- * @param bitmap: image for extracting thumbnail
- * @param path: image path
- * @param px: thumbnail dp
- * @return Bitmap
- */
- private static Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int px){
- Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
- // 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 ThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
- private final WeakReference<ImageView> mImageViewReference;
- private static Account mAccount;
- private Object mFile;
- private String mImageKey = null;
- private FileDataStorageManager mStorageManager;
- public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager,
- Account account) 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;
- }
- 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(Object... params) {
- Bitmap thumbnail = null;
- try {
- if (mAccount != null) {
- OwnCloudAccount ocAccount = new OwnCloudAccount(
- mAccount,
- MainApp.getAppContext()
- );
- mClient = OwnCloudClientManagerFactory.getDefaultSingleton().
- getClientFor(ocAccount, MainApp.getAppContext());
- }
- mFile = params[0];
- if (params.length == 2) {
- mImageKey = (String) params[1];
- }
- if (mFile instanceof OCFile) {
- thumbnail = doOCFileInBackground();
- 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);
- }
- }
- }
- }
- /**
- * 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 doOCFileInBackground() {
- OCFile file = (OCFile)mFile;
- final String imageKey = String.valueOf(file.getRemoteId());
- // Check disk cache in background thread
- Bitmap thumbnail = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (thumbnail == null || file.needsUpdateThumbnail()) {
- int px = getThumbnailDimension();
- if (file.isDown()) {
- Bitmap temp = BitmapUtils.decodeSampledBitmapFromFile(
- file.getStoragePath(), px, px);
- Bitmap bitmap = ThumbnailUtils.extractThumbnail(temp, px, px);
- if (bitmap != null) {
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase("image/png")) {
- bitmap = handlePNG(bitmap, px);
- }
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getStoragePath(), px);
- file.setNeedsUpdateThumbnail(false);
- mStorageManager.saveFile(file);
- }
- } else {
- // Download thumbnail from server
- OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
- if (mClient != null && serverOCVersion != null) {
- if (serverOCVersion.supportsRemoteThumbnails()) {
- GetMethod get = null;
- try {
- String uri = mClient.getBaseUri() + "" +
- "/index.php/apps/files/api/v1/thumbnail/" +
- px + "/" + px + Uri.encode(file.getRemotePath(), "/");
- Log_OC.d("Thumbnail", "URI: " + uri);
- get = new GetMethod(uri);
- get.setRequestHeader("Cookie",
- "nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
- int status = mClient.executeMethod(get);
- if (status == HttpStatus.SC_OK) {
- InputStream inputStream = get.getResponseBodyAsStream();
- Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
- thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
- // Handle PNG
- if (file.getMimetype().equalsIgnoreCase("image/png")) {
- thumbnail = handlePNG(thumbnail, px);
- }
- // Add thumbnail to cache
- if (thumbnail != null) {
- addBitmapToCache(imageKey, thumbnail);
- }
- } else {
- mClient.exhaustResponse(get.getResponseBodyAsStream());
- }
- } catch (Exception e) {
- Log_OC.d(TAG, e.getMessage(), e);
- } finally {
- if (get != null) {
- get.releaseConnection();
- }
- }
- } else {
- Log_OC.d(TAG, "Server too old");
- }
- }
- }
- }
- return thumbnail;
- }
- private Bitmap doFileInBackground() {
- File file = (File)mFile;
- 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) {
- int px = getThumbnailDimension();
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(
- file.getAbsolutePath(), px, px);
- if (bitmap != null) {
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px);
- }
- }
- return thumbnail;
- }
- }
- public static class MediaThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
- 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);
- }
- }
- } // 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.setImageResource(MimeTypeUtil.getFileTypeIconId(null, mFile.getName()));
- }
- }
- }
- }
- }
- }
- private Bitmap doFileInBackground(File file) {
- 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) {
- int px = getThumbnailDimension();
- Bitmap bitmap = BitmapUtils.decodeSampledBitmapFromFile(file.getAbsolutePath(), px, px);
- if (bitmap != null) {
- thumbnail = addThumbnailToCache(imageKey, bitmap, file.getPath(), px);
- }
- }
- return thumbnail;
- }
- }
- public static class AvatarGenerationTask extends AsyncTask<String, Void, Bitmap> {
- private final WeakReference<AvatarGenerationListener> mAvatarGenerationListener;
- private final Object mCallContext;
- private Account mAccount;
- private String mUsername;
- public AvatarGenerationTask(AvatarGenerationListener avatarGenerationListener, Object callContext,
- FileDataStorageManager storageManager, Account account) {
- mAvatarGenerationListener = new WeakReference<>(avatarGenerationListener);
- mCallContext = callContext;
- if (storageManager == null) {
- throw new IllegalArgumentException("storageManager must not be NULL");
- }
- mAccount = account;
- }
- @SuppressFBWarnings("Dm")
- @Override
- protected Bitmap doInBackground(String... params) {
- Bitmap 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(Bitmap bitmap) {
- if (bitmap != null) {
- AvatarGenerationListener listener = mAvatarGenerationListener.get();
- AvatarGenerationTask avatarWorkerTask = getAvatarWorkerTask(mCallContext);
- if (this == avatarWorkerTask
- && listener.shouldCallGeneratedCallback(mUsername, mCallContext)) {
- listener.avatarGenerated(new BitmapDrawable(bitmap), mCallContext);
- }
- }
- }
- /**
- * Add thumbnail to cache
- * @param imageKey: thumb key
- * @param bitmap: image for extracting thumbnail
- * @param path: image path
- * @param px: thumbnail dp
- * @return Bitmap
- */
- private Bitmap addThumbnailToCache(String imageKey, Bitmap bitmap, String path, int px){
- Bitmap thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
- // Rotate image, obeying exif tag
- thumbnail = BitmapUtils.rotateImage(thumbnail,path);
- // Add thumbnail to cache
- addBitmapToCache(imageKey, thumbnail);
- return thumbnail;
- }
- /**
- * 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 Bitmap doAvatarInBackground() {
- String username = mUsername;
- final String imageKey = "a_" + username;
- // Check disk cache in background thread
- Bitmap avatar = getBitmapFromDiskCache(imageKey);
- // Not found in disk cache
- if (avatar == null) {
- int px = getAvatarDimension();
- // Download avatar from server
- OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
- if (mClient != null && serverOCVersion != null) {
- if (serverOCVersion.supportsRemoteThumbnails()) {
- GetMethod get = null;
- try {
- String uri = mClient.getBaseUri() + "" +
- "/index.php/avatar/" + AccountUtils.getAccountUsername(username) + "/" + px;
- Log_OC.d("Avatar", "URI: " + uri);
- get = new GetMethod(uri);
- int status = mClient.executeMethod(get);
- if (status == HttpStatus.SC_OK) {
- InputStream inputStream = get.getResponseBodyAsStream();
- Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
- avatar = ThumbnailUtils.extractThumbnail(bitmap, px, px);
- // Add avatar to cache
- if (avatar != null) {
- avatar = handlePNG(avatar, px);
- addBitmapToCache(imageKey, avatar);
- }
- } else {
- mClient.exhaustResponse(get.getResponseBodyAsStream());
- }
- } catch (Exception e) {
- Log_OC.e(TAG, "Error downloading avatar", e);
- } finally {
- if (get != null) {
- get.releaseConnection();
- }
- }
- } else {
- Log_OC.d(TAG, "Server too old");
- }
- }
- }
- return 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;
- }
- 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 AsyncMediaThumbnailDrawable extends BitmapDrawable {
- private final WeakReference<MediaThumbnailGenerationTask> bitmapWorkerTaskReference;
- public AsyncMediaThumbnailDrawable(
- Resources res, Bitmap bitmap, MediaThumbnailGenerationTask bitmapWorkerTask
- ) {
- super(res, bitmap);
- bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
- }
- public MediaThumbnailGenerationTask getBitmapWorkerTask() {
- return bitmapWorkerTaskReference.get();
- }
- }
- public static class AsyncAvatarDrawable extends BitmapDrawable {
- private final WeakReference<AvatarGenerationTask> avatarWorkerTaskReference;
- public AsyncAvatarDrawable(
- Resources res, Bitmap bitmap, AvatarGenerationTask avatarWorkerTask
- ) {
- super(res, bitmap);
- avatarWorkerTaskReference =
- new WeakReference<AvatarGenerationTask>(avatarWorkerTask);
- }
- public AvatarGenerationTask getAvatarWorkerTask() {
- return avatarWorkerTaskReference.get();
- }
- }
- private static Bitmap handlePNG(Bitmap bitmap, int px){
- Bitmap resultBitmap = Bitmap.createBitmap(px,
- px,
- 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;
- }
- }
|